JLinkLog.txt 543 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288
  1. T5690 16774:752 SEGGER J-Link V6.46 Log File (0000ms, 690847ms total)
  2. T5690 16774:752 DLL Compiled: May 23 2019 17:49:56 (0000ms, 690847ms total)
  3. T5690 16774:752 Logging started @ 2023-08-14 15:59 (0000ms, 690847ms total)
  4. T5690 16774:752 JLINK_SetWarnOutHandler(...) (0000ms, 690847ms total)
  5. T5690 16774:752 JLINK_OpenEx(...)
  6. Firmware: J-Link V9 compiled May 7 2021 16:26:12
  7. Hardware: V9.40
  8. S/N: 69406807
  9. Feature(s): RDI, GDB, FlashDL, FlashBP, JFlash
  10. TELNET listener socket opened on port 19021WEBSRV
  11. Starting webserver (0032ms, 690879ms total)
  12. T5690 16774:752 WEBSRV Webserver running on local port 19080 (0032ms, 690879ms total)
  13. T5690 16774:752 returns O.K. (0032ms, 690879ms total)
  14. T5690 16774:784 JLINK_GetEmuCaps() returns 0xB9FF7BBF (0000ms, 690879ms total)
  15. T5690 16774:785 JLINK_TIF_GetAvailable(...) (0000ms, 690879ms total)
  16. T5690 16774:785 JLINK_SetErrorOutHandler(...) (0000ms, 690879ms total)
  17. T5690 16774:785 JLINK_ExecCommand("ProjectFile = "D:\Project\Lora_gateway_sx1278\app\MDKProject\JLinkSettings.ini"", ...). returns 0x00 (0001ms, 690880ms total)
  18. T5690 16774:786 JLINK_ExecCommand("Device = STM32F207ZGTx", ...). Device "STM32F207ZG" selected. returns 0x00 (0001ms, 690881ms total)
  19. T5690 16774:787 JLINK_ExecCommand("DisableConnectionTimeout", ...). returns 0x01 (0000ms, 690881ms total)
  20. T5690 16774:787 JLINK_GetHardwareVersion() returns 0x16F30 (0000ms, 690881ms total)
  21. T5690 16774:787 JLINK_GetDLLVersion() returns 64600 (0000ms, 690881ms total)
  22. T5690 16774:787 JLINK_GetFirmwareString(...) (0000ms, 690881ms total)
  23. T5690 16774:787 JLINK_GetDLLVersion() returns 64600 (0000ms, 690881ms total)
  24. T5690 16774:787 JLINK_GetCompileDateTime() (0000ms, 690881ms total)
  25. T5690 16774:787 JLINK_GetFirmwareString(...) (0000ms, 690881ms total)
  26. T5690 16774:787 JLINK_GetHardwareVersion() returns 0x16F30 (0000ms, 690881ms total)
  27. T5690 16774:787 JLINK_TIF_Select(JLINKARM_TIF_SWD) returns 0x00 (0001ms, 690882ms total)
  28. T5690 16774:788 JLINK_SetSpeed(500) (0001ms, 690883ms total)
  29. T5690 16774:789 JLINK_GetId() >0x10B TIF>Found SW-DP with ID 0x2BA01477 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF>
  30. >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x10B TIF>Found SW-DP with ID 0x2BA01477 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF>Scanning AP map to find all available APs >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>
  31. AP[1]: Stopped AP scan as end of AP map has been reachedAP[0]: AHB-AP (IDR: 0x24770011)Iterating through AP map to find AHB-AP to use >0x42 TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x42 TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>AP[0]: Core foundAP[0]: AHB-AP ROM base: 0xE00FF000 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>
  32. CPUID register: 0x412FC230. Implementer code: 0x41 (ARM)Found Cortex-M3 r2p0, Little endian. -- Max. mem block: 0x00011028 -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE0002000)FPUnit: 6 code (BP) slots and 2 literal slots -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_WriteMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_ReadMem(4 bytes @ 0xE000ED88) -- CPU_WriteMem(4 bytes @ 0xE000ED88)
  33. -- CPU_ReadMem(4 bytes @ 0xE000ED88) -- CPU_WriteMem(4 bytes @ 0xE000ED88)CoreSight components:ROMTbl[0] @ E00FF000 -- CPU_ReadMem(16 bytes @ 0xE00FF000) -- CPU_ReadMem(16 bytes @ 0xE000EFF0) -- CPU_ReadMem(16 bytes @ 0xE000EFE0)ROMTbl[0][0]: E000E000, CID: B105E00D, PID: 002BB000 SCS -- CPU_ReadMem(16 bytes @ 0xE0001FF0) -- CPU_ReadMem(16 bytes @ 0xE0001FE0)ROMTbl[0][1]: E0001000, CID: B105E00D, PID: 002BB002 DWT -- CPU_ReadMem(16 bytes @ 0xE0002FF0) -- CPU_ReadMem(16 bytes @ 0xE0002FE0)
  34. ROMTbl[0][2]: E0002000, CID: B105E00D, PID: 002BB003 FPB -- CPU_ReadMem(16 bytes @ 0xE0000FF0) -- CPU_ReadMem(16 bytes @ 0xE0000FE0)ROMTbl[0][3]: E0000000, CID: B105E00D, PID: 002BB001 ITM -- CPU_ReadMem(16 bytes @ 0xE00FF010) -- CPU_ReadMem(16 bytes @ 0xE0040FF0) -- CPU_ReadMem(16 bytes @ 0xE0040FE0)ROMTbl[0][4]: E0040000, CID: B105900D, PID: 002BB923 TPIU-Lite -- CPU_ReadMem(16 bytes @ 0xE0041FF0) -- CPU_ReadMem(16 bytes @ 0xE0041FE0)ROMTbl[0][5]: E0041000, CID: B105900D, PID: 002BB924 ETM-M3
  35. >0x0D TIF> >0x21 TIF> returns 0x2BA01477 (0187ms, 691070ms total)
  36. T5690 16774:976 JLINK_GetDLLVersion() returns 64600 (0000ms, 691070ms total)
  37. T5690 16774:976 JLINK_CORE_GetFound() returns 0x30000FF (0000ms, 691070ms total)
  38. T5690 16774:976 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xE00FF000 returns 0x00 (0000ms, 691070ms total)
  39. T5690 16774:976 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xE00FF000 returns 0x00 (0000ms, 691070ms total)
  40. T5690 16774:976 JLINK_GetDebugInfo(0x101 = JLINKARM_DEBUG_INFO_ETM_ADDR_INDEX) -- Value=0xE0041000 returns 0x00 (0000ms, 691070ms total)
  41. T5690 16774:976 JLINK_ReadMemEx(0xE0041FD0, 0x0020 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(32 bytes @ 0xE0041FD0) - Data: 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x20 (0003ms, 691073ms total)
  42. T5690 16774:979 JLINK_GetDebugInfo(0x102 = JLINKARM_DEBUG_INFO_MTB_ADDR_INDEX) -- Value=0x00000000 returns 0x00 (0000ms, 691073ms total)
  43. T5690 16774:979 JLINK_GetDebugInfo(0x103 = JLINKARM_DEBUG_INFO_TPIU_ADDR_INDEX) -- Value=0xE0040000 returns 0x00 (0000ms, 691073ms total)
  44. T5690 16774:979 JLINK_GetDebugInfo(0x104 = JLINKARM_DEBUG_INFO_ITM_ADDR_INDEX) -- Value=0xE0000000 returns 0x00 (0000ms, 691073ms total)
  45. T5690 16774:979 JLINK_GetDebugInfo(0x105 = JLINKARM_DEBUG_INFO_DWT_ADDR_INDEX) -- Value=0xE0001000 returns 0x00 (0000ms, 691073ms total)
  46. T5690 16774:979 JLINK_GetDebugInfo(0x106 = JLINKARM_DEBUG_INFO_FPB_ADDR_INDEX) -- Value=0xE0002000 returns 0x00 (0000ms, 691073ms total)
  47. T5690 16774:979 JLINK_GetDebugInfo(0x107 = JLINKARM_DEBUG_INFO_NVIC_ADDR_INDEX) -- Value=0xE000E000 returns 0x00 (0000ms, 691073ms total)
  48. T5690 16774:979 JLINK_GetDebugInfo(0x10C = JLINKARM_DEBUG_INFO_DBG_ADDR_INDEX) -- Value=0xE000EDF0 returns 0x00 (0000ms, 691073ms total)
  49. T5690 16774:979 JLINK_GetDebugInfo(0x01 = Unknown) -- Value=0x00000000 returns 0x00 (0000ms, 691073ms total)
  50. T5690 16774:979 JLINK_ReadMemU32(0xE000ED00, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED00) - Data: 30 C2 2F 41 returns 1 (0001ms, 691074ms total)
  51. T5690 16774:980 JLINK_GetDebugInfo(0x10F = JLINKARM_DEBUG_INFO_HAS_CORTEX_M_SECURITY_EXT_INDEX) -- Value=0x00000000 returns 0x00 (0000ms, 691074ms total)
  52. T5690 16774:980 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 691074ms total)
  53. T5690 16774:980 JLINK_Reset() -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDFC)Reset: Halt core after reset via DEMCR.VC_CORERESET. >0x35 TIF>Reset: Reset device via AIRCR.SYSRESETREQ. -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000ED0C) >0x0D TIF> >0x28 TIF> -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU is running
  54. -- CPU_WriteMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) (0092ms, 691166ms total)
  55. T5690 16775:072 JLINK_ReadReg(R15 (PC)) returns 0x08000198 (0000ms, 691166ms total)
  56. T5690 16775:072 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 691166ms total)
  57. T5690 16775:072 JLINK_Halt() returns 0x00 (0000ms, 691166ms total)
  58. T5690 16775:072 JLINK_ReadMemU32(0xE000EDF0, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) - Data: 03 00 03 00 returns 1 (0002ms, 691168ms total)
  59. T5690 16775:074 JLINK_WriteU32(0xE000EDF0, 0xA05F0003) -- CPU_WriteMem(4 bytes @ 0xE000EDF0) returns 0 (0002ms, 691170ms total)
  60. T5690 16775:076 JLINK_WriteU32(0xE000EDFC, 0x01000000) -- CPU_WriteMem(4 bytes @ 0xE000EDFC) returns 0 (0002ms, 691172ms total)
  61. T5690 16775:078 JLINK_GetHWStatus(...) returns 0x00 (0000ms, 691172ms total)
  62. T5690 16775:078 JLINK_GetNumBPUnits(Type = 0xFFFFFF00) returns 0x06 (0000ms, 691172ms total)
  63. T5690 16775:078 JLINK_GetNumBPUnits(Type = 0xF0) returns 0x2000 (0000ms, 691172ms total)
  64. T5690 16775:078 JLINK_GetNumWPUnits() returns 0x04 (0000ms, 691172ms total)
  65. T5690 16775:078 JLINK_GetSpeed() returns 0x1F4 (0000ms, 691172ms total)
  66. T5690 16775:078 JLINK_ReadMemU32(0xE000E004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000E004) - Data: 02 00 00 00 returns 1 (0002ms, 691174ms total)
  67. T5690 16775:080 JLINK_ReadMemU32(0xE000E004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000E004) - Data: 02 00 00 00 returns 1 (0001ms, 691175ms total)
  68. T5690 16775:081 JLINK_WriteMemEx(0xE0001000, 0x001C Bytes, ..., Flags = 0x02000004) - Data: 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... -- CPU_WriteMem(28 bytes @ 0xE0001000) returns 0x1C (0003ms, 691178ms total)
  69. T5690 16775:084 JLINK_ReadReg(R15 (PC)) returns 0x08000198 (0000ms, 691178ms total)
  70. T5690 16775:084 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 691178ms total)
  71. T5690 16775:085 JLINK_ReadMemEx(0xE0001004, 0x0004 Bytes, ..., Flags = 0x02000000) - Data: 00 00 00 00 returns 0x04 (0000ms, 691178ms total)
  72. T5690 16775:169 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 691178ms total)
  73. T5690 16775:169 JLINK_Reset() -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDFC)Reset: Halt core after reset via DEMCR.VC_CORERESET. >0x35 TIF>Reset: Reset device via AIRCR.SYSRESETREQ. -- CPU_WriteMem(4 bytes @ 0xE000ED0C) >0x0D TIF> >0x28 TIF> -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE0002000)
  74. -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) (0090ms, 691268ms total)
  75. T5690 16775:259 JLINK_ReadReg(R15 (PC)) returns 0x08000198 (0000ms, 691268ms total)
  76. T5690 16775:259 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 691268ms total)
  77. T5690 16775:259 JLINK_ReadMemEx(0x08000184, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08000180) -- Updating C cache (64 bytes @ 0x08000180) -- Read from C cache (60 bytes @ 0x08000184) - Data: DF F8 0C D0 00 F0 B2 FC 00 48 00 47 39 6F 00 08 ... returns 0x3C (0004ms, 691272ms total)
  78. T5690 16775:263 JLINK_ReadMemEx(0x08000184, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08000184) - Data: DF F8 returns 0x02 (0000ms, 691272ms total)
  79. T5690 16775:263 JLINK_ReadMemEx(0x08000186, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08000186) - Data: 0C D0 returns 0x02 (0000ms, 691272ms total)
  80. T5690 16775:263 JLINK_ReadMemEx(0x08000188, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x080001C0) -- Updating C cache (64 bytes @ 0x080001C0) -- Read from C cache (60 bytes @ 0x08000188) - Data: 00 F0 B2 FC 00 48 00 47 39 6F 00 08 F0 9C 01 20 ... returns 0x3C (0004ms, 691276ms total)
  81. T5690 16775:267 JLINK_ReadMemEx(0x08000188, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08000188) - Data: 00 F0 returns 0x02 (0000ms, 691276ms total)
  82. T5690 16775:267 JLINK_ReadMemEx(0x0800018A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800018A) - Data: B2 FC returns 0x02 (0000ms, 691276ms total)
  83. T5690 16775:267 JLINK_ReadMemEx(0x0800018C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800018C) - Data: 00 48 00 47 39 6F 00 08 F0 9C 01 20 06 48 80 47 ... returns 0x3C (0000ms, 691276ms total)
  84. T5690 16775:267 JLINK_ReadMemEx(0x0800018C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800018C) - Data: 00 48 returns 0x02 (0000ms, 691276ms total)
  85. T5690 16775:267 JLINK_ReadMemEx(0x0800018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800018E) - Data: 00 47 returns 0x02 (0000ms, 691276ms total)
  86. T5690 16775:267 JLINK_ReadMemEx(0x0800018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800018E) - Data: 00 47 returns 0x02 (0000ms, 691276ms total)
  87. T5690 16775:267 JLINK_ReadMemEx(0x08000190, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08000190) - Data: 39 6F 00 08 F0 9C 01 20 06 48 80 47 06 48 00 47 ... returns 0x3C (0000ms, 691276ms total)
  88. T5690 16775:267 JLINK_ReadMemEx(0x08000190, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08000190) - Data: 39 6F returns 0x02 (0000ms, 691276ms total)
  89. T5690 16775:267 JLINK_ReadMemEx(0x08000194, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08000194) - Data: F0 9C 01 20 06 48 80 47 06 48 00 47 FE E7 FE E7 ... returns 0x3C (0000ms, 691276ms total)
  90. T5690 16775:267 JLINK_ReadMemEx(0x08000194, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08000194) - Data: F0 9C returns 0x02 (0000ms, 691276ms total)
  91. T5690 16775:267 JLINK_ReadMemEx(0x08000196, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08000196) - Data: 01 20 returns 0x02 (0000ms, 691276ms total)
  92. T5690 16775:267 JLINK_ReadMemEx(0x08000196, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08000196) - Data: 01 20 returns 0x02 (0000ms, 691276ms total)
  93. T5690 16775:267 JLINK_ReadMemEx(0x08000198, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08000198) - Data: 06 48 80 47 06 48 00 47 FE E7 FE E7 FE E7 FE E7 ... returns 0x3C (0000ms, 691276ms total)
  94. T5690 16775:267 JLINK_ReadMemEx(0x08000198, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08000198) - Data: 06 48 returns 0x02 (0000ms, 691276ms total)
  95. T5690 16775:267 JLINK_ReadMemEx(0x08000198, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08000198) - Data: 06 48 80 47 06 48 00 47 FE E7 FE E7 FE E7 FE E7 ... returns 0x3C (0000ms, 691276ms total)
  96. T5690 16775:267 JLINK_ReadMemEx(0x08000198, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08000198) - Data: 06 48 returns 0x02 (0000ms, 691276ms total)
  97. T5690 16775:267 JLINK_ReadMemEx(0x0800019A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800019A) - Data: 80 47 returns 0x02 (0000ms, 691276ms total)
  98. T5690 16775:267 JLINK_ReadMemEx(0x0800019A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800019A) - Data: 80 47 returns 0x02 (0000ms, 691276ms total)
  99. T5690 16775:267 JLINK_ReadMemEx(0x0800019C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800019C) - Data: 06 48 00 47 FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 ... returns 0x3C (0000ms, 691276ms total)
  100. T5690 16775:267 JLINK_ReadMemEx(0x0800019C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800019C) - Data: 06 48 returns 0x02 (0000ms, 691276ms total)
  101. T5690 16775:267 JLINK_ReadMemEx(0x0800019C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800019C) - Data: 06 48 00 47 FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 ... returns 0x3C (0000ms, 691276ms total)
  102. T5690 16775:267 JLINK_ReadMemEx(0x0800019C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800019C) - Data: 06 48 returns 0x02 (0000ms, 691276ms total)
  103. T5690 16775:267 JLINK_ReadMemEx(0x0800019E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800019E) - Data: 00 47 returns 0x02 (0000ms, 691276ms total)
  104. T5690 16776:723 JLINK_ReadReg(R0) returns 0x00000000 (0001ms, 691277ms total)
  105. T5690 16776:724 JLINK_ReadReg(R1) returns 0x00000000 (0000ms, 691277ms total)
  106. T5690 16776:724 JLINK_ReadReg(R2) returns 0x00000000 (0000ms, 691277ms total)
  107. T5690 16776:724 JLINK_ReadReg(R3) returns 0x00000000 (0000ms, 691277ms total)
  108. T5690 16776:724 JLINK_ReadReg(R4) returns 0x00000000 (0000ms, 691277ms total)
  109. T5690 16776:724 JLINK_ReadReg(R5) returns 0x00000000 (0000ms, 691277ms total)
  110. T5690 16776:724 JLINK_ReadReg(R6) returns 0x00000000 (0000ms, 691277ms total)
  111. T5690 16776:724 JLINK_ReadReg(R7) returns 0x00000000 (0000ms, 691277ms total)
  112. T5690 16776:724 JLINK_ReadReg(R8) returns 0x00000000 (0000ms, 691277ms total)
  113. T5690 16776:724 JLINK_ReadReg(R9) returns 0x00000000 (0000ms, 691277ms total)
  114. T5690 16776:724 JLINK_ReadReg(R10) returns 0x00000000 (0000ms, 691277ms total)
  115. T5690 16776:724 JLINK_ReadReg(R11) returns 0x00000000 (0000ms, 691277ms total)
  116. T5690 16776:724 JLINK_ReadReg(R12) returns 0x00000000 (0000ms, 691277ms total)
  117. T5690 16776:724 JLINK_ReadReg(R13 (SP)) returns 0x20019CF0 (0000ms, 691277ms total)
  118. T5690 16776:724 JLINK_ReadReg(R14) returns 0xFFFFFFFF (0000ms, 691277ms total)
  119. T5690 16776:724 JLINK_ReadReg(R15 (PC)) returns 0x08000198 (0000ms, 691277ms total)
  120. T5690 16776:724 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 691277ms total)
  121. T5690 16776:724 JLINK_ReadReg(MSP) returns 0x20019CF0 (0000ms, 691277ms total)
  122. T5690 16776:724 JLINK_ReadReg(PSP) returns 0x00000000 (0000ms, 691277ms total)
  123. T5690 16776:724 JLINK_ReadReg(CFBP) returns 0x00000000 (0000ms, 691277ms total)
  124. T5690 16776:753 JLINK_ReadMemEx(0x00000000, 0x0490 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x40023844) -- CPU_ReadMem(384 bytes @ 0x08000000) -- Updating C cache (384 bytes @ 0x08000000) -- CPU_ReadMem(704 bytes @ 0x08000200) -- Updating C cache (704 bytes @ 0x08000200) -- Read from C cache (1168 bytes @ 0x08000000) - Data: F0 9C 01 20 99 01 00 08 61 21 00 08 BB 19 00 08 ... returns 0x490 (0042ms, 691319ms total)
  125. T5AF8 16776:816 JLINK_ReadMemEx(0x08000198, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08000198) - Data: 06 48 returns 0x02 (0001ms, 691320ms total)
  126. T5AF8 16776:817 JLINK_SetBPEx(Addr = 0x08006F38, Type = 0xFFFFFFF2) returns 0x00000001 (0000ms, 691320ms total)
  127. T5AF8 16776:817 JLINK_SetBPEx(Addr = 0x08004D60, Type = 0xFFFFFFF2) returns 0x00000002 (0000ms, 691320ms total)
  128. T5AF8 16776:817 JLINK_SetBPEx(Addr = 0x08004AB6, Type = 0xFFFFFFF2) returns 0x00000003 (0000ms, 691320ms total)
  129. T5AF8 16776:817 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU_WriteMem(4 bytes @ 0xE0002014) -- CPU_WriteMem(4 bytes @ 0xE0002018) -- CPU_WriteMem(4 bytes @ 0xE000201C) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0022ms, 691342ms total)
  130. T5AF8 16776:940 JLINK_IsHalted() returns TRUE (0015ms, 691358ms total)
  131. T5AF8 16776:955 JLINK_Halt() returns 0x00 (0000ms, 691343ms total)
  132. T5AF8 16776:955 JLINK_IsHalted() returns TRUE (0000ms, 691343ms total)
  133. T5AF8 16776:955 JLINK_IsHalted() returns TRUE (0000ms, 691343ms total)
  134. T5AF8 16776:955 JLINK_IsHalted() returns TRUE (0001ms, 691344ms total)
  135. T5AF8 16776:956 JLINK_ReadReg(R15 (PC)) returns 0x08006F38 (0000ms, 691343ms total)
  136. T5AF8 16776:956 JLINK_ReadReg(XPSR) returns 0x61000000 (0000ms, 691343ms total)
  137. T5AF8 16776:956 JLINK_ClrBPEx(BPHandle = 0x00000001) returns 0x00 (0000ms, 691343ms total)
  138. T5AF8 16776:956 JLINK_ClrBPEx(BPHandle = 0x00000002) returns 0x00 (0000ms, 691343ms total)
  139. T5AF8 16776:956 JLINK_ClrBPEx(BPHandle = 0x00000003) returns 0x00 (0000ms, 691343ms total)
  140. T5AF8 16776:956 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 02 00 00 00 returns 1 (0001ms, 691344ms total)
  141. T5AF8 16776:957 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00 returns 1 (0001ms, 691345ms total)
  142. T5AF8 16776:958 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 02 00 00 returns 1 (0001ms, 691346ms total)
  143. T5AF8 16776:959 JLINK_ReadMemU32(0xE0001048, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001048) - Data: 00 00 00 00 returns 1 (0001ms, 691347ms total)
  144. T5AF8 16776:960 JLINK_ReadMemU32(0xE0001058, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001058) - Data: 00 00 00 00 returns 1 (0002ms, 691349ms total)
  145. T5AF8 16776:962 JLINK_ReadReg(R0) returns 0x08006F39 (0000ms, 691349ms total)
  146. T5AF8 16776:962 JLINK_ReadReg(R1) returns 0x20019CF0 (0000ms, 691349ms total)
  147. T5AF8 16776:962 JLINK_ReadReg(R2) returns 0x00000000 (0000ms, 691349ms total)
  148. T5AF8 16776:962 JLINK_ReadReg(R3) returns 0x080041C1 (0000ms, 691349ms total)
  149. T5AF8 16776:962 JLINK_ReadReg(R4) returns 0x08032708 (0000ms, 691349ms total)
  150. T5AF8 16776:962 JLINK_ReadReg(R5) returns 0x08032708 (0000ms, 691349ms total)
  151. T5AF8 16776:962 JLINK_ReadReg(R6) returns 0x00000000 (0000ms, 691349ms total)
  152. T5AF8 16776:962 JLINK_ReadReg(R7) returns 0x00000000 (0000ms, 691349ms total)
  153. T5AF8 16776:962 JLINK_ReadReg(R8) returns 0x00000000 (0000ms, 691349ms total)
  154. T5AF8 16776:962 JLINK_ReadReg(R9) returns 0x00000000 (0000ms, 691349ms total)
  155. T5AF8 16776:962 JLINK_ReadReg(R10) returns 0x00000000 (0000ms, 691349ms total)
  156. T5AF8 16776:962 JLINK_ReadReg(R11) returns 0x00000000 (0000ms, 691349ms total)
  157. T5AF8 16776:962 JLINK_ReadReg(R12) returns 0x00000000 (0000ms, 691349ms total)
  158. T5AF8 16776:962 JLINK_ReadReg(R13 (SP)) returns 0x20019CF0 (0000ms, 691349ms total)
  159. T5AF8 16776:962 JLINK_ReadReg(R14) returns 0x08000B0D (0000ms, 691349ms total)
  160. T5AF8 16776:962 JLINK_ReadReg(R15 (PC)) returns 0x08006F38 (0000ms, 691349ms total)
  161. T5AF8 16776:962 JLINK_ReadReg(XPSR) returns 0x61000000 (0000ms, 691349ms total)
  162. T5AF8 16776:962 JLINK_ReadReg(MSP) returns 0x20019CF0 (0000ms, 691349ms total)
  163. T5AF8 16776:962 JLINK_ReadReg(PSP) returns 0x00000000 (0000ms, 691349ms total)
  164. T5AF8 16776:962 JLINK_ReadReg(CFBP) returns 0x00000000 (0000ms, 691349ms total)
  165. T5690 16776:964 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001004) - Data: 4B C0 02 00 returns 1 (0001ms, 691350ms total)
  166. T5690 16776:968 JLINK_ReadMemEx(0x08006E38, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x08006E00) -- Updating C cache (128 bytes @ 0x08006E00) -- Read from C cache (60 bytes @ 0x08006E38) - Data: D0 88 01 EB 41 04 05 EB 84 04 20 81 00 20 01 EB ... returns 0x3C (0007ms, 691357ms total)
  167. T5690 16776:975 JLINK_ReadMemEx(0x08006E38, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E38) - Data: D0 88 returns 0x02 (0000ms, 691357ms total)
  168. T5690 16776:975 JLINK_ReadMemEx(0x08006E3A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E3A) - Data: 01 EB returns 0x02 (0000ms, 691357ms total)
  169. T5690 16776:975 JLINK_ReadMemEx(0x08006E3A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E3A) - Data: 01 EB returns 0x02 (0000ms, 691357ms total)
  170. T5690 16776:975 JLINK_ReadMemEx(0x08006E3C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006E3C) - Data: 41 04 05 EB 84 04 20 81 00 20 01 EB 41 04 05 EB ... returns 0x3C (0000ms, 691357ms total)
  171. T5690 16776:975 JLINK_ReadMemEx(0x08006E3C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E3C) - Data: 41 04 returns 0x02 (0000ms, 691357ms total)
  172. T5690 16776:975 JLINK_ReadMemEx(0x08006E3E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E3E) - Data: 05 EB returns 0x02 (0000ms, 691357ms total)
  173. T5690 16776:975 JLINK_ReadMemEx(0x08006E40, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006E40) - Data: 84 04 20 81 00 20 01 EB 41 04 05 EB 84 04 60 81 ... returns 0x3C (0000ms, 691357ms total)
  174. T5690 16776:975 JLINK_ReadMemEx(0x08006E40, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E40) - Data: 84 04 returns 0x02 (0000ms, 691357ms total)
  175. T5690 16776:975 JLINK_ReadMemEx(0x08006E42, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E42) - Data: 20 81 returns 0x02 (0000ms, 691357ms total)
  176. T5690 16776:975 JLINK_ReadMemEx(0x08006E44, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006E44) - Data: 00 20 01 EB 41 04 05 EB 84 04 60 81 43 B1 01 EB ... returns 0x3C (0000ms, 691357ms total)
  177. T5690 16776:975 JLINK_ReadMemEx(0x08006E44, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E44) - Data: 00 20 returns 0x02 (0000ms, 691357ms total)
  178. T5690 16776:975 JLINK_ReadMemEx(0x08006E44, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006E44) - Data: 00 20 01 EB 41 04 05 EB 84 04 60 81 43 B1 01 EB ... returns 0x3C (0000ms, 691357ms total)
  179. T5690 16776:975 JLINK_ReadMemEx(0x08006E44, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E44) - Data: 00 20 returns 0x02 (0000ms, 691357ms total)
  180. T5690 16776:975 JLINK_ReadMemEx(0x08006E46, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E46) - Data: 01 EB returns 0x02 (0000ms, 691357ms total)
  181. T5690 16776:975 JLINK_ReadMemEx(0x08006E46, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E46) - Data: 01 EB returns 0x02 (0000ms, 691357ms total)
  182. T5690 16776:975 JLINK_ReadMemEx(0x08006E48, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08006E80) -- Updating C cache (64 bytes @ 0x08006E80) -- Read from C cache (60 bytes @ 0x08006E48) - Data: 41 04 05 EB 84 04 60 81 43 B1 01 EB 41 00 0D 4C ... returns 0x3C (0003ms, 691360ms total)
  183. T5690 16776:978 JLINK_ReadMemEx(0x08006E48, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E48) - Data: 41 04 returns 0x02 (0000ms, 691360ms total)
  184. T5690 16776:978 JLINK_ReadMemEx(0x08006E4A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E4A) - Data: 05 EB returns 0x02 (0000ms, 691360ms total)
  185. T5690 16776:978 JLINK_ReadMemEx(0x08006E4C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006E4C) - Data: 84 04 60 81 43 B1 01 EB 41 00 0D 4C 04 EB 80 00 ... returns 0x3C (0000ms, 691360ms total)
  186. T5690 16776:978 JLINK_ReadMemEx(0x08006E4C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E4C) - Data: 84 04 returns 0x02 (0000ms, 691360ms total)
  187. T5690 16776:978 JLINK_ReadMemEx(0x08006E4E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E4E) - Data: 60 81 returns 0x02 (0000ms, 691360ms total)
  188. T5690 16776:978 JLINK_ReadMemEx(0x08006E50, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006E50) - Data: 43 B1 01 EB 41 00 0D 4C 04 EB 80 00 40 89 08 B1 ... returns 0x3C (0000ms, 691360ms total)
  189. T5690 16776:978 JLINK_ReadMemEx(0x08006E50, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E50) - Data: 43 B1 returns 0x02 (0000ms, 691360ms total)
  190. T5690 16776:978 JLINK_ReadMemEx(0x08006E50, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006E50) - Data: 43 B1 01 EB 41 00 0D 4C 04 EB 80 00 40 89 08 B1 ... returns 0x3C (0000ms, 691360ms total)
  191. T5690 16776:978 JLINK_ReadMemEx(0x08006E50, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E50) - Data: 43 B1 returns 0x02 (0000ms, 691360ms total)
  192. T5690 16776:978 JLINK_ReadMemEx(0x08006E52, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E52) - Data: 01 EB returns 0x02 (0000ms, 691360ms total)
  193. T5690 16776:978 JLINK_ReadMemEx(0x08006E52, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E52) - Data: 01 EB returns 0x02 (0000ms, 691360ms total)
  194. T5690 16776:978 JLINK_ReadMemEx(0x08006E54, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006E54) - Data: 41 00 0D 4C 04 EB 80 00 40 89 08 B1 00 20 DC E7 ... returns 0x3C (0000ms, 691360ms total)
  195. T5690 16776:978 JLINK_ReadMemEx(0x08006E54, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E54) - Data: 41 00 returns 0x02 (0000ms, 691360ms total)
  196. T5690 16776:978 JLINK_ReadMemEx(0x08006E56, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E56) - Data: 0D 4C returns 0x02 (0000ms, 691360ms total)
  197. T5690 16776:978 JLINK_ReadMemEx(0x08006E58, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006E58) - Data: 04 EB 80 00 40 89 08 B1 00 20 DC E7 13 B1 4F F4 ... returns 0x3C (0000ms, 691360ms total)
  198. T5690 16776:978 JLINK_ReadMemEx(0x08006E58, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E58) - Data: 04 EB returns 0x02 (0000ms, 691360ms total)
  199. T5690 16776:978 JLINK_ReadMemEx(0x08006E58, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006E58) - Data: 04 EB 80 00 40 89 08 B1 00 20 DC E7 13 B1 4F F4 ... returns 0x3C (0000ms, 691360ms total)
  200. T5690 16776:978 JLINK_ReadMemEx(0x08006E58, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E58) - Data: 04 EB returns 0x02 (0000ms, 691360ms total)
  201. T5690 16776:978 JLINK_ReadMemEx(0x08006E5A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E5A) - Data: 80 00 returns 0x02 (0000ms, 691360ms total)
  202. T5690 16776:978 JLINK_ReadMemEx(0x08006E5C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006E5C) - Data: 40 89 08 B1 00 20 DC E7 13 B1 4F F4 80 70 06 E0 ... returns 0x3C (0000ms, 691360ms total)
  203. T5690 16776:978 JLINK_ReadMemEx(0x08006E5C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E5C) - Data: 40 89 returns 0x02 (0000ms, 691360ms total)
  204. T5690 16776:978 JLINK_ReadMemEx(0x08006E5E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E5E) - Data: 08 B1 returns 0x02 (0000ms, 691360ms total)
  205. T5690 16776:978 JLINK_ReadMemEx(0x08006E5E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E5E) - Data: 08 B1 returns 0x02 (0000ms, 691360ms total)
  206. T5690 16776:978 JLINK_ReadMemEx(0x08006E60, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006E60) - Data: 00 20 DC E7 13 B1 4F F4 80 70 06 E0 01 EB 41 00 ... returns 0x3C (0000ms, 691360ms total)
  207. T5690 16776:978 JLINK_ReadMemEx(0x08006E60, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E60) - Data: 00 20 returns 0x02 (0000ms, 691360ms total)
  208. T5690 16776:978 JLINK_ReadMemEx(0x08006E60, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006E60) - Data: 00 20 DC E7 13 B1 4F F4 80 70 06 E0 01 EB 41 00 ... returns 0x3C (0000ms, 691360ms total)
  209. T5690 16776:978 JLINK_ReadMemEx(0x08006E60, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E60) - Data: 00 20 returns 0x02 (0000ms, 691360ms total)
  210. T5690 16776:978 JLINK_ReadMemEx(0x08006E62, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E62) - Data: DC E7 returns 0x02 (0000ms, 691360ms total)
  211. T5690 16776:978 JLINK_ReadMemEx(0x08006E62, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E62) - Data: DC E7 returns 0x02 (0000ms, 691360ms total)
  212. T5690 16776:978 JLINK_ReadMemEx(0x08006E64, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006E64) - Data: 13 B1 4F F4 80 70 06 E0 01 EB 41 00 06 4C 04 EB ... returns 0x3C (0000ms, 691360ms total)
  213. T5690 16776:978 JLINK_ReadMemEx(0x08006E64, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E64) - Data: 13 B1 returns 0x02 (0000ms, 691360ms total)
  214. T5690 16776:978 JLINK_ReadMemEx(0x08006E64, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006E64) - Data: 13 B1 4F F4 80 70 06 E0 01 EB 41 00 06 4C 04 EB ... returns 0x3C (0000ms, 691360ms total)
  215. T5690 16776:978 JLINK_ReadMemEx(0x08006E64, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E64) - Data: 13 B1 returns 0x02 (0000ms, 691360ms total)
  216. T5690 16776:978 JLINK_ReadMemEx(0x08006E66, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E66) - Data: 4F F4 returns 0x02 (0000ms, 691360ms total)
  217. T5690 16776:978 JLINK_ReadMemEx(0x08006E66, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E66) - Data: 4F F4 returns 0x02 (0000ms, 691360ms total)
  218. T5690 16776:978 JLINK_ReadMemEx(0x08006E68, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006E68) - Data: 80 70 06 E0 01 EB 41 00 06 4C 04 EB 80 00 40 89 ... returns 0x3C (0000ms, 691360ms total)
  219. T5690 16776:978 JLINK_ReadMemEx(0x08006E68, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E68) - Data: 80 70 returns 0x02 (0000ms, 691360ms total)
  220. T5690 16776:978 JLINK_ReadMemEx(0x08006E6A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E6A) - Data: 06 E0 returns 0x02 (0000ms, 691360ms total)
  221. T5690 16776:978 JLINK_ReadMemEx(0x08006E6C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006E6C) - Data: 01 EB 41 00 06 4C 04 EB 80 00 40 89 40 1C 01 EB ... returns 0x3C (0000ms, 691360ms total)
  222. T5690 16776:978 JLINK_ReadMemEx(0x08006E6C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E6C) - Data: 01 EB returns 0x02 (0000ms, 691360ms total)
  223. T5690 16776:978 JLINK_ReadMemEx(0x08006E6C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006E6C) - Data: 01 EB 41 00 06 4C 04 EB 80 00 40 89 40 1C 01 EB ... returns 0x3C (0000ms, 691360ms total)
  224. T5690 16776:978 JLINK_ReadMemEx(0x08006E6C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E6C) - Data: 01 EB returns 0x02 (0000ms, 691360ms total)
  225. T5690 16776:978 JLINK_ReadMemEx(0x08006E6E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E6E) - Data: 41 00 returns 0x02 (0000ms, 691360ms total)
  226. T5690 16776:978 JLINK_ReadMemEx(0x08006E70, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006E70) - Data: 06 4C 04 EB 80 00 40 89 40 1C 01 EB 41 04 03 4D ... returns 0x3C (0000ms, 691360ms total)
  227. T5690 16776:978 JLINK_ReadMemEx(0x08006E70, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E70) - Data: 06 4C returns 0x02 (0000ms, 691360ms total)
  228. T5690 16776:978 JLINK_ReadMemEx(0x08006E72, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E72) - Data: 04 EB returns 0x02 (0000ms, 691360ms total)
  229. T5690 16776:978 JLINK_ReadMemEx(0x08006E72, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E72) - Data: 04 EB returns 0x02 (0000ms, 691360ms total)
  230. T5690 16776:978 JLINK_ReadMemEx(0x08006E74, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006E74) - Data: 80 00 40 89 40 1C 01 EB 41 04 03 4D 05 EB 84 04 ... returns 0x3C (0000ms, 691360ms total)
  231. T5690 16776:978 JLINK_ReadMemEx(0x08006E74, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E74) - Data: 80 00 returns 0x02 (0000ms, 691360ms total)
  232. T5690 16776:978 JLINK_ReadMemEx(0x08006E76, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E76) - Data: 40 89 returns 0x02 (0000ms, 691360ms total)
  233. T5690 16776:978 JLINK_ReadMemEx(0x08006E78, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006E78) - Data: 40 1C 01 EB 41 04 03 4D 05 EB 84 04 60 81 48 1C ... returns 0x3C (0000ms, 691360ms total)
  234. T5690 16776:978 JLINK_ReadMemEx(0x08006E78, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E78) - Data: 40 1C returns 0x02 (0000ms, 691360ms total)
  235. T5690 16776:978 JLINK_ReadMemEx(0x08006E78, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006E78) - Data: 40 1C 01 EB 41 04 03 4D 05 EB 84 04 60 81 48 1C ... returns 0x3C (0000ms, 691360ms total)
  236. T5690 16776:978 JLINK_ReadMemEx(0x08006E78, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E78) - Data: 40 1C returns 0x02 (0000ms, 691360ms total)
  237. T5690 16776:978 JLINK_ReadMemEx(0x08006E7A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E7A) - Data: 01 EB returns 0x02 (0000ms, 691360ms total)
  238. T5690 16776:978 JLINK_ReadMemEx(0x08006E7A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E7A) - Data: 01 EB returns 0x02 (0000ms, 691360ms total)
  239. T5690 16776:978 JLINK_ReadMemEx(0x08006E7C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006E7C) - Data: 41 04 03 4D 05 EB 84 04 60 81 48 1C C9 E7 00 00 ... returns 0x3C (0000ms, 691360ms total)
  240. T5690 16776:978 JLINK_ReadMemEx(0x08006E7C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E7C) - Data: 41 04 returns 0x02 (0000ms, 691360ms total)
  241. T5690 16776:978 JLINK_ReadMemEx(0x08006E7E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E7E) - Data: 03 4D returns 0x02 (0000ms, 691360ms total)
  242. T5690 16776:978 JLINK_ReadMemEx(0x08006E80, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006E80) - Data: 05 EB 84 04 60 81 48 1C C9 E7 00 00 EC 0A 01 20 ... returns 0x3C (0000ms, 691360ms total)
  243. T5690 16776:978 JLINK_ReadMemEx(0x08006E80, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E80) - Data: 05 EB returns 0x02 (0000ms, 691360ms total)
  244. T5690 16776:978 JLINK_ReadMemEx(0x08006E80, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006E80) - Data: 05 EB 84 04 60 81 48 1C C9 E7 00 00 EC 0A 01 20 ... returns 0x3C (0000ms, 691360ms total)
  245. T5690 16776:978 JLINK_ReadMemEx(0x08006E80, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E80) - Data: 05 EB returns 0x02 (0000ms, 691360ms total)
  246. T5690 16776:978 JLINK_ReadMemEx(0x08006E82, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E82) - Data: 84 04 returns 0x02 (0001ms, 691361ms total)
  247. T5690 16776:979 JLINK_ReadMemEx(0x08006E84, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006E84) - Data: 60 81 48 1C C9 E7 00 00 EC 0A 01 20 2D E9 F0 41 ... returns 0x3C (0000ms, 691361ms total)
  248. T5690 16776:979 JLINK_ReadMemEx(0x08006E84, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E84) - Data: 60 81 returns 0x02 (0000ms, 691361ms total)
  249. T5690 16776:979 JLINK_ReadMemEx(0x08006E86, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E86) - Data: 48 1C returns 0x02 (0000ms, 691361ms total)
  250. T5690 16776:979 JLINK_ReadMemEx(0x08006E86, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E86) - Data: 48 1C returns 0x02 (0000ms, 691361ms total)
  251. T5690 16776:979 JLINK_ReadMemEx(0x08006E88, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08006EC0) -- Updating C cache (64 bytes @ 0x08006EC0) -- Read from C cache (60 bytes @ 0x08006E88) - Data: C9 E7 00 00 EC 0A 01 20 2D E9 F0 41 0B 30 20 F0 ... returns 0x3C (0004ms, 691365ms total)
  252. T5690 16776:983 JLINK_ReadMemEx(0x08006E88, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E88) - Data: C9 E7 returns 0x02 (0000ms, 691365ms total)
  253. T5690 16776:983 JLINK_ReadMemEx(0x08006E88, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006E88) - Data: C9 E7 00 00 EC 0A 01 20 2D E9 F0 41 0B 30 20 F0 ... returns 0x3C (0000ms, 691365ms total)
  254. T5690 16776:983 JLINK_ReadMemEx(0x08006E88, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E88) - Data: C9 E7 returns 0x02 (0000ms, 691365ms total)
  255. T5690 16776:983 JLINK_ReadMemEx(0x08006E8A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E8A) - Data: 00 00 returns 0x02 (0000ms, 691365ms total)
  256. T5690 16776:983 JLINK_ReadMemEx(0x08006E90, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006E90) - Data: 2D E9 F0 41 0B 30 20 F0 07 06 10 4D 19 E0 20 68 ... returns 0x3C (0000ms, 691365ms total)
  257. T5690 16776:983 JLINK_ReadMemEx(0x08006E90, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E90) - Data: 2D E9 returns 0x02 (0000ms, 691365ms total)
  258. T5690 16776:983 JLINK_ReadMemEx(0x08006E92, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E92) - Data: F0 41 returns 0x02 (0000ms, 691365ms total)
  259. T5690 16776:983 JLINK_ReadMemEx(0x08006E94, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006E94) - Data: 0B 30 20 F0 07 06 10 4D 19 E0 20 68 B0 42 15 D3 ... returns 0x3C (0000ms, 691365ms total)
  260. T5690 16776:983 JLINK_ReadMemEx(0x08006E94, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E94) - Data: 0B 30 returns 0x02 (0000ms, 691365ms total)
  261. T5690 16776:983 JLINK_ReadMemEx(0x08006E96, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E96) - Data: 20 F0 returns 0x02 (0000ms, 691365ms total)
  262. T5690 16776:983 JLINK_ReadMemEx(0x08006E96, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E96) - Data: 20 F0 returns 0x02 (0000ms, 691365ms total)
  263. T5690 16776:983 JLINK_ReadMemEx(0x08006E98, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006E98) - Data: 07 06 10 4D 19 E0 20 68 B0 42 15 D3 B0 42 0A D9 ... returns 0x3C (0000ms, 691365ms total)
  264. T5690 16776:983 JLINK_ReadMemEx(0x08006E98, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E98) - Data: 07 06 returns 0x02 (0000ms, 691365ms total)
  265. T5690 16776:983 JLINK_ReadMemEx(0x08006E9A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E9A) - Data: 10 4D returns 0x02 (0000ms, 691365ms total)
  266. T5690 16776:983 JLINK_ReadMemEx(0x08006E9C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006E9C) - Data: 19 E0 20 68 B0 42 15 D3 B0 42 0A D9 87 1B 20 1D ... returns 0x3C (0000ms, 691365ms total)
  267. T5690 16776:983 JLINK_ReadMemEx(0x08006E9C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E9C) - Data: 19 E0 returns 0x02 (0000ms, 691365ms total)
  268. T5690 16776:983 JLINK_ReadMemEx(0x08006E9C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006E9C) - Data: 19 E0 20 68 B0 42 15 D3 B0 42 0A D9 87 1B 20 1D ... returns 0x3C (0000ms, 691365ms total)
  269. T5690 16776:983 JLINK_ReadMemEx(0x08006E9C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E9C) - Data: 19 E0 returns 0x02 (0000ms, 691365ms total)
  270. T5690 16776:983 JLINK_ReadMemEx(0x08006E9E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E9E) - Data: 20 68 returns 0x02 (0000ms, 691365ms total)
  271. T5690 16776:983 JLINK_ReadMemEx(0x08006E9E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006E9E) - Data: 20 68 returns 0x02 (0000ms, 691365ms total)
  272. T5690 16776:983 JLINK_ReadMemEx(0x08006EA0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006EA0) - Data: B0 42 15 D3 B0 42 0A D9 87 1B 20 1D D4 F8 04 80 ... returns 0x3C (0000ms, 691365ms total)
  273. T5690 16776:983 JLINK_ReadMemEx(0x08006EA0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006EA0) - Data: B0 42 returns 0x02 (0000ms, 691365ms total)
  274. T5690 16776:983 JLINK_ReadMemEx(0x08006EA0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006EA0) - Data: B0 42 15 D3 B0 42 0A D9 87 1B 20 1D D4 F8 04 80 ... returns 0x3C (0000ms, 691365ms total)
  275. T5690 16776:983 JLINK_ReadMemEx(0x08006EA0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006EA0) - Data: B0 42 returns 0x02 (0000ms, 691365ms total)
  276. T5690 16776:983 JLINK_ReadMemEx(0x08006EA2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006EA2) - Data: 15 D3 returns 0x02 (0000ms, 691365ms total)
  277. T5690 16776:983 JLINK_ReadMemEx(0x08006EA2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006EA2) - Data: 15 D3 returns 0x02 (0000ms, 691365ms total)
  278. T5690 16776:983 JLINK_ReadMemEx(0x08006EA4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006EA4) - Data: B0 42 0A D9 87 1B 20 1D D4 F8 04 80 F9 F7 0D FA ... returns 0x3C (0000ms, 691365ms total)
  279. T5690 16776:983 JLINK_ReadMemEx(0x08006EA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006EA4) - Data: B0 42 returns 0x02 (0001ms, 691366ms total)
  280. T5690 16776:984 JLINK_ReadMemEx(0x08006EA4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006EA4) - Data: B0 42 0A D9 87 1B 20 1D D4 F8 04 80 F9 F7 0D FA ... returns 0x3C (0000ms, 691366ms total)
  281. T5690 16776:984 JLINK_ReadMemEx(0x08006EA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006EA4) - Data: B0 42 returns 0x02 (0000ms, 691366ms total)
  282. T5690 16776:984 JLINK_ReadMemEx(0x08006EA6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006EA6) - Data: 0A D9 returns 0x02 (0000ms, 691366ms total)
  283. T5690 16776:984 JLINK_ReadMemEx(0x08006EA6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006EA6) - Data: 0A D9 returns 0x02 (0000ms, 691366ms total)
  284. T5690 16776:984 JLINK_ReadMemEx(0x08006EA8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006EA8) - Data: 87 1B 20 1D D4 F8 04 80 F9 F7 0D FA A0 19 C0 E9 ... returns 0x3C (0000ms, 691366ms total)
  285. T5690 16776:984 JLINK_ReadMemEx(0x08006EA8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006EA8) - Data: 87 1B returns 0x02 (0000ms, 691366ms total)
  286. T5690 16776:984 JLINK_ReadMemEx(0x08006EA8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006EA8) - Data: 87 1B 20 1D D4 F8 04 80 F9 F7 0D FA A0 19 C0 E9 ... returns 0x3C (0000ms, 691366ms total)
  287. T5690 16776:984 JLINK_ReadMemEx(0x08006EA8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006EA8) - Data: 87 1B returns 0x02 (0000ms, 691366ms total)
  288. T5690 16776:984 JLINK_ReadMemEx(0x08006EAA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006EAA) - Data: 20 1D returns 0x02 (0000ms, 691366ms total)
  289. T5690 16776:984 JLINK_ReadMemEx(0x08006EAA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006EAA) - Data: 20 1D returns 0x02 (0000ms, 691366ms total)
  290. T5690 16776:984 JLINK_ReadMemEx(0x08006EAC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006EAC) - Data: D4 F8 04 80 F9 F7 0D FA A0 19 C0 E9 00 78 28 60 ... returns 0x3C (0000ms, 691366ms total)
  291. T5690 16776:984 JLINK_ReadMemEx(0x08006EAC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006EAC) - Data: D4 F8 returns 0x02 (0000ms, 691366ms total)
  292. T5690 16776:984 JLINK_ReadMemEx(0x08006EAC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006EAC) - Data: D4 F8 04 80 F9 F7 0D FA A0 19 C0 E9 00 78 28 60 ... returns 0x3C (0000ms, 691366ms total)
  293. T5690 16776:984 JLINK_ReadMemEx(0x08006EAC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006EAC) - Data: D4 F8 returns 0x02 (0000ms, 691366ms total)
  294. T5690 16776:984 JLINK_ReadMemEx(0x08006EAE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006EAE) - Data: 04 80 returns 0x02 (0000ms, 691366ms total)
  295. T5690 16776:984 JLINK_ReadMemEx(0x08006EB0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006EB0) - Data: F9 F7 0D FA A0 19 C0 E9 00 78 28 60 04 E0 60 68 ... returns 0x3C (0000ms, 691366ms total)
  296. T5690 16776:984 JLINK_ReadMemEx(0x08006EB0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006EB0) - Data: F9 F7 returns 0x02 (0000ms, 691366ms total)
  297. T5690 16776:984 JLINK_ReadMemEx(0x08006EB2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006EB2) - Data: 0D FA returns 0x02 (0000ms, 691366ms total)
  298. T5690 16776:984 JLINK_ReadMemEx(0x08006EB4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006EB4) - Data: A0 19 C0 E9 00 78 28 60 04 E0 60 68 28 60 20 1D ... returns 0x3C (0000ms, 691366ms total)
  299. T5690 16776:984 JLINK_ReadMemEx(0x08006EB4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006EB4) - Data: A0 19 returns 0x02 (0000ms, 691366ms total)
  300. T5690 16776:984 JLINK_ReadMemEx(0x08006EB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006EB6) - Data: C0 E9 returns 0x02 (0000ms, 691366ms total)
  301. T5690 16776:984 JLINK_ReadMemEx(0x08006EB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006EB6) - Data: C0 E9 returns 0x02 (0000ms, 691366ms total)
  302. T5690 16776:984 JLINK_ReadMemEx(0x08006EB8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006EB8) - Data: 00 78 28 60 04 E0 60 68 28 60 20 1D F9 F7 03 FA ... returns 0x3C (0000ms, 691366ms total)
  303. T5690 16776:984 JLINK_ReadMemEx(0x08006EB8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006EB8) - Data: 00 78 returns 0x02 (0000ms, 691366ms total)
  304. T5690 16776:984 JLINK_ReadMemEx(0x08006EBA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006EBA) - Data: 28 60 returns 0x02 (0000ms, 691366ms total)
  305. T5690 16776:984 JLINK_ReadMemEx(0x08006EBC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006EBC) - Data: 04 E0 60 68 28 60 20 1D F9 F7 03 FA 20 1D 26 60 ... returns 0x3C (0000ms, 691366ms total)
  306. T5690 16776:984 JLINK_ReadMemEx(0x08006EBC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006EBC) - Data: 04 E0 returns 0x02 (0000ms, 691366ms total)
  307. T5690 16776:984 JLINK_ReadMemEx(0x08006EBC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006EBC) - Data: 04 E0 60 68 28 60 20 1D F9 F7 03 FA 20 1D 26 60 ... returns 0x3C (0000ms, 691366ms total)
  308. T5690 16776:984 JLINK_ReadMemEx(0x08006EBC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006EBC) - Data: 04 E0 returns 0x02 (0000ms, 691366ms total)
  309. T5690 16776:984 JLINK_ReadMemEx(0x08006EBE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006EBE) - Data: 60 68 returns 0x02 (0000ms, 691366ms total)
  310. T5690 16776:984 JLINK_ReadMemEx(0x08006EBE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006EBE) - Data: 60 68 returns 0x02 (0000ms, 691366ms total)
  311. T5690 16776:984 JLINK_ReadMemEx(0x08006EC0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006EC0) - Data: 28 60 20 1D F9 F7 03 FA 20 1D 26 60 BD E8 F0 81 ... returns 0x3C (0000ms, 691366ms total)
  312. T5690 16776:984 JLINK_ReadMemEx(0x08006EC0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006EC0) - Data: 28 60 returns 0x02 (0000ms, 691366ms total)
  313. T5690 16776:984 JLINK_ReadMemEx(0x08006EC0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006EC0) - Data: 28 60 20 1D F9 F7 03 FA 20 1D 26 60 BD E8 F0 81 ... returns 0x3C (0000ms, 691366ms total)
  314. T5690 16776:984 JLINK_ReadMemEx(0x08006EC0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006EC0) - Data: 28 60 returns 0x02 (0000ms, 691366ms total)
  315. T5690 16776:984 JLINK_ReadMemEx(0x08006EC2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006EC2) - Data: 20 1D returns 0x02 (0000ms, 691366ms total)
  316. T5690 16776:984 JLINK_ReadMemEx(0x08006EC2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006EC2) - Data: 20 1D returns 0x02 (0000ms, 691366ms total)
  317. T5690 16776:984 JLINK_ReadMemEx(0x08006EC4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006EC4) - Data: F9 F7 03 FA 20 1D 26 60 BD E8 F0 81 25 1D 2C 68 ... returns 0x3C (0000ms, 691366ms total)
  318. T5690 16776:984 JLINK_ReadMemEx(0x08006EC4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006EC4) - Data: F9 F7 returns 0x02 (0000ms, 691366ms total)
  319. T5690 16776:984 JLINK_ReadMemEx(0x08006EC4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006EC4) - Data: F9 F7 03 FA 20 1D 26 60 BD E8 F0 81 25 1D 2C 68 ... returns 0x3C (0000ms, 691366ms total)
  320. T5690 16776:984 JLINK_ReadMemEx(0x08006EC4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006EC4) - Data: F9 F7 returns 0x02 (0000ms, 691366ms total)
  321. T5690 16776:984 JLINK_ReadMemEx(0x08006EC6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006EC6) - Data: 03 FA returns 0x02 (0000ms, 691366ms total)
  322. T5690 16776:984 JLINK_ReadMemEx(0x08006EC8, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08006F00) -- Updating C cache (64 bytes @ 0x08006F00) -- Read from C cache (60 bytes @ 0x08006EC8) - Data: 20 1D 26 60 BD E8 F0 81 25 1D 2C 68 00 2C E2 D1 ... returns 0x3C (0004ms, 691370ms total)
  323. T5690 16776:988 JLINK_ReadMemEx(0x08006EC8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006EC8) - Data: 20 1D returns 0x02 (0000ms, 691370ms total)
  324. T5690 16776:988 JLINK_ReadMemEx(0x08006ECA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006ECA) - Data: 26 60 returns 0x02 (0000ms, 691370ms total)
  325. T5690 16776:988 JLINK_ReadMemEx(0x08006ECA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006ECA) - Data: 26 60 returns 0x02 (0000ms, 691370ms total)
  326. T5690 16776:988 JLINK_ReadMemEx(0x08006ECC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006ECC) - Data: BD E8 F0 81 25 1D 2C 68 00 2C E2 D1 00 20 F7 E7 ... returns 0x3C (0000ms, 691370ms total)
  327. T5690 16776:988 JLINK_ReadMemEx(0x08006ECC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006ECC) - Data: BD E8 returns 0x02 (0000ms, 691370ms total)
  328. T5690 16776:988 JLINK_ReadMemEx(0x08006ECC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006ECC) - Data: BD E8 F0 81 25 1D 2C 68 00 2C E2 D1 00 20 F7 E7 ... returns 0x3C (0000ms, 691370ms total)
  329. T5690 16776:988 JLINK_ReadMemEx(0x08006ECC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006ECC) - Data: BD E8 returns 0x02 (0000ms, 691370ms total)
  330. T5690 16776:988 JLINK_ReadMemEx(0x08006ECE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006ECE) - Data: F0 81 returns 0x02 (0000ms, 691370ms total)
  331. T5690 16776:988 JLINK_ReadMemEx(0x08006ED0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006ED0) - Data: 25 1D 2C 68 00 2C E2 D1 00 20 F7 E7 C0 00 00 20 ... returns 0x3C (0000ms, 691370ms total)
  332. T5690 16776:988 JLINK_ReadMemEx(0x08006ED0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006ED0) - Data: 25 1D returns 0x02 (0000ms, 691370ms total)
  333. T5690 16776:988 JLINK_ReadMemEx(0x08006ED2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006ED2) - Data: 2C 68 returns 0x02 (0000ms, 691370ms total)
  334. T5690 16776:988 JLINK_ReadMemEx(0x08006ED2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006ED2) - Data: 2C 68 returns 0x02 (0000ms, 691370ms total)
  335. T5690 16776:988 JLINK_ReadMemEx(0x08006ED4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006ED4) - Data: 00 2C E2 D1 00 20 F7 E7 C0 00 00 20 10 B5 02 46 ... returns 0x3C (0000ms, 691370ms total)
  336. T5690 16776:988 JLINK_ReadMemEx(0x08006ED4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006ED4) - Data: 00 2C returns 0x02 (0000ms, 691370ms total)
  337. T5690 16776:988 JLINK_ReadMemEx(0x08006ED4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006ED4) - Data: 00 2C E2 D1 00 20 F7 E7 C0 00 00 20 10 B5 02 46 ... returns 0x3C (0000ms, 691370ms total)
  338. T5690 16776:988 JLINK_ReadMemEx(0x08006ED4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006ED4) - Data: 00 2C returns 0x02 (0000ms, 691370ms total)
  339. T5690 16776:988 JLINK_ReadMemEx(0x08006ED6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006ED6) - Data: E2 D1 returns 0x02 (0000ms, 691370ms total)
  340. T5690 16776:988 JLINK_ReadMemEx(0x08006ED6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006ED6) - Data: E2 D1 returns 0x02 (0000ms, 691370ms total)
  341. T5690 16776:988 JLINK_ReadMemEx(0x08006ED8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006ED8) - Data: 00 20 F7 E7 C0 00 00 20 10 B5 02 46 8C 7E CB 7E ... returns 0x3C (0000ms, 691370ms total)
  342. T5690 16776:988 JLINK_ReadMemEx(0x08006ED8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006ED8) - Data: 00 20 returns 0x02 (0000ms, 691370ms total)
  343. T5690 16776:988 JLINK_ReadMemEx(0x08006ED8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006ED8) - Data: 00 20 F7 E7 C0 00 00 20 10 B5 02 46 8C 7E CB 7E ... returns 0x3C (0000ms, 691370ms total)
  344. T5690 16776:988 JLINK_ReadMemEx(0x08006ED8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006ED8) - Data: 00 20 returns 0x02 (0000ms, 691370ms total)
  345. T5690 16776:988 JLINK_ReadMemEx(0x08006EDA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006EDA) - Data: F7 E7 returns 0x02 (0000ms, 691370ms total)
  346. T5690 16776:988 JLINK_ReadMemEx(0x08006EDA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006EDA) - Data: F7 E7 returns 0x02 (0000ms, 691370ms total)
  347. T5690 16776:988 JLINK_ReadMemEx(0x08006EDC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006EDC) - Data: C0 00 00 20 10 B5 02 46 8C 7E CB 7E 44 EA 03 20 ... returns 0x3C (0000ms, 691370ms total)
  348. T5690 16776:988 JLINK_ReadMemEx(0x08006EDC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006EDC) - Data: C0 00 returns 0x02 (0000ms, 691370ms total)
  349. T5690 16776:988 JLINK_ReadMemEx(0x08006EE0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006EE0) - Data: 10 B5 02 46 8C 7E CB 7E 44 EA 03 20 13 78 03 2B ... returns 0x3C (0000ms, 691370ms total)
  350. T5690 16776:988 JLINK_ReadMemEx(0x08006EE0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006EE0) - Data: 10 B5 returns 0x02 (0000ms, 691370ms total)
  351. T5690 16776:988 JLINK_ReadMemEx(0x08006EE2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006EE2) - Data: 02 46 returns 0x02 (0000ms, 691370ms total)
  352. T5690 16776:988 JLINK_ReadMemEx(0x08006EE2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006EE2) - Data: 02 46 returns 0x02 (0000ms, 691370ms total)
  353. T5690 16776:988 JLINK_ReadMemEx(0x08006EE4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006EE4) - Data: 8C 7E CB 7E 44 EA 03 20 13 78 03 2B 05 D1 0C 7D ... returns 0x3C (0000ms, 691370ms total)
  354. T5690 16776:988 JLINK_ReadMemEx(0x08006EE4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006EE4) - Data: 8C 7E returns 0x02 (0000ms, 691370ms total)
  355. T5690 16776:988 JLINK_ReadMemEx(0x08006EE4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006EE4) - Data: 8C 7E CB 7E 44 EA 03 20 13 78 03 2B 05 D1 0C 7D ... returns 0x3C (0000ms, 691370ms total)
  356. T5690 16776:988 JLINK_ReadMemEx(0x08006EE4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006EE4) - Data: 8C 7E returns 0x02 (0000ms, 691370ms total)
  357. T5690 16776:988 JLINK_ReadMemEx(0x08006EE6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006EE6) - Data: CB 7E returns 0x02 (0000ms, 691370ms total)
  358. T5690 16776:988 JLINK_ReadMemEx(0x08006EE6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006EE6) - Data: CB 7E returns 0x02 (0000ms, 691370ms total)
  359. T5690 16776:988 JLINK_ReadMemEx(0x08006EE8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006EE8) - Data: 44 EA 03 20 13 78 03 2B 05 D1 0C 7D 4B 7D 44 EA ... returns 0x3C (0000ms, 691370ms total)
  360. T5690 16776:988 JLINK_ReadMemEx(0x08006EE8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006EE8) - Data: 44 EA returns 0x02 (0000ms, 691370ms total)
  361. T5690 16776:988 JLINK_ReadMemEx(0x08006EE8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006EE8) - Data: 44 EA 03 20 13 78 03 2B 05 D1 0C 7D 4B 7D 44 EA ... returns 0x3C (0000ms, 691370ms total)
  362. T5690 16776:988 JLINK_ReadMemEx(0x08006EE8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006EE8) - Data: 44 EA returns 0x02 (0000ms, 691370ms total)
  363. T5690 16776:988 JLINK_ReadMemEx(0x08006EEA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006EEA) - Data: 03 20 returns 0x02 (0000ms, 691370ms total)
  364. T5690 16776:988 JLINK_ReadMemEx(0x08006EEC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006EEC) - Data: 13 78 03 2B 05 D1 0C 7D 4B 7D 44 EA 03 23 40 EA ... returns 0x3C (0000ms, 691370ms total)
  365. T5690 16776:988 JLINK_ReadMemEx(0x08006EEC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006EEC) - Data: 13 78 returns 0x02 (0000ms, 691370ms total)
  366. T5690 16776:988 JLINK_ReadMemEx(0x08006EEE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006EEE) - Data: 03 2B returns 0x02 (0000ms, 691370ms total)
  367. T5690 16776:988 JLINK_ReadMemEx(0x08006EEE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006EEE) - Data: 03 2B returns 0x02 (0000ms, 691370ms total)
  368. T5690 16776:988 JLINK_ReadMemEx(0x08006EF0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006EF0) - Data: 05 D1 0C 7D 4B 7D 44 EA 03 23 40 EA 03 40 10 BD ... returns 0x3C (0000ms, 691370ms total)
  369. T5690 16776:988 JLINK_ReadMemEx(0x08006EF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006EF0) - Data: 05 D1 returns 0x02 (0000ms, 691370ms total)
  370. T5690 16776:988 JLINK_ReadMemEx(0x08006EF0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006EF0) - Data: 05 D1 0C 7D 4B 7D 44 EA 03 23 40 EA 03 40 10 BD ... returns 0x3C (0000ms, 691370ms total)
  371. T5690 16776:988 JLINK_ReadMemEx(0x08006EF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006EF0) - Data: 05 D1 returns 0x02 (0000ms, 691370ms total)
  372. T5690 16776:988 JLINK_ReadMemEx(0x08006EF2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006EF2) - Data: 0C 7D returns 0x02 (0000ms, 691370ms total)
  373. T5690 16776:988 JLINK_ReadMemEx(0x08006EF2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006EF2) - Data: 0C 7D returns 0x02 (0000ms, 691370ms total)
  374. T5690 16776:988 JLINK_ReadMemEx(0x08006EF4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006EF4) - Data: 4B 7D 44 EA 03 23 40 EA 03 40 10 BD 00 BF 15 E0 ... returns 0x3C (0000ms, 691370ms total)
  375. T5690 16776:988 JLINK_ReadMemEx(0x08006EF4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006EF4) - Data: 4B 7D returns 0x02 (0000ms, 691370ms total)
  376. T5690 16776:988 JLINK_ReadMemEx(0x08006EF4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006EF4) - Data: 4B 7D 44 EA 03 23 40 EA 03 40 10 BD 00 BF 15 E0 ... returns 0x3C (0000ms, 691370ms total)
  377. T5690 16776:988 JLINK_ReadMemEx(0x08006EF4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006EF4) - Data: 4B 7D returns 0x02 (0001ms, 691371ms total)
  378. T5690 16776:989 JLINK_ReadMemEx(0x08006EF6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006EF6) - Data: 44 EA returns 0x02 (0000ms, 691371ms total)
  379. T5690 16776:989 JLINK_ReadMemEx(0x08006EF6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006EF6) - Data: 44 EA returns 0x02 (0000ms, 691371ms total)
  380. T5690 16776:989 JLINK_ReadMemEx(0x08006EF8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006EF8) - Data: 03 23 40 EA 03 40 10 BD 00 BF 15 E0 40 21 0B 48 ... returns 0x3C (0000ms, 691371ms total)
  381. T5690 16776:989 JLINK_ReadMemEx(0x08006EF8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006EF8) - Data: 03 23 returns 0x02 (0000ms, 691371ms total)
  382. T5690 16776:989 JLINK_ReadMemEx(0x08006EFA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006EFA) - Data: 40 EA returns 0x02 (0000ms, 691371ms total)
  383. T5690 16776:989 JLINK_ReadMemEx(0x08006EFC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006EFC) - Data: 03 40 10 BD 00 BF 15 E0 40 21 0B 48 FA F7 55 FD ... returns 0x3C (0000ms, 691371ms total)
  384. T5690 16776:989 JLINK_ReadMemEx(0x08006EFC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006EFC) - Data: 03 40 returns 0x02 (0000ms, 691371ms total)
  385. T5690 16776:989 JLINK_ReadMemEx(0x08006EFE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006EFE) - Data: 10 BD returns 0x02 (0000ms, 691371ms total)
  386. T5690 16776:989 JLINK_ReadMemEx(0x08006F00, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006F00) - Data: 00 BF 15 E0 40 21 0B 48 FA F7 55 FD 4F F4 FA 73 ... returns 0x3C (0000ms, 691371ms total)
  387. T5690 16776:989 JLINK_ReadMemEx(0x08006F00, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F00) - Data: 00 BF returns 0x02 (0000ms, 691371ms total)
  388. T5690 16776:989 JLINK_ReadMemEx(0x08006F00, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006F00) - Data: 00 BF 15 E0 40 21 0B 48 FA F7 55 FD 4F F4 FA 73 ... returns 0x3C (0000ms, 691371ms total)
  389. T5690 16776:989 JLINK_ReadMemEx(0x08006F00, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F00) - Data: 00 BF returns 0x02 (0000ms, 691371ms total)
  390. T5690 16776:989 JLINK_ReadMemEx(0x08006F02, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F02) - Data: 15 E0 returns 0x02 (0000ms, 691371ms total)
  391. T5690 16776:989 JLINK_ReadMemEx(0x08006F02, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F02) - Data: 15 E0 returns 0x02 (0000ms, 691371ms total)
  392. T5690 16776:989 JLINK_ReadMemEx(0x08006F04, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006F04) - Data: 40 21 0B 48 FA F7 55 FD 4F F4 FA 73 00 22 11 46 ... returns 0x3C (0000ms, 691371ms total)
  393. T5690 16776:989 JLINK_ReadMemEx(0x08006F04, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F04) - Data: 40 21 returns 0x02 (0000ms, 691371ms total)
  394. T5690 16776:989 JLINK_ReadMemEx(0x08006F04, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006F04) - Data: 40 21 0B 48 FA F7 55 FD 4F F4 FA 73 00 22 11 46 ... returns 0x3C (0000ms, 691371ms total)
  395. T5690 16776:989 JLINK_ReadMemEx(0x08006F04, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F04) - Data: 40 21 returns 0x02 (0000ms, 691371ms total)
  396. T5690 16776:989 JLINK_ReadMemEx(0x08006F06, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F06) - Data: 0B 48 returns 0x02 (0000ms, 691371ms total)
  397. T5690 16776:989 JLINK_ReadMemEx(0x08006F06, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F06) - Data: 0B 48 returns 0x02 (0000ms, 691371ms total)
  398. T5690 16776:989 JLINK_ReadMemEx(0x08006F08, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08006F40) -- Updating C cache (64 bytes @ 0x08006F40) -- Read from C cache (60 bytes @ 0x08006F08) - Data: FA F7 55 FD 4F F4 FA 73 00 22 11 46 10 46 FB F7 ... returns 0x3C (0003ms, 691374ms total)
  399. T5690 16776:992 JLINK_ReadMemEx(0x08006F08, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F08) - Data: FA F7 returns 0x02 (0000ms, 691374ms total)
  400. T5690 16776:992 JLINK_ReadMemEx(0x08006F08, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006F08) - Data: FA F7 55 FD 4F F4 FA 73 00 22 11 46 10 46 FB F7 ... returns 0x3C (0000ms, 691374ms total)
  401. T5690 16776:992 JLINK_ReadMemEx(0x08006F08, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F08) - Data: FA F7 returns 0x02 (0000ms, 691374ms total)
  402. T5690 16776:992 JLINK_ReadMemEx(0x08006F0A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F0A) - Data: 55 FD returns 0x02 (0000ms, 691374ms total)
  403. T5690 16776:992 JLINK_ReadMemEx(0x08006F0C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006F0C) - Data: 4F F4 FA 73 00 22 11 46 10 46 FB F7 4D FE 40 21 ... returns 0x3C (0000ms, 691374ms total)
  404. T5690 16776:992 JLINK_ReadMemEx(0x08006F0C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F0C) - Data: 4F F4 returns 0x02 (0000ms, 691374ms total)
  405. T5690 16776:992 JLINK_ReadMemEx(0x08006F0E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F0E) - Data: FA 73 returns 0x02 (0000ms, 691374ms total)
  406. T5690 16776:992 JLINK_ReadMemEx(0x08006F10, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006F10) - Data: 00 22 11 46 10 46 FB F7 4D FE 40 21 05 48 FA F7 ... returns 0x3C (0000ms, 691374ms total)
  407. T5690 16776:992 JLINK_ReadMemEx(0x08006F10, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F10) - Data: 00 22 returns 0x02 (0000ms, 691374ms total)
  408. T5690 16776:992 JLINK_ReadMemEx(0x08006F12, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F12) - Data: 11 46 returns 0x02 (0000ms, 691374ms total)
  409. T5690 16776:992 JLINK_ReadMemEx(0x08006F12, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F12) - Data: 11 46 returns 0x02 (0000ms, 691374ms total)
  410. T5690 16776:992 JLINK_ReadMemEx(0x08006F14, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006F14) - Data: 10 46 FB F7 4D FE 40 21 05 48 FA F7 47 FD 4F F4 ... returns 0x3C (0000ms, 691374ms total)
  411. T5690 16776:992 JLINK_ReadMemEx(0x08006F14, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F14) - Data: 10 46 returns 0x02 (0000ms, 691374ms total)
  412. T5690 16776:992 JLINK_ReadMemEx(0x08006F14, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006F14) - Data: 10 46 FB F7 4D FE 40 21 05 48 FA F7 47 FD 4F F4 ... returns 0x3C (0001ms, 691375ms total)
  413. T5690 16776:993 JLINK_ReadMemEx(0x08006F14, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F14) - Data: 10 46 returns 0x02 (0000ms, 691375ms total)
  414. T5690 16776:993 JLINK_ReadMemEx(0x08006F16, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F16) - Data: FB F7 returns 0x02 (0000ms, 691375ms total)
  415. T5690 16776:993 JLINK_ReadMemEx(0x08006F16, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F16) - Data: FB F7 returns 0x02 (0000ms, 691375ms total)
  416. T5690 16776:993 JLINK_ReadMemEx(0x08006F18, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006F18) - Data: 4D FE 40 21 05 48 FA F7 47 FD 4F F4 FA 73 00 22 ... returns 0x3C (0000ms, 691375ms total)
  417. T5690 16776:993 JLINK_ReadMemEx(0x08006F18, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F18) - Data: 4D FE returns 0x02 (0000ms, 691375ms total)
  418. T5690 16776:993 JLINK_ReadMemEx(0x08006F1A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F1A) - Data: 40 21 returns 0x02 (0000ms, 691375ms total)
  419. T5690 16776:993 JLINK_ReadMemEx(0x08006F1C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006F1C) - Data: 05 48 FA F7 47 FD 4F F4 FA 73 00 22 11 46 10 46 ... returns 0x3C (0000ms, 691375ms total)
  420. T5690 16776:993 JLINK_ReadMemEx(0x08006F1C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F1C) - Data: 05 48 returns 0x02 (0000ms, 691375ms total)
  421. T5690 16776:993 JLINK_ReadMemEx(0x08006F1C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006F1C) - Data: 05 48 FA F7 47 FD 4F F4 FA 73 00 22 11 46 10 46 ... returns 0x3C (0000ms, 691375ms total)
  422. T5690 16776:993 JLINK_ReadMemEx(0x08006F1C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F1C) - Data: 05 48 returns 0x02 (0000ms, 691375ms total)
  423. T5690 16776:993 JLINK_ReadMemEx(0x08006F1E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F1E) - Data: FA F7 returns 0x02 (0000ms, 691375ms total)
  424. T5690 16776:993 JLINK_ReadMemEx(0x08006F1E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F1E) - Data: FA F7 returns 0x02 (0000ms, 691375ms total)
  425. T5690 16776:993 JLINK_ReadMemEx(0x08006F20, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006F20) - Data: 47 FD 4F F4 FA 73 00 22 11 46 10 46 FB F7 42 FE ... returns 0x3C (0000ms, 691375ms total)
  426. T5690 16776:993 JLINK_ReadMemEx(0x08006F20, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F20) - Data: 47 FD returns 0x02 (0000ms, 691375ms total)
  427. T5690 16776:993 JLINK_ReadMemEx(0x08006F22, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F22) - Data: 4F F4 returns 0x02 (0000ms, 691375ms total)
  428. T5690 16776:993 JLINK_ReadMemEx(0x08006F24, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006F24) - Data: FA 73 00 22 11 46 10 46 FB F7 42 FE E8 E7 00 00 ... returns 0x3C (0000ms, 691375ms total)
  429. T5690 16776:993 JLINK_ReadMemEx(0x08006F24, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F24) - Data: FA 73 returns 0x02 (0000ms, 691375ms total)
  430. T5690 16776:993 JLINK_ReadMemEx(0x08006F26, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F26) - Data: 00 22 returns 0x02 (0000ms, 691375ms total)
  431. T5690 16776:993 JLINK_ReadMemEx(0x08006F28, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006F28) - Data: 11 46 10 46 FB F7 42 FE E8 E7 00 00 00 14 02 40 ... returns 0x3C (0000ms, 691375ms total)
  432. T5690 16776:993 JLINK_ReadMemEx(0x08006F28, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F28) - Data: 11 46 returns 0x02 (0000ms, 691375ms total)
  433. T5690 16776:993 JLINK_ReadMemEx(0x08006F28, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006F28) - Data: 11 46 10 46 FB F7 42 FE E8 E7 00 00 00 14 02 40 ... returns 0x3C (0000ms, 691375ms total)
  434. T5690 16776:993 JLINK_ReadMemEx(0x08006F28, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F28) - Data: 11 46 returns 0x02 (0000ms, 691375ms total)
  435. T5690 16776:993 JLINK_ReadMemEx(0x08006F2A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F2A) - Data: 10 46 returns 0x02 (0000ms, 691375ms total)
  436. T5690 16776:993 JLINK_ReadMemEx(0x08006F2A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F2A) - Data: 10 46 returns 0x02 (0000ms, 691375ms total)
  437. T5690 16776:993 JLINK_ReadMemEx(0x08006F2C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006F2C) - Data: FB F7 42 FE E8 E7 00 00 00 14 02 40 FE F7 B8 FA ... returns 0x3C (0000ms, 691375ms total)
  438. T5690 16776:993 JLINK_ReadMemEx(0x08006F2C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F2C) - Data: FB F7 returns 0x02 (0000ms, 691375ms total)
  439. T5690 16776:993 JLINK_ReadMemEx(0x08006F2C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006F2C) - Data: FB F7 42 FE E8 E7 00 00 00 14 02 40 FE F7 B8 FA ... returns 0x3C (0000ms, 691375ms total)
  440. T5690 16776:993 JLINK_ReadMemEx(0x08006F2C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F2C) - Data: FB F7 returns 0x02 (0000ms, 691375ms total)
  441. T5690 16776:993 JLINK_ReadMemEx(0x08006F2E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F2E) - Data: 42 FE returns 0x02 (0000ms, 691375ms total)
  442. T5690 16776:993 JLINK_ReadMemEx(0x08006F30, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006F30) - Data: E8 E7 00 00 00 14 02 40 FE F7 B8 FA FB F7 11 F9 ... returns 0x3C (0000ms, 691375ms total)
  443. T5690 16776:993 JLINK_ReadMemEx(0x08006F30, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F30) - Data: E8 E7 returns 0x02 (0000ms, 691375ms total)
  444. T5690 16776:993 JLINK_ReadMemEx(0x08006F32, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F32) - Data: 00 00 returns 0x02 (0000ms, 691375ms total)
  445. T5690 16776:993 JLINK_ReadMemEx(0x08006F34, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006F34) - Data: 00 14 02 40 FE F7 B8 FA FB F7 11 F9 01 20 00 F0 ... returns 0x3C (0000ms, 691375ms total)
  446. T5690 16776:993 JLINK_ReadMemEx(0x08006F34, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F34) - Data: 00 14 returns 0x02 (0000ms, 691375ms total)
  447. T5690 16776:993 JLINK_ReadMemEx(0x08006F36, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F36) - Data: 02 40 returns 0x02 (0000ms, 691375ms total)
  448. T5690 16776:993 JLINK_ReadMemEx(0x08006F36, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F36) - Data: 02 40 returns 0x02 (0000ms, 691375ms total)
  449. T5690 16776:993 JLINK_ReadMemEx(0x08006F38, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006F38) - Data: FE F7 B8 FA FB F7 11 F9 01 20 00 F0 93 F8 00 20 ... returns 0x3C (0000ms, 691375ms total)
  450. T5690 16776:993 JLINK_ReadMemEx(0x08006F38, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F38) - Data: FE F7 returns 0x02 (0000ms, 691375ms total)
  451. T5690 16776:993 JLINK_ReadMemEx(0x08006F38, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006F38) - Data: FE F7 B8 FA FB F7 11 F9 01 20 00 F0 93 F8 00 20 ... returns 0x3C (0000ms, 691375ms total)
  452. T5690 16776:993 JLINK_ReadMemEx(0x08006F38, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F38) - Data: FE F7 returns 0x02 (0000ms, 691375ms total)
  453. T5690 16776:993 JLINK_ReadMemEx(0x08006F3A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F3A) - Data: B8 FA returns 0x02 (0000ms, 691375ms total)
  454. T5690 16776:993 JLINK_ReadMemEx(0x08006F3C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006F3C) - Data: FB F7 11 F9 01 20 00 F0 93 F8 00 20 00 F0 90 F8 ... returns 0x3C (0000ms, 691375ms total)
  455. T5690 16776:993 JLINK_ReadMemEx(0x08006F3C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F3C) - Data: FB F7 returns 0x02 (0000ms, 691375ms total)
  456. T5690 16776:993 JLINK_ReadMemEx(0x08006F3E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F3E) - Data: 11 F9 returns 0x02 (0000ms, 691375ms total)
  457. T5690 16776:993 JLINK_ReadMemEx(0x08006F40, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006F40) - Data: 01 20 00 F0 93 F8 00 20 00 F0 90 F8 FC F7 6C FF ... returns 0x3C (0000ms, 691375ms total)
  458. T5690 16776:993 JLINK_ReadMemEx(0x08006F40, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F40) - Data: 01 20 returns 0x02 (0000ms, 691375ms total)
  459. T5690 16776:993 JLINK_ReadMemEx(0x08006F42, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F42) - Data: 00 F0 returns 0x02 (0000ms, 691375ms total)
  460. T5690 16776:993 JLINK_ReadMemEx(0x08006F42, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F42) - Data: 00 F0 returns 0x02 (0000ms, 691375ms total)
  461. T5690 16776:993 JLINK_ReadMemEx(0x08006F44, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006F44) - Data: 93 F8 00 20 00 F0 90 F8 FC F7 6C FF FA F7 36 FD ... returns 0x3C (0000ms, 691375ms total)
  462. T5690 16776:993 JLINK_ReadMemEx(0x08006F44, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F44) - Data: 93 F8 returns 0x02 (0000ms, 691375ms total)
  463. T5690 16777:675 JLINK_ReadMemEx(0x08005442, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08005440) -- Updating C cache (64 bytes @ 0x08005440) -- Read from C cache (2 bytes @ 0x08005442) - Data: 28 46 returns 0x02 (0003ms, 691378ms total)
  464. T5690 16777:678 JLINK_ReadMemEx(0x08005444, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08005444) - Data: FF F7 74 FB 28 46 FE F7 5B FE 70 BD 6C 6F 72 61 ... returns 0x3C (0000ms, 691378ms total)
  465. T5690 16777:678 JLINK_ReadMemEx(0x08005444, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08005444) - Data: FF F7 returns 0x02 (0000ms, 691378ms total)
  466. T5690 16777:678 JLINK_ReadMemEx(0x08005444, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08005444) - Data: FF F7 74 FB 28 46 FE F7 5B FE 70 BD 6C 6F 72 61 ... returns 0x3C (0000ms, 691378ms total)
  467. T5690 16777:678 JLINK_ReadMemEx(0x08005444, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08005444) - Data: FF F7 returns 0x02 (0000ms, 691378ms total)
  468. T5690 16777:678 JLINK_ReadMemEx(0x08005446, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08005446) - Data: 74 FB returns 0x02 (0000ms, 691378ms total)
  469. T5690 16780:799 JLINK_ReadMemEx(0x00000000, 0x02DA Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x40023844) -- CPU_ReadMem(768 bytes @ 0x08000000) -- Updating C cache (768 bytes @ 0x08000000) -- Read from C cache (730 bytes @ 0x08000000) - Data: F0 9C 01 20 99 01 00 08 61 21 00 08 BB 19 00 08 ... returns 0x2DA (0030ms, 691408ms total)
  470. T5690 16780:841 JLINK_ReadMemEx(0x00000000, 0x0291 Bytes, ..., Flags = 0x02000000) -- Read from C cache (657 bytes @ 0x08000000) - Data: F0 9C 01 20 99 01 00 08 61 21 00 08 BB 19 00 08 ... returns 0x291 (0001ms, 691409ms total)
  471. T5690 16782:475 JLINK_ReadMemEx(0x08004AB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08004A80) -- Updating C cache (64 bytes @ 0x08004A80) -- Read from C cache (2 bytes @ 0x08004AB6) - Data: 19 A1 returns 0x02 (0003ms, 691412ms total)
  472. T5690 16782:478 JLINK_ReadMemEx(0x08004AB8, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08004AC0) -- Updating C cache (64 bytes @ 0x08004AC0) -- Read from C cache (60 bytes @ 0x08004AB8) - Data: 30 46 FB F7 2C FC 06 46 0D E0 21 46 30 46 00 F0 ... returns 0x3C (0003ms, 691415ms total)
  473. T5690 16782:481 JLINK_ReadMemEx(0x08004AB8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AB8) - Data: 30 46 returns 0x02 (0000ms, 691415ms total)
  474. T5690 16782:481 JLINK_ReadMemEx(0x08004AB8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004AB8) - Data: 30 46 FB F7 2C FC 06 46 0D E0 21 46 30 46 00 F0 ... returns 0x3C (0000ms, 691415ms total)
  475. T5690 16782:481 JLINK_ReadMemEx(0x08004AB8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AB8) - Data: 30 46 returns 0x02 (0000ms, 691415ms total)
  476. T5690 16782:481 JLINK_ReadMemEx(0x08004ABA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004ABA) - Data: FB F7 returns 0x02 (0000ms, 691415ms total)
  477. T5690 16782:481 JLINK_ReadMemEx(0x08004ABA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004ABA) - Data: FB F7 returns 0x02 (0000ms, 691415ms total)
  478. T5690 16782:481 JLINK_ReadMemEx(0x08004ABC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004ABC) - Data: 2C FC 06 46 0D E0 21 46 30 46 00 F0 4B F9 18 A1 ... returns 0x3C (0000ms, 691415ms total)
  479. T5690 16782:481 JLINK_ReadMemEx(0x08004ABC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004ABC) - Data: 2C FC returns 0x02 (0000ms, 691415ms total)
  480. T5690 16782:481 JLINK_ReadMemEx(0x08004ABE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004ABE) - Data: 06 46 returns 0x02 (0000ms, 691415ms total)
  481. T5690 16782:481 JLINK_ReadMemEx(0x08004AC0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004AC0) - Data: 0D E0 21 46 30 46 00 F0 4B F9 18 A1 30 46 FB F7 ... returns 0x3C (0000ms, 691415ms total)
  482. T5690 16782:481 JLINK_ReadMemEx(0x08004AC0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AC0) - Data: 0D E0 returns 0x02 (0000ms, 691415ms total)
  483. T5690 16782:481 JLINK_ReadMemEx(0x08004AC0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004AC0) - Data: 0D E0 21 46 30 46 00 F0 4B F9 18 A1 30 46 FB F7 ... returns 0x3C (0000ms, 691415ms total)
  484. T5690 16782:481 JLINK_ReadMemEx(0x08004AC0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AC0) - Data: 0D E0 returns 0x02 (0001ms, 691416ms total)
  485. T5690 16782:482 JLINK_ReadMemEx(0x08004AC2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AC2) - Data: 21 46 returns 0x02 (0000ms, 691416ms total)
  486. T5690 16782:482 JLINK_ReadMemEx(0x08004AC2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AC2) - Data: 21 46 returns 0x02 (0000ms, 691416ms total)
  487. T5690 16782:482 JLINK_ReadMemEx(0x08004AC4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004AC4) - Data: 30 46 00 F0 4B F9 18 A1 30 46 FB F7 22 FC 06 46 ... returns 0x3C (0000ms, 691416ms total)
  488. T5690 16782:482 JLINK_ReadMemEx(0x08004AC4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AC4) - Data: 30 46 returns 0x02 (0000ms, 691416ms total)
  489. T5690 16787:156 JLINK_ReadMemEx(0x08004AD4, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08004B00) -- Updating C cache (64 bytes @ 0x08004B00) -- Read from C cache (60 bytes @ 0x08004AD4) - Data: 76 1C 30 78 5D 28 00 D1 00 E0 F0 E7 00 BF E8 69 ... returns 0x3C (0004ms, 691420ms total)
  490. T5690 16787:160 JLINK_ReadMemEx(0x08004AD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AD4) - Data: 76 1C returns 0x02 (0000ms, 691420ms total)
  491. T5690 16787:160 JLINK_ReadMemEx(0x08004AD6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AD6) - Data: 30 78 returns 0x02 (0000ms, 691420ms total)
  492. T5690 16787:160 JLINK_ReadMemEx(0x08004AD6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AD6) - Data: 30 78 returns 0x02 (0000ms, 691420ms total)
  493. T5690 16787:160 JLINK_ReadMemEx(0x08004AD8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004AD8) - Data: 5D 28 00 D1 00 E0 F0 E7 00 BF E8 69 08 B9 EC 61 ... returns 0x3C (0000ms, 691420ms total)
  494. T5690 16787:160 JLINK_ReadMemEx(0x08004AD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AD8) - Data: 5D 28 returns 0x02 (0000ms, 691420ms total)
  495. T5690 16787:160 JLINK_ReadMemEx(0x08004AD8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004AD8) - Data: 5D 28 00 D1 00 E0 F0 E7 00 BF E8 69 08 B9 EC 61 ... returns 0x3C (0000ms, 691420ms total)
  496. T5690 16787:160 JLINK_ReadMemEx(0x08004AD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AD8) - Data: 5D 28 returns 0x02 (0000ms, 691420ms total)
  497. T5690 16787:160 JLINK_ReadMemEx(0x08004ADA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004ADA) - Data: 00 D1 returns 0x02 (0000ms, 691420ms total)
  498. T5690 16787:160 JLINK_ReadMemEx(0x08004ADA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004ADA) - Data: 00 D1 returns 0x02 (0000ms, 691420ms total)
  499. T5690 16787:160 JLINK_ReadMemEx(0x08004ADC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004ADC) - Data: 00 E0 F0 E7 00 BF E8 69 08 B9 EC 61 07 E0 E8 69 ... returns 0x3C (0000ms, 691420ms total)
  500. T5690 16787:160 JLINK_ReadMemEx(0x08004ADC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004ADC) - Data: 00 E0 returns 0x02 (0000ms, 691420ms total)
  501. T5AF8 16789:000 JLINK_ReadMemEx(0x08006F38, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F38) - Data: FE F7 returns 0x02 (0000ms, 691420ms total)
  502. T5AF8 16789:000 JLINK_SetBPEx(Addr = 0x08004D60, Type = 0xFFFFFFF2) returns 0x00000004 (0000ms, 691420ms total)
  503. T5AF8 16789:000 JLINK_SetBPEx(Addr = 0x08004AB6, Type = 0xFFFFFFF2) returns 0x00000005 (0000ms, 691420ms total)
  504. T5AF8 16789:000 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0002010) (0011ms, 691431ms total)
  505. T5AF8 16789:112 JLINK_IsHalted() returns FALSE (0001ms, 691432ms total)
  506. T5AF8 16789:214 JLINK_IsHalted() returns FALSE (0001ms, 691432ms total)
  507. T5AF8 16789:316 JLINK_IsHalted() returns FALSE (0001ms, 691432ms total)
  508. T5AF8 16789:418 JLINK_IsHalted() returns FALSE (0002ms, 691433ms total)
  509. T5AF8 16789:520 JLINK_IsHalted() returns FALSE (0002ms, 691433ms total)
  510. T5AF8 16789:622 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001004) - Data: 4F 6B 65 04 returns 1 (0002ms, 691433ms total)
  511. T5AF8 16789:624 JLINK_IsHalted() returns FALSE (0002ms, 691435ms total)
  512. T5AF8 16789:726 JLINK_IsHalted() returns FALSE (0002ms, 691435ms total)
  513. T5AF8 16789:828 JLINK_IsHalted() returns TRUE (0016ms, 691449ms total)
  514. T5AF8 16789:844 JLINK_Halt() returns 0x00 (0000ms, 691433ms total)
  515. T5AF8 16789:844 JLINK_IsHalted() returns TRUE (0000ms, 691433ms total)
  516. T5AF8 16789:844 JLINK_IsHalted() returns TRUE (0000ms, 691433ms total)
  517. T5AF8 16789:844 JLINK_IsHalted() returns TRUE (0000ms, 691433ms total)
  518. T5AF8 16789:844 JLINK_ReadReg(R15 (PC)) returns 0x08004AB6 (0001ms, 691434ms total)
  519. T5AF8 16789:845 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 691434ms total)
  520. T5AF8 16789:845 JLINK_ClrBPEx(BPHandle = 0x00000004) returns 0x00 (0000ms, 691434ms total)
  521. T5AF8 16789:845 JLINK_ClrBPEx(BPHandle = 0x00000005) returns 0x00 (0000ms, 691434ms total)
  522. T5AF8 16789:845 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 02 00 00 00 returns 1 (0001ms, 691435ms total)
  523. T5AF8 16789:846 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00 returns 1 (0002ms, 691437ms total)
  524. T5AF8 16789:848 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 02 00 00 returns 1 (0001ms, 691438ms total)
  525. T5AF8 16789:849 JLINK_ReadMemU32(0xE0001048, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001048) - Data: 00 00 00 00 returns 1 (0001ms, 691439ms total)
  526. T5AF8 16789:850 JLINK_ReadMemU32(0xE0001058, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001058) - Data: 00 00 00 00 returns 1 (0001ms, 691440ms total)
  527. T5AF8 16789:852 JLINK_ReadReg(R0) returns 0x00000002 (0000ms, 691440ms total)
  528. T5AF8 16789:852 JLINK_ReadReg(R1) returns 0x00000000 (0000ms, 691440ms total)
  529. T5AF8 16789:852 JLINK_ReadReg(R2) returns 0x0000005D (0000ms, 691440ms total)
  530. T5AF8 16789:852 JLINK_ReadReg(R3) returns 0x6807D119 (0000ms, 691440ms total)
  531. T5AF8 16789:852 JLINK_ReadReg(R4) returns 0x20011CF8 (0000ms, 691440ms total)
  532. T5AF8 16789:852 JLINK_ReadReg(R5) returns 0x200105A0 (0000ms, 691440ms total)
  533. T5AF8 16789:852 JLINK_ReadReg(R6) returns 0x6807C803 (0000ms, 691440ms total)
  534. T5AF8 16789:852 JLINK_ReadReg(R7) returns 0x6807C803 (0000ms, 691440ms total)
  535. T5AF8 16789:852 JLINK_ReadReg(R8) returns 0x6807C803 (0000ms, 691440ms total)
  536. T5AF8 16789:852 JLINK_ReadReg(R9) returns 0x6807C800 (0000ms, 691440ms total)
  537. T5AF8 16789:852 JLINK_ReadReg(R10) returns 0x10101010 (0000ms, 691440ms total)
  538. T5AF8 16789:852 JLINK_ReadReg(R11) returns 0x11111111 (0000ms, 691440ms total)
  539. T5AF8 16789:852 JLINK_ReadReg(R12) returns 0x00000000 (0000ms, 691440ms total)
  540. T5AF8 16789:852 JLINK_ReadReg(R13 (SP)) returns 0x2000A45C (0000ms, 691440ms total)
  541. T5AF8 16789:852 JLINK_ReadReg(R14) returns 0x080009D7 (0000ms, 691440ms total)
  542. T5AF8 16789:852 JLINK_ReadReg(R15 (PC)) returns 0x08004AB6 (0000ms, 691440ms total)
  543. T5AF8 16789:852 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 691440ms total)
  544. T5AF8 16789:852 JLINK_ReadReg(MSP) returns 0x20011CC8 (0000ms, 691440ms total)
  545. T5AF8 16789:852 JLINK_ReadReg(PSP) returns 0x2000A45C (0000ms, 691440ms total)
  546. T5AF8 16789:852 JLINK_ReadReg(CFBP) returns 0x02000000 (0000ms, 691440ms total)
  547. T5690 16789:852 JLINK_ReadMemEx(0x2000A470, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x2000A440) -- Updating C cache (64 bytes @ 0x2000A440) -- Read from C cache (4 bytes @ 0x2000A470) - Data: C3 4C 00 08 returns 0x04 (0004ms, 691444ms total)
  548. T5690 16789:856 JLINK_ReadMemEx(0x2000A45C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A45C) - Data: A0 05 01 20 returns 0x04 (0000ms, 691444ms total)
  549. T5690 16789:856 JLINK_ReadMemEx(0x2000A460, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A460) - Data: 00 C8 07 68 returns 0x04 (0000ms, 691444ms total)
  550. T5690 16789:856 JLINK_ReadMemEx(0x2000A464, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A464) - Data: 01 00 00 00 returns 0x04 (0000ms, 691444ms total)
  551. T5690 16789:856 JLINK_ReadMemEx(0x2000A468, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A468) - Data: 80 05 01 20 returns 0x04 (0000ms, 691444ms total)
  552. T5690 16789:856 JLINK_ReadMemEx(0x2000A46C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A46C) - Data: 03 C8 07 68 returns 0x04 (0000ms, 691444ms total)
  553. T5690 16789:856 JLINK_ReadMemEx(0x2000A470, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A470) - Data: C3 4C 00 08 returns 0x04 (0000ms, 691444ms total)
  554. T5690 16789:856 JLINK_ReadMemEx(0x2000A490, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x2000A480) -- Updating C cache (64 bytes @ 0x2000A480) -- Read from C cache (4 bytes @ 0x2000A490) - Data: C1 4B 00 08 returns 0x04 (0003ms, 691447ms total)
  555. T5690 16789:859 JLINK_ReadMemEx(0x2000A474, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A474) - Data: 01 00 00 00 returns 0x04 (0000ms, 691447ms total)
  556. T5690 16789:859 JLINK_ReadMemEx(0x2000A478, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A478) - Data: 00 C8 07 68 returns 0x04 (0000ms, 691447ms total)
  557. T5690 16789:859 JLINK_ReadMemEx(0x2000A47C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A47C) - Data: 00 DC 07 68 returns 0x04 (0000ms, 691447ms total)
  558. T5690 16789:859 JLINK_ReadMemEx(0x2000A480, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A480) - Data: 07 07 07 07 returns 0x04 (0000ms, 691447ms total)
  559. T5690 16789:859 JLINK_ReadMemEx(0x2000A484, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A484) - Data: 08 08 08 08 returns 0x04 (0000ms, 691447ms total)
  560. T5690 16789:859 JLINK_ReadMemEx(0x2000A488, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A488) - Data: 09 09 09 09 returns 0x04 (0000ms, 691447ms total)
  561. T5690 16789:859 JLINK_ReadMemEx(0x2000A48C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A48C) - Data: 10 10 10 10 returns 0x04 (0000ms, 691447ms total)
  562. T5690 16789:859 JLINK_ReadMemEx(0x2000A490, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A490) - Data: C1 4B 00 08 returns 0x04 (0000ms, 691447ms total)
  563. T5690 16789:859 JLINK_ReadMemEx(0x2000A4B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B8) - Data: 49 54 00 08 returns 0x04 (0000ms, 691447ms total)
  564. T5690 16789:859 JLINK_ReadMemEx(0x2000A4A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4A4) - Data: 00 00 00 00 returns 0x04 (0000ms, 691447ms total)
  565. T5690 16789:859 JLINK_ReadMemEx(0x2000A4A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4A8) - Data: 00 DC 07 68 returns 0x04 (0000ms, 691447ms total)
  566. T5690 16789:859 JLINK_ReadMemEx(0x2000A4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4AC) - Data: 06 06 06 06 returns 0x04 (0000ms, 691447ms total)
  567. T5690 16789:859 JLINK_ReadMemEx(0x2000A4B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B0) - Data: 07 07 07 07 returns 0x04 (0000ms, 691447ms total)
  568. T5690 16789:859 JLINK_ReadMemEx(0x2000A4B4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B4) - Data: 08 08 08 08 returns 0x04 (0000ms, 691447ms total)
  569. T5690 16789:859 JLINK_ReadMemEx(0x2000A4B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B8) - Data: 49 54 00 08 returns 0x04 (0000ms, 691447ms total)
  570. T5690 16789:859 JLINK_ReadMemEx(0x2000A4C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x2000A4C0) -- Updating C cache (64 bytes @ 0x2000A4C0) -- Read from C cache (4 bytes @ 0x2000A4C8) - Data: 45 36 00 08 returns 0x04 (0004ms, 691451ms total)
  571. T5690 16789:863 JLINK_ReadMemEx(0x2000A4BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4BC) - Data: 04 04 04 04 returns 0x04 (0000ms, 691451ms total)
  572. T5690 16789:863 JLINK_ReadMemEx(0x2000A4C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C0) - Data: 05 05 05 05 returns 0x04 (0000ms, 691451ms total)
  573. T5690 16789:863 JLINK_ReadMemEx(0x2000A4C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C4) - Data: 06 06 06 06 returns 0x04 (0000ms, 691451ms total)
  574. T5690 16789:863 JLINK_ReadMemEx(0x2000A4C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C8) - Data: 45 36 00 08 returns 0x04 (0000ms, 691451ms total)
  575. T5690 16789:863 JLINK_ReadMemEx(0x2000A4F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4F0) - Data: 37 37 35 36 returns 0x04 (0000ms, 691451ms total)
  576. T5690 16789:863 JLINK_ReadMemEx(0x2000A4CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4CC) - Data: 00 33 36 2E returns 0x04 (0000ms, 691451ms total)
  577. T5690 16789:863 JLINK_ReadMemEx(0x2000A4D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4D0) - Data: 31 33 34 2E returns 0x04 (0000ms, 691451ms total)
  578. T5690 16789:863 JLINK_ReadMemEx(0x2000A4D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4D4) - Data: 32 33 2E 31 returns 0x04 (0000ms, 691451ms total)
  579. T5690 16789:863 JLINK_ReadMemEx(0x2000A4D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4D8) - Data: 31 00 00 00 returns 0x04 (0000ms, 691451ms total)
  580. T5690 16789:863 JLINK_ReadMemEx(0x2000A4DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4DC) - Data: 00 00 00 00 returns 0x04 (0000ms, 691451ms total)
  581. T5690 16789:863 JLINK_ReadMemEx(0x2000A4E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4E0) - Data: 00 00 5B 07 returns 0x04 (0000ms, 691451ms total)
  582. T5690 16789:863 JLINK_ReadMemEx(0x2000A4E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4E4) - Data: 2F 64 65 76 returns 0x04 (0000ms, 691451ms total)
  583. T5690 16789:863 JLINK_ReadMemEx(0x2000A4E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4E8) - Data: 69 63 65 2F returns 0x04 (0000ms, 691451ms total)
  584. T5690 16789:863 JLINK_ReadMemEx(0x2000A4F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4F0) - Data: 37 37 35 36 returns 0x04 (0000ms, 691451ms total)
  585. T5690 16789:863 JLINK_ReadMemEx(0x6807C803, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x6807C803) - Data: 22 64 65 76 69 63 65 5F 31 22 3A 7B 22 73 65 6E ... returns 0x20 (0005ms, 691456ms total)
  586. T5690 16789:868 JLINK_ReadMemEx(0x6807C803, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x6807C803) - Data: 22 64 65 76 69 63 65 5F 31 22 3A 7B 22 73 65 6E ... returns 0x20 (0004ms, 691460ms total)
  587. T5690 16789:874 JLINK_ReadMemEx(0x6807C803, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x6807C803) - Data: 22 64 65 76 69 63 65 5F 31 22 3A 7B 22 73 65 6E ... returns 0x20 (0003ms, 691463ms total)
  588. T5690 16789:877 JLINK_ReadMemEx(0x6807C803, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x6807C803) - Data: 22 64 65 76 69 63 65 5F 31 22 3A 7B 22 73 65 6E ... returns 0x20 (0004ms, 691467ms total)
  589. T5690 16789:881 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 4F 6B 65 04 returns 1 (0000ms, 691467ms total)
  590. T5690 16789:882 JLINK_ReadMemEx(0x6807C803, 0x0291 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(657 bytes @ 0x6807C803) - Data: 22 64 65 76 69 63 65 5F 31 22 3A 7B 22 73 65 6E ... returns 0x291 (0025ms, 691492ms total)
  591. T5690 16789:911 JLINK_ReadMemEx(0x08004AAC, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x08004A80) -- Updating C cache (128 bytes @ 0x08004A80) -- Read from C cache (60 bytes @ 0x08004AAC) - Data: 18 A1 38 46 02 F0 C0 FB 60 75 19 A1 30 46 FB F7 ... returns 0x3C (0005ms, 691497ms total)
  592. T5690 16789:916 JLINK_ReadMemEx(0x08004AAC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AAC) - Data: 18 A1 returns 0x02 (0000ms, 691497ms total)
  593. T5690 16789:916 JLINK_ReadMemEx(0x08004AAE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AAE) - Data: 38 46 returns 0x02 (0000ms, 691497ms total)
  594. T5690 16789:916 JLINK_ReadMemEx(0x08004AAE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AAE) - Data: 38 46 returns 0x02 (0000ms, 691497ms total)
  595. T5690 16789:916 JLINK_ReadMemEx(0x08004AB0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004AB0) - Data: 02 F0 C0 FB 60 75 19 A1 30 46 FB F7 2C FC 06 46 ... returns 0x3C (0000ms, 691497ms total)
  596. T5690 16789:916 JLINK_ReadMemEx(0x08004AB0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AB0) - Data: 02 F0 returns 0x02 (0000ms, 691497ms total)
  597. T5690 16789:916 JLINK_ReadMemEx(0x08004AB0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004AB0) - Data: 02 F0 C0 FB 60 75 19 A1 30 46 FB F7 2C FC 06 46 ... returns 0x3C (0000ms, 691497ms total)
  598. T5690 16789:916 JLINK_ReadMemEx(0x08004AB0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AB0) - Data: 02 F0 returns 0x02 (0000ms, 691497ms total)
  599. T5690 16789:916 JLINK_ReadMemEx(0x08004AB2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AB2) - Data: C0 FB returns 0x02 (0000ms, 691497ms total)
  600. T5690 16789:916 JLINK_ReadMemEx(0x08004AB4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004AB4) - Data: 60 75 19 A1 30 46 FB F7 2C FC 06 46 0D E0 21 46 ... returns 0x3C (0000ms, 691497ms total)
  601. T5690 16789:916 JLINK_ReadMemEx(0x08004AB4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AB4) - Data: 60 75 returns 0x02 (0000ms, 691497ms total)
  602. T5690 16789:916 JLINK_ReadMemEx(0x08004AB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AB6) - Data: 19 A1 returns 0x02 (0000ms, 691497ms total)
  603. T5690 16789:916 JLINK_ReadMemEx(0x08004AB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AB6) - Data: 19 A1 returns 0x02 (0000ms, 691497ms total)
  604. T5690 16789:917 JLINK_ReadMemEx(0x08004AB8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004AB8) - Data: 30 46 FB F7 2C FC 06 46 0D E0 21 46 30 46 00 F0 ... returns 0x3C (0000ms, 691497ms total)
  605. T5690 16789:917 JLINK_ReadMemEx(0x08004AB8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AB8) - Data: 30 46 returns 0x02 (0000ms, 691497ms total)
  606. T5690 16789:917 JLINK_ReadMemEx(0x08004AB8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004AB8) - Data: 30 46 FB F7 2C FC 06 46 0D E0 21 46 30 46 00 F0 ... returns 0x3C (0000ms, 691497ms total)
  607. T5690 16789:917 JLINK_ReadMemEx(0x08004AB8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AB8) - Data: 30 46 returns 0x02 (0000ms, 691497ms total)
  608. T5690 16789:917 JLINK_ReadMemEx(0x08004ABA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004ABA) - Data: FB F7 returns 0x02 (0000ms, 691497ms total)
  609. T5690 16789:917 JLINK_ReadMemEx(0x08004ABA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004ABA) - Data: FB F7 returns 0x02 (0000ms, 691497ms total)
  610. T5690 16789:917 JLINK_ReadMemEx(0x08004ABC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004ABC) - Data: 2C FC 06 46 0D E0 21 46 30 46 00 F0 4B F9 18 A1 ... returns 0x3C (0000ms, 691497ms total)
  611. T5690 16789:917 JLINK_ReadMemEx(0x08004ABC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004ABC) - Data: 2C FC returns 0x02 (0000ms, 691497ms total)
  612. T5690 16789:917 JLINK_ReadMemEx(0x08004ABE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004ABE) - Data: 06 46 returns 0x02 (0000ms, 691497ms total)
  613. T5690 16789:917 JLINK_ReadMemEx(0x08004AC0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004AC0) - Data: 0D E0 21 46 30 46 00 F0 4B F9 18 A1 30 46 FB F7 ... returns 0x3C (0000ms, 691497ms total)
  614. T5690 16789:917 JLINK_ReadMemEx(0x08004AC0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AC0) - Data: 0D E0 returns 0x02 (0000ms, 691497ms total)
  615. T5690 16789:917 JLINK_ReadMemEx(0x08004AC0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004AC0) - Data: 0D E0 21 46 30 46 00 F0 4B F9 18 A1 30 46 FB F7 ... returns 0x3C (0000ms, 691497ms total)
  616. T5690 16789:917 JLINK_ReadMemEx(0x08004AC0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AC0) - Data: 0D E0 returns 0x02 (0000ms, 691497ms total)
  617. T5690 16789:917 JLINK_ReadMemEx(0x08004AC2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AC2) - Data: 21 46 returns 0x02 (0000ms, 691497ms total)
  618. T5AF8 16792:658 JLINK_ReadMemEx(0x08004AB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AB6) - Data: 19 A1 returns 0x02 (0000ms, 691497ms total)
  619. T5AF8 16792:658 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004AB6) -- CPU_ReadMem(4 bytes @ 0xE000ED18) -- CPU_WriteMem(4 bytes @ 0xE000ED18) -- CPU_ReadMem(4 bytes @ 0xE000ED18) -- CPU_WriteMem(4 bytes @ 0xE000ED18) -- Simulated returns 0x00 (0007ms, 691504ms total)
  620. T5AF8 16792:665 JLINK_ReadReg(R15 (PC)) returns 0x08004AB8 (0000ms, 691504ms total)
  621. T5AF8 16792:665 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 691504ms total)
  622. T5AF8 16792:665 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004AB8) -- Simulated returns 0x00 (0000ms, 691504ms total)
  623. T5AF8 16792:665 JLINK_ReadReg(R15 (PC)) returns 0x08004ABA (0000ms, 691504ms total)
  624. T5AF8 16792:665 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 691504ms total)
  625. T5AF8 16792:665 JLINK_SetBPEx(Addr = 0x08004ABE, Type = 0xFFFFFFF2) returns 0x00000006 (0000ms, 691504ms total)
  626. T5AF8 16792:665 JLINK_SetBPEx(Addr = 0x08004D60, Type = 0xFFFFFFF2) returns 0x00000007 (0000ms, 691504ms total)
  627. T5AF8 16792:665 JLINK_SetBPEx(Addr = 0x08004AB6, Type = 0xFFFFFFF2) returns 0x00000008 (0000ms, 691504ms total)
  628. T5AF8 16792:665 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0015ms, 691519ms total)
  629. T5AF8 16792:780 JLINK_IsHalted() returns TRUE (0016ms, 691535ms total)
  630. T5AF8 16792:796 JLINK_Halt() returns 0x00 (0000ms, 691519ms total)
  631. T5AF8 16792:796 JLINK_IsHalted() returns TRUE (0000ms, 691519ms total)
  632. T5AF8 16792:796 JLINK_IsHalted() returns TRUE (0000ms, 691519ms total)
  633. T5AF8 16792:796 JLINK_IsHalted() returns TRUE (0000ms, 691519ms total)
  634. T5AF8 16792:796 JLINK_ReadReg(R15 (PC)) returns 0x08004ABE (0000ms, 691519ms total)
  635. T5AF8 16792:796 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 691519ms total)
  636. T5AF8 16792:796 JLINK_ClrBPEx(BPHandle = 0x00000006) returns 0x00 (0000ms, 691519ms total)
  637. T5AF8 16792:796 JLINK_ClrBPEx(BPHandle = 0x00000007) returns 0x00 (0000ms, 691519ms total)
  638. T5AF8 16792:796 JLINK_ClrBPEx(BPHandle = 0x00000008) returns 0x00 (0000ms, 691519ms total)
  639. T5AF8 16792:796 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 02 00 00 00 returns 1 (0002ms, 691521ms total)
  640. T5AF8 16792:798 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00 returns 1 (0002ms, 691523ms total)
  641. T5AF8 16792:800 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 02 00 00 returns 1 (0001ms, 691524ms total)
  642. T5AF8 16792:801 JLINK_ReadMemU32(0xE0001048, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001048) - Data: 00 00 00 00 returns 1 (0001ms, 691525ms total)
  643. T5AF8 16792:802 JLINK_ReadMemU32(0xE0001058, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001058) - Data: 00 00 00 00 returns 1 (0002ms, 691527ms total)
  644. T5AF8 16792:804 JLINK_ReadMemEx(0x08004ABC, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x08004A80) -- Updating C cache (128 bytes @ 0x08004A80) -- Read from C cache (60 bytes @ 0x08004ABC) - Data: 2C FC 06 46 0D E0 21 46 30 46 00 F0 4B F9 18 A1 ... returns 0x3C (0005ms, 691532ms total)
  645. T5AF8 16792:809 JLINK_ReadMemEx(0x08004ABC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004ABC) - Data: 2C FC returns 0x02 (0000ms, 691532ms total)
  646. T5AF8 16792:809 JLINK_ReadMemEx(0x08004ABE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004ABE) - Data: 06 46 returns 0x02 (0000ms, 691532ms total)
  647. T5AF8 16792:809 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004ABE) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Simulated returns 0x00 (0002ms, 691534ms total)
  648. T5AF8 16792:811 JLINK_ReadReg(R15 (PC)) returns 0x08004AC0 (0000ms, 691534ms total)
  649. T5AF8 16792:811 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 691534ms total)
  650. T5AF8 16792:811 JLINK_ReadReg(R0) returns 0x6807C80F (0000ms, 691534ms total)
  651. T5AF8 16792:811 JLINK_ReadReg(R1) returns 0x08004B1C (0000ms, 691534ms total)
  652. T5AF8 16792:811 JLINK_ReadReg(R2) returns 0x6807C81E (0000ms, 691534ms total)
  653. T5AF8 16792:811 JLINK_ReadReg(R3) returns 0x08004B2B (0000ms, 691534ms total)
  654. T5AF8 16792:811 JLINK_ReadReg(R4) returns 0x20011CF8 (0000ms, 691534ms total)
  655. T5AF8 16792:811 JLINK_ReadReg(R5) returns 0x200105A0 (0000ms, 691534ms total)
  656. T5AF8 16792:811 JLINK_ReadReg(R6) returns 0x6807C80F (0000ms, 691534ms total)
  657. T5AF8 16792:811 JLINK_ReadReg(R7) returns 0x6807C803 (0000ms, 691534ms total)
  658. T5AF8 16792:811 JLINK_ReadReg(R8) returns 0x6807C803 (0000ms, 691534ms total)
  659. T5AF8 16792:811 JLINK_ReadReg(R9) returns 0x6807C800 (0000ms, 691534ms total)
  660. T5AF8 16792:811 JLINK_ReadReg(R10) returns 0x10101010 (0000ms, 691534ms total)
  661. T5AF8 16792:811 JLINK_ReadReg(R11) returns 0x11111111 (0000ms, 691534ms total)
  662. T5AF8 16792:811 JLINK_ReadReg(R12) returns 0x00000000 (0000ms, 691534ms total)
  663. T5AF8 16792:811 JLINK_ReadReg(R13 (SP)) returns 0x2000A45C (0000ms, 691534ms total)
  664. T5AF8 16792:811 JLINK_ReadReg(R14) returns 0x08004ABF (0000ms, 691534ms total)
  665. T5AF8 16792:811 JLINK_ReadReg(R15 (PC)) returns 0x08004AC0 (0000ms, 691534ms total)
  666. T5AF8 16792:811 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 691534ms total)
  667. T5AF8 16792:811 JLINK_ReadReg(MSP) returns 0x20011CC8 (0000ms, 691534ms total)
  668. T5AF8 16792:811 JLINK_ReadReg(PSP) returns 0x2000A45C (0000ms, 691534ms total)
  669. T5AF8 16792:811 JLINK_ReadReg(CFBP) returns 0x02000000 (0000ms, 691534ms total)
  670. T5690 16792:811 JLINK_ReadMemEx(0x2000A470, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x2000A440) -- Updating C cache (64 bytes @ 0x2000A440) -- Read from C cache (4 bytes @ 0x2000A470) - Data: C3 4C 00 08 returns 0x04 (0004ms, 691538ms total)
  671. T5690 16792:815 JLINK_ReadMemEx(0x2000A45C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A45C) - Data: A0 05 01 20 returns 0x04 (0000ms, 691538ms total)
  672. T5690 16792:815 JLINK_ReadMemEx(0x2000A460, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A460) - Data: 00 C8 07 68 returns 0x04 (0000ms, 691538ms total)
  673. T5690 16792:815 JLINK_ReadMemEx(0x2000A464, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A464) - Data: 01 00 00 00 returns 0x04 (0000ms, 691538ms total)
  674. T5690 16792:815 JLINK_ReadMemEx(0x2000A468, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A468) - Data: 80 05 01 20 returns 0x04 (0000ms, 691538ms total)
  675. T5690 16792:815 JLINK_ReadMemEx(0x2000A46C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A46C) - Data: 03 C8 07 68 returns 0x04 (0000ms, 691538ms total)
  676. T5690 16792:815 JLINK_ReadMemEx(0x2000A470, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A470) - Data: C3 4C 00 08 returns 0x04 (0000ms, 691538ms total)
  677. T5690 16792:815 JLINK_ReadMemEx(0x2000A490, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x2000A480) -- Updating C cache (64 bytes @ 0x2000A480) -- Read from C cache (4 bytes @ 0x2000A490) - Data: C1 4B 00 08 returns 0x04 (0004ms, 691542ms total)
  678. T5690 16792:819 JLINK_ReadMemEx(0x2000A474, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A474) - Data: 01 00 00 00 returns 0x04 (0000ms, 691542ms total)
  679. T5690 16792:819 JLINK_ReadMemEx(0x2000A478, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A478) - Data: 00 C8 07 68 returns 0x04 (0000ms, 691542ms total)
  680. T5690 16792:819 JLINK_ReadMemEx(0x2000A47C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A47C) - Data: 00 DC 07 68 returns 0x04 (0000ms, 691542ms total)
  681. T5690 16792:819 JLINK_ReadMemEx(0x2000A480, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A480) - Data: 07 07 07 07 returns 0x04 (0000ms, 691542ms total)
  682. T5690 16792:819 JLINK_ReadMemEx(0x2000A484, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A484) - Data: 08 08 08 08 returns 0x04 (0000ms, 691542ms total)
  683. T5690 16792:819 JLINK_ReadMemEx(0x2000A488, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A488) - Data: 09 09 09 09 returns 0x04 (0000ms, 691542ms total)
  684. T5690 16792:819 JLINK_ReadMemEx(0x2000A48C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A48C) - Data: 10 10 10 10 returns 0x04 (0000ms, 691542ms total)
  685. T5690 16792:819 JLINK_ReadMemEx(0x2000A490, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A490) - Data: C1 4B 00 08 returns 0x04 (0000ms, 691542ms total)
  686. T5690 16792:819 JLINK_ReadMemEx(0x2000A4B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B8) - Data: 49 54 00 08 returns 0x04 (0000ms, 691542ms total)
  687. T5690 16792:819 JLINK_ReadMemEx(0x2000A4A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4A4) - Data: 00 00 00 00 returns 0x04 (0001ms, 691543ms total)
  688. T5690 16792:820 JLINK_ReadMemEx(0x2000A4A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4A8) - Data: 00 DC 07 68 returns 0x04 (0000ms, 691543ms total)
  689. T5690 16792:820 JLINK_ReadMemEx(0x2000A4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4AC) - Data: 06 06 06 06 returns 0x04 (0000ms, 691543ms total)
  690. T5690 16792:820 JLINK_ReadMemEx(0x2000A4B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B0) - Data: 07 07 07 07 returns 0x04 (0000ms, 691543ms total)
  691. T5690 16792:820 JLINK_ReadMemEx(0x2000A4B4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B4) - Data: 08 08 08 08 returns 0x04 (0000ms, 691543ms total)
  692. T5690 16792:820 JLINK_ReadMemEx(0x2000A4B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B8) - Data: 49 54 00 08 returns 0x04 (0000ms, 691543ms total)
  693. T5690 16792:820 JLINK_ReadMemEx(0x2000A4C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x2000A4C0) -- Updating C cache (64 bytes @ 0x2000A4C0) -- Read from C cache (4 bytes @ 0x2000A4C8) - Data: 45 36 00 08 returns 0x04 (0003ms, 691546ms total)
  694. T5690 16792:823 JLINK_ReadMemEx(0x2000A4BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4BC) - Data: 04 04 04 04 returns 0x04 (0000ms, 691546ms total)
  695. T5690 16792:823 JLINK_ReadMemEx(0x2000A4C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C0) - Data: 05 05 05 05 returns 0x04 (0000ms, 691546ms total)
  696. T5690 16792:823 JLINK_ReadMemEx(0x2000A4C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C4) - Data: 06 06 06 06 returns 0x04 (0000ms, 691546ms total)
  697. T5690 16792:823 JLINK_ReadMemEx(0x2000A4C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C8) - Data: 45 36 00 08 returns 0x04 (0000ms, 691546ms total)
  698. T5690 16792:823 JLINK_ReadMemEx(0x2000A4E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4E0) - Data: 00 00 5B 07 returns 0x04 (0000ms, 691546ms total)
  699. T5690 16792:823 JLINK_ReadMemEx(0x2000A4CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4CC) - Data: 00 33 36 2E returns 0x04 (0000ms, 691546ms total)
  700. T5690 16792:823 JLINK_ReadMemEx(0x2000A4D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4D0) - Data: 31 33 34 2E returns 0x04 (0000ms, 691546ms total)
  701. T5690 16792:823 JLINK_ReadMemEx(0x2000A4D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4D4) - Data: 32 33 2E 31 returns 0x04 (0000ms, 691546ms total)
  702. T5690 16792:823 JLINK_ReadMemEx(0x2000A4D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4D8) - Data: 31 00 00 00 returns 0x04 (0000ms, 691546ms total)
  703. T5690 16792:823 JLINK_ReadMemEx(0x2000A4DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4DC) - Data: 00 00 00 00 returns 0x04 (0000ms, 691546ms total)
  704. T5690 16792:823 JLINK_ReadMemEx(0x2000A4E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4E0) - Data: 00 00 5B 07 returns 0x04 (0000ms, 691546ms total)
  705. T5690 16792:829 JLINK_ReadMemEx(0x6807C803, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x6807C803) - Data: 22 64 65 76 69 63 65 5F 31 22 3A 7B 22 73 65 6E ... returns 0x20 (0004ms, 691550ms total)
  706. T5690 16792:833 JLINK_ReadMemEx(0x6807C80F, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x6807C80F) - Data: 22 73 65 6E 73 6F 72 4C 69 73 74 22 3A 5B 7B 22 ... returns 0x20 (0004ms, 691554ms total)
  707. T5690 16792:839 JLINK_ReadMemEx(0x6807C803, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x6807C803) - Data: 22 64 65 76 69 63 65 5F 31 22 3A 7B 22 73 65 6E ... returns 0x20 (0004ms, 691558ms total)
  708. T5690 16792:843 JLINK_ReadMemEx(0x6807C80F, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x6807C80F) - Data: 22 73 65 6E 73 6F 72 4C 69 73 74 22 3A 5B 7B 22 ... returns 0x20 (0003ms, 691561ms total)
  709. T5690 16792:846 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 2D 6D 65 04 returns 1 (0000ms, 691561ms total)
  710. T5690 16792:846 JLINK_ReadMemEx(0x6807C80F, 0x0291 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(657 bytes @ 0x6807C80F) - Data: 22 73 65 6E 73 6F 72 4C 69 73 74 22 3A 5B 7B 22 ... returns 0x291 (0025ms, 691586ms total)
  711. T5690 16792:873 JLINK_ReadMemEx(0x08004AC0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004AC0) - Data: 0D E0 21 46 30 46 00 F0 4B F9 18 A1 30 46 FB F7 ... returns 0x3C (0000ms, 691586ms total)
  712. T5690 16792:873 JLINK_ReadMemEx(0x08004AC0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AC0) - Data: 0D E0 returns 0x02 (0000ms, 691586ms total)
  713. T5690 16792:873 JLINK_ReadMemEx(0x08004AC2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AC2) - Data: 21 46 returns 0x02 (0000ms, 691586ms total)
  714. T5690 16792:879 JLINK_ReadMemEx(0x08004AB4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004AB4) - Data: 60 75 19 A1 30 46 FB F7 2C FC 06 46 0D E0 21 46 ... returns 0x3C (0000ms, 691586ms total)
  715. T5690 16792:879 JLINK_ReadMemEx(0x08004AB4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AB4) - Data: 60 75 returns 0x02 (0000ms, 691586ms total)
  716. T5690 16792:879 JLINK_ReadMemEx(0x08004AB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AB6) - Data: 19 A1 returns 0x02 (0000ms, 691586ms total)
  717. T5690 16792:879 JLINK_ReadMemEx(0x08004AB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AB6) - Data: 19 A1 returns 0x02 (0000ms, 691586ms total)
  718. T5690 16792:879 JLINK_ReadMemEx(0x08004AB8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004AB8) - Data: 30 46 FB F7 2C FC 06 46 0D E0 21 46 30 46 00 F0 ... returns 0x3C (0000ms, 691586ms total)
  719. T5690 16792:879 JLINK_ReadMemEx(0x08004AB8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AB8) - Data: 30 46 returns 0x02 (0000ms, 691586ms total)
  720. T5690 16792:879 JLINK_ReadMemEx(0x08004AB8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004AB8) - Data: 30 46 FB F7 2C FC 06 46 0D E0 21 46 30 46 00 F0 ... returns 0x3C (0000ms, 691586ms total)
  721. T5690 16792:879 JLINK_ReadMemEx(0x08004AB8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AB8) - Data: 30 46 returns 0x02 (0000ms, 691586ms total)
  722. T5690 16792:879 JLINK_ReadMemEx(0x08004ABA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004ABA) - Data: FB F7 returns 0x02 (0000ms, 691586ms total)
  723. T5690 16792:879 JLINK_ReadMemEx(0x08004ABA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004ABA) - Data: FB F7 returns 0x02 (0000ms, 691586ms total)
  724. T5690 16792:879 JLINK_ReadMemEx(0x08004ABC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004ABC) - Data: 2C FC 06 46 0D E0 21 46 30 46 00 F0 4B F9 18 A1 ... returns 0x3C (0000ms, 691586ms total)
  725. T5690 16792:879 JLINK_ReadMemEx(0x08004ABC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004ABC) - Data: 2C FC returns 0x02 (0000ms, 691586ms total)
  726. T5690 16792:879 JLINK_ReadMemEx(0x08004ABE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004ABE) - Data: 06 46 returns 0x02 (0000ms, 691586ms total)
  727. T5690 16792:879 JLINK_ReadMemEx(0x08004AC0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004AC0) - Data: 0D E0 21 46 30 46 00 F0 4B F9 18 A1 30 46 FB F7 ... returns 0x3C (0000ms, 691586ms total)
  728. T5690 16792:879 JLINK_ReadMemEx(0x08004AC0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AC0) - Data: 0D E0 returns 0x02 (0000ms, 691586ms total)
  729. T5690 16798:881 JLINK_ReadMemEx(0x6807C80F, 0x0291 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(657 bytes @ 0x6807C80F) - Data: 22 73 65 6E 73 6F 72 4C 69 73 74 22 3A 5B 7B 22 ... returns 0x291 (0024ms, 691610ms total)
  730. T5690 16798:905 JLINK_ReadMemEx(0x6807C80F, 0x0291 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(657 bytes @ 0x6807C80F) - Data: 22 73 65 6E 73 6F 72 4C 69 73 74 22 3A 5B 7B 22 ... returns 0x291 (0024ms, 691634ms total)
  731. T5AF8 16801:527 JLINK_ReadMemEx(0x08004AC0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004AC0) - Data: 0D E0 21 46 30 46 00 F0 4B F9 18 A1 30 46 FB F7 ... returns 0x3C (0001ms, 691635ms total)
  732. T5AF8 16801:528 JLINK_ReadMemEx(0x08004AC0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AC0) - Data: 0D E0 returns 0x02 (0000ms, 691635ms total)
  733. T5AF8 16801:528 JLINK_ReadMemEx(0x08004AC2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AC2) - Data: 21 46 returns 0x02 (0000ms, 691635ms total)
  734. T5AF8 16801:528 JLINK_ReadMemEx(0x08004AC0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AC0) - Data: 0D E0 returns 0x02 (0000ms, 691635ms total)
  735. T5AF8 16801:528 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004AC0) -- Simulated returns 0x00 (0001ms, 691636ms total)
  736. T5AF8 16801:529 JLINK_ReadReg(R15 (PC)) returns 0x08004ADE (0000ms, 691636ms total)
  737. T5AF8 16801:529 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 691636ms total)
  738. T5AF8 16801:529 JLINK_ReadReg(R0) returns 0x6807C80F (0001ms, 691637ms total)
  739. T5AF8 16801:530 JLINK_ReadReg(R1) returns 0x08004B1C (0000ms, 691637ms total)
  740. T5AF8 16801:530 JLINK_ReadReg(R2) returns 0x6807C81E (0000ms, 691637ms total)
  741. T5AF8 16801:530 JLINK_ReadReg(R3) returns 0x08004B2B (0000ms, 691637ms total)
  742. T5AF8 16801:530 JLINK_ReadReg(R4) returns 0x20011CF8 (0000ms, 691637ms total)
  743. T5AF8 16801:530 JLINK_ReadReg(R5) returns 0x200105A0 (0000ms, 691637ms total)
  744. T5AF8 16801:530 JLINK_ReadReg(R6) returns 0x6807C80F (0000ms, 691637ms total)
  745. T5AF8 16801:530 JLINK_ReadReg(R7) returns 0x6807C803 (0000ms, 691637ms total)
  746. T5AF8 16801:530 JLINK_ReadReg(R8) returns 0x6807C803 (0000ms, 691637ms total)
  747. T5AF8 16801:530 JLINK_ReadReg(R9) returns 0x6807C800 (0000ms, 691637ms total)
  748. T5AF8 16801:530 JLINK_ReadReg(R10) returns 0x10101010 (0000ms, 691637ms total)
  749. T5AF8 16801:530 JLINK_ReadReg(R11) returns 0x11111111 (0000ms, 691637ms total)
  750. T5AF8 16801:530 JLINK_ReadReg(R12) returns 0x00000000 (0000ms, 691637ms total)
  751. T5AF8 16801:530 JLINK_ReadReg(R13 (SP)) returns 0x2000A45C (0000ms, 691637ms total)
  752. T5AF8 16801:530 JLINK_ReadReg(R14) returns 0x08004ABF (0000ms, 691637ms total)
  753. T5AF8 16801:530 JLINK_ReadReg(R15 (PC)) returns 0x08004ADE (0000ms, 691637ms total)
  754. T5AF8 16801:530 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 691637ms total)
  755. T5AF8 16801:530 JLINK_ReadReg(MSP) returns 0x20011CC8 (0000ms, 691637ms total)
  756. T5AF8 16801:530 JLINK_ReadReg(PSP) returns 0x2000A45C (0000ms, 691637ms total)
  757. T5AF8 16801:530 JLINK_ReadReg(CFBP) returns 0x02000000 (0000ms, 691637ms total)
  758. T5690 16801:530 JLINK_ReadMemEx(0x2000A470, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A470) - Data: C3 4C 00 08 returns 0x04 (0001ms, 691638ms total)
  759. T5690 16801:531 JLINK_ReadMemEx(0x2000A45C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A45C) - Data: A0 05 01 20 returns 0x04 (0000ms, 691638ms total)
  760. T5690 16801:531 JLINK_ReadMemEx(0x2000A460, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A460) - Data: 00 C8 07 68 returns 0x04 (0000ms, 691638ms total)
  761. T5690 16801:531 JLINK_ReadMemEx(0x2000A464, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A464) - Data: 01 00 00 00 returns 0x04 (0000ms, 691638ms total)
  762. T5690 16801:531 JLINK_ReadMemEx(0x2000A468, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A468) - Data: 80 05 01 20 returns 0x04 (0000ms, 691638ms total)
  763. T5690 16801:531 JLINK_ReadMemEx(0x2000A46C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A46C) - Data: 03 C8 07 68 returns 0x04 (0000ms, 691638ms total)
  764. T5690 16801:531 JLINK_ReadMemEx(0x2000A470, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A470) - Data: C3 4C 00 08 returns 0x04 (0000ms, 691638ms total)
  765. T5690 16801:531 JLINK_ReadMemEx(0x2000A490, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A490) - Data: C1 4B 00 08 returns 0x04 (0000ms, 691638ms total)
  766. T5690 16801:531 JLINK_ReadMemEx(0x2000A474, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A474) - Data: 01 00 00 00 returns 0x04 (0000ms, 691638ms total)
  767. T5690 16801:531 JLINK_ReadMemEx(0x2000A478, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A478) - Data: 00 C8 07 68 returns 0x04 (0000ms, 691638ms total)
  768. T5690 16801:531 JLINK_ReadMemEx(0x2000A47C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A47C) - Data: 00 DC 07 68 returns 0x04 (0000ms, 691638ms total)
  769. T5690 16801:531 JLINK_ReadMemEx(0x2000A480, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A480) - Data: 07 07 07 07 returns 0x04 (0000ms, 691638ms total)
  770. T5690 16801:531 JLINK_ReadMemEx(0x2000A484, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A484) - Data: 08 08 08 08 returns 0x04 (0000ms, 691638ms total)
  771. T5690 16801:531 JLINK_ReadMemEx(0x2000A488, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A488) - Data: 09 09 09 09 returns 0x04 (0000ms, 691638ms total)
  772. T5690 16801:531 JLINK_ReadMemEx(0x2000A48C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A48C) - Data: 10 10 10 10 returns 0x04 (0000ms, 691638ms total)
  773. T5690 16801:531 JLINK_ReadMemEx(0x2000A490, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A490) - Data: C1 4B 00 08 returns 0x04 (0000ms, 691638ms total)
  774. T5690 16801:531 JLINK_ReadMemEx(0x2000A4B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B8) - Data: 49 54 00 08 returns 0x04 (0000ms, 691638ms total)
  775. T5690 16801:531 JLINK_ReadMemEx(0x2000A4A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4A4) - Data: 00 00 00 00 returns 0x04 (0000ms, 691638ms total)
  776. T5690 16801:531 JLINK_ReadMemEx(0x2000A4A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4A8) - Data: 00 DC 07 68 returns 0x04 (0000ms, 691638ms total)
  777. T5690 16801:531 JLINK_ReadMemEx(0x2000A4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4AC) - Data: 06 06 06 06 returns 0x04 (0000ms, 691638ms total)
  778. T5690 16801:531 JLINK_ReadMemEx(0x2000A4B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B0) - Data: 07 07 07 07 returns 0x04 (0000ms, 691638ms total)
  779. T5690 16801:531 JLINK_ReadMemEx(0x2000A4B4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B4) - Data: 08 08 08 08 returns 0x04 (0000ms, 691638ms total)
  780. T5690 16801:531 JLINK_ReadMemEx(0x2000A4B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B8) - Data: 49 54 00 08 returns 0x04 (0000ms, 691638ms total)
  781. T5690 16801:531 JLINK_ReadMemEx(0x2000A4C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C8) - Data: 45 36 00 08 returns 0x04 (0000ms, 691638ms total)
  782. T5690 16801:531 JLINK_ReadMemEx(0x2000A4BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4BC) - Data: 04 04 04 04 returns 0x04 (0000ms, 691638ms total)
  783. T5690 16801:531 JLINK_ReadMemEx(0x2000A4C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C0) - Data: 05 05 05 05 returns 0x04 (0000ms, 691638ms total)
  784. T5690 16801:531 JLINK_ReadMemEx(0x2000A4C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C4) - Data: 06 06 06 06 returns 0x04 (0000ms, 691638ms total)
  785. T5690 16801:531 JLINK_ReadMemEx(0x2000A4C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C8) - Data: 45 36 00 08 returns 0x04 (0000ms, 691638ms total)
  786. T5690 16801:531 JLINK_ReadMemEx(0x2000A4E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4E0) - Data: 00 00 5B 07 returns 0x04 (0000ms, 691638ms total)
  787. T5690 16801:531 JLINK_ReadMemEx(0x2000A4CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4CC) - Data: 00 33 36 2E returns 0x04 (0000ms, 691638ms total)
  788. T5690 16801:531 JLINK_ReadMemEx(0x2000A4D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4D0) - Data: 31 33 34 2E returns 0x04 (0000ms, 691638ms total)
  789. T5690 16801:531 JLINK_ReadMemEx(0x2000A4D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4D4) - Data: 32 33 2E 31 returns 0x04 (0000ms, 691638ms total)
  790. T5690 16801:531 JLINK_ReadMemEx(0x2000A4D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4D8) - Data: 31 00 00 00 returns 0x04 (0000ms, 691638ms total)
  791. T5690 16801:531 JLINK_ReadMemEx(0x2000A4DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4DC) - Data: 00 00 00 00 returns 0x04 (0000ms, 691638ms total)
  792. T5690 16801:531 JLINK_ReadMemEx(0x2000A4E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4E0) - Data: 00 00 5B 07 returns 0x04 (0000ms, 691638ms total)
  793. T5690 16801:531 JLINK_ReadMemEx(0x6807C803, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x6807C803) - Data: 22 64 65 76 69 63 65 5F 31 22 3A 7B 22 73 65 6E ... returns 0x20 (0004ms, 691642ms total)
  794. T5690 16801:535 JLINK_ReadMemEx(0x6807C80F, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x6807C80F) - Data: 22 73 65 6E 73 6F 72 4C 69 73 74 22 3A 5B 7B 22 ... returns 0x20 (0004ms, 691646ms total)
  795. T5690 16801:539 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 2E 6D 65 04 returns 1 (0000ms, 691646ms total)
  796. T5690 16801:539 JLINK_ReadMemEx(0x6807C80F, 0x0291 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(657 bytes @ 0x6807C80F) - Data: 22 73 65 6E 73 6F 72 4C 69 73 74 22 3A 5B 7B 22 ... returns 0x291 (0025ms, 691671ms total)
  797. T5690 16801:571 JLINK_ReadMemEx(0x08004ADC, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08004B00) -- Updating C cache (64 bytes @ 0x08004B00) -- Read from C cache (60 bytes @ 0x08004ADC) - Data: 00 E0 F0 E7 00 BF E8 69 08 B9 EC 61 07 E0 E8 69 ... returns 0x3C (0004ms, 691675ms total)
  798. T5690 16801:575 JLINK_ReadMemEx(0x08004ADC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004ADC) - Data: 00 E0 returns 0x02 (0000ms, 691675ms total)
  799. T5690 16801:575 JLINK_ReadMemEx(0x08004ADE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004ADE) - Data: F0 E7 returns 0x02 (0000ms, 691675ms total)
  800. T5AF8 16802:400 JLINK_ReadMemEx(0x08004ADE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004ADE) - Data: F0 E7 returns 0x02 (0000ms, 691675ms total)
  801. T5AF8 16802:400 JLINK_ReadMemEx(0x08004AE0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004AE0) - Data: 00 BF E8 69 08 B9 EC 61 07 E0 E8 69 00 E0 C0 69 ... returns 0x3C (0000ms, 691675ms total)
  802. T5AF8 16802:400 JLINK_ReadMemEx(0x08004AE0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AE0) - Data: 00 BF returns 0x02 (0000ms, 691675ms total)
  803. T5AF8 16802:400 JLINK_ReadMemEx(0x08004ADE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004ADE) - Data: F0 E7 returns 0x02 (0000ms, 691675ms total)
  804. T5AF8 16802:400 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004ADE) -- Simulated returns 0x00 (0002ms, 691677ms total)
  805. T5AF8 16802:402 JLINK_ReadReg(R15 (PC)) returns 0x08004AC2 (0000ms, 691677ms total)
  806. T5AF8 16802:402 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 691677ms total)
  807. T5AF8 16802:402 JLINK_ReadReg(R0) returns 0x6807C80F (0000ms, 691677ms total)
  808. T5AF8 16802:402 JLINK_ReadReg(R1) returns 0x08004B1C (0000ms, 691677ms total)
  809. T5AF8 16802:402 JLINK_ReadReg(R2) returns 0x6807C81E (0000ms, 691677ms total)
  810. T5AF8 16802:402 JLINK_ReadReg(R3) returns 0x08004B2B (0000ms, 691677ms total)
  811. T5AF8 16802:402 JLINK_ReadReg(R4) returns 0x20011CF8 (0000ms, 691677ms total)
  812. T5AF8 16802:402 JLINK_ReadReg(R5) returns 0x200105A0 (0000ms, 691677ms total)
  813. T5AF8 16802:402 JLINK_ReadReg(R6) returns 0x6807C80F (0000ms, 691677ms total)
  814. T5AF8 16802:402 JLINK_ReadReg(R7) returns 0x6807C803 (0000ms, 691677ms total)
  815. T5AF8 16802:402 JLINK_ReadReg(R8) returns 0x6807C803 (0000ms, 691677ms total)
  816. T5AF8 16802:402 JLINK_ReadReg(R9) returns 0x6807C800 (0000ms, 691677ms total)
  817. T5AF8 16802:402 JLINK_ReadReg(R10) returns 0x10101010 (0000ms, 691677ms total)
  818. T5AF8 16802:402 JLINK_ReadReg(R11) returns 0x11111111 (0000ms, 691677ms total)
  819. T5AF8 16802:402 JLINK_ReadReg(R12) returns 0x00000000 (0000ms, 691677ms total)
  820. T5AF8 16802:402 JLINK_ReadReg(R13 (SP)) returns 0x2000A45C (0000ms, 691677ms total)
  821. T5AF8 16802:402 JLINK_ReadReg(R14) returns 0x08004ABF (0000ms, 691677ms total)
  822. T5AF8 16802:402 JLINK_ReadReg(R15 (PC)) returns 0x08004AC2 (0000ms, 691677ms total)
  823. T5AF8 16802:402 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 691677ms total)
  824. T5AF8 16802:402 JLINK_ReadReg(MSP) returns 0x20011CC8 (0000ms, 691677ms total)
  825. T5AF8 16802:402 JLINK_ReadReg(PSP) returns 0x2000A45C (0000ms, 691677ms total)
  826. T5AF8 16802:402 JLINK_ReadReg(CFBP) returns 0x02000000 (0000ms, 691677ms total)
  827. T5690 16802:402 JLINK_ReadMemEx(0x2000A470, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A470) - Data: C3 4C 00 08 returns 0x04 (0000ms, 691677ms total)
  828. T5690 16802:402 JLINK_ReadMemEx(0x2000A45C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A45C) - Data: A0 05 01 20 returns 0x04 (0000ms, 691677ms total)
  829. T5690 16802:402 JLINK_ReadMemEx(0x2000A460, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A460) - Data: 00 C8 07 68 returns 0x04 (0000ms, 691677ms total)
  830. T5690 16802:402 JLINK_ReadMemEx(0x2000A464, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A464) - Data: 01 00 00 00 returns 0x04 (0000ms, 691677ms total)
  831. T5690 16802:402 JLINK_ReadMemEx(0x2000A468, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A468) - Data: 80 05 01 20 returns 0x04 (0000ms, 691677ms total)
  832. T5690 16802:402 JLINK_ReadMemEx(0x2000A46C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A46C) - Data: 03 C8 07 68 returns 0x04 (0000ms, 691677ms total)
  833. T5690 16802:402 JLINK_ReadMemEx(0x2000A470, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A470) - Data: C3 4C 00 08 returns 0x04 (0000ms, 691677ms total)
  834. T5690 16802:402 JLINK_ReadMemEx(0x2000A490, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A490) - Data: C1 4B 00 08 returns 0x04 (0000ms, 691677ms total)
  835. T5690 16802:402 JLINK_ReadMemEx(0x2000A474, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A474) - Data: 01 00 00 00 returns 0x04 (0000ms, 691677ms total)
  836. T5690 16802:402 JLINK_ReadMemEx(0x2000A478, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A478) - Data: 00 C8 07 68 returns 0x04 (0000ms, 691677ms total)
  837. T5690 16802:402 JLINK_ReadMemEx(0x2000A47C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A47C) - Data: 00 DC 07 68 returns 0x04 (0000ms, 691677ms total)
  838. T5690 16802:402 JLINK_ReadMemEx(0x2000A480, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A480) - Data: 07 07 07 07 returns 0x04 (0000ms, 691677ms total)
  839. T5690 16802:402 JLINK_ReadMemEx(0x2000A484, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A484) - Data: 08 08 08 08 returns 0x04 (0000ms, 691677ms total)
  840. T5690 16802:402 JLINK_ReadMemEx(0x2000A488, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A488) - Data: 09 09 09 09 returns 0x04 (0001ms, 691678ms total)
  841. T5690 16802:403 JLINK_ReadMemEx(0x2000A48C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A48C) - Data: 10 10 10 10 returns 0x04 (0000ms, 691678ms total)
  842. T5690 16802:403 JLINK_ReadMemEx(0x2000A490, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A490) - Data: C1 4B 00 08 returns 0x04 (0000ms, 691678ms total)
  843. T5690 16802:403 JLINK_ReadMemEx(0x2000A4B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B8) - Data: 49 54 00 08 returns 0x04 (0000ms, 691678ms total)
  844. T5690 16802:403 JLINK_ReadMemEx(0x2000A4A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4A4) - Data: 00 00 00 00 returns 0x04 (0000ms, 691678ms total)
  845. T5690 16802:403 JLINK_ReadMemEx(0x2000A4A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4A8) - Data: 00 DC 07 68 returns 0x04 (0000ms, 691678ms total)
  846. T5690 16802:403 JLINK_ReadMemEx(0x2000A4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4AC) - Data: 06 06 06 06 returns 0x04 (0000ms, 691678ms total)
  847. T5690 16802:403 JLINK_ReadMemEx(0x2000A4B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B0) - Data: 07 07 07 07 returns 0x04 (0000ms, 691678ms total)
  848. T5690 16802:403 JLINK_ReadMemEx(0x2000A4B4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B4) - Data: 08 08 08 08 returns 0x04 (0000ms, 691678ms total)
  849. T5690 16802:403 JLINK_ReadMemEx(0x2000A4B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B8) - Data: 49 54 00 08 returns 0x04 (0000ms, 691678ms total)
  850. T5690 16802:403 JLINK_ReadMemEx(0x2000A4C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C8) - Data: 45 36 00 08 returns 0x04 (0000ms, 691678ms total)
  851. T5690 16802:403 JLINK_ReadMemEx(0x2000A4BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4BC) - Data: 04 04 04 04 returns 0x04 (0000ms, 691678ms total)
  852. T5690 16802:403 JLINK_ReadMemEx(0x2000A4C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C0) - Data: 05 05 05 05 returns 0x04 (0000ms, 691678ms total)
  853. T5690 16802:403 JLINK_ReadMemEx(0x2000A4C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C4) - Data: 06 06 06 06 returns 0x04 (0000ms, 691678ms total)
  854. T5690 16802:403 JLINK_ReadMemEx(0x2000A4C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C8) - Data: 45 36 00 08 returns 0x04 (0000ms, 691678ms total)
  855. T5690 16802:403 JLINK_ReadMemEx(0x2000A4E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4E0) - Data: 00 00 5B 07 returns 0x04 (0000ms, 691678ms total)
  856. T5690 16802:403 JLINK_ReadMemEx(0x2000A4CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4CC) - Data: 00 33 36 2E returns 0x04 (0000ms, 691678ms total)
  857. T5690 16802:403 JLINK_ReadMemEx(0x2000A4D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4D0) - Data: 31 33 34 2E returns 0x04 (0000ms, 691678ms total)
  858. T5690 16802:403 JLINK_ReadMemEx(0x2000A4D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4D4) - Data: 32 33 2E 31 returns 0x04 (0000ms, 691678ms total)
  859. T5690 16802:403 JLINK_ReadMemEx(0x2000A4D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4D8) - Data: 31 00 00 00 returns 0x04 (0000ms, 691678ms total)
  860. T5690 16802:403 JLINK_ReadMemEx(0x2000A4DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4DC) - Data: 00 00 00 00 returns 0x04 (0000ms, 691678ms total)
  861. T5690 16802:403 JLINK_ReadMemEx(0x2000A4E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4E0) - Data: 00 00 5B 07 returns 0x04 (0000ms, 691678ms total)
  862. T5690 16802:403 JLINK_ReadMemEx(0x6807C803, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x6807C803) - Data: 22 64 65 76 69 63 65 5F 31 22 3A 7B 22 73 65 6E ... returns 0x20 (0004ms, 691682ms total)
  863. T5690 16802:407 JLINK_ReadMemEx(0x6807C80F, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x6807C80F) - Data: 22 73 65 6E 73 6F 72 4C 69 73 74 22 3A 5B 7B 22 ... returns 0x20 (0005ms, 691687ms total)
  864. T5690 16802:412 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 2F 6D 65 04 returns 1 (0000ms, 691687ms total)
  865. T5690 16802:412 JLINK_ReadMemEx(0x6807C80F, 0x0291 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(657 bytes @ 0x6807C80F) - Data: 22 73 65 6E 73 6F 72 4C 69 73 74 22 3A 5B 7B 22 ... returns 0x291 (0024ms, 691711ms total)
  866. T5690 16802:441 JLINK_ReadMemEx(0x08004AC0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004AC0) - Data: 0D E0 21 46 30 46 00 F0 4B F9 18 A1 30 46 FB F7 ... returns 0x3C (0000ms, 691711ms total)
  867. T5690 16802:441 JLINK_ReadMemEx(0x08004AC0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AC0) - Data: 0D E0 returns 0x02 (0000ms, 691711ms total)
  868. T5690 16802:441 JLINK_ReadMemEx(0x08004AC2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AC2) - Data: 21 46 returns 0x02 (0000ms, 691711ms total)
  869. T5690 16802:441 JLINK_ReadMemEx(0x08004AC2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AC2) - Data: 21 46 returns 0x02 (0000ms, 691711ms total)
  870. T5690 16802:441 JLINK_ReadMemEx(0x08004AC4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004AC4) - Data: 30 46 00 F0 4B F9 18 A1 30 46 FB F7 22 FC 06 46 ... returns 0x3C (0000ms, 691711ms total)
  871. T5690 16802:441 JLINK_ReadMemEx(0x08004AC4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AC4) - Data: 30 46 returns 0x02 (0000ms, 691711ms total)
  872. T5690 16802:441 JLINK_ReadMemEx(0x08004AC4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004AC4) - Data: 30 46 00 F0 4B F9 18 A1 30 46 FB F7 22 FC 06 46 ... returns 0x3C (0000ms, 691711ms total)
  873. T5690 16802:441 JLINK_ReadMemEx(0x08004AC4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AC4) - Data: 30 46 returns 0x02 (0000ms, 691711ms total)
  874. T5690 16802:441 JLINK_ReadMemEx(0x08004AC6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AC6) - Data: 00 F0 returns 0x02 (0000ms, 691711ms total)
  875. T5690 16802:441 JLINK_ReadMemEx(0x08004AC6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AC6) - Data: 00 F0 returns 0x02 (0000ms, 691711ms total)
  876. T5690 16802:441 JLINK_ReadMemEx(0x08004AC8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004AC8) - Data: 4B F9 18 A1 30 46 FB F7 22 FC 06 46 76 1C 30 78 ... returns 0x3C (0000ms, 691711ms total)
  877. T5690 16802:441 JLINK_ReadMemEx(0x08004AC8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AC8) - Data: 4B F9 returns 0x02 (0000ms, 691711ms total)
  878. T5690 16802:441 JLINK_ReadMemEx(0x08004ACA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004ACA) - Data: 18 A1 returns 0x02 (0000ms, 691711ms total)
  879. T5690 16802:441 JLINK_ReadMemEx(0x08004ACC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004ACC) - Data: 30 46 FB F7 22 FC 06 46 76 1C 30 78 5D 28 00 D1 ... returns 0x3C (0000ms, 691711ms total)
  880. T5690 16802:441 JLINK_ReadMemEx(0x08004ACC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004ACC) - Data: 30 46 returns 0x02 (0000ms, 691711ms total)
  881. T5690 16802:441 JLINK_ReadMemEx(0x08004ACC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004ACC) - Data: 30 46 FB F7 22 FC 06 46 76 1C 30 78 5D 28 00 D1 ... returns 0x3C (0000ms, 691711ms total)
  882. T5690 16802:441 JLINK_ReadMemEx(0x08004ACC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004ACC) - Data: 30 46 returns 0x02 (0000ms, 691711ms total)
  883. T5690 16802:441 JLINK_ReadMemEx(0x08004ACE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004ACE) - Data: FB F7 returns 0x02 (0000ms, 691711ms total)
  884. T5690 16802:441 JLINK_ReadMemEx(0x08004ACE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004ACE) - Data: FB F7 returns 0x02 (0000ms, 691711ms total)
  885. T5690 16802:441 JLINK_ReadMemEx(0x08004AD0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004AD0) - Data: 22 FC 06 46 76 1C 30 78 5D 28 00 D1 00 E0 F0 E7 ... returns 0x3C (0000ms, 691711ms total)
  886. T5690 16802:441 JLINK_ReadMemEx(0x08004AD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AD0) - Data: 22 FC returns 0x02 (0000ms, 691711ms total)
  887. T5AF8 16805:585 JLINK_ReadMemEx(0x08004AC2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AC2) - Data: 21 46 returns 0x02 (0000ms, 691711ms total)
  888. T5AF8 16805:585 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004AC2) -- Simulated returns 0x00 (0001ms, 691712ms total)
  889. T5AF8 16805:586 JLINK_ReadReg(R15 (PC)) returns 0x08004AC4 (0000ms, 691712ms total)
  890. T5AF8 16805:586 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 691712ms total)
  891. T5AF8 16805:586 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004AC4) -- Simulated returns 0x00 (0000ms, 691712ms total)
  892. T5AF8 16805:586 JLINK_ReadReg(R15 (PC)) returns 0x08004AC6 (0000ms, 691712ms total)
  893. T5AF8 16805:586 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 691712ms total)
  894. T5AF8 16805:586 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004AC6) -- Read from C cache (2 bytes @ 0x08004AC8) -- Simulated returns 0x00 (0000ms, 691712ms total)
  895. T5AF8 16805:586 JLINK_ReadReg(R15 (PC)) returns 0x08004D60 (0000ms, 691712ms total)
  896. T5AF8 16805:586 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 691712ms total)
  897. T5AF8 16805:586 JLINK_ReadReg(R0) returns 0x6807C80F (0000ms, 691712ms total)
  898. T5AF8 16805:586 JLINK_ReadReg(R1) returns 0x20011CF8 (0000ms, 691712ms total)
  899. T5AF8 16805:586 JLINK_ReadReg(R2) returns 0x6807C81E (0000ms, 691712ms total)
  900. T5AF8 16805:586 JLINK_ReadReg(R3) returns 0x08004B2B (0000ms, 691712ms total)
  901. T5AF8 16805:586 JLINK_ReadReg(R4) returns 0x20011CF8 (0000ms, 691712ms total)
  902. T5AF8 16805:586 JLINK_ReadReg(R5) returns 0x200105A0 (0000ms, 691712ms total)
  903. T5AF8 16805:586 JLINK_ReadReg(R6) returns 0x6807C80F (0000ms, 691712ms total)
  904. T5AF8 16805:586 JLINK_ReadReg(R7) returns 0x6807C803 (0000ms, 691712ms total)
  905. T5AF8 16805:586 JLINK_ReadReg(R8) returns 0x6807C803 (0001ms, 691713ms total)
  906. T5AF8 16805:587 JLINK_ReadReg(R9) returns 0x6807C800 (0000ms, 691713ms total)
  907. T5AF8 16805:587 JLINK_ReadReg(R10) returns 0x10101010 (0000ms, 691713ms total)
  908. T5AF8 16805:587 JLINK_ReadReg(R11) returns 0x11111111 (0000ms, 691713ms total)
  909. T5AF8 16805:587 JLINK_ReadReg(R12) returns 0x00000000 (0000ms, 691713ms total)
  910. T5AF8 16805:587 JLINK_ReadReg(R13 (SP)) returns 0x2000A45C (0000ms, 691713ms total)
  911. T5AF8 16805:587 JLINK_ReadReg(R14) returns 0x08004ACB (0000ms, 691713ms total)
  912. T5AF8 16805:587 JLINK_ReadReg(R15 (PC)) returns 0x08004D60 (0000ms, 691713ms total)
  913. T5AF8 16805:587 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 691713ms total)
  914. T5AF8 16805:587 JLINK_ReadReg(MSP) returns 0x20011CC8 (0000ms, 691713ms total)
  915. T5AF8 16805:587 JLINK_ReadReg(PSP) returns 0x2000A45C (0000ms, 691713ms total)
  916. T5AF8 16805:587 JLINK_ReadReg(CFBP) returns 0x02000000 (0000ms, 691713ms total)
  917. T5690 16805:587 JLINK_ReadMemEx(0x2000A470, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A470) - Data: C3 4C 00 08 returns 0x04 (0000ms, 691713ms total)
  918. T5690 16805:587 JLINK_ReadMemEx(0x2000A45C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A45C) - Data: A0 05 01 20 returns 0x04 (0000ms, 691713ms total)
  919. T5690 16805:587 JLINK_ReadMemEx(0x2000A460, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A460) - Data: 00 C8 07 68 returns 0x04 (0000ms, 691713ms total)
  920. T5690 16805:587 JLINK_ReadMemEx(0x2000A464, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A464) - Data: 01 00 00 00 returns 0x04 (0000ms, 691713ms total)
  921. T5690 16805:587 JLINK_ReadMemEx(0x2000A468, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A468) - Data: 80 05 01 20 returns 0x04 (0000ms, 691713ms total)
  922. T5690 16805:587 JLINK_ReadMemEx(0x2000A46C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A46C) - Data: 03 C8 07 68 returns 0x04 (0000ms, 691713ms total)
  923. T5690 16805:587 JLINK_ReadMemEx(0x2000A470, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A470) - Data: C3 4C 00 08 returns 0x04 (0000ms, 691713ms total)
  924. T5690 16805:587 JLINK_ReadMemEx(0x2000A490, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A490) - Data: C1 4B 00 08 returns 0x04 (0000ms, 691713ms total)
  925. T5690 16805:587 JLINK_ReadMemEx(0x2000A474, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A474) - Data: 01 00 00 00 returns 0x04 (0000ms, 691713ms total)
  926. T5690 16805:587 JLINK_ReadMemEx(0x2000A478, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A478) - Data: 00 C8 07 68 returns 0x04 (0000ms, 691713ms total)
  927. T5690 16805:587 JLINK_ReadMemEx(0x2000A47C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A47C) - Data: 00 DC 07 68 returns 0x04 (0000ms, 691713ms total)
  928. T5690 16805:587 JLINK_ReadMemEx(0x2000A480, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A480) - Data: 07 07 07 07 returns 0x04 (0000ms, 691713ms total)
  929. T5690 16805:587 JLINK_ReadMemEx(0x2000A484, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A484) - Data: 08 08 08 08 returns 0x04 (0000ms, 691713ms total)
  930. T5690 16805:587 JLINK_ReadMemEx(0x2000A488, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A488) - Data: 09 09 09 09 returns 0x04 (0000ms, 691713ms total)
  931. T5690 16805:587 JLINK_ReadMemEx(0x2000A48C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A48C) - Data: 10 10 10 10 returns 0x04 (0000ms, 691713ms total)
  932. T5690 16805:587 JLINK_ReadMemEx(0x2000A490, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A490) - Data: C1 4B 00 08 returns 0x04 (0000ms, 691713ms total)
  933. T5690 16805:587 JLINK_ReadMemEx(0x2000A4B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B8) - Data: 49 54 00 08 returns 0x04 (0000ms, 691713ms total)
  934. T5690 16805:587 JLINK_ReadMemEx(0x2000A4A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4A4) - Data: 00 00 00 00 returns 0x04 (0000ms, 691713ms total)
  935. T5690 16805:587 JLINK_ReadMemEx(0x2000A4A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4A8) - Data: 00 DC 07 68 returns 0x04 (0000ms, 691713ms total)
  936. T5690 16805:587 JLINK_ReadMemEx(0x2000A4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4AC) - Data: 06 06 06 06 returns 0x04 (0000ms, 691713ms total)
  937. T5690 16805:587 JLINK_ReadMemEx(0x2000A4B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B0) - Data: 07 07 07 07 returns 0x04 (0000ms, 691713ms total)
  938. T5690 16805:587 JLINK_ReadMemEx(0x2000A4B4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B4) - Data: 08 08 08 08 returns 0x04 (0000ms, 691713ms total)
  939. T5690 16805:587 JLINK_ReadMemEx(0x2000A4B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B8) - Data: 49 54 00 08 returns 0x04 (0000ms, 691713ms total)
  940. T5690 16805:587 JLINK_ReadMemEx(0x2000A4C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C8) - Data: 45 36 00 08 returns 0x04 (0000ms, 691713ms total)
  941. T5690 16805:587 JLINK_ReadMemEx(0x2000A4BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4BC) - Data: 04 04 04 04 returns 0x04 (0000ms, 691713ms total)
  942. T5690 16805:587 JLINK_ReadMemEx(0x2000A4C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C0) - Data: 05 05 05 05 returns 0x04 (0000ms, 691713ms total)
  943. T5690 16805:587 JLINK_ReadMemEx(0x2000A4C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C4) - Data: 06 06 06 06 returns 0x04 (0000ms, 691713ms total)
  944. T5690 16805:587 JLINK_ReadMemEx(0x2000A4C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C8) - Data: 45 36 00 08 returns 0x04 (0000ms, 691713ms total)
  945. T5690 16805:587 JLINK_ReadMemEx(0x2000A4E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4E0) - Data: 00 00 5B 07 returns 0x04 (0000ms, 691713ms total)
  946. T5690 16805:587 JLINK_ReadMemEx(0x2000A4CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4CC) - Data: 00 33 36 2E returns 0x04 (0000ms, 691713ms total)
  947. T5690 16805:587 JLINK_ReadMemEx(0x2000A4D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4D0) - Data: 31 33 34 2E returns 0x04 (0000ms, 691713ms total)
  948. T5690 16805:587 JLINK_ReadMemEx(0x2000A4D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4D4) - Data: 32 33 2E 31 returns 0x04 (0000ms, 691713ms total)
  949. T5690 16805:587 JLINK_ReadMemEx(0x2000A4D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4D8) - Data: 31 00 00 00 returns 0x04 (0000ms, 691713ms total)
  950. T5690 16805:587 JLINK_ReadMemEx(0x2000A4DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4DC) - Data: 00 00 00 00 returns 0x04 (0000ms, 691713ms total)
  951. T5690 16805:587 JLINK_ReadMemEx(0x2000A4E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4E0) - Data: 00 00 5B 07 returns 0x04 (0000ms, 691713ms total)
  952. T5690 16805:588 JLINK_ReadMemEx(0x6807C80F, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x6807C80F) - Data: 22 73 65 6E 73 6F 72 4C 69 73 74 22 3A 5B 7B 22 ... returns 0x20 (0003ms, 691716ms total)
  953. T5690 16805:593 JLINK_ReadMemEx(0x6807C80F, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x6807C80F) - Data: 22 73 65 6E 73 6F 72 4C 69 73 74 22 3A 5B 7B 22 ... returns 0x20 (0004ms, 691720ms total)
  954. T5690 16805:597 JLINK_ReadMemEx(0x6807C803, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x6807C803) - Data: 22 64 65 76 69 63 65 5F 31 22 3A 7B 22 73 65 6E ... returns 0x20 (0004ms, 691724ms total)
  955. T5690 16805:601 JLINK_ReadMemEx(0x6807C80F, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x6807C80F) - Data: 22 73 65 6E 73 6F 72 4C 69 73 74 22 3A 5B 7B 22 ... returns 0x20 (0004ms, 691728ms total)
  956. T5690 16805:605 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 32 6D 65 04 returns 1 (0000ms, 691728ms total)
  957. T5690 16805:605 JLINK_ReadMemEx(0x6807C80F, 0x0291 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(657 bytes @ 0x6807C80F) - Data: 22 73 65 6E 73 6F 72 4C 69 73 74 22 3A 5B 7B 22 ... returns 0x291 (0025ms, 691753ms total)
  958. T5690 16805:635 JLINK_ReadMemEx(0x08004C60, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x08004C40) -- Updating C cache (128 bytes @ 0x08004C40) -- Read from C cache (60 bytes @ 0x08004C60) - Data: 22 46 27 A1 28 46 02 F0 FB FA 28 A1 28 46 02 F0 ... returns 0x3C (0006ms, 691759ms total)
  959. T5690 16805:641 JLINK_ReadMemEx(0x08004C60, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C60) - Data: 22 46 returns 0x02 (0000ms, 691759ms total)
  960. T5690 16805:641 JLINK_ReadMemEx(0x08004C62, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C62) - Data: 27 A1 returns 0x02 (0000ms, 691759ms total)
  961. T5690 16805:641 JLINK_ReadMemEx(0x08004C62, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C62) - Data: 27 A1 returns 0x02 (0000ms, 691759ms total)
  962. T5690 16805:641 JLINK_ReadMemEx(0x08004C64, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004C64) - Data: 28 46 02 F0 FB FA 28 A1 28 46 02 F0 E1 FA 20 75 ... returns 0x3C (0000ms, 691759ms total)
  963. T5690 16805:641 JLINK_ReadMemEx(0x08004C64, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C64) - Data: 28 46 returns 0x02 (0000ms, 691759ms total)
  964. T5690 16805:641 JLINK_ReadMemEx(0x08004C64, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004C64) - Data: 28 46 02 F0 FB FA 28 A1 28 46 02 F0 E1 FA 20 75 ... returns 0x3C (0000ms, 691759ms total)
  965. T5690 16805:641 JLINK_ReadMemEx(0x08004C64, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C64) - Data: 28 46 returns 0x02 (0000ms, 691759ms total)
  966. T5690 16805:641 JLINK_ReadMemEx(0x08004C66, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C66) - Data: 02 F0 returns 0x02 (0000ms, 691759ms total)
  967. T5690 16805:641 JLINK_ReadMemEx(0x08004C66, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C66) - Data: 02 F0 returns 0x02 (0001ms, 691760ms total)
  968. T5690 16805:642 JLINK_ReadMemEx(0x08004C68, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004C68) - Data: FB FA 28 A1 28 46 02 F0 E1 FA 20 75 29 A1 28 46 ... returns 0x3C (0000ms, 691760ms total)
  969. T5690 16805:642 JLINK_ReadMemEx(0x08004C68, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C68) - Data: FB FA returns 0x02 (0000ms, 691760ms total)
  970. T5690 16805:642 JLINK_ReadMemEx(0x08004C6A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C6A) - Data: 28 A1 returns 0x02 (0000ms, 691760ms total)
  971. T5690 16805:642 JLINK_ReadMemEx(0x08004C6C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004C6C) - Data: 28 46 02 F0 E1 FA 20 75 29 A1 28 46 02 F0 DC FA ... returns 0x3C (0000ms, 691760ms total)
  972. T5690 16805:642 JLINK_ReadMemEx(0x08004C6C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C6C) - Data: 28 46 returns 0x02 (0000ms, 691760ms total)
  973. T5690 16805:642 JLINK_ReadMemEx(0x08004C6C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004C6C) - Data: 28 46 02 F0 E1 FA 20 75 29 A1 28 46 02 F0 DC FA ... returns 0x3C (0000ms, 691760ms total)
  974. T5690 16805:642 JLINK_ReadMemEx(0x08004C6C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C6C) - Data: 28 46 returns 0x02 (0000ms, 691760ms total)
  975. T5690 16805:642 JLINK_ReadMemEx(0x08004C6E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C6E) - Data: 02 F0 returns 0x02 (0000ms, 691760ms total)
  976. T5690 16805:642 JLINK_ReadMemEx(0x08004C6E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C6E) - Data: 02 F0 returns 0x02 (0000ms, 691760ms total)
  977. T5690 16805:642 JLINK_ReadMemEx(0x08004C70, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004C70) - Data: E1 FA 20 75 29 A1 28 46 02 F0 DC FA 60 75 2A A1 ... returns 0x3C (0000ms, 691760ms total)
  978. T5690 16805:642 JLINK_ReadMemEx(0x08004C70, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C70) - Data: E1 FA returns 0x02 (0000ms, 691760ms total)
  979. T5690 16805:642 JLINK_ReadMemEx(0x08004C72, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C72) - Data: 20 75 returns 0x02 (0000ms, 691760ms total)
  980. T5690 16805:642 JLINK_ReadMemEx(0x08004C74, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004C74) - Data: 29 A1 28 46 02 F0 DC FA 60 75 2A A1 28 46 02 F0 ... returns 0x3C (0000ms, 691760ms total)
  981. T5690 16805:642 JLINK_ReadMemEx(0x08004C74, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C74) - Data: 29 A1 returns 0x02 (0000ms, 691760ms total)
  982. T5690 16805:642 JLINK_ReadMemEx(0x08004C74, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004C74) - Data: 29 A1 28 46 02 F0 DC FA 60 75 2A A1 28 46 02 F0 ... returns 0x3C (0000ms, 691760ms total)
  983. T5690 16805:642 JLINK_ReadMemEx(0x08004C74, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C74) - Data: 29 A1 returns 0x02 (0000ms, 691760ms total)
  984. T5690 16805:642 JLINK_ReadMemEx(0x08004C76, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C76) - Data: 28 46 returns 0x02 (0000ms, 691760ms total)
  985. T5690 16805:642 JLINK_ReadMemEx(0x08004C76, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C76) - Data: 28 46 returns 0x02 (0000ms, 691760ms total)
  986. T5690 16805:642 JLINK_ReadMemEx(0x08004C78, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004C78) - Data: 02 F0 DC FA 60 75 2A A1 28 46 02 F0 D7 FA A0 75 ... returns 0x3C (0000ms, 691760ms total)
  987. T5690 16805:642 JLINK_ReadMemEx(0x08004C78, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C78) - Data: 02 F0 returns 0x02 (0000ms, 691760ms total)
  988. T5690 16805:642 JLINK_ReadMemEx(0x08004C78, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004C78) - Data: 02 F0 DC FA 60 75 2A A1 28 46 02 F0 D7 FA A0 75 ... returns 0x3C (0000ms, 691760ms total)
  989. T5690 16805:642 JLINK_ReadMemEx(0x08004C78, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C78) - Data: 02 F0 returns 0x02 (0000ms, 691760ms total)
  990. T5690 16805:642 JLINK_ReadMemEx(0x08004C7A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C7A) - Data: DC FA returns 0x02 (0000ms, 691760ms total)
  991. T5690 16805:642 JLINK_ReadMemEx(0x08004C7C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004C7C) - Data: 60 75 2A A1 28 46 02 F0 D7 FA A0 75 2C A1 28 46 ... returns 0x3C (0000ms, 691760ms total)
  992. T5690 16805:642 JLINK_ReadMemEx(0x08004C7C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C7C) - Data: 60 75 returns 0x02 (0000ms, 691760ms total)
  993. T5690 16805:642 JLINK_ReadMemEx(0x08004C7E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C7E) - Data: 2A A1 returns 0x02 (0000ms, 691760ms total)
  994. T5690 16805:642 JLINK_ReadMemEx(0x08004C7E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C7E) - Data: 2A A1 returns 0x02 (0000ms, 691760ms total)
  995. T5690 16805:642 JLINK_ReadMemEx(0x08004C80, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004C80) - Data: 28 46 02 F0 D7 FA A0 75 2C A1 28 46 02 F0 D2 FA ... returns 0x3C (0000ms, 691760ms total)
  996. T5690 16805:642 JLINK_ReadMemEx(0x08004C80, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C80) - Data: 28 46 returns 0x02 (0000ms, 691760ms total)
  997. T5690 16805:642 JLINK_ReadMemEx(0x08004C80, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004C80) - Data: 28 46 02 F0 D7 FA A0 75 2C A1 28 46 02 F0 D2 FA ... returns 0x3C (0000ms, 691760ms total)
  998. T5690 16805:642 JLINK_ReadMemEx(0x08004C80, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C80) - Data: 28 46 returns 0x02 (0000ms, 691760ms total)
  999. T5690 16805:642 JLINK_ReadMemEx(0x08004C82, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C82) - Data: 02 F0 returns 0x02 (0000ms, 691760ms total)
  1000. T5690 16805:642 JLINK_ReadMemEx(0x08004C82, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C82) - Data: 02 F0 returns 0x02 (0000ms, 691760ms total)
  1001. T5690 16805:642 JLINK_ReadMemEx(0x08004C84, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004C84) - Data: D7 FA A0 75 2C A1 28 46 02 F0 D2 FA E0 75 01 26 ... returns 0x3C (0000ms, 691760ms total)
  1002. T5690 16805:642 JLINK_ReadMemEx(0x08004C84, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C84) - Data: D7 FA returns 0x02 (0000ms, 691760ms total)
  1003. T5690 16805:642 JLINK_ReadMemEx(0x08004C86, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C86) - Data: A0 75 returns 0x02 (0000ms, 691760ms total)
  1004. T5690 16805:642 JLINK_ReadMemEx(0x08004C88, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08004CC0) -- Updating C cache (64 bytes @ 0x08004CC0) -- Read from C cache (60 bytes @ 0x08004C88) - Data: 2C A1 28 46 02 F0 D2 FA E0 75 01 26 14 21 00 20 ... returns 0x3C (0005ms, 691765ms total)
  1005. T5690 16805:647 JLINK_ReadMemEx(0x08004C88, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C88) - Data: 2C A1 returns 0x02 (0000ms, 691765ms total)
  1006. T5690 16805:647 JLINK_ReadMemEx(0x08004C88, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004C88) - Data: 2C A1 28 46 02 F0 D2 FA E0 75 01 26 14 21 00 20 ... returns 0x3C (0000ms, 691765ms total)
  1007. T5690 16805:647 JLINK_ReadMemEx(0x08004C88, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C88) - Data: 2C A1 returns 0x02 (0000ms, 691765ms total)
  1008. T5690 16805:647 JLINK_ReadMemEx(0x08004C8A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C8A) - Data: 28 46 returns 0x02 (0000ms, 691765ms total)
  1009. T5690 16805:647 JLINK_ReadMemEx(0x08004C8A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C8A) - Data: 28 46 returns 0x02 (0000ms, 691765ms total)
  1010. T5690 16805:647 JLINK_ReadMemEx(0x08004C8C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004C8C) - Data: 02 F0 D2 FA E0 75 01 26 14 21 00 20 02 F0 90 FA ... returns 0x3C (0000ms, 691765ms total)
  1011. T5690 16805:647 JLINK_ReadMemEx(0x08004C8C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C8C) - Data: 02 F0 returns 0x02 (0000ms, 691765ms total)
  1012. T5690 16805:647 JLINK_ReadMemEx(0x08004C8C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004C8C) - Data: 02 F0 D2 FA E0 75 01 26 14 21 00 20 02 F0 90 FA ... returns 0x3C (0000ms, 691765ms total)
  1013. T5690 16805:647 JLINK_ReadMemEx(0x08004C8C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C8C) - Data: 02 F0 returns 0x02 (0000ms, 691765ms total)
  1014. T5690 16805:647 JLINK_ReadMemEx(0x08004C8E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C8E) - Data: D2 FA returns 0x02 (0000ms, 691765ms total)
  1015. T5690 16805:647 JLINK_ReadMemEx(0x08004C90, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004C90) - Data: E0 75 01 26 14 21 00 20 02 F0 90 FA 07 46 15 E0 ... returns 0x3C (0000ms, 691765ms total)
  1016. T5690 16805:647 JLINK_ReadMemEx(0x08004C90, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C90) - Data: E0 75 returns 0x02 (0000ms, 691765ms total)
  1017. T5690 16805:647 JLINK_ReadMemEx(0x08004C92, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C92) - Data: 01 26 returns 0x02 (0000ms, 691765ms total)
  1018. T5690 16805:647 JLINK_ReadMemEx(0x08004C92, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C92) - Data: 01 26 returns 0x02 (0000ms, 691765ms total)
  1019. T5690 16805:647 JLINK_ReadMemEx(0x08004C94, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004C94) - Data: 14 21 00 20 02 F0 90 FA 07 46 15 E0 32 46 2A A1 ... returns 0x3C (0000ms, 691765ms total)
  1020. T5690 16805:647 JLINK_ReadMemEx(0x08004C94, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C94) - Data: 14 21 returns 0x02 (0000ms, 691765ms total)
  1021. T5690 16805:647 JLINK_ReadMemEx(0x08004C94, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004C94) - Data: 14 21 00 20 02 F0 90 FA 07 46 15 E0 32 46 2A A1 ... returns 0x3C (0000ms, 691765ms total)
  1022. T5690 16805:647 JLINK_ReadMemEx(0x08004C94, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C94) - Data: 14 21 returns 0x02 (0000ms, 691765ms total)
  1023. T5690 16805:647 JLINK_ReadMemEx(0x08004C96, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C96) - Data: 00 20 returns 0x02 (0000ms, 691765ms total)
  1024. T5690 16805:647 JLINK_ReadMemEx(0x08004C96, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C96) - Data: 00 20 returns 0x02 (0000ms, 691765ms total)
  1025. T5690 16805:647 JLINK_ReadMemEx(0x08004C98, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004C98) - Data: 02 F0 90 FA 07 46 15 E0 32 46 2A A1 38 46 FF F7 ... returns 0x3C (0000ms, 691765ms total)
  1026. T5690 16805:647 JLINK_ReadMemEx(0x08004C98, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C98) - Data: 02 F0 returns 0x02 (0000ms, 691765ms total)
  1027. T5690 16805:647 JLINK_ReadMemEx(0x08004C98, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004C98) - Data: 02 F0 90 FA 07 46 15 E0 32 46 2A A1 38 46 FF F7 ... returns 0x3C (0000ms, 691765ms total)
  1028. T5690 16805:647 JLINK_ReadMemEx(0x08004C98, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C98) - Data: 02 F0 returns 0x02 (0000ms, 691765ms total)
  1029. T5690 16805:647 JLINK_ReadMemEx(0x08004C9A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C9A) - Data: 90 FA returns 0x02 (0000ms, 691765ms total)
  1030. T5690 16805:647 JLINK_ReadMemEx(0x08004C9C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004C9C) - Data: 07 46 15 E0 32 46 2A A1 38 46 FF F7 15 FA 39 46 ... returns 0x3C (0000ms, 691765ms total)
  1031. T5690 16805:647 JLINK_ReadMemEx(0x08004C9C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C9C) - Data: 07 46 returns 0x02 (0000ms, 691765ms total)
  1032. T5690 16805:647 JLINK_ReadMemEx(0x08004C9E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C9E) - Data: 15 E0 returns 0x02 (0000ms, 691765ms total)
  1033. T5690 16805:647 JLINK_ReadMemEx(0x08004C9E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C9E) - Data: 15 E0 returns 0x02 (0000ms, 691765ms total)
  1034. T5690 16805:647 JLINK_ReadMemEx(0x08004CA0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CA0) - Data: 32 46 2A A1 38 46 FF F7 15 FA 39 46 28 46 FB F7 ... returns 0x3C (0000ms, 691765ms total)
  1035. T5690 16805:647 JLINK_ReadMemEx(0x08004CA0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CA0) - Data: 32 46 returns 0x02 (0000ms, 691765ms total)
  1036. T5690 16805:647 JLINK_ReadMemEx(0x08004CA0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CA0) - Data: 32 46 2A A1 38 46 FF F7 15 FA 39 46 28 46 FB F7 ... returns 0x3C (0000ms, 691765ms total)
  1037. T5690 16805:647 JLINK_ReadMemEx(0x08004CA0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CA0) - Data: 32 46 returns 0x02 (0000ms, 691765ms total)
  1038. T5690 16805:647 JLINK_ReadMemEx(0x08004CA2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CA2) - Data: 2A A1 returns 0x02 (0000ms, 691765ms total)
  1039. T5690 16805:647 JLINK_ReadMemEx(0x08004CA2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CA2) - Data: 2A A1 returns 0x02 (0000ms, 691765ms total)
  1040. T5690 16805:647 JLINK_ReadMemEx(0x08004CA4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CA4) - Data: 38 46 FF F7 15 FA 39 46 28 46 FB F7 32 FB 80 46 ... returns 0x3C (0000ms, 691765ms total)
  1041. T5690 16805:647 JLINK_ReadMemEx(0x08004CA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CA4) - Data: 38 46 returns 0x02 (0000ms, 691765ms total)
  1042. T5690 16805:647 JLINK_ReadMemEx(0x08004CA4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CA4) - Data: 38 46 FF F7 15 FA 39 46 28 46 FB F7 32 FB 80 46 ... returns 0x3C (0000ms, 691765ms total)
  1043. T5690 16805:647 JLINK_ReadMemEx(0x08004CA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CA4) - Data: 38 46 returns 0x02 (0000ms, 691765ms total)
  1044. T5690 16805:647 JLINK_ReadMemEx(0x08004CA6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CA6) - Data: FF F7 returns 0x02 (0000ms, 691765ms total)
  1045. T5690 16805:647 JLINK_ReadMemEx(0x08004CA6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CA6) - Data: FF F7 returns 0x02 (0000ms, 691765ms total)
  1046. T5690 16805:647 JLINK_ReadMemEx(0x08004CA8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CA8) - Data: 15 FA 39 46 28 46 FB F7 32 FB 80 46 B8 F1 00 0F ... returns 0x3C (0000ms, 691765ms total)
  1047. T5690 16805:647 JLINK_ReadMemEx(0x08004CA8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CA8) - Data: 15 FA returns 0x02 (0000ms, 691765ms total)
  1048. T5690 16805:647 JLINK_ReadMemEx(0x08004CAA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CAA) - Data: 39 46 returns 0x02 (0000ms, 691765ms total)
  1049. T5690 16805:647 JLINK_ReadMemEx(0x08004CAC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CAC) - Data: 28 46 FB F7 32 FB 80 46 B8 F1 00 0F 06 D0 21 46 ... returns 0x3C (0000ms, 691765ms total)
  1050. T5690 16805:647 JLINK_ReadMemEx(0x08004CAC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CAC) - Data: 28 46 returns 0x02 (0000ms, 691765ms total)
  1051. T5690 16805:647 JLINK_ReadMemEx(0x08004CAC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CAC) - Data: 28 46 FB F7 32 FB 80 46 B8 F1 00 0F 06 D0 21 46 ... returns 0x3C (0000ms, 691765ms total)
  1052. T5690 16805:647 JLINK_ReadMemEx(0x08004CAC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CAC) - Data: 28 46 returns 0x02 (0000ms, 691765ms total)
  1053. T5690 16805:647 JLINK_ReadMemEx(0x08004CAE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CAE) - Data: FB F7 returns 0x02 (0000ms, 691765ms total)
  1054. T5690 16805:647 JLINK_ReadMemEx(0x08004CAE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CAE) - Data: FB F7 returns 0x02 (0000ms, 691765ms total)
  1055. T5690 16805:647 JLINK_ReadMemEx(0x08004CB0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CB0) - Data: 32 FB 80 46 B8 F1 00 0F 06 D0 21 46 40 46 FF F7 ... returns 0x3C (0000ms, 691765ms total)
  1056. T5690 16805:647 JLINK_ReadMemEx(0x08004CB0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CB0) - Data: 32 FB returns 0x02 (0000ms, 691765ms total)
  1057. T5690 16805:647 JLINK_ReadMemEx(0x08004CB2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CB2) - Data: 80 46 returns 0x02 (0000ms, 691765ms total)
  1058. T5690 16805:647 JLINK_ReadMemEx(0x08004CB4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CB4) - Data: B8 F1 00 0F 06 D0 21 46 40 46 FF F7 E5 FE 70 1C ... returns 0x3C (0000ms, 691765ms total)
  1059. T5690 16805:647 JLINK_ReadMemEx(0x08004CB4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CB4) - Data: B8 F1 returns 0x02 (0000ms, 691765ms total)
  1060. T5690 16805:647 JLINK_ReadMemEx(0x08004CB4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CB4) - Data: B8 F1 00 0F 06 D0 21 46 40 46 FF F7 E5 FE 70 1C ... returns 0x3C (0000ms, 691765ms total)
  1061. T5690 16805:648 JLINK_ReadMemEx(0x08004CB4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CB4) - Data: B8 F1 returns 0x02 (0000ms, 691765ms total)
  1062. T5690 16805:648 JLINK_ReadMemEx(0x08004CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CB6) - Data: 00 0F returns 0x02 (0000ms, 691765ms total)
  1063. T5690 16805:648 JLINK_ReadMemEx(0x08004CB8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CB8) - Data: 06 D0 21 46 40 46 FF F7 E5 FE 70 1C C6 B2 00 E0 ... returns 0x3C (0000ms, 691765ms total)
  1064. T5690 16805:648 JLINK_ReadMemEx(0x08004CB8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CB8) - Data: 06 D0 returns 0x02 (0000ms, 691765ms total)
  1065. T5690 16805:648 JLINK_ReadMemEx(0x08004CBA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CBA) - Data: 21 46 returns 0x02 (0000ms, 691765ms total)
  1066. T5690 16805:648 JLINK_ReadMemEx(0x08004CBA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CBA) - Data: 21 46 returns 0x02 (0000ms, 691765ms total)
  1067. T5690 16805:648 JLINK_ReadMemEx(0x08004CBC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CBC) - Data: 40 46 FF F7 E5 FE 70 1C C6 B2 00 E0 01 E0 00 BF ... returns 0x3C (0000ms, 691765ms total)
  1068. T5690 16805:648 JLINK_ReadMemEx(0x08004CBC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CBC) - Data: 40 46 returns 0x02 (0000ms, 691765ms total)
  1069. T5690 16805:648 JLINK_ReadMemEx(0x08004CBC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CBC) - Data: 40 46 FF F7 E5 FE 70 1C C6 B2 00 E0 01 E0 00 BF ... returns 0x3C (0000ms, 691765ms total)
  1070. T5690 16805:648 JLINK_ReadMemEx(0x08004CBC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CBC) - Data: 40 46 returns 0x02 (0000ms, 691765ms total)
  1071. T5690 16805:648 JLINK_ReadMemEx(0x08004CBE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CBE) - Data: FF F7 returns 0x02 (0000ms, 691765ms total)
  1072. T5690 16805:648 JLINK_ReadMemEx(0x08004CBE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CBE) - Data: FF F7 returns 0x02 (0000ms, 691765ms total)
  1073. T5690 16805:648 JLINK_ReadMemEx(0x08004CC0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CC0) - Data: E5 FE 70 1C C6 B2 00 E0 01 E0 00 BF E8 E7 00 BF ... returns 0x3C (0000ms, 691765ms total)
  1074. T5690 16805:648 JLINK_ReadMemEx(0x08004CC0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CC0) - Data: E5 FE returns 0x02 (0000ms, 691765ms total)
  1075. T5690 16805:648 JLINK_ReadMemEx(0x08004CC2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CC2) - Data: 70 1C returns 0x02 (0000ms, 691765ms total)
  1076. T5690 16805:648 JLINK_ReadMemEx(0x08004CC4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CC4) - Data: C6 B2 00 E0 01 E0 00 BF E8 E7 00 BF 39 46 00 20 ... returns 0x3C (0000ms, 691765ms total)
  1077. T5690 16805:648 JLINK_ReadMemEx(0x08004CC4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CC4) - Data: C6 B2 returns 0x02 (0000ms, 691765ms total)
  1078. T5690 16805:648 JLINK_ReadMemEx(0x08004CC4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CC4) - Data: C6 B2 00 E0 01 E0 00 BF E8 E7 00 BF 39 46 00 20 ... returns 0x3C (0000ms, 691765ms total)
  1079. T5690 16805:648 JLINK_ReadMemEx(0x08004CC4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CC4) - Data: C6 B2 returns 0x02 (0000ms, 691765ms total)
  1080. T5690 16805:648 JLINK_ReadMemEx(0x08004CC6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CC6) - Data: 00 E0 returns 0x02 (0000ms, 691765ms total)
  1081. T5690 16805:648 JLINK_ReadMemEx(0x08004CC6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CC6) - Data: 00 E0 returns 0x02 (0000ms, 691765ms total)
  1082. T5690 16805:648 JLINK_ReadMemEx(0x08004CC8, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08004D00) -- Updating C cache (64 bytes @ 0x08004D00) -- Read from C cache (60 bytes @ 0x08004CC8) - Data: 01 E0 00 BF E8 E7 00 BF 39 46 00 20 02 F0 60 FA ... returns 0x3C (0004ms, 691769ms total)
  1083. T5690 16805:652 JLINK_ReadMemEx(0x08004CC8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CC8) - Data: 01 E0 returns 0x02 (0000ms, 691769ms total)
  1084. T5690 16805:652 JLINK_ReadMemEx(0x08004CC8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CC8) - Data: 01 E0 00 BF E8 E7 00 BF 39 46 00 20 02 F0 60 FA ... returns 0x3C (0000ms, 691769ms total)
  1085. T5690 16805:652 JLINK_ReadMemEx(0x08004CC8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CC8) - Data: 01 E0 returns 0x02 (0000ms, 691769ms total)
  1086. T5690 16805:652 JLINK_ReadMemEx(0x08004CCA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CCA) - Data: 00 BF returns 0x02 (0000ms, 691769ms total)
  1087. T5690 16805:652 JLINK_ReadMemEx(0x08004CCA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CCA) - Data: 00 BF returns 0x02 (0000ms, 691769ms total)
  1088. T5690 16805:652 JLINK_ReadMemEx(0x08004CCC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CCC) - Data: E8 E7 00 BF 39 46 00 20 02 F0 60 FA 20 48 D0 F8 ... returns 0x3C (0000ms, 691769ms total)
  1089. T5690 16805:652 JLINK_ReadMemEx(0x08004CCC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CCC) - Data: E8 E7 returns 0x02 (0000ms, 691769ms total)
  1090. T5690 16805:652 JLINK_ReadMemEx(0x08004CCC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CCC) - Data: E8 E7 00 BF 39 46 00 20 02 F0 60 FA 20 48 D0 F8 ... returns 0x3C (0000ms, 691769ms total)
  1091. T5690 16805:652 JLINK_ReadMemEx(0x08004CCC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CCC) - Data: E8 E7 returns 0x02 (0000ms, 691769ms total)
  1092. T5690 16805:652 JLINK_ReadMemEx(0x08004CCE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CCE) - Data: 00 BF returns 0x02 (0000ms, 691769ms total)
  1093. T5690 16805:652 JLINK_ReadMemEx(0x08004CCE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CCE) - Data: 00 BF returns 0x02 (0000ms, 691769ms total)
  1094. T5690 16805:652 JLINK_ReadMemEx(0x08004CD0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CD0) - Data: 39 46 00 20 02 F0 60 FA 20 48 D0 F8 C0 00 18 B9 ... returns 0x3C (0000ms, 691769ms total)
  1095. T5690 16805:652 JLINK_ReadMemEx(0x08004CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CD0) - Data: 39 46 returns 0x02 (0000ms, 691769ms total)
  1096. T5690 16805:652 JLINK_ReadMemEx(0x08004CD0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CD0) - Data: 39 46 00 20 02 F0 60 FA 20 48 D0 F8 C0 00 18 B9 ... returns 0x3C (0000ms, 691769ms total)
  1097. T5690 16805:652 JLINK_ReadMemEx(0x08004CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CD0) - Data: 39 46 returns 0x02 (0000ms, 691769ms total)
  1098. T5690 16805:652 JLINK_ReadMemEx(0x08004CD2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CD2) - Data: 00 20 returns 0x02 (0000ms, 691769ms total)
  1099. T5690 16805:652 JLINK_ReadMemEx(0x08004CD2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CD2) - Data: 00 20 returns 0x02 (0000ms, 691769ms total)
  1100. T5690 16805:652 JLINK_ReadMemEx(0x08004CD4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CD4) - Data: 02 F0 60 FA 20 48 D0 F8 C0 00 18 B9 1E 48 C0 F8 ... returns 0x3C (0000ms, 691769ms total)
  1101. T5690 16805:652 JLINK_ReadMemEx(0x08004CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CD4) - Data: 02 F0 returns 0x02 (0000ms, 691769ms total)
  1102. T5690 16805:652 JLINK_ReadMemEx(0x08004CD4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CD4) - Data: 02 F0 60 FA 20 48 D0 F8 C0 00 18 B9 1E 48 C0 F8 ... returns 0x3C (0000ms, 691769ms total)
  1103. T5690 16805:652 JLINK_ReadMemEx(0x08004CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CD4) - Data: 02 F0 returns 0x02 (0000ms, 691769ms total)
  1104. T5690 16805:652 JLINK_ReadMemEx(0x08004CD6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CD6) - Data: 60 FA returns 0x02 (0000ms, 691769ms total)
  1105. T5690 16805:652 JLINK_ReadMemEx(0x08004CD8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CD8) - Data: 20 48 D0 F8 C0 00 18 B9 1E 48 C0 F8 C0 40 09 E0 ... returns 0x3C (0000ms, 691769ms total)
  1106. T5690 16805:652 JLINK_ReadMemEx(0x08004CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CD8) - Data: 20 48 returns 0x02 (0000ms, 691769ms total)
  1107. T5690 16805:652 JLINK_ReadMemEx(0x08004CDA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CDA) - Data: D0 F8 returns 0x02 (0000ms, 691769ms total)
  1108. T5690 16805:652 JLINK_ReadMemEx(0x08004CDA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CDA) - Data: D0 F8 returns 0x02 (0000ms, 691769ms total)
  1109. T5690 16805:652 JLINK_ReadMemEx(0x08004CDC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CDC) - Data: C0 00 18 B9 1E 48 C0 F8 C0 40 09 E0 1C 49 D1 F8 ... returns 0x3C (0000ms, 691769ms total)
  1110. T5690 16805:652 JLINK_ReadMemEx(0x08004CDC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CDC) - Data: C0 00 returns 0x02 (0000ms, 691769ms total)
  1111. T5690 16805:652 JLINK_ReadMemEx(0x08004CDE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CDE) - Data: 18 B9 returns 0x02 (0000ms, 691769ms total)
  1112. T5690 16805:652 JLINK_ReadMemEx(0x08004CE0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CE0) - Data: 1E 48 C0 F8 C0 40 09 E0 1C 49 D1 F8 C0 00 00 E0 ... returns 0x3C (0000ms, 691769ms total)
  1113. T5690 16805:652 JLINK_ReadMemEx(0x08004CE0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CE0) - Data: 1E 48 returns 0x02 (0000ms, 691769ms total)
  1114. T5690 16805:652 JLINK_ReadMemEx(0x08004CE0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CE0) - Data: 1E 48 C0 F8 C0 40 09 E0 1C 49 D1 F8 C0 00 00 E0 ... returns 0x3C (0000ms, 691769ms total)
  1115. T5690 16805:652 JLINK_ReadMemEx(0x08004CE0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CE0) - Data: 1E 48 returns 0x02 (0000ms, 691769ms total)
  1116. T5690 16805:652 JLINK_ReadMemEx(0x08004CE2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CE2) - Data: C0 F8 returns 0x02 (0000ms, 691769ms total)
  1117. T5690 16805:652 JLINK_ReadMemEx(0x08004CE2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CE2) - Data: C0 F8 returns 0x02 (0000ms, 691769ms total)
  1118. T5690 16805:652 JLINK_ReadMemEx(0x08004CE4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CE4) - Data: C0 40 09 E0 1C 49 D1 F8 C0 00 00 E0 00 6A 01 6A ... returns 0x3C (0000ms, 691769ms total)
  1119. T5690 16805:652 JLINK_ReadMemEx(0x08004CE4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CE4) - Data: C0 40 returns 0x02 (0000ms, 691769ms total)
  1120. T5690 16805:652 JLINK_ReadMemEx(0x08004CE6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CE6) - Data: 09 E0 returns 0x02 (0000ms, 691769ms total)
  1121. T5690 16805:652 JLINK_ReadMemEx(0x08004CE8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CE8) - Data: 1C 49 D1 F8 C0 00 00 E0 00 6A 01 6A 00 29 FB D1 ... returns 0x3C (0000ms, 691769ms total)
  1122. T5690 16805:652 JLINK_ReadMemEx(0x08004CE8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CE8) - Data: 1C 49 returns 0x02 (0000ms, 691769ms total)
  1123. T5690 16805:652 JLINK_ReadMemEx(0x08004CE8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CE8) - Data: 1C 49 D1 F8 C0 00 00 E0 00 6A 01 6A 00 29 FB D1 ... returns 0x3C (0000ms, 691769ms total)
  1124. T5690 16805:652 JLINK_ReadMemEx(0x08004CE8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CE8) - Data: 1C 49 returns 0x02 (0000ms, 691769ms total)
  1125. T5690 16805:652 JLINK_ReadMemEx(0x08004CEA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CEA) - Data: D1 F8 returns 0x02 (0000ms, 691769ms total)
  1126. T5690 16805:652 JLINK_ReadMemEx(0x08004CEA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CEA) - Data: D1 F8 returns 0x02 (0000ms, 691769ms total)
  1127. T5690 16805:652 JLINK_ReadMemEx(0x08004CEC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CEC) - Data: C0 00 00 E0 00 6A 01 6A 00 29 FB D1 04 62 00 BF ... returns 0x3C (0000ms, 691769ms total)
  1128. T5690 16805:652 JLINK_ReadMemEx(0x08004CEC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CEC) - Data: C0 00 returns 0x02 (0000ms, 691769ms total)
  1129. T5690 16805:652 JLINK_ReadMemEx(0x08004CEE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CEE) - Data: 00 E0 returns 0x02 (0000ms, 691769ms total)
  1130. T5690 16805:652 JLINK_ReadMemEx(0x08004CF0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CF0) - Data: 00 6A 01 6A 00 29 FB D1 04 62 00 BF BD E8 F0 87 ... returns 0x3C (0000ms, 691769ms total)
  1131. T5690 16805:652 JLINK_ReadMemEx(0x08004CF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CF0) - Data: 00 6A returns 0x02 (0000ms, 691769ms total)
  1132. T5690 16805:652 JLINK_ReadMemEx(0x08004CF0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CF0) - Data: 00 6A 01 6A 00 29 FB D1 04 62 00 BF BD E8 F0 87 ... returns 0x3C (0000ms, 691769ms total)
  1133. T5690 16805:652 JLINK_ReadMemEx(0x08004CF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CF0) - Data: 00 6A returns 0x02 (0000ms, 691769ms total)
  1134. T5690 16805:652 JLINK_ReadMemEx(0x08004CF2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CF2) - Data: 01 6A returns 0x02 (0000ms, 691769ms total)
  1135. T5690 16805:652 JLINK_ReadMemEx(0x08004CF2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CF2) - Data: 01 6A returns 0x02 (0000ms, 691769ms total)
  1136. T5690 16805:652 JLINK_ReadMemEx(0x08004CF4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CF4) - Data: 00 29 FB D1 04 62 00 BF BD E8 F0 87 22 6E 6F 64 ... returns 0x3C (0000ms, 691769ms total)
  1137. T5690 16805:652 JLINK_ReadMemEx(0x08004CF4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CF4) - Data: 00 29 returns 0x02 (0000ms, 691769ms total)
  1138. T5690 16805:652 JLINK_ReadMemEx(0x08004CF4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CF4) - Data: 00 29 FB D1 04 62 00 BF BD E8 F0 87 22 6E 6F 64 ... returns 0x3C (0000ms, 691769ms total)
  1139. T5690 16805:652 JLINK_ReadMemEx(0x08004CF4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CF4) - Data: 00 29 returns 0x02 (0000ms, 691769ms total)
  1140. T5690 16805:652 JLINK_ReadMemEx(0x08004CF6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CF6) - Data: FB D1 returns 0x02 (0000ms, 691769ms total)
  1141. T5690 16805:652 JLINK_ReadMemEx(0x08004CF6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CF6) - Data: FB D1 returns 0x02 (0000ms, 691769ms total)
  1142. T5690 16805:652 JLINK_ReadMemEx(0x08004CF8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CF8) - Data: 04 62 00 BF BD E8 F0 87 22 6E 6F 64 65 49 64 22 ... returns 0x3C (0000ms, 691769ms total)
  1143. T5690 16805:652 JLINK_ReadMemEx(0x08004CF8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CF8) - Data: 04 62 returns 0x02 (0000ms, 691769ms total)
  1144. T5690 16805:652 JLINK_ReadMemEx(0x08004CF8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CF8) - Data: 04 62 00 BF BD E8 F0 87 22 6E 6F 64 65 49 64 22 ... returns 0x3C (0000ms, 691769ms total)
  1145. T5690 16805:652 JLINK_ReadMemEx(0x08004CF8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CF8) - Data: 04 62 returns 0x02 (0000ms, 691769ms total)
  1146. T5690 16805:652 JLINK_ReadMemEx(0x08004CFA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CFA) - Data: 00 BF returns 0x02 (0000ms, 691769ms total)
  1147. T5690 16805:652 JLINK_ReadMemEx(0x08004CFA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CFA) - Data: 00 BF returns 0x02 (0000ms, 691769ms total)
  1148. T5690 16805:652 JLINK_ReadMemEx(0x08004CFC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CFC) - Data: BD E8 F0 87 22 6E 6F 64 65 49 64 22 3A 22 00 00 ... returns 0x3C (0000ms, 691769ms total)
  1149. T5690 16805:652 JLINK_ReadMemEx(0x08004CFC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CFC) - Data: BD E8 returns 0x02 (0000ms, 691769ms total)
  1150. T5690 16805:652 JLINK_ReadMemEx(0x08004CFC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CFC) - Data: BD E8 F0 87 22 6E 6F 64 65 49 64 22 3A 22 00 00 ... returns 0x3C (0000ms, 691769ms total)
  1151. T5690 16805:652 JLINK_ReadMemEx(0x08004CFC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CFC) - Data: BD E8 returns 0x02 (0000ms, 691769ms total)
  1152. T5690 16805:652 JLINK_ReadMemEx(0x08004CFE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CFE) - Data: F0 87 returns 0x02 (0000ms, 691769ms total)
  1153. T5690 16805:652 JLINK_ReadMemEx(0x08004D5C, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x08004D40) -- Updating C cache (128 bytes @ 0x08004D40) -- Read from C cache (60 bytes @ 0x08004D5C) - Data: CC A4 00 20 2D E9 F0 41 07 46 0C 46 10 20 FF F7 ... returns 0x3C (0007ms, 691776ms total)
  1154. T5690 16805:659 JLINK_ReadMemEx(0x08004D5C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D5C) - Data: CC A4 returns 0x02 (0000ms, 691776ms total)
  1155. T5690 16805:659 JLINK_ReadMemEx(0x08004D5E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D5E) - Data: 00 20 returns 0x02 (0000ms, 691776ms total)
  1156. T5690 16805:659 JLINK_ReadMemEx(0x08004D5E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D5E) - Data: 00 20 returns 0x02 (0000ms, 691776ms total)
  1157. T5690 16805:659 JLINK_ReadMemEx(0x08004D60, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D60) - Data: 2D E9 F0 41 07 46 0C 46 10 20 FF F7 F9 F9 A0 61 ... returns 0x3C (0000ms, 691776ms total)
  1158. T5690 16805:659 JLINK_ReadMemEx(0x08004D60, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D60) - Data: 2D E9 returns 0x02 (0000ms, 691776ms total)
  1159. T5690 16805:659 JLINK_ReadMemEx(0x08004D60, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D60) - Data: 2D E9 F0 41 07 46 0C 46 10 20 FF F7 F9 F9 A0 61 ... returns 0x3C (0000ms, 691776ms total)
  1160. T5690 16805:659 JLINK_ReadMemEx(0x08004D60, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D60) - Data: 2D E9 returns 0x02 (0000ms, 691776ms total)
  1161. T5690 16805:659 JLINK_ReadMemEx(0x08004D62, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D62) - Data: F0 41 returns 0x02 (0000ms, 691776ms total)
  1162. T5690 16805:659 JLINK_ReadMemEx(0x08004D64, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D64) - Data: 07 46 0C 46 10 20 FF F7 F9 F9 A0 61 60 7D 01 28 ... returns 0x3C (0000ms, 691776ms total)
  1163. T5690 16805:659 JLINK_ReadMemEx(0x08004D64, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D64) - Data: 07 46 returns 0x02 (0000ms, 691776ms total)
  1164. T5690 16805:659 JLINK_ReadMemEx(0x08004D66, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D66) - Data: 0C 46 returns 0x02 (0000ms, 691776ms total)
  1165. T5690 16805:659 JLINK_ReadMemEx(0x08004D66, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D66) - Data: 0C 46 returns 0x02 (0000ms, 691776ms total)
  1166. T5690 16805:659 JLINK_ReadMemEx(0x08004D68, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D68) - Data: 10 20 FF F7 F9 F9 A0 61 60 7D 01 28 04 D0 02 28 ... returns 0x3C (0000ms, 691776ms total)
  1167. T5690 16805:659 JLINK_ReadMemEx(0x08004D68, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D68) - Data: 10 20 returns 0x02 (0000ms, 691776ms total)
  1168. T5690 16805:659 JLINK_ReadMemEx(0x08004D68, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D68) - Data: 10 20 FF F7 F9 F9 A0 61 60 7D 01 28 04 D0 02 28 ... returns 0x3C (0000ms, 691776ms total)
  1169. T5690 16805:659 JLINK_ReadMemEx(0x08004D68, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D68) - Data: 10 20 returns 0x02 (0000ms, 691776ms total)
  1170. T5690 16805:659 JLINK_ReadMemEx(0x08004D6A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D6A) - Data: FF F7 returns 0x02 (0000ms, 691776ms total)
  1171. T5690 16805:659 JLINK_ReadMemEx(0x08004D6A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D6A) - Data: FF F7 returns 0x02 (0000ms, 691776ms total)
  1172. T5690 16805:659 JLINK_ReadMemEx(0x08004D6C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D6C) - Data: F9 F9 A0 61 60 7D 01 28 04 D0 02 28 03 D0 03 28 ... returns 0x3C (0000ms, 691776ms total)
  1173. T5690 16805:659 JLINK_ReadMemEx(0x08004D6C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D6C) - Data: F9 F9 returns 0x02 (0000ms, 691776ms total)
  1174. T5690 16812:578 JLINK_ReadMemEx(0x6807C80F, 0x04D9 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1241 bytes @ 0x6807C80F) - Data: 22 73 65 6E 73 6F 72 4C 69 73 74 22 3A 5B 7B 22 ... returns 0x4D9 (0048ms, 691824ms total)
  1175. T5690 16812:626 JLINK_ReadMemEx(0x6807C80F, 0x04D9 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1241 bytes @ 0x6807C80F) - Data: 22 73 65 6E 73 6F 72 4C 69 73 74 22 3A 5B 7B 22 ... returns 0x4D9 (0048ms, 691872ms total)
  1176. T5690 16812:691 JLINK_ReadMemEx(0x6807C80F, 0x060C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1548 bytes @ 0x6807C80F) - Data: 22 73 65 6E 73 6F 72 4C 69 73 74 22 3A 5B 7B 22 ... returns 0x60C (0058ms, 691930ms total)
  1177. T5690 16812:749 JLINK_ReadMemEx(0x6807C80F, 0x060C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1548 bytes @ 0x6807C80F) - Data: 22 73 65 6E 73 6F 72 4C 69 73 74 22 3A 5B 7B 22 ... returns 0x60C (0059ms, 691989ms total)
  1178. T5690 16812:826 JLINK_ReadMemEx(0x6807C80F, 0x0750 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1872 bytes @ 0x6807C80F) - Data: 22 73 65 6E 73 6F 72 4C 69 73 74 22 3A 5B 7B 22 ... returns 0x750 (0069ms, 692058ms total)
  1179. T5690 16812:896 JLINK_ReadMemEx(0x6807C80F, 0x0750 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1872 bytes @ 0x6807C80F) - Data: 22 73 65 6E 73 6F 72 4C 69 73 74 22 3A 5B 7B 22 ... returns 0x750 (0070ms, 692128ms total)
  1180. T5690 16813:010 JLINK_ReadMemEx(0x6807C80F, 0x0750 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1872 bytes @ 0x6807C80F) - Data: 22 73 65 6E 73 6F 72 4C 69 73 74 22 3A 5B 7B 22 ... returns 0x750 (0069ms, 692197ms total)
  1181. T5690 16813:080 JLINK_ReadMemEx(0x6807C80F, 0x0750 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1872 bytes @ 0x6807C80F) - Data: 22 73 65 6E 73 6F 72 4C 69 73 74 22 3A 5B 7B 22 ... returns 0x750 (0071ms, 692268ms total)
  1182. T5690 16813:171 JLINK_ReadMemEx(0x6807C80F, 0x0804 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2052 bytes @ 0x6807C80F) - Data: 22 73 65 6E 73 6F 72 4C 69 73 74 22 3A 5B 7B 22 ... returns 0x804 (0077ms, 692345ms total)
  1183. T5690 16813:248 JLINK_ReadMemEx(0x6807C80F, 0x0804 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2052 bytes @ 0x6807C80F) - Data: 22 73 65 6E 73 6F 72 4C 69 73 74 22 3A 5B 7B 22 ... returns 0x804 (0077ms, 692422ms total)
  1184. T5690 16813:355 JLINK_ReadMemEx(0x6807C80F, 0x0988 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2440 bytes @ 0x6807C80F) - Data: 22 73 65 6E 73 6F 72 4C 69 73 74 22 3A 5B 7B 22 ... returns 0x988 (0090ms, 692512ms total)
  1185. T5690 16813:445 JLINK_ReadMemEx(0x6807C80F, 0x0988 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2440 bytes @ 0x6807C80F) - Data: 22 73 65 6E 73 6F 72 4C 69 73 74 22 3A 5B 7B 22 ... returns 0x988 (0089ms, 692601ms total)
  1186. T5690 16813:557 JLINK_ReadMemEx(0x6807C80F, 0x0ABE Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2750 bytes @ 0x6807C80F) - Data: 22 73 65 6E 73 6F 72 4C 69 73 74 22 3A 5B 7B 22 ... returns 0xABE (0098ms, 692699ms total)
  1187. T5690 16813:656 JLINK_ReadMemEx(0x6807C80F, 0x0ABE Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2750 bytes @ 0x6807C80F) - Data: 22 73 65 6E 73 6F 72 4C 69 73 74 22 3A 5B 7B 22 ... returns 0xABE (0099ms, 692798ms total)
  1188. T5690 16813:779 JLINK_ReadMemEx(0x6807C80F, 0x0C00 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(3072 bytes @ 0x6807C80F) - Data: 22 73 65 6E 73 6F 72 4C 69 73 74 22 3A 5B 7B 22 ... returns 0xC00 (0111ms, 692909ms total)
  1189. T5690 16813:890 JLINK_ReadMemEx(0x6807C80F, 0x0C00 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(3072 bytes @ 0x6807C80F) - Data: 22 73 65 6E 73 6F 72 4C 69 73 74 22 3A 5B 7B 22 ... returns 0xC00 (0110ms, 693019ms total)
  1190. T5690 16814:021 JLINK_ReadMemEx(0x6807C80F, 0x0E00 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(3584 bytes @ 0x6807C80F) - Data: 22 73 65 6E 73 6F 72 4C 69 73 74 22 3A 5B 7B 22 ... returns 0xE00 (0127ms, 693146ms total)
  1191. T5690 16814:148 JLINK_ReadMemEx(0x6807C80F, 0x0E00 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(3584 bytes @ 0x6807C80F) - Data: 22 73 65 6E 73 6F 72 4C 69 73 74 22 3A 5B 7B 22 ... returns 0xE00 (0129ms, 693275ms total)
  1192. T5690 16814:503 JLINK_ReadMemEx(0x6807C80F, 0x0E00 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(3584 bytes @ 0x6807C80F) - Data: 22 73 65 6E 73 6F 72 4C 69 73 74 22 3A 5B 7B 22 ... returns 0xE00 (0128ms, 693403ms total)
  1193. T5690 16814:631 JLINK_ReadMemEx(0x6807C80F, 0x0E00 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(3584 bytes @ 0x6807C80F) - Data: 22 73 65 6E 73 6F 72 4C 69 73 74 22 3A 5B 7B 22 ... returns 0xE00 (0129ms, 693532ms total)
  1194. T5AF8 16818:385 JLINK_ReadMemEx(0x08004D60, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D60) - Data: 2D E9 F0 41 07 46 0C 46 10 20 FF F7 F9 F9 A0 61 ... returns 0x3C (0000ms, 693532ms total)
  1195. T5AF8 16818:385 JLINK_ReadMemEx(0x08004D60, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D60) - Data: 2D E9 returns 0x02 (0000ms, 693532ms total)
  1196. T5AF8 16818:385 JLINK_ReadMemEx(0x08004D62, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D62) - Data: F0 41 returns 0x02 (0000ms, 693532ms total)
  1197. T5AF8 16818:385 JLINK_ReadMemEx(0x08004D60, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D60) - Data: 2D E9 returns 0x02 (0000ms, 693532ms total)
  1198. T5AF8 16818:385 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004D60) -- Read from C cache (2 bytes @ 0x08004D62) -- Not simulated -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU_WriteMem(4 bytes @ 0xE0001004) returns 0x00 (0028ms, 693560ms total)
  1199. T5AF8 16818:413 JLINK_ReadReg(R15 (PC)) returns 0x08004D64 (0000ms, 693560ms total)
  1200. T5AF8 16818:413 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 693560ms total)
  1201. T5AF8 16818:413 JLINK_ReadMemEx(0x08004D62, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08004D40) -- Updating C cache (64 bytes @ 0x08004D40) -- Read from C cache (2 bytes @ 0x08004D62) - Data: F0 41 returns 0x02 (0004ms, 693564ms total)
  1202. T5AF8 16818:417 JLINK_ReadMemEx(0x08004D64, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08004D80) -- Updating C cache (64 bytes @ 0x08004D80) -- Read from C cache (60 bytes @ 0x08004D64) - Data: 07 46 0C 46 10 20 FF F7 F9 F9 A0 61 60 7D 01 28 ... returns 0x3C (0004ms, 693568ms total)
  1203. T5AF8 16818:421 JLINK_ReadMemEx(0x08004D64, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D64) - Data: 07 46 returns 0x02 (0000ms, 693568ms total)
  1204. T5AF8 16818:421 JLINK_ReadMemEx(0x08004D64, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D64) - Data: 07 46 0C 46 10 20 FF F7 F9 F9 A0 61 60 7D 01 28 ... returns 0x3C (0000ms, 693568ms total)
  1205. T5AF8 16818:421 JLINK_ReadMemEx(0x08004D64, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D64) - Data: 07 46 returns 0x02 (0000ms, 693568ms total)
  1206. T5AF8 16818:421 JLINK_ReadMemEx(0x08004D66, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D66) - Data: 0C 46 returns 0x02 (0000ms, 693568ms total)
  1207. T5AF8 16818:421 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004D64) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Simulated returns 0x00 (0001ms, 693569ms total)
  1208. T5AF8 16818:422 JLINK_ReadReg(R15 (PC)) returns 0x08004D66 (0000ms, 693569ms total)
  1209. T5AF8 16818:422 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 693569ms total)
  1210. T5AF8 16818:422 JLINK_ReadMemEx(0x08004D66, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D66) - Data: 0C 46 returns 0x02 (0000ms, 693569ms total)
  1211. T5AF8 16818:422 JLINK_ReadMemEx(0x08004D68, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D68) - Data: 10 20 FF F7 F9 F9 A0 61 60 7D 01 28 04 D0 02 28 ... returns 0x3C (0001ms, 693570ms total)
  1212. T5AF8 16818:423 JLINK_ReadMemEx(0x08004D68, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D68) - Data: 10 20 returns 0x02 (0000ms, 693570ms total)
  1213. T5AF8 16818:423 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004D66) -- Simulated returns 0x00 (0000ms, 693570ms total)
  1214. T5AF8 16818:423 JLINK_ReadReg(R15 (PC)) returns 0x08004D68 (0000ms, 693570ms total)
  1215. T5AF8 16818:423 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 693570ms total)
  1216. T5AF8 16818:423 JLINK_ReadReg(R0) returns 0x6807C80F (0000ms, 693570ms total)
  1217. T5AF8 16818:423 JLINK_ReadReg(R1) returns 0x20011CF8 (0000ms, 693570ms total)
  1218. T5AF8 16818:423 JLINK_ReadReg(R2) returns 0x6807C81E (0000ms, 693570ms total)
  1219. T5AF8 16818:423 JLINK_ReadReg(R3) returns 0x08004B2B (0000ms, 693570ms total)
  1220. T5AF8 16818:423 JLINK_ReadReg(R4) returns 0x20011CF8 (0000ms, 693570ms total)
  1221. T5AF8 16818:423 JLINK_ReadReg(R5) returns 0x200105A0 (0000ms, 693570ms total)
  1222. T5AF8 16818:423 JLINK_ReadReg(R6) returns 0x6807C80F (0000ms, 693570ms total)
  1223. T5AF8 16818:423 JLINK_ReadReg(R7) returns 0x6807C80F (0000ms, 693570ms total)
  1224. T5AF8 16818:423 JLINK_ReadReg(R8) returns 0x6807C803 (0000ms, 693570ms total)
  1225. T5AF8 16818:423 JLINK_ReadReg(R9) returns 0x6807C800 (0000ms, 693570ms total)
  1226. T5AF8 16818:423 JLINK_ReadReg(R10) returns 0x10101010 (0000ms, 693570ms total)
  1227. T5AF8 16818:423 JLINK_ReadReg(R11) returns 0x11111111 (0000ms, 693570ms total)
  1228. T5AF8 16818:423 JLINK_ReadReg(R12) returns 0x00000000 (0000ms, 693570ms total)
  1229. T5AF8 16818:423 JLINK_ReadReg(R13 (SP)) returns 0x2000A444 (0000ms, 693570ms total)
  1230. T5AF8 16818:423 JLINK_ReadReg(R14) returns 0x08004ACB (0000ms, 693570ms total)
  1231. T5AF8 16818:423 JLINK_ReadReg(R15 (PC)) returns 0x08004D68 (0000ms, 693570ms total)
  1232. T5AF8 16818:423 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 693570ms total)
  1233. T5AF8 16818:423 JLINK_ReadReg(MSP) returns 0x20011CC8 (0000ms, 693570ms total)
  1234. T5AF8 16818:423 JLINK_ReadReg(PSP) returns 0x2000A444 (0000ms, 693570ms total)
  1235. T5AF8 16818:423 JLINK_ReadReg(CFBP) returns 0x02000000 (0000ms, 693570ms total)
  1236. T5690 16818:423 JLINK_ReadMemEx(0x2000A458, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x2000A440) -- Updating C cache (64 bytes @ 0x2000A440) -- Read from C cache (4 bytes @ 0x2000A458) - Data: CB 4A 00 08 returns 0x04 (0004ms, 693574ms total)
  1237. T5690 16818:427 JLINK_ReadMemEx(0x2000A444, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A444) - Data: F8 1C 01 20 returns 0x04 (0000ms, 693574ms total)
  1238. T5690 16818:427 JLINK_ReadMemEx(0x2000A448, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A448) - Data: A0 05 01 20 returns 0x04 (0000ms, 693574ms total)
  1239. T5690 16818:427 JLINK_ReadMemEx(0x2000A44C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A44C) - Data: 0F C8 07 68 returns 0x04 (0000ms, 693574ms total)
  1240. T5690 16818:427 JLINK_ReadMemEx(0x2000A450, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A450) - Data: 03 C8 07 68 returns 0x04 (0000ms, 693574ms total)
  1241. T5690 16818:427 JLINK_ReadMemEx(0x2000A454, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A454) - Data: 03 C8 07 68 returns 0x04 (0000ms, 693574ms total)
  1242. T5690 16818:427 JLINK_ReadMemEx(0x2000A458, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A458) - Data: CB 4A 00 08 returns 0x04 (0000ms, 693574ms total)
  1243. T5690 16818:427 JLINK_ReadMemEx(0x2000A470, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A470) - Data: C3 4C 00 08 returns 0x04 (0000ms, 693574ms total)
  1244. T5690 16818:427 JLINK_ReadMemEx(0x2000A45C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A45C) - Data: A0 05 01 20 returns 0x04 (0000ms, 693574ms total)
  1245. T5690 16818:427 JLINK_ReadMemEx(0x2000A460, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A460) - Data: 00 C8 07 68 returns 0x04 (0000ms, 693574ms total)
  1246. T5690 16818:427 JLINK_ReadMemEx(0x2000A464, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A464) - Data: 01 00 00 00 returns 0x04 (0000ms, 693574ms total)
  1247. T5690 16818:427 JLINK_ReadMemEx(0x2000A468, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A468) - Data: 80 05 01 20 returns 0x04 (0000ms, 693574ms total)
  1248. T5690 16818:427 JLINK_ReadMemEx(0x2000A46C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A46C) - Data: 03 C8 07 68 returns 0x04 (0000ms, 693574ms total)
  1249. T5690 16818:427 JLINK_ReadMemEx(0x2000A470, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A470) - Data: C3 4C 00 08 returns 0x04 (0000ms, 693574ms total)
  1250. T5690 16818:427 JLINK_ReadMemEx(0x2000A490, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x2000A480) -- Updating C cache (64 bytes @ 0x2000A480) -- Read from C cache (4 bytes @ 0x2000A490) - Data: C1 4B 00 08 returns 0x04 (0003ms, 693577ms total)
  1251. T5690 16818:430 JLINK_ReadMemEx(0x2000A474, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A474) - Data: 01 00 00 00 returns 0x04 (0000ms, 693577ms total)
  1252. T5690 16818:430 JLINK_ReadMemEx(0x2000A478, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A478) - Data: 00 C8 07 68 returns 0x04 (0001ms, 693578ms total)
  1253. T5690 16818:431 JLINK_ReadMemEx(0x2000A47C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A47C) - Data: 00 DC 07 68 returns 0x04 (0000ms, 693578ms total)
  1254. T5690 16818:431 JLINK_ReadMemEx(0x2000A480, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A480) - Data: 07 07 07 07 returns 0x04 (0000ms, 693578ms total)
  1255. T5690 16818:431 JLINK_ReadMemEx(0x2000A484, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A484) - Data: 08 08 08 08 returns 0x04 (0000ms, 693578ms total)
  1256. T5690 16818:431 JLINK_ReadMemEx(0x2000A488, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A488) - Data: 09 09 09 09 returns 0x04 (0000ms, 693578ms total)
  1257. T5690 16818:431 JLINK_ReadMemEx(0x2000A48C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A48C) - Data: 10 10 10 10 returns 0x04 (0000ms, 693578ms total)
  1258. T5690 16818:431 JLINK_ReadMemEx(0x2000A490, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A490) - Data: C1 4B 00 08 returns 0x04 (0000ms, 693578ms total)
  1259. T5690 16818:431 JLINK_ReadMemEx(0x2000A4B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B8) - Data: 49 54 00 08 returns 0x04 (0000ms, 693578ms total)
  1260. T5690 16818:431 JLINK_ReadMemEx(0x2000A4A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4A4) - Data: 00 00 00 00 returns 0x04 (0000ms, 693578ms total)
  1261. T5690 16818:431 JLINK_ReadMemEx(0x2000A4A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4A8) - Data: 00 DC 07 68 returns 0x04 (0000ms, 693578ms total)
  1262. T5690 16818:431 JLINK_ReadMemEx(0x2000A4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4AC) - Data: 06 06 06 06 returns 0x04 (0000ms, 693578ms total)
  1263. T5690 16818:431 JLINK_ReadMemEx(0x2000A4B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B0) - Data: 07 07 07 07 returns 0x04 (0000ms, 693578ms total)
  1264. T5690 16818:431 JLINK_ReadMemEx(0x2000A4B4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B4) - Data: 08 08 08 08 returns 0x04 (0000ms, 693578ms total)
  1265. T5690 16818:431 JLINK_ReadMemEx(0x2000A4B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B8) - Data: 49 54 00 08 returns 0x04 (0000ms, 693578ms total)
  1266. T5690 16818:431 JLINK_ReadMemEx(0x2000A4C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x2000A4C0) -- Updating C cache (64 bytes @ 0x2000A4C0) -- Read from C cache (4 bytes @ 0x2000A4C8) - Data: 45 36 00 08 returns 0x04 (0003ms, 693581ms total)
  1267. T5690 16818:434 JLINK_ReadMemEx(0x2000A4BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4BC) - Data: 04 04 04 04 returns 0x04 (0000ms, 693581ms total)
  1268. T5690 16818:434 JLINK_ReadMemEx(0x2000A4C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C0) - Data: 05 05 05 05 returns 0x04 (0000ms, 693581ms total)
  1269. T5690 16818:434 JLINK_ReadMemEx(0x2000A4C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C4) - Data: 06 06 06 06 returns 0x04 (0000ms, 693581ms total)
  1270. T5690 16818:434 JLINK_ReadMemEx(0x2000A4C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C8) - Data: 45 36 00 08 returns 0x04 (0000ms, 693581ms total)
  1271. T5690 16818:434 JLINK_ReadMemEx(0x2000A4E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4E0) - Data: 00 00 5B 07 returns 0x04 (0000ms, 693581ms total)
  1272. T5690 16818:434 JLINK_ReadMemEx(0x2000A4CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4CC) - Data: 00 33 36 2E returns 0x04 (0000ms, 693581ms total)
  1273. T5690 16818:434 JLINK_ReadMemEx(0x2000A4D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4D0) - Data: 31 33 34 2E returns 0x04 (0000ms, 693581ms total)
  1274. T5690 16818:434 JLINK_ReadMemEx(0x2000A4D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4D4) - Data: 32 33 2E 31 returns 0x04 (0000ms, 693581ms total)
  1275. T5690 16818:434 JLINK_ReadMemEx(0x2000A4D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4D8) - Data: 31 00 00 00 returns 0x04 (0000ms, 693581ms total)
  1276. T5690 16818:434 JLINK_ReadMemEx(0x2000A4DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4DC) - Data: 00 00 00 00 returns 0x04 (0000ms, 693581ms total)
  1277. T5690 16818:434 JLINK_ReadMemEx(0x2000A4E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4E0) - Data: 00 00 5B 07 returns 0x04 (0000ms, 693581ms total)
  1278. T5690 16818:434 JLINK_ReadMemEx(0x6807C80F, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x6807C80F) - Data: 22 73 65 6E 73 6F 72 4C 69 73 74 22 3A 5B 7B 22 ... returns 0x20 (0004ms, 693585ms total)
  1279. T5690 16818:438 JLINK_ReadMemEx(0x6807C803, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x6807C803) - Data: 22 64 65 76 69 63 65 5F 31 22 3A 7B 22 73 65 6E ... returns 0x20 (0004ms, 693589ms total)
  1280. T5690 16818:442 JLINK_ReadMemEx(0x6807C80F, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x6807C80F) - Data: 22 73 65 6E 73 6F 72 4C 69 73 74 22 3A 5B 7B 22 ... returns 0x20 (0004ms, 693593ms total)
  1281. T5690 16818:446 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 3C 6D 65 04 returns 1 (0000ms, 693593ms total)
  1282. T5690 16818:446 JLINK_ReadMemEx(0x6807C80F, 0x0E00 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(3584 bytes @ 0x6807C80F) - Data: 22 73 65 6E 73 6F 72 4C 69 73 74 22 3A 5B 7B 22 ... returns 0xE00 (0128ms, 693721ms total)
  1283. T5690 16818:583 JLINK_ReadMemEx(0x08004D5C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D5C) - Data: CC A4 00 20 2D E9 F0 41 07 46 0C 46 10 20 FF F7 ... returns 0x3C (0000ms, 693721ms total)
  1284. T5690 16818:583 JLINK_ReadMemEx(0x08004D5C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D5C) - Data: CC A4 returns 0x02 (0000ms, 693721ms total)
  1285. T5690 16818:583 JLINK_ReadMemEx(0x08004D5E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D5E) - Data: 00 20 returns 0x02 (0000ms, 693721ms total)
  1286. T5690 16818:583 JLINK_ReadMemEx(0x08004D5E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D5E) - Data: 00 20 returns 0x02 (0000ms, 693721ms total)
  1287. T5690 16818:583 JLINK_ReadMemEx(0x08004D60, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D60) - Data: 2D E9 F0 41 07 46 0C 46 10 20 FF F7 F9 F9 A0 61 ... returns 0x3C (0000ms, 693721ms total)
  1288. T5690 16818:583 JLINK_ReadMemEx(0x08004D60, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D60) - Data: 2D E9 returns 0x02 (0000ms, 693721ms total)
  1289. T5690 16818:583 JLINK_ReadMemEx(0x08004D60, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D60) - Data: 2D E9 F0 41 07 46 0C 46 10 20 FF F7 F9 F9 A0 61 ... returns 0x3C (0000ms, 693721ms total)
  1290. T5690 16818:583 JLINK_ReadMemEx(0x08004D60, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D60) - Data: 2D E9 returns 0x02 (0000ms, 693721ms total)
  1291. T5690 16818:583 JLINK_ReadMemEx(0x08004D62, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D62) - Data: F0 41 returns 0x02 (0000ms, 693721ms total)
  1292. T5690 16818:583 JLINK_ReadMemEx(0x08004D64, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D64) - Data: 07 46 0C 46 10 20 FF F7 F9 F9 A0 61 60 7D 01 28 ... returns 0x3C (0000ms, 693721ms total)
  1293. T5690 16818:583 JLINK_ReadMemEx(0x08004D64, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D64) - Data: 07 46 returns 0x02 (0000ms, 693721ms total)
  1294. T5690 16818:583 JLINK_ReadMemEx(0x08004D66, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D66) - Data: 0C 46 returns 0x02 (0000ms, 693721ms total)
  1295. T5690 16818:583 JLINK_ReadMemEx(0x08004D66, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D66) - Data: 0C 46 returns 0x02 (0000ms, 693721ms total)
  1296. T5690 16818:583 JLINK_ReadMemEx(0x08004D68, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D68) - Data: 10 20 FF F7 F9 F9 A0 61 60 7D 01 28 04 D0 02 28 ... returns 0x3C (0000ms, 693721ms total)
  1297. T5690 16818:583 JLINK_ReadMemEx(0x08004D68, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D68) - Data: 10 20 returns 0x02 (0000ms, 693721ms total)
  1298. T5690 16818:583 JLINK_ReadMemEx(0x08004D68, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D68) - Data: 10 20 FF F7 F9 F9 A0 61 60 7D 01 28 04 D0 02 28 ... returns 0x3C (0000ms, 693721ms total)
  1299. T5690 16818:583 JLINK_ReadMemEx(0x08004D68, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D68) - Data: 10 20 returns 0x02 (0000ms, 693721ms total)
  1300. T5690 16818:583 JLINK_ReadMemEx(0x08004D6A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D6A) - Data: FF F7 returns 0x02 (0000ms, 693721ms total)
  1301. T5690 16818:583 JLINK_ReadMemEx(0x08004D6A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D6A) - Data: FF F7 returns 0x02 (0000ms, 693721ms total)
  1302. T5690 16818:583 JLINK_ReadMemEx(0x08004D6C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D6C) - Data: F9 F9 A0 61 60 7D 01 28 04 D0 02 28 03 D0 03 28 ... returns 0x3C (0000ms, 693721ms total)
  1303. T5690 16818:583 JLINK_ReadMemEx(0x08004D6C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D6C) - Data: F9 F9 returns 0x02 (0000ms, 693721ms total)
  1304. T5AF8 16819:663 JLINK_ReadMemEx(0x08004D68, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D68) - Data: 10 20 returns 0x02 (0000ms, 693721ms total)
  1305. T5AF8 16819:663 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004D68) -- Simulated returns 0x00 (0001ms, 693722ms total)
  1306. T5AF8 16819:664 JLINK_ReadReg(R15 (PC)) returns 0x08004D6A (0000ms, 693722ms total)
  1307. T5AF8 16819:664 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 693722ms total)
  1308. T5AF8 16819:664 JLINK_SetBPEx(Addr = 0x08004D6E, Type = 0xFFFFFFF2) returns 0x00000009 (0000ms, 693722ms total)
  1309. T5AF8 16819:664 JLINK_SetBPEx(Addr = 0x08004D60, Type = 0xFFFFFFF2) returns 0x0000000A (0000ms, 693722ms total)
  1310. T5AF8 16819:664 JLINK_SetBPEx(Addr = 0x08004AB6, Type = 0xFFFFFFF2) returns 0x0000000B (0000ms, 693722ms total)
  1311. T5AF8 16819:664 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0017ms, 693739ms total)
  1312. T5AF8 16819:781 JLINK_IsHalted() returns TRUE (0017ms, 693756ms total)
  1313. T5AF8 16819:798 JLINK_Halt() returns 0x00 (0000ms, 693739ms total)
  1314. T5AF8 16819:798 JLINK_IsHalted() returns TRUE (0000ms, 693739ms total)
  1315. T5AF8 16819:798 JLINK_IsHalted() returns TRUE (0000ms, 693739ms total)
  1316. T5AF8 16819:798 JLINK_IsHalted() returns TRUE (0000ms, 693739ms total)
  1317. T5AF8 16819:798 JLINK_ReadReg(R15 (PC)) returns 0x08004D6E (0000ms, 693739ms total)
  1318. T5AF8 16819:798 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 693739ms total)
  1319. T5AF8 16819:798 JLINK_ClrBPEx(BPHandle = 0x00000009) returns 0x00 (0000ms, 693739ms total)
  1320. T5AF8 16819:798 JLINK_ClrBPEx(BPHandle = 0x0000000A) returns 0x00 (0000ms, 693739ms total)
  1321. T5AF8 16819:798 JLINK_ClrBPEx(BPHandle = 0x0000000B) returns 0x00 (0000ms, 693739ms total)
  1322. T5AF8 16819:798 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 02 00 00 00 returns 1 (0002ms, 693741ms total)
  1323. T5AF8 16819:800 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00 returns 1 (0001ms, 693742ms total)
  1324. T5AF8 16819:801 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 02 00 00 returns 1 (0002ms, 693744ms total)
  1325. T5AF8 16819:803 JLINK_ReadMemU32(0xE0001048, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001048) - Data: 00 00 00 00 returns 1 (0001ms, 693745ms total)
  1326. T5AF8 16819:804 JLINK_ReadMemU32(0xE0001058, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001058) - Data: 00 00 00 00 returns 1 (0002ms, 693747ms total)
  1327. T5AF8 16819:806 JLINK_ReadMemEx(0x08004D6C, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x08004D40) -- Updating C cache (128 bytes @ 0x08004D40) -- Read from C cache (60 bytes @ 0x08004D6C) - Data: F9 F9 A0 61 60 7D 01 28 04 D0 02 28 03 D0 03 28 ... returns 0x3C (0005ms, 693752ms total)
  1328. T5AF8 16819:811 JLINK_ReadMemEx(0x08004D6C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D6C) - Data: F9 F9 returns 0x02 (0000ms, 693752ms total)
  1329. T5AF8 16819:811 JLINK_ReadMemEx(0x08004D6E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D6E) - Data: A0 61 returns 0x02 (0000ms, 693752ms total)
  1330. T5AF8 16819:811 JLINK_ReadMemEx(0x08004D6E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D6E) - Data: A0 61 returns 0x02 (0000ms, 693752ms total)
  1331. T5AF8 16819:811 JLINK_ReadMemEx(0x08004D70, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D70) - Data: 60 7D 01 28 04 D0 02 28 03 D0 03 28 58 D1 1F E0 ... returns 0x3C (0000ms, 693752ms total)
  1332. T5AF8 16819:811 JLINK_ReadMemEx(0x08004D70, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D70) - Data: 60 7D returns 0x02 (0000ms, 693752ms total)
  1333. T5AF8 16819:811 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004D6E) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- CPU_WriteMem(4 bytes @ 0x20011D10) -- Simulated returns 0x00 (0003ms, 693755ms total)
  1334. T5AF8 16819:814 JLINK_ReadReg(R15 (PC)) returns 0x08004D70 (0000ms, 693755ms total)
  1335. T5AF8 16819:814 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 693755ms total)
  1336. T5AF8 16819:814 JLINK_ReadReg(R0) returns 0x20011D20 (0000ms, 693755ms total)
  1337. T5AF8 16819:814 JLINK_ReadReg(R1) returns 0x00000000 (0000ms, 693755ms total)
  1338. T5AF8 16819:814 JLINK_ReadReg(R2) returns 0xFFFFFFFF (0000ms, 693755ms total)
  1339. T5AF8 16819:814 JLINK_ReadReg(R3) returns 0x00000000 (0000ms, 693755ms total)
  1340. T5AF8 16819:814 JLINK_ReadReg(R4) returns 0x20011CF8 (0000ms, 693755ms total)
  1341. T5AF8 16819:814 JLINK_ReadReg(R5) returns 0x200105A0 (0000ms, 693755ms total)
  1342. T5AF8 16819:814 JLINK_ReadReg(R6) returns 0x6807C80F (0000ms, 693755ms total)
  1343. T5AF8 16819:814 JLINK_ReadReg(R7) returns 0x6807C80F (0000ms, 693755ms total)
  1344. T5AF8 16819:814 JLINK_ReadReg(R8) returns 0x6807C803 (0000ms, 693755ms total)
  1345. T5AF8 16819:814 JLINK_ReadReg(R9) returns 0x6807C800 (0000ms, 693755ms total)
  1346. T5AF8 16819:814 JLINK_ReadReg(R10) returns 0x10101010 (0000ms, 693755ms total)
  1347. T5AF8 16819:814 JLINK_ReadReg(R11) returns 0x11111111 (0000ms, 693755ms total)
  1348. T5AF8 16819:814 JLINK_ReadReg(R12) returns 0x00000000 (0000ms, 693755ms total)
  1349. T5AF8 16819:814 JLINK_ReadReg(R13 (SP)) returns 0x2000A444 (0000ms, 693755ms total)
  1350. T5AF8 16819:814 JLINK_ReadReg(R14) returns 0x08006EB5 (0000ms, 693755ms total)
  1351. T5AF8 16819:814 JLINK_ReadReg(R15 (PC)) returns 0x08004D70 (0000ms, 693755ms total)
  1352. T5AF8 16819:814 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 693755ms total)
  1353. T5AF8 16819:814 JLINK_ReadReg(MSP) returns 0x20011CC8 (0000ms, 693755ms total)
  1354. T5AF8 16819:814 JLINK_ReadReg(PSP) returns 0x2000A444 (0000ms, 693755ms total)
  1355. T5AF8 16819:814 JLINK_ReadReg(CFBP) returns 0x02000000 (0000ms, 693755ms total)
  1356. T5690 16819:815 JLINK_ReadMemEx(0x2000A458, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x2000A440) -- Updating C cache (64 bytes @ 0x2000A440) -- Read from C cache (4 bytes @ 0x2000A458) - Data: CB 4A 00 08 returns 0x04 (0003ms, 693758ms total)
  1357. T5690 16819:818 JLINK_ReadMemEx(0x2000A444, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A444) - Data: F8 1C 01 20 returns 0x04 (0000ms, 693758ms total)
  1358. T5690 16819:818 JLINK_ReadMemEx(0x2000A448, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A448) - Data: A0 05 01 20 returns 0x04 (0000ms, 693758ms total)
  1359. T5690 16819:818 JLINK_ReadMemEx(0x2000A44C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A44C) - Data: 0F C8 07 68 returns 0x04 (0000ms, 693758ms total)
  1360. T5690 16819:818 JLINK_ReadMemEx(0x2000A450, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A450) - Data: 03 C8 07 68 returns 0x04 (0000ms, 693758ms total)
  1361. T5690 16819:818 JLINK_ReadMemEx(0x2000A454, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A454) - Data: 03 C8 07 68 returns 0x04 (0000ms, 693758ms total)
  1362. T5690 16819:818 JLINK_ReadMemEx(0x2000A458, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A458) - Data: CB 4A 00 08 returns 0x04 (0000ms, 693758ms total)
  1363. T5690 16819:818 JLINK_ReadMemEx(0x2000A470, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A470) - Data: C3 4C 00 08 returns 0x04 (0000ms, 693758ms total)
  1364. T5690 16819:818 JLINK_ReadMemEx(0x2000A45C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A45C) - Data: A0 05 01 20 returns 0x04 (0000ms, 693758ms total)
  1365. T5690 16819:818 JLINK_ReadMemEx(0x2000A460, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A460) - Data: 00 C8 07 68 returns 0x04 (0000ms, 693758ms total)
  1366. T5690 16819:818 JLINK_ReadMemEx(0x2000A464, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A464) - Data: 01 00 00 00 returns 0x04 (0000ms, 693758ms total)
  1367. T5690 16819:818 JLINK_ReadMemEx(0x2000A468, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A468) - Data: 80 05 01 20 returns 0x04 (0000ms, 693758ms total)
  1368. T5690 16819:818 JLINK_ReadMemEx(0x2000A46C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A46C) - Data: 03 C8 07 68 returns 0x04 (0000ms, 693758ms total)
  1369. T5690 16819:818 JLINK_ReadMemEx(0x2000A470, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A470) - Data: C3 4C 00 08 returns 0x04 (0000ms, 693758ms total)
  1370. T5690 16819:818 JLINK_ReadMemEx(0x2000A490, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x2000A480) -- Updating C cache (64 bytes @ 0x2000A480) -- Read from C cache (4 bytes @ 0x2000A490) - Data: C1 4B 00 08 returns 0x04 (0004ms, 693762ms total)
  1371. T5690 16819:822 JLINK_ReadMemEx(0x2000A474, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A474) - Data: 01 00 00 00 returns 0x04 (0000ms, 693762ms total)
  1372. T5690 16819:822 JLINK_ReadMemEx(0x2000A478, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A478) - Data: 00 C8 07 68 returns 0x04 (0000ms, 693762ms total)
  1373. T5690 16819:822 JLINK_ReadMemEx(0x2000A47C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A47C) - Data: 00 DC 07 68 returns 0x04 (0000ms, 693762ms total)
  1374. T5690 16819:822 JLINK_ReadMemEx(0x2000A480, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A480) - Data: 07 07 07 07 returns 0x04 (0000ms, 693762ms total)
  1375. T5690 16819:822 JLINK_ReadMemEx(0x2000A484, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A484) - Data: 08 08 08 08 returns 0x04 (0000ms, 693762ms total)
  1376. T5690 16819:822 JLINK_ReadMemEx(0x2000A488, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A488) - Data: 09 09 09 09 returns 0x04 (0000ms, 693762ms total)
  1377. T5690 16819:822 JLINK_ReadMemEx(0x2000A48C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A48C) - Data: 10 10 10 10 returns 0x04 (0000ms, 693762ms total)
  1378. T5690 16819:822 JLINK_ReadMemEx(0x2000A490, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A490) - Data: C1 4B 00 08 returns 0x04 (0000ms, 693762ms total)
  1379. T5690 16819:822 JLINK_ReadMemEx(0x2000A4B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B8) - Data: 49 54 00 08 returns 0x04 (0000ms, 693762ms total)
  1380. T5690 16819:822 JLINK_ReadMemEx(0x2000A4A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4A4) - Data: 00 00 00 00 returns 0x04 (0000ms, 693762ms total)
  1381. T5690 16819:822 JLINK_ReadMemEx(0x2000A4A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4A8) - Data: 00 DC 07 68 returns 0x04 (0000ms, 693762ms total)
  1382. T5690 16819:822 JLINK_ReadMemEx(0x2000A4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4AC) - Data: 06 06 06 06 returns 0x04 (0000ms, 693762ms total)
  1383. T5690 16819:822 JLINK_ReadMemEx(0x2000A4B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B0) - Data: 07 07 07 07 returns 0x04 (0000ms, 693762ms total)
  1384. T5690 16819:822 JLINK_ReadMemEx(0x2000A4B4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B4) - Data: 08 08 08 08 returns 0x04 (0000ms, 693762ms total)
  1385. T5690 16819:822 JLINK_ReadMemEx(0x2000A4B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B8) - Data: 49 54 00 08 returns 0x04 (0000ms, 693762ms total)
  1386. T5690 16819:822 JLINK_ReadMemEx(0x2000A4C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x2000A4C0) -- Updating C cache (64 bytes @ 0x2000A4C0) -- Read from C cache (4 bytes @ 0x2000A4C8) - Data: 45 36 00 08 returns 0x04 (0004ms, 693766ms total)
  1387. T5690 16819:826 JLINK_ReadMemEx(0x2000A4BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4BC) - Data: 04 04 04 04 returns 0x04 (0000ms, 693766ms total)
  1388. T5690 16819:826 JLINK_ReadMemEx(0x2000A4C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C0) - Data: 05 05 05 05 returns 0x04 (0000ms, 693766ms total)
  1389. T5690 16819:826 JLINK_ReadMemEx(0x2000A4C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C4) - Data: 06 06 06 06 returns 0x04 (0000ms, 693766ms total)
  1390. T5690 16819:826 JLINK_ReadMemEx(0x2000A4C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C8) - Data: 45 36 00 08 returns 0x04 (0000ms, 693766ms total)
  1391. T5690 16819:826 JLINK_ReadMemEx(0x2000A4E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4E0) - Data: 00 00 5B 07 returns 0x04 (0000ms, 693766ms total)
  1392. T5690 16819:826 JLINK_ReadMemEx(0x2000A4CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4CC) - Data: 00 33 36 2E returns 0x04 (0000ms, 693766ms total)
  1393. T5690 16819:826 JLINK_ReadMemEx(0x2000A4D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4D0) - Data: 31 33 34 2E returns 0x04 (0000ms, 693766ms total)
  1394. T5690 16819:826 JLINK_ReadMemEx(0x2000A4D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4D4) - Data: 32 33 2E 31 returns 0x04 (0000ms, 693766ms total)
  1395. T5690 16819:826 JLINK_ReadMemEx(0x2000A4D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4D8) - Data: 31 00 00 00 returns 0x04 (0000ms, 693766ms total)
  1396. T5690 16819:826 JLINK_ReadMemEx(0x2000A4DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4DC) - Data: 00 00 00 00 returns 0x04 (0000ms, 693766ms total)
  1397. T5690 16819:826 JLINK_ReadMemEx(0x2000A4E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4E0) - Data: 00 00 5B 07 returns 0x04 (0000ms, 693766ms total)
  1398. T5690 16819:834 JLINK_ReadMemEx(0x6807C80F, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x6807C80F) - Data: 22 73 65 6E 73 6F 72 4C 69 73 74 22 3A 5B 7B 22 ... returns 0x20 (0004ms, 693770ms total)
  1399. T5690 16819:840 JLINK_ReadMemEx(0x6807C80F, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x6807C80F) - Data: 22 73 65 6E 73 6F 72 4C 69 73 74 22 3A 5B 7B 22 ... returns 0x20 (0004ms, 693774ms total)
  1400. T5690 16819:844 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: C8 6D 65 04 returns 1 (0001ms, 693775ms total)
  1401. T5690 16819:845 JLINK_ReadMemEx(0x6807C80F, 0x0E00 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(3584 bytes @ 0x6807C80F) - Data: 22 73 65 6E 73 6F 72 4C 69 73 74 22 3A 5B 7B 22 ... returns 0xE00 (0128ms, 693903ms total)
  1402. T5690 16819:978 JLINK_ReadMemEx(0x08004D68, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D68) - Data: 10 20 FF F7 F9 F9 A0 61 60 7D 01 28 04 D0 02 28 ... returns 0x3C (0000ms, 693903ms total)
  1403. T5690 16819:978 JLINK_ReadMemEx(0x08004D68, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D68) - Data: 10 20 returns 0x02 (0000ms, 693903ms total)
  1404. T5690 16819:978 JLINK_ReadMemEx(0x08004D6A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D6A) - Data: FF F7 returns 0x02 (0000ms, 693903ms total)
  1405. T5690 16819:978 JLINK_ReadMemEx(0x08004D6A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D6A) - Data: FF F7 returns 0x02 (0000ms, 693903ms total)
  1406. T5690 16819:978 JLINK_ReadMemEx(0x08004D6C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D6C) - Data: F9 F9 A0 61 60 7D 01 28 04 D0 02 28 03 D0 03 28 ... returns 0x3C (0000ms, 693903ms total)
  1407. T5690 16819:978 JLINK_ReadMemEx(0x08004D6C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D6C) - Data: F9 F9 returns 0x02 (0000ms, 693903ms total)
  1408. T5690 16819:978 JLINK_ReadMemEx(0x08004D6E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D6E) - Data: A0 61 returns 0x02 (0000ms, 693903ms total)
  1409. T5690 16819:978 JLINK_ReadMemEx(0x08004D70, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D70) - Data: 60 7D 01 28 04 D0 02 28 03 D0 03 28 58 D1 1F E0 ... returns 0x3C (0000ms, 693903ms total)
  1410. T5690 16819:978 JLINK_ReadMemEx(0x08004D70, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D70) - Data: 60 7D returns 0x02 (0000ms, 693903ms total)
  1411. T5690 16819:978 JLINK_ReadMemEx(0x08004D70, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D70) - Data: 60 7D 01 28 04 D0 02 28 03 D0 03 28 58 D1 1F E0 ... returns 0x3C (0000ms, 693903ms total)
  1412. T5690 16819:978 JLINK_ReadMemEx(0x08004D70, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D70) - Data: 60 7D returns 0x02 (0000ms, 693903ms total)
  1413. T5690 16819:978 JLINK_ReadMemEx(0x08004D72, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D72) - Data: 01 28 returns 0x02 (0000ms, 693903ms total)
  1414. T5690 16819:978 JLINK_ReadMemEx(0x08004D72, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D72) - Data: 01 28 returns 0x02 (0000ms, 693903ms total)
  1415. T5690 16819:978 JLINK_ReadMemEx(0x08004D74, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D74) - Data: 04 D0 02 28 03 D0 03 28 58 D1 1F E0 00 BF 2C 20 ... returns 0x3C (0000ms, 693903ms total)
  1416. T5690 16819:978 JLINK_ReadMemEx(0x08004D74, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D74) - Data: 04 D0 returns 0x02 (0000ms, 693903ms total)
  1417. T5690 16819:978 JLINK_ReadMemEx(0x08004D74, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D74) - Data: 04 D0 02 28 03 D0 03 28 58 D1 1F E0 00 BF 2C 20 ... returns 0x3C (0000ms, 693903ms total)
  1418. T5690 16819:978 JLINK_ReadMemEx(0x08004D74, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D74) - Data: 04 D0 returns 0x02 (0000ms, 693903ms total)
  1419. T5690 16819:978 JLINK_ReadMemEx(0x08004D76, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D76) - Data: 02 28 returns 0x02 (0000ms, 693903ms total)
  1420. T5690 16819:978 JLINK_ReadMemEx(0x08004D76, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D76) - Data: 02 28 returns 0x02 (0000ms, 693903ms total)
  1421. T5690 16819:978 JLINK_ReadMemEx(0x08004D78, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D78) - Data: 03 D0 03 28 58 D1 1F E0 00 BF 2C 20 FF F7 EC F9 ... returns 0x3C (0000ms, 693903ms total)
  1422. T5690 16819:978 JLINK_ReadMemEx(0x08004D78, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D78) - Data: 03 D0 returns 0x02 (0000ms, 693903ms total)
  1423. T5690 16819:978 JLINK_ReadMemEx(0x08004D78, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D78) - Data: 03 D0 03 28 58 D1 1F E0 00 BF 2C 20 FF F7 EC F9 ... returns 0x3C (0000ms, 693903ms total)
  1424. T5690 16819:978 JLINK_ReadMemEx(0x08004D78, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D78) - Data: 03 D0 returns 0x02 (0000ms, 693903ms total)
  1425. T5690 16819:978 JLINK_ReadMemEx(0x08004D7A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D7A) - Data: 03 28 returns 0x02 (0000ms, 693903ms total)
  1426. T5AF8 16820:473 JLINK_ReadMemEx(0x08004D70, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D70) - Data: 60 7D returns 0x02 (0000ms, 693903ms total)
  1427. T5AF8 16820:473 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004D70) -- CPU_ReadMem(64 bytes @ 0x20011D00) -- Updating C cache (64 bytes @ 0x20011D00) -- Read from C cache (1 bytes @ 0x20011D0D) -- Simulated returns 0x00 (0005ms, 693908ms total)
  1428. T5AF8 16820:478 JLINK_ReadReg(R15 (PC)) returns 0x08004D72 (0000ms, 693908ms total)
  1429. T5AF8 16820:478 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 693908ms total)
  1430. T5AF8 16820:478 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004D72) -- Simulated returns 0x00 (0000ms, 693908ms total)
  1431. T5AF8 16820:478 JLINK_ReadReg(R15 (PC)) returns 0x08004D74 (0000ms, 693908ms total)
  1432. T5AF8 16820:478 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 693908ms total)
  1433. T5AF8 16820:478 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004D74) -- Simulated returns 0x00 (0000ms, 693908ms total)
  1434. T5AF8 16820:478 JLINK_ReadReg(R15 (PC)) returns 0x08004D76 (0000ms, 693908ms total)
  1435. T5AF8 16820:478 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 693908ms total)
  1436. T5AF8 16820:478 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004D76) -- Simulated returns 0x00 (0000ms, 693908ms total)
  1437. T5AF8 16820:478 JLINK_ReadReg(R15 (PC)) returns 0x08004D78 (0000ms, 693908ms total)
  1438. T5AF8 16820:478 JLINK_ReadReg(XPSR) returns 0x61000000 (0000ms, 693908ms total)
  1439. T5AF8 16820:478 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004D78) -- Simulated returns 0x00 (0000ms, 693908ms total)
  1440. T5AF8 16820:478 JLINK_ReadReg(R15 (PC)) returns 0x08004D82 (0000ms, 693908ms total)
  1441. T5AF8 16820:478 JLINK_ReadReg(XPSR) returns 0x61000000 (0000ms, 693908ms total)
  1442. T5AF8 16820:478 JLINK_ReadReg(R0) returns 0x00000002 (0000ms, 693908ms total)
  1443. T5AF8 16820:478 JLINK_ReadReg(R1) returns 0x00000000 (0000ms, 693908ms total)
  1444. T5AF8 16820:478 JLINK_ReadReg(R2) returns 0xFFFFFFFF (0000ms, 693908ms total)
  1445. T5AF8 16820:478 JLINK_ReadReg(R3) returns 0x00000000 (0000ms, 693908ms total)
  1446. T5AF8 16820:478 JLINK_ReadReg(R4) returns 0x20011CF8 (0000ms, 693908ms total)
  1447. T5AF8 16820:478 JLINK_ReadReg(R5) returns 0x200105A0 (0000ms, 693908ms total)
  1448. T5AF8 16820:478 JLINK_ReadReg(R6) returns 0x6807C80F (0000ms, 693908ms total)
  1449. T5AF8 16820:478 JLINK_ReadReg(R7) returns 0x6807C80F (0000ms, 693908ms total)
  1450. T5AF8 16820:478 JLINK_ReadReg(R8) returns 0x6807C803 (0000ms, 693908ms total)
  1451. T5AF8 16820:478 JLINK_ReadReg(R9) returns 0x6807C800 (0000ms, 693908ms total)
  1452. T5AF8 16820:478 JLINK_ReadReg(R10) returns 0x10101010 (0000ms, 693908ms total)
  1453. T5AF8 16820:478 JLINK_ReadReg(R11) returns 0x11111111 (0000ms, 693908ms total)
  1454. T5AF8 16820:478 JLINK_ReadReg(R12) returns 0x00000000 (0000ms, 693908ms total)
  1455. T5AF8 16820:478 JLINK_ReadReg(R13 (SP)) returns 0x2000A444 (0000ms, 693908ms total)
  1456. T5AF8 16820:478 JLINK_ReadReg(R14) returns 0x08006EB5 (0000ms, 693908ms total)
  1457. T5AF8 16820:478 JLINK_ReadReg(R15 (PC)) returns 0x08004D82 (0000ms, 693908ms total)
  1458. T5AF8 16820:478 JLINK_ReadReg(XPSR) returns 0x61000000 (0000ms, 693908ms total)
  1459. T5AF8 16820:478 JLINK_ReadReg(MSP) returns 0x20011CC8 (0000ms, 693908ms total)
  1460. T5AF8 16820:478 JLINK_ReadReg(PSP) returns 0x2000A444 (0000ms, 693908ms total)
  1461. T5AF8 16820:478 JLINK_ReadReg(CFBP) returns 0x02000000 (0000ms, 693908ms total)
  1462. T5690 16820:479 JLINK_ReadMemEx(0x2000A458, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A458) - Data: CB 4A 00 08 returns 0x04 (0000ms, 693908ms total)
  1463. T5690 16820:479 JLINK_ReadMemEx(0x2000A444, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A444) - Data: F8 1C 01 20 returns 0x04 (0000ms, 693908ms total)
  1464. T5690 16820:479 JLINK_ReadMemEx(0x2000A448, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A448) - Data: A0 05 01 20 returns 0x04 (0000ms, 693908ms total)
  1465. T5690 16820:479 JLINK_ReadMemEx(0x2000A44C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A44C) - Data: 0F C8 07 68 returns 0x04 (0000ms, 693908ms total)
  1466. T5690 16820:479 JLINK_ReadMemEx(0x2000A450, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A450) - Data: 03 C8 07 68 returns 0x04 (0000ms, 693908ms total)
  1467. T5690 16820:479 JLINK_ReadMemEx(0x2000A454, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A454) - Data: 03 C8 07 68 returns 0x04 (0000ms, 693908ms total)
  1468. T5690 16820:479 JLINK_ReadMemEx(0x2000A458, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A458) - Data: CB 4A 00 08 returns 0x04 (0000ms, 693908ms total)
  1469. T5690 16820:479 JLINK_ReadMemEx(0x2000A470, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A470) - Data: C3 4C 00 08 returns 0x04 (0000ms, 693908ms total)
  1470. T5690 16820:479 JLINK_ReadMemEx(0x2000A45C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A45C) - Data: A0 05 01 20 returns 0x04 (0000ms, 693908ms total)
  1471. T5690 16820:479 JLINK_ReadMemEx(0x2000A460, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A460) - Data: 00 C8 07 68 returns 0x04 (0000ms, 693908ms total)
  1472. T5690 16820:479 JLINK_ReadMemEx(0x2000A464, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A464) - Data: 01 00 00 00 returns 0x04 (0000ms, 693908ms total)
  1473. T5690 16820:479 JLINK_ReadMemEx(0x2000A468, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A468) - Data: 80 05 01 20 returns 0x04 (0000ms, 693908ms total)
  1474. T5690 16820:479 JLINK_ReadMemEx(0x2000A46C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A46C) - Data: 03 C8 07 68 returns 0x04 (0000ms, 693908ms total)
  1475. T5690 16820:479 JLINK_ReadMemEx(0x2000A470, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A470) - Data: C3 4C 00 08 returns 0x04 (0000ms, 693908ms total)
  1476. T5690 16820:479 JLINK_ReadMemEx(0x2000A490, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A490) - Data: C1 4B 00 08 returns 0x04 (0000ms, 693908ms total)
  1477. T5690 16820:479 JLINK_ReadMemEx(0x2000A474, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A474) - Data: 01 00 00 00 returns 0x04 (0000ms, 693908ms total)
  1478. T5690 16820:479 JLINK_ReadMemEx(0x2000A478, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A478) - Data: 00 C8 07 68 returns 0x04 (0000ms, 693908ms total)
  1479. T5690 16820:479 JLINK_ReadMemEx(0x2000A47C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A47C) - Data: 00 DC 07 68 returns 0x04 (0000ms, 693908ms total)
  1480. T5690 16820:479 JLINK_ReadMemEx(0x2000A480, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A480) - Data: 07 07 07 07 returns 0x04 (0000ms, 693908ms total)
  1481. T5690 16820:479 JLINK_ReadMemEx(0x2000A484, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A484) - Data: 08 08 08 08 returns 0x04 (0000ms, 693908ms total)
  1482. T5690 16820:479 JLINK_ReadMemEx(0x2000A488, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A488) - Data: 09 09 09 09 returns 0x04 (0000ms, 693908ms total)
  1483. T5690 16820:479 JLINK_ReadMemEx(0x2000A48C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A48C) - Data: 10 10 10 10 returns 0x04 (0000ms, 693908ms total)
  1484. T5690 16820:479 JLINK_ReadMemEx(0x2000A490, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A490) - Data: C1 4B 00 08 returns 0x04 (0000ms, 693908ms total)
  1485. T5690 16820:479 JLINK_ReadMemEx(0x2000A4B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B8) - Data: 49 54 00 08 returns 0x04 (0000ms, 693908ms total)
  1486. T5690 16820:479 JLINK_ReadMemEx(0x2000A4A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4A4) - Data: 00 00 00 00 returns 0x04 (0000ms, 693908ms total)
  1487. T5690 16820:479 JLINK_ReadMemEx(0x2000A4A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4A8) - Data: 00 DC 07 68 returns 0x04 (0000ms, 693908ms total)
  1488. T5690 16820:479 JLINK_ReadMemEx(0x2000A4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4AC) - Data: 06 06 06 06 returns 0x04 (0000ms, 693908ms total)
  1489. T5690 16820:479 JLINK_ReadMemEx(0x2000A4B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B0) - Data: 07 07 07 07 returns 0x04 (0000ms, 693908ms total)
  1490. T5690 16820:479 JLINK_ReadMemEx(0x2000A4B4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B4) - Data: 08 08 08 08 returns 0x04 (0000ms, 693908ms total)
  1491. T5690 16820:479 JLINK_ReadMemEx(0x2000A4B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B8) - Data: 49 54 00 08 returns 0x04 (0000ms, 693908ms total)
  1492. T5690 16820:479 JLINK_ReadMemEx(0x2000A4C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C8) - Data: 45 36 00 08 returns 0x04 (0000ms, 693908ms total)
  1493. T5690 16820:479 JLINK_ReadMemEx(0x2000A4BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4BC) - Data: 04 04 04 04 returns 0x04 (0000ms, 693908ms total)
  1494. T5690 16820:479 JLINK_ReadMemEx(0x2000A4C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C0) - Data: 05 05 05 05 returns 0x04 (0000ms, 693908ms total)
  1495. T5690 16820:479 JLINK_ReadMemEx(0x2000A4C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C4) - Data: 06 06 06 06 returns 0x04 (0000ms, 693908ms total)
  1496. T5690 16820:479 JLINK_ReadMemEx(0x2000A4C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C8) - Data: 45 36 00 08 returns 0x04 (0000ms, 693908ms total)
  1497. T5690 16820:479 JLINK_ReadMemEx(0x2000A4E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4E0) - Data: 00 00 5B 07 returns 0x04 (0000ms, 693908ms total)
  1498. T5690 16820:479 JLINK_ReadMemEx(0x2000A4CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4CC) - Data: 00 33 36 2E returns 0x04 (0000ms, 693908ms total)
  1499. T5690 16820:479 JLINK_ReadMemEx(0x2000A4D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4D0) - Data: 31 33 34 2E returns 0x04 (0000ms, 693908ms total)
  1500. T5690 16820:479 JLINK_ReadMemEx(0x2000A4D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4D4) - Data: 32 33 2E 31 returns 0x04 (0000ms, 693908ms total)
  1501. T5690 16820:479 JLINK_ReadMemEx(0x2000A4D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4D8) - Data: 31 00 00 00 returns 0x04 (0000ms, 693908ms total)
  1502. T5690 16820:479 JLINK_ReadMemEx(0x2000A4DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4DC) - Data: 00 00 00 00 returns 0x04 (0000ms, 693908ms total)
  1503. T5690 16820:479 JLINK_ReadMemEx(0x2000A4E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4E0) - Data: 00 00 5B 07 returns 0x04 (0000ms, 693908ms total)
  1504. T5690 16820:479 JLINK_ReadMemEx(0x6807C80F, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x6807C80F) - Data: 22 73 65 6E 73 6F 72 4C 69 73 74 22 3A 5B 7B 22 ... returns 0x20 (0005ms, 693913ms total)
  1505. T5690 16820:484 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: CE 6D 65 04 returns 1 (0000ms, 693913ms total)
  1506. T5690 16820:484 JLINK_ReadMemEx(0x6807C80F, 0x0E00 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(3584 bytes @ 0x6807C80F) - Data: 22 73 65 6E 73 6F 72 4C 69 73 74 22 3A 5B 7B 22 ... returns 0xE00 (0127ms, 694040ms total)
  1507. T5690 16820:621 JLINK_ReadMemEx(0x08004D80, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D80) - Data: 00 BF 2C 20 FF F7 EC F9 06 46 2B A1 38 46 02 F0 ... returns 0x3C (0000ms, 694040ms total)
  1508. T5690 16820:621 JLINK_ReadMemEx(0x08004D80, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D80) - Data: 00 BF returns 0x02 (0000ms, 694040ms total)
  1509. T5690 16820:621 JLINK_ReadMemEx(0x08004D82, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D82) - Data: 2C 20 returns 0x02 (0000ms, 694040ms total)
  1510. T5690 16820:621 JLINK_ReadMemEx(0x08004D82, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D82) - Data: 2C 20 returns 0x02 (0000ms, 694040ms total)
  1511. T5690 16820:621 JLINK_ReadMemEx(0x08004D84, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D84) - Data: FF F7 EC F9 06 46 2B A1 38 46 02 F0 51 FA F0 61 ... returns 0x3C (0000ms, 694040ms total)
  1512. T5690 16820:621 JLINK_ReadMemEx(0x08004D84, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D84) - Data: FF F7 returns 0x02 (0000ms, 694040ms total)
  1513. T5690 16820:621 JLINK_ReadMemEx(0x08004D84, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D84) - Data: FF F7 EC F9 06 46 2B A1 38 46 02 F0 51 FA F0 61 ... returns 0x3C (0000ms, 694040ms total)
  1514. T5690 16820:621 JLINK_ReadMemEx(0x08004D84, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D84) - Data: FF F7 returns 0x02 (0000ms, 694040ms total)
  1515. T5690 16820:621 JLINK_ReadMemEx(0x08004D86, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D86) - Data: EC F9 returns 0x02 (0000ms, 694040ms total)
  1516. T5690 16820:621 JLINK_ReadMemEx(0x08004D88, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08004DC0) -- Updating C cache (64 bytes @ 0x08004DC0) -- Read from C cache (60 bytes @ 0x08004D88) - Data: 06 46 2B A1 38 46 02 F0 51 FA F0 61 B2 1D 2D A1 ... returns 0x3C (0004ms, 694044ms total)
  1517. T5690 16820:625 JLINK_ReadMemEx(0x08004D88, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D88) - Data: 06 46 returns 0x02 (0000ms, 694044ms total)
  1518. T5690 16820:625 JLINK_ReadMemEx(0x08004D8A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D8A) - Data: 2B A1 returns 0x02 (0000ms, 694044ms total)
  1519. T5690 16820:625 JLINK_ReadMemEx(0x08004D8A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D8A) - Data: 2B A1 returns 0x02 (0000ms, 694044ms total)
  1520. T5690 16820:625 JLINK_ReadMemEx(0x08004D8C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D8C) - Data: 38 46 02 F0 51 FA F0 61 B2 1D 2D A1 38 46 02 F0 ... returns 0x3C (0000ms, 694044ms total)
  1521. T5690 16820:625 JLINK_ReadMemEx(0x08004D8C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D8C) - Data: 38 46 returns 0x02 (0000ms, 694044ms total)
  1522. T5690 16820:625 JLINK_ReadMemEx(0x08004D8C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D8C) - Data: 38 46 02 F0 51 FA F0 61 B2 1D 2D A1 38 46 02 F0 ... returns 0x3C (0000ms, 694044ms total)
  1523. T5690 16820:625 JLINK_ReadMemEx(0x08004D8C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D8C) - Data: 38 46 returns 0x02 (0000ms, 694044ms total)
  1524. T5690 16820:625 JLINK_ReadMemEx(0x08004D8E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D8E) - Data: 02 F0 returns 0x02 (0000ms, 694044ms total)
  1525. T5690 16820:625 JLINK_ReadMemEx(0x08004D8E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D8E) - Data: 02 F0 returns 0x02 (0000ms, 694044ms total)
  1526. T5690 16820:625 JLINK_ReadMemEx(0x08004D90, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D90) - Data: 51 FA F0 61 B2 1D 2D A1 38 46 02 F0 61 FA A0 69 ... returns 0x3C (0000ms, 694044ms total)
  1527. T5690 16820:625 JLINK_ReadMemEx(0x08004D90, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D90) - Data: 51 FA returns 0x02 (0000ms, 694044ms total)
  1528. T5AF8 16821:322 JLINK_ReadMemEx(0x08004D82, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D82) - Data: 2C 20 returns 0x02 (0000ms, 694044ms total)
  1529. T5AF8 16821:322 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004D82) -- Simulated returns 0x00 (0002ms, 694046ms total)
  1530. T5AF8 16821:324 JLINK_ReadReg(R15 (PC)) returns 0x08004D84 (0000ms, 694046ms total)
  1531. T5AF8 16821:324 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 694046ms total)
  1532. T5AF8 16821:324 JLINK_SetBPEx(Addr = 0x08004D88, Type = 0xFFFFFFF2) returns 0x0000000C (0000ms, 694046ms total)
  1533. T5AF8 16821:324 JLINK_SetBPEx(Addr = 0x08004D60, Type = 0xFFFFFFF2) returns 0x0000000D (0000ms, 694046ms total)
  1534. T5AF8 16821:324 JLINK_SetBPEx(Addr = 0x08004AB6, Type = 0xFFFFFFF2) returns 0x0000000E (0000ms, 694046ms total)
  1535. T5AF8 16821:324 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0014ms, 694060ms total)
  1536. T5AF8 16821:438 JLINK_IsHalted() returns TRUE (0017ms, 694077ms total)
  1537. T5AF8 16821:455 JLINK_Halt() returns 0x00 (0000ms, 694060ms total)
  1538. T5AF8 16821:455 JLINK_IsHalted() returns TRUE (0000ms, 694060ms total)
  1539. T5AF8 16821:455 JLINK_IsHalted() returns TRUE (0000ms, 694060ms total)
  1540. T5AF8 16821:455 JLINK_IsHalted() returns TRUE (0000ms, 694060ms total)
  1541. T5AF8 16821:455 JLINK_ReadReg(R15 (PC)) returns 0x08004D88 (0000ms, 694060ms total)
  1542. T5AF8 16821:455 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 694060ms total)
  1543. T5AF8 16821:455 JLINK_ClrBPEx(BPHandle = 0x0000000C) returns 0x00 (0000ms, 694060ms total)
  1544. T5AF8 16821:455 JLINK_ClrBPEx(BPHandle = 0x0000000D) returns 0x00 (0000ms, 694060ms total)
  1545. T5AF8 16821:455 JLINK_ClrBPEx(BPHandle = 0x0000000E) returns 0x00 (0000ms, 694060ms total)
  1546. T5AF8 16821:455 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 02 00 00 00 returns 1 (0001ms, 694061ms total)
  1547. T5AF8 16821:456 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00 returns 1 (0003ms, 694064ms total)
  1548. T5AF8 16821:459 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 02 00 00 returns 1 (0002ms, 694066ms total)
  1549. T5AF8 16821:461 JLINK_ReadMemU32(0xE0001048, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001048) - Data: 00 00 00 00 returns 1 (0001ms, 694067ms total)
  1550. T5AF8 16821:462 JLINK_ReadMemU32(0xE0001058, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001058) - Data: 00 00 00 00 returns 1 (0002ms, 694069ms total)
  1551. T5AF8 16821:464 JLINK_ReadMemEx(0x08004D86, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08004D80) -- Updating C cache (64 bytes @ 0x08004D80) -- Read from C cache (2 bytes @ 0x08004D86) - Data: EC F9 returns 0x02 (0003ms, 694072ms total)
  1552. T5AF8 16821:467 JLINK_ReadMemEx(0x08004D88, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08004DC0) -- Updating C cache (64 bytes @ 0x08004DC0) -- Read from C cache (60 bytes @ 0x08004D88) - Data: 06 46 2B A1 38 46 02 F0 51 FA F0 61 B2 1D 2D A1 ... returns 0x3C (0004ms, 694076ms total)
  1553. T5AF8 16821:471 JLINK_ReadMemEx(0x08004D88, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D88) - Data: 06 46 returns 0x02 (0000ms, 694076ms total)
  1554. T5AF8 16821:471 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004D88) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Simulated returns 0x00 (0001ms, 694077ms total)
  1555. T5AF8 16821:472 JLINK_ReadReg(R15 (PC)) returns 0x08004D8A (0000ms, 694077ms total)
  1556. T5AF8 16821:472 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 694077ms total)
  1557. T5AF8 16821:472 JLINK_ReadReg(R0) returns 0x20011D38 (0000ms, 694077ms total)
  1558. T5AF8 16821:472 JLINK_ReadReg(R1) returns 0x00000000 (0000ms, 694077ms total)
  1559. T5AF8 16821:472 JLINK_ReadReg(R2) returns 0xFFFFFFFF (0000ms, 694077ms total)
  1560. T5AF8 16821:472 JLINK_ReadReg(R3) returns 0x00000000 (0000ms, 694077ms total)
  1561. T5AF8 16821:472 JLINK_ReadReg(R4) returns 0x20011CF8 (0000ms, 694077ms total)
  1562. T5AF8 16821:472 JLINK_ReadReg(R5) returns 0x200105A0 (0000ms, 694077ms total)
  1563. T5AF8 16821:472 JLINK_ReadReg(R6) returns 0x20011D38 (0000ms, 694077ms total)
  1564. T5AF8 16821:472 JLINK_ReadReg(R7) returns 0x6807C80F (0000ms, 694077ms total)
  1565. T5AF8 16821:472 JLINK_ReadReg(R8) returns 0x6807C803 (0000ms, 694077ms total)
  1566. T5AF8 16821:472 JLINK_ReadReg(R9) returns 0x6807C800 (0000ms, 694077ms total)
  1567. T5AF8 16821:472 JLINK_ReadReg(R10) returns 0x10101010 (0000ms, 694077ms total)
  1568. T5AF8 16821:472 JLINK_ReadReg(R11) returns 0x11111111 (0000ms, 694077ms total)
  1569. T5AF8 16821:472 JLINK_ReadReg(R12) returns 0x00000000 (0000ms, 694077ms total)
  1570. T5AF8 16821:472 JLINK_ReadReg(R13 (SP)) returns 0x2000A444 (0000ms, 694077ms total)
  1571. T5AF8 16821:472 JLINK_ReadReg(R14) returns 0x08006EB5 (0000ms, 694077ms total)
  1572. T5AF8 16821:472 JLINK_ReadReg(R15 (PC)) returns 0x08004D8A (0000ms, 694077ms total)
  1573. T5AF8 16821:472 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 694077ms total)
  1574. T5AF8 16821:472 JLINK_ReadReg(MSP) returns 0x20011CC8 (0000ms, 694077ms total)
  1575. T5AF8 16821:472 JLINK_ReadReg(PSP) returns 0x2000A444 (0000ms, 694077ms total)
  1576. T5AF8 16821:472 JLINK_ReadReg(CFBP) returns 0x02000000 (0000ms, 694077ms total)
  1577. T5690 16821:473 JLINK_ReadMemEx(0x2000A458, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x2000A440) -- Updating C cache (64 bytes @ 0x2000A440) -- Read from C cache (4 bytes @ 0x2000A458) - Data: CB 4A 00 08 returns 0x04 (0003ms, 694080ms total)
  1578. T5690 16821:476 JLINK_ReadMemEx(0x2000A444, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A444) - Data: F8 1C 01 20 returns 0x04 (0000ms, 694080ms total)
  1579. T5690 16821:476 JLINK_ReadMemEx(0x2000A448, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A448) - Data: A0 05 01 20 returns 0x04 (0000ms, 694080ms total)
  1580. T5690 16821:476 JLINK_ReadMemEx(0x2000A44C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A44C) - Data: 0F C8 07 68 returns 0x04 (0000ms, 694080ms total)
  1581. T5690 16821:476 JLINK_ReadMemEx(0x2000A450, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A450) - Data: 03 C8 07 68 returns 0x04 (0000ms, 694080ms total)
  1582. T5690 16821:476 JLINK_ReadMemEx(0x2000A454, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A454) - Data: 03 C8 07 68 returns 0x04 (0000ms, 694080ms total)
  1583. T5690 16821:476 JLINK_ReadMemEx(0x2000A458, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A458) - Data: CB 4A 00 08 returns 0x04 (0000ms, 694080ms total)
  1584. T5690 16821:476 JLINK_ReadMemEx(0x2000A470, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A470) - Data: C3 4C 00 08 returns 0x04 (0000ms, 694080ms total)
  1585. T5690 16821:476 JLINK_ReadMemEx(0x2000A45C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A45C) - Data: A0 05 01 20 returns 0x04 (0000ms, 694080ms total)
  1586. T5690 16821:476 JLINK_ReadMemEx(0x2000A460, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A460) - Data: 00 C8 07 68 returns 0x04 (0000ms, 694080ms total)
  1587. T5690 16821:476 JLINK_ReadMemEx(0x2000A464, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A464) - Data: 01 00 00 00 returns 0x04 (0000ms, 694080ms total)
  1588. T5690 16821:476 JLINK_ReadMemEx(0x2000A468, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A468) - Data: 80 05 01 20 returns 0x04 (0000ms, 694080ms total)
  1589. T5690 16821:476 JLINK_ReadMemEx(0x2000A46C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A46C) - Data: 03 C8 07 68 returns 0x04 (0000ms, 694080ms total)
  1590. T5690 16821:476 JLINK_ReadMemEx(0x2000A470, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A470) - Data: C3 4C 00 08 returns 0x04 (0000ms, 694080ms total)
  1591. T5690 16821:476 JLINK_ReadMemEx(0x2000A490, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x2000A480) -- Updating C cache (64 bytes @ 0x2000A480) -- Read from C cache (4 bytes @ 0x2000A490) - Data: C1 4B 00 08 returns 0x04 (0004ms, 694084ms total)
  1592. T5690 16821:480 JLINK_ReadMemEx(0x2000A474, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A474) - Data: 01 00 00 00 returns 0x04 (0000ms, 694084ms total)
  1593. T5690 16821:480 JLINK_ReadMemEx(0x2000A478, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A478) - Data: 00 C8 07 68 returns 0x04 (0000ms, 694084ms total)
  1594. T5690 16821:480 JLINK_ReadMemEx(0x2000A47C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A47C) - Data: 00 DC 07 68 returns 0x04 (0000ms, 694084ms total)
  1595. T5690 16821:480 JLINK_ReadMemEx(0x2000A480, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A480) - Data: 07 07 07 07 returns 0x04 (0000ms, 694084ms total)
  1596. T5690 16821:480 JLINK_ReadMemEx(0x2000A484, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A484) - Data: 08 08 08 08 returns 0x04 (0000ms, 694084ms total)
  1597. T5690 16821:480 JLINK_ReadMemEx(0x2000A488, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A488) - Data: 09 09 09 09 returns 0x04 (0000ms, 694084ms total)
  1598. T5690 16821:480 JLINK_ReadMemEx(0x2000A48C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A48C) - Data: 10 10 10 10 returns 0x04 (0000ms, 694084ms total)
  1599. T5690 16821:480 JLINK_ReadMemEx(0x2000A490, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A490) - Data: C1 4B 00 08 returns 0x04 (0000ms, 694084ms total)
  1600. T5690 16821:480 JLINK_ReadMemEx(0x2000A4B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B8) - Data: 49 54 00 08 returns 0x04 (0000ms, 694084ms total)
  1601. T5690 16821:480 JLINK_ReadMemEx(0x2000A4A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4A4) - Data: 00 00 00 00 returns 0x04 (0000ms, 694084ms total)
  1602. T5690 16821:480 JLINK_ReadMemEx(0x2000A4A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4A8) - Data: 00 DC 07 68 returns 0x04 (0000ms, 694084ms total)
  1603. T5690 16821:480 JLINK_ReadMemEx(0x2000A4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4AC) - Data: 06 06 06 06 returns 0x04 (0000ms, 694084ms total)
  1604. T5690 16821:480 JLINK_ReadMemEx(0x2000A4B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B0) - Data: 07 07 07 07 returns 0x04 (0000ms, 694084ms total)
  1605. T5690 16821:480 JLINK_ReadMemEx(0x2000A4B4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B4) - Data: 08 08 08 08 returns 0x04 (0000ms, 694084ms total)
  1606. T5690 16821:480 JLINK_ReadMemEx(0x2000A4B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B8) - Data: 49 54 00 08 returns 0x04 (0000ms, 694084ms total)
  1607. T5690 16821:480 JLINK_ReadMemEx(0x2000A4C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x2000A4C0) -- Updating C cache (64 bytes @ 0x2000A4C0) -- Read from C cache (4 bytes @ 0x2000A4C8) - Data: 45 36 00 08 returns 0x04 (0004ms, 694088ms total)
  1608. T5690 16821:484 JLINK_ReadMemEx(0x2000A4BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4BC) - Data: 04 04 04 04 returns 0x04 (0000ms, 694088ms total)
  1609. T5690 16821:484 JLINK_ReadMemEx(0x2000A4C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C0) - Data: 05 05 05 05 returns 0x04 (0000ms, 694088ms total)
  1610. T5690 16821:484 JLINK_ReadMemEx(0x2000A4C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C4) - Data: 06 06 06 06 returns 0x04 (0000ms, 694088ms total)
  1611. T5690 16821:484 JLINK_ReadMemEx(0x2000A4C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C8) - Data: 45 36 00 08 returns 0x04 (0000ms, 694088ms total)
  1612. T5690 16821:484 JLINK_ReadMemEx(0x2000A4E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4E0) - Data: 00 00 5B 07 returns 0x04 (0000ms, 694088ms total)
  1613. T5690 16821:484 JLINK_ReadMemEx(0x2000A4CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4CC) - Data: 00 33 36 2E returns 0x04 (0000ms, 694088ms total)
  1614. T5690 16821:484 JLINK_ReadMemEx(0x2000A4D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4D0) - Data: 31 33 34 2E returns 0x04 (0000ms, 694088ms total)
  1615. T5690 16821:484 JLINK_ReadMemEx(0x2000A4D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4D4) - Data: 32 33 2E 31 returns 0x04 (0000ms, 694088ms total)
  1616. T5690 16821:484 JLINK_ReadMemEx(0x2000A4D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4D8) - Data: 31 00 00 00 returns 0x04 (0000ms, 694088ms total)
  1617. T5690 16821:484 JLINK_ReadMemEx(0x2000A4DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4DC) - Data: 00 00 00 00 returns 0x04 (0000ms, 694088ms total)
  1618. T5690 16821:484 JLINK_ReadMemEx(0x2000A4E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4E0) - Data: 00 00 5B 07 returns 0x04 (0000ms, 694088ms total)
  1619. T5690 16821:484 JLINK_ReadMemEx(0x6807C80F, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x6807C80F) - Data: 22 73 65 6E 73 6F 72 4C 69 73 74 22 3A 5B 7B 22 ... returns 0x20 (0004ms, 694092ms total)
  1620. T5690 16821:488 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 41 6E 65 04 returns 1 (0000ms, 694092ms total)
  1621. T5690 16821:488 JLINK_ReadMemEx(0x6807C80F, 0x0E00 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(3584 bytes @ 0x6807C80F) - Data: 22 73 65 6E 73 6F 72 4C 69 73 74 22 3A 5B 7B 22 ... returns 0xE00 (0127ms, 694219ms total)
  1622. T5690 16821:623 JLINK_ReadMemEx(0x08004D80, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D80) - Data: 00 BF 2C 20 FF F7 EC F9 06 46 2B A1 38 46 02 F0 ... returns 0x3C (0000ms, 694219ms total)
  1623. T5690 16821:623 JLINK_ReadMemEx(0x08004D80, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D80) - Data: 00 BF returns 0x02 (0000ms, 694219ms total)
  1624. T5690 16821:623 JLINK_ReadMemEx(0x08004D82, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D82) - Data: 2C 20 returns 0x02 (0000ms, 694219ms total)
  1625. T5690 16821:623 JLINK_ReadMemEx(0x08004D82, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D82) - Data: 2C 20 returns 0x02 (0000ms, 694219ms total)
  1626. T5690 16821:623 JLINK_ReadMemEx(0x08004D84, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D84) - Data: FF F7 EC F9 06 46 2B A1 38 46 02 F0 51 FA F0 61 ... returns 0x3C (0000ms, 694219ms total)
  1627. T5690 16821:623 JLINK_ReadMemEx(0x08004D84, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D84) - Data: FF F7 returns 0x02 (0000ms, 694219ms total)
  1628. T5690 16821:623 JLINK_ReadMemEx(0x08004D84, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D84) - Data: FF F7 EC F9 06 46 2B A1 38 46 02 F0 51 FA F0 61 ... returns 0x3C (0000ms, 694219ms total)
  1629. T5690 16821:623 JLINK_ReadMemEx(0x08004D84, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D84) - Data: FF F7 returns 0x02 (0000ms, 694219ms total)
  1630. T5690 16821:623 JLINK_ReadMemEx(0x08004D86, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D86) - Data: EC F9 returns 0x02 (0000ms, 694219ms total)
  1631. T5690 16821:623 JLINK_ReadMemEx(0x08004D88, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D88) - Data: 06 46 2B A1 38 46 02 F0 51 FA F0 61 B2 1D 2D A1 ... returns 0x3C (0000ms, 694219ms total)
  1632. T5690 16821:623 JLINK_ReadMemEx(0x08004D88, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D88) - Data: 06 46 returns 0x02 (0000ms, 694219ms total)
  1633. T5690 16821:623 JLINK_ReadMemEx(0x08004D8A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D8A) - Data: 2B A1 returns 0x02 (0000ms, 694219ms total)
  1634. T5690 16821:623 JLINK_ReadMemEx(0x08004D8A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D8A) - Data: 2B A1 returns 0x02 (0000ms, 694219ms total)
  1635. T5690 16821:623 JLINK_ReadMemEx(0x08004D8C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D8C) - Data: 38 46 02 F0 51 FA F0 61 B2 1D 2D A1 38 46 02 F0 ... returns 0x3C (0000ms, 694219ms total)
  1636. T5690 16821:623 JLINK_ReadMemEx(0x08004D8C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D8C) - Data: 38 46 returns 0x02 (0000ms, 694219ms total)
  1637. T5690 16821:623 JLINK_ReadMemEx(0x08004D8C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D8C) - Data: 38 46 02 F0 51 FA F0 61 B2 1D 2D A1 38 46 02 F0 ... returns 0x3C (0000ms, 694219ms total)
  1638. T5690 16821:623 JLINK_ReadMemEx(0x08004D8C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D8C) - Data: 38 46 returns 0x02 (0000ms, 694219ms total)
  1639. T5690 16821:623 JLINK_ReadMemEx(0x08004D8E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D8E) - Data: 02 F0 returns 0x02 (0000ms, 694219ms total)
  1640. T5690 16821:623 JLINK_ReadMemEx(0x08004D8E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D8E) - Data: 02 F0 returns 0x02 (0000ms, 694219ms total)
  1641. T5690 16821:623 JLINK_ReadMemEx(0x08004D90, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D90) - Data: 51 FA F0 61 B2 1D 2D A1 38 46 02 F0 61 FA A0 69 ... returns 0x3C (0000ms, 694219ms total)
  1642. T5690 16821:623 JLINK_ReadMemEx(0x08004D90, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D90) - Data: 51 FA returns 0x02 (0000ms, 694219ms total)
  1643. T5AF8 16824:464 JLINK_ReadMemEx(0x08004D8A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D8A) - Data: 2B A1 returns 0x02 (0000ms, 694219ms total)
  1644. T5AF8 16824:464 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004D8A) -- Simulated returns 0x00 (0001ms, 694220ms total)
  1645. T5AF8 16824:466 JLINK_ReadReg(R15 (PC)) returns 0x08004D8C (0000ms, 694220ms total)
  1646. T5AF8 16824:466 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 694220ms total)
  1647. T5AF8 16824:466 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004D8C) -- Simulated returns 0x00 (0000ms, 694220ms total)
  1648. T5AF8 16824:466 JLINK_ReadReg(R15 (PC)) returns 0x08004D8E (0000ms, 694220ms total)
  1649. T5AF8 16824:466 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 694220ms total)
  1650. T5AF8 16824:466 JLINK_SetBPEx(Addr = 0x08004D92, Type = 0xFFFFFFF2) returns 0x0000000F (0000ms, 694220ms total)
  1651. T5AF8 16824:466 JLINK_SetBPEx(Addr = 0x08004D60, Type = 0xFFFFFFF2) returns 0x00000010 (0000ms, 694220ms total)
  1652. T5AF8 16824:466 JLINK_SetBPEx(Addr = 0x08004AB6, Type = 0xFFFFFFF2) returns 0x00000011 (0000ms, 694220ms total)
  1653. T5AF8 16824:466 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0012ms, 694232ms total)
  1654. T5AF8 16824:580 JLINK_IsHalted() returns TRUE (0016ms, 694248ms total)
  1655. T5AF8 16824:596 JLINK_Halt() returns 0x00 (0000ms, 694232ms total)
  1656. T5AF8 16824:596 JLINK_IsHalted() returns TRUE (0000ms, 694232ms total)
  1657. T5AF8 16824:596 JLINK_IsHalted() returns TRUE (0000ms, 694232ms total)
  1658. T5AF8 16824:596 JLINK_IsHalted() returns TRUE (0000ms, 694232ms total)
  1659. T5AF8 16824:596 JLINK_ReadReg(R15 (PC)) returns 0x08004D92 (0000ms, 694232ms total)
  1660. T5AF8 16824:596 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 694232ms total)
  1661. T5AF8 16824:596 JLINK_ClrBPEx(BPHandle = 0x0000000F) returns 0x00 (0000ms, 694232ms total)
  1662. T5AF8 16824:596 JLINK_ClrBPEx(BPHandle = 0x00000010) returns 0x00 (0000ms, 694232ms total)
  1663. T5AF8 16824:596 JLINK_ClrBPEx(BPHandle = 0x00000011) returns 0x00 (0000ms, 694232ms total)
  1664. T5AF8 16824:596 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 02 00 00 00 returns 1 (0002ms, 694234ms total)
  1665. T5AF8 16824:598 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00 returns 1 (0002ms, 694236ms total)
  1666. T5AF8 16824:600 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 02 00 00 returns 1 (0001ms, 694237ms total)
  1667. T5AF8 16824:601 JLINK_ReadMemU32(0xE0001048, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001048) - Data: 00 00 00 00 returns 1 (0002ms, 694239ms total)
  1668. T5AF8 16824:603 JLINK_ReadMemU32(0xE0001058, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001058) - Data: 00 00 00 00 returns 1 (0001ms, 694240ms total)
  1669. T5AF8 16824:604 JLINK_ReadMemEx(0x08004D90, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x08004D80) -- Updating C cache (128 bytes @ 0x08004D80) -- Read from C cache (60 bytes @ 0x08004D90) - Data: 51 FA F0 61 B2 1D 2D A1 38 46 02 F0 61 FA A0 69 ... returns 0x3C (0006ms, 694246ms total)
  1670. T5AF8 16824:610 JLINK_ReadMemEx(0x08004D90, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D90) - Data: 51 FA returns 0x02 (0000ms, 694246ms total)
  1671. T5AF8 16824:610 JLINK_ReadMemEx(0x08004D92, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D92) - Data: F0 61 returns 0x02 (0000ms, 694246ms total)
  1672. T5AF8 16824:610 JLINK_ReadMemEx(0x08004D92, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D92) - Data: F0 61 returns 0x02 (0000ms, 694246ms total)
  1673. T5AF8 16824:610 JLINK_ReadMemEx(0x08004D94, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D94) - Data: B2 1D 2D A1 38 46 02 F0 61 FA A0 69 80 68 10 B9 ... returns 0x3C (0000ms, 694246ms total)
  1674. T5AF8 16824:610 JLINK_ReadMemEx(0x08004D94, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D94) - Data: B2 1D returns 0x02 (0000ms, 694246ms total)
  1675. T5AF8 16824:610 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004D92) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- CPU_WriteMem(4 bytes @ 0x20011D54) -- Simulated returns 0x00 (0004ms, 694250ms total)
  1676. T5AF8 16824:614 JLINK_ReadReg(R15 (PC)) returns 0x08004D94 (0000ms, 694250ms total)
  1677. T5AF8 16824:614 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 694250ms total)
  1678. T5AF8 16824:614 JLINK_ReadReg(R0) returns 0x02800002 (0000ms, 694250ms total)
  1679. T5AF8 16824:614 JLINK_ReadReg(R1) returns 0x00000000 (0000ms, 694250ms total)
  1680. T5AF8 16824:614 JLINK_ReadReg(R2) returns 0x0000005D (0000ms, 694250ms total)
  1681. T5AF8 16824:614 JLINK_ReadReg(R3) returns 0x6807C86E (0000ms, 694250ms total)
  1682. T5AF8 16824:614 JLINK_ReadReg(R4) returns 0x20011CF8 (0000ms, 694250ms total)
  1683. T5AF8 16824:614 JLINK_ReadReg(R5) returns 0x200105A0 (0000ms, 694250ms total)
  1684. T5AF8 16824:614 JLINK_ReadReg(R6) returns 0x20011D38 (0000ms, 694250ms total)
  1685. T5AF8 16824:614 JLINK_ReadReg(R7) returns 0x6807C80F (0000ms, 694250ms total)
  1686. T5AF8 16824:614 JLINK_ReadReg(R8) returns 0x6807C803 (0000ms, 694250ms total)
  1687. T5AF8 16824:614 JLINK_ReadReg(R9) returns 0x6807C800 (0000ms, 694250ms total)
  1688. T5AF8 16824:614 JLINK_ReadReg(R10) returns 0x10101010 (0000ms, 694250ms total)
  1689. T5AF8 16824:614 JLINK_ReadReg(R11) returns 0x11111111 (0000ms, 694250ms total)
  1690. T5AF8 16824:614 JLINK_ReadReg(R12) returns 0x00000000 (0000ms, 694250ms total)
  1691. T5AF8 16824:614 JLINK_ReadReg(R13 (SP)) returns 0x2000A444 (0000ms, 694250ms total)
  1692. T5AF8 16824:614 JLINK_ReadReg(R14) returns 0x080009D7 (0000ms, 694250ms total)
  1693. T5AF8 16824:614 JLINK_ReadReg(R15 (PC)) returns 0x08004D94 (0000ms, 694250ms total)
  1694. T5AF8 16824:614 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 694250ms total)
  1695. T5AF8 16824:614 JLINK_ReadReg(MSP) returns 0x20011CC8 (0000ms, 694250ms total)
  1696. T5AF8 16824:614 JLINK_ReadReg(PSP) returns 0x2000A444 (0000ms, 694250ms total)
  1697. T5AF8 16824:614 JLINK_ReadReg(CFBP) returns 0x02000000 (0000ms, 694250ms total)
  1698. T5690 16824:614 JLINK_ReadMemEx(0x2000A458, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x2000A440) -- Updating C cache (64 bytes @ 0x2000A440) -- Read from C cache (4 bytes @ 0x2000A458) - Data: CB 4A 00 08 returns 0x04 (0004ms, 694254ms total)
  1699. T5690 16824:618 JLINK_ReadMemEx(0x2000A444, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A444) - Data: F8 1C 01 20 returns 0x04 (0000ms, 694254ms total)
  1700. T5690 16824:618 JLINK_ReadMemEx(0x2000A448, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A448) - Data: A0 05 01 20 returns 0x04 (0000ms, 694254ms total)
  1701. T5690 16824:618 JLINK_ReadMemEx(0x2000A44C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A44C) - Data: 0F C8 07 68 returns 0x04 (0000ms, 694254ms total)
  1702. T5690 16824:618 JLINK_ReadMemEx(0x2000A450, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A450) - Data: 03 C8 07 68 returns 0x04 (0000ms, 694254ms total)
  1703. T5690 16824:618 JLINK_ReadMemEx(0x2000A454, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A454) - Data: 03 C8 07 68 returns 0x04 (0000ms, 694254ms total)
  1704. T5690 16824:618 JLINK_ReadMemEx(0x2000A458, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A458) - Data: CB 4A 00 08 returns 0x04 (0000ms, 694254ms total)
  1705. T5690 16824:618 JLINK_ReadMemEx(0x2000A470, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A470) - Data: C3 4C 00 08 returns 0x04 (0000ms, 694254ms total)
  1706. T5690 16824:618 JLINK_ReadMemEx(0x2000A45C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A45C) - Data: A0 05 01 20 returns 0x04 (0000ms, 694254ms total)
  1707. T5690 16824:618 JLINK_ReadMemEx(0x2000A460, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A460) - Data: 00 C8 07 68 returns 0x04 (0000ms, 694254ms total)
  1708. T5690 16824:618 JLINK_ReadMemEx(0x2000A464, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A464) - Data: 01 00 00 00 returns 0x04 (0000ms, 694254ms total)
  1709. T5690 16824:618 JLINK_ReadMemEx(0x2000A468, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A468) - Data: 80 05 01 20 returns 0x04 (0000ms, 694254ms total)
  1710. T5690 16824:618 JLINK_ReadMemEx(0x2000A46C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A46C) - Data: 03 C8 07 68 returns 0x04 (0000ms, 694254ms total)
  1711. T5690 16824:618 JLINK_ReadMemEx(0x2000A470, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A470) - Data: C3 4C 00 08 returns 0x04 (0000ms, 694254ms total)
  1712. T5690 16824:618 JLINK_ReadMemEx(0x2000A490, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x2000A480) -- Updating C cache (64 bytes @ 0x2000A480) -- Read from C cache (4 bytes @ 0x2000A490) - Data: C1 4B 00 08 returns 0x04 (0004ms, 694258ms total)
  1713. T5690 16824:622 JLINK_ReadMemEx(0x2000A474, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A474) - Data: 01 00 00 00 returns 0x04 (0000ms, 694258ms total)
  1714. T5690 16824:622 JLINK_ReadMemEx(0x2000A478, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A478) - Data: 00 C8 07 68 returns 0x04 (0000ms, 694258ms total)
  1715. T5690 16824:622 JLINK_ReadMemEx(0x2000A47C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A47C) - Data: 00 DC 07 68 returns 0x04 (0000ms, 694258ms total)
  1716. T5690 16824:622 JLINK_ReadMemEx(0x2000A480, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A480) - Data: 07 07 07 07 returns 0x04 (0000ms, 694258ms total)
  1717. T5690 16824:622 JLINK_ReadMemEx(0x2000A484, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A484) - Data: 08 08 08 08 returns 0x04 (0000ms, 694258ms total)
  1718. T5690 16824:622 JLINK_ReadMemEx(0x2000A488, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A488) - Data: 09 09 09 09 returns 0x04 (0000ms, 694258ms total)
  1719. T5690 16824:622 JLINK_ReadMemEx(0x2000A48C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A48C) - Data: 10 10 10 10 returns 0x04 (0000ms, 694258ms total)
  1720. T5690 16824:622 JLINK_ReadMemEx(0x2000A490, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A490) - Data: C1 4B 00 08 returns 0x04 (0000ms, 694258ms total)
  1721. T5690 16824:622 JLINK_ReadMemEx(0x2000A4B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B8) - Data: 49 54 00 08 returns 0x04 (0000ms, 694258ms total)
  1722. T5690 16824:622 JLINK_ReadMemEx(0x2000A4A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4A4) - Data: 00 00 00 00 returns 0x04 (0000ms, 694258ms total)
  1723. T5690 16824:622 JLINK_ReadMemEx(0x2000A4A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4A8) - Data: 00 DC 07 68 returns 0x04 (0000ms, 694258ms total)
  1724. T5690 16824:622 JLINK_ReadMemEx(0x2000A4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4AC) - Data: 06 06 06 06 returns 0x04 (0001ms, 694259ms total)
  1725. T5690 16824:623 JLINK_ReadMemEx(0x2000A4B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B0) - Data: 07 07 07 07 returns 0x04 (0000ms, 694259ms total)
  1726. T5690 16824:623 JLINK_ReadMemEx(0x2000A4B4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B4) - Data: 08 08 08 08 returns 0x04 (0000ms, 694259ms total)
  1727. T5690 16824:623 JLINK_ReadMemEx(0x2000A4B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B8) - Data: 49 54 00 08 returns 0x04 (0000ms, 694259ms total)
  1728. T5690 16824:623 JLINK_ReadMemEx(0x2000A4C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x2000A4C0) -- Updating C cache (64 bytes @ 0x2000A4C0) -- Read from C cache (4 bytes @ 0x2000A4C8) - Data: 45 36 00 08 returns 0x04 (0003ms, 694262ms total)
  1729. T5690 16824:626 JLINK_ReadMemEx(0x2000A4BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4BC) - Data: 04 04 04 04 returns 0x04 (0000ms, 694262ms total)
  1730. T5690 16824:626 JLINK_ReadMemEx(0x2000A4C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C0) - Data: 05 05 05 05 returns 0x04 (0000ms, 694262ms total)
  1731. T5690 16824:626 JLINK_ReadMemEx(0x2000A4C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C4) - Data: 06 06 06 06 returns 0x04 (0000ms, 694262ms total)
  1732. T5690 16824:626 JLINK_ReadMemEx(0x2000A4C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C8) - Data: 45 36 00 08 returns 0x04 (0000ms, 694262ms total)
  1733. T5690 16824:626 JLINK_ReadMemEx(0x2000A4F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4F0) - Data: 37 37 35 36 returns 0x04 (0000ms, 694262ms total)
  1734. T5690 16824:626 JLINK_ReadMemEx(0x2000A4CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4CC) - Data: 00 33 36 2E returns 0x04 (0000ms, 694262ms total)
  1735. T5690 16824:626 JLINK_ReadMemEx(0x2000A4D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4D0) - Data: 31 33 34 2E returns 0x04 (0000ms, 694262ms total)
  1736. T5690 16824:626 JLINK_ReadMemEx(0x2000A4D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4D4) - Data: 32 33 2E 31 returns 0x04 (0000ms, 694262ms total)
  1737. T5690 16824:626 JLINK_ReadMemEx(0x2000A4D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4D8) - Data: 31 00 00 00 returns 0x04 (0000ms, 694262ms total)
  1738. T5690 16824:626 JLINK_ReadMemEx(0x2000A4DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4DC) - Data: 00 00 00 00 returns 0x04 (0000ms, 694262ms total)
  1739. T5690 16824:626 JLINK_ReadMemEx(0x2000A4E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4E0) - Data: 00 00 5B 07 returns 0x04 (0000ms, 694262ms total)
  1740. T5690 16824:626 JLINK_ReadMemEx(0x2000A4E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4E4) - Data: 2F 64 65 76 returns 0x04 (0000ms, 694262ms total)
  1741. T5690 16824:627 JLINK_ReadMemEx(0x2000A4E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4E8) - Data: 69 63 65 2F returns 0x04 (0000ms, 694263ms total)
  1742. T5690 16824:627 JLINK_ReadMemEx(0x2000A4F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4F0) - Data: 37 37 35 36 returns 0x04 (0000ms, 694263ms total)
  1743. T5690 16824:640 JLINK_ReadMemEx(0x6807C80F, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x6807C80F) - Data: 22 73 65 6E 73 6F 72 4C 69 73 74 22 3A 5B 7B 22 ... returns 0x20 (0004ms, 694267ms total)
  1744. T5690 16824:646 JLINK_ReadMemEx(0x6807C80F, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x6807C80F) - Data: 22 73 65 6E 73 6F 72 4C 69 73 74 22 3A 5B 7B 22 ... returns 0x20 (0004ms, 694271ms total)
  1745. T5690 16824:650 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: AE 77 65 04 returns 1 (0000ms, 694271ms total)
  1746. T5690 16824:650 JLINK_ReadMemEx(0x6807C80F, 0x0E00 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(3584 bytes @ 0x6807C80F) - Data: 22 73 65 6E 73 6F 72 4C 69 73 74 22 3A 5B 7B 22 ... returns 0xE00 (0128ms, 694399ms total)
  1747. T5690 16824:785 JLINK_ReadMemEx(0x08004D8A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D8A) - Data: 2B A1 returns 0x02 (0000ms, 694399ms total)
  1748. T5690 16824:785 JLINK_ReadMemEx(0x08004D8C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D8C) - Data: 38 46 02 F0 51 FA F0 61 B2 1D 2D A1 38 46 02 F0 ... returns 0x3C (0000ms, 694399ms total)
  1749. T5690 16824:785 JLINK_ReadMemEx(0x08004D8C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D8C) - Data: 38 46 returns 0x02 (0000ms, 694399ms total)
  1750. T5690 16824:785 JLINK_ReadMemEx(0x08004D8C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D8C) - Data: 38 46 02 F0 51 FA F0 61 B2 1D 2D A1 38 46 02 F0 ... returns 0x3C (0000ms, 694399ms total)
  1751. T5690 16824:785 JLINK_ReadMemEx(0x08004D8C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D8C) - Data: 38 46 returns 0x02 (0000ms, 694399ms total)
  1752. T5690 16824:785 JLINK_ReadMemEx(0x08004D8E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D8E) - Data: 02 F0 returns 0x02 (0000ms, 694399ms total)
  1753. T5690 16824:785 JLINK_ReadMemEx(0x08004D8E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D8E) - Data: 02 F0 returns 0x02 (0000ms, 694399ms total)
  1754. T5690 16824:785 JLINK_ReadMemEx(0x08004D90, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D90) - Data: 51 FA F0 61 B2 1D 2D A1 38 46 02 F0 61 FA A0 69 ... returns 0x3C (0000ms, 694399ms total)
  1755. T5690 16824:785 JLINK_ReadMemEx(0x08004D90, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D90) - Data: 51 FA returns 0x02 (0000ms, 694399ms total)
  1756. T5690 16824:785 JLINK_ReadMemEx(0x08004D92, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D92) - Data: F0 61 returns 0x02 (0000ms, 694399ms total)
  1757. T5690 16824:785 JLINK_ReadMemEx(0x08004D94, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D94) - Data: B2 1D 2D A1 38 46 02 F0 61 FA A0 69 80 68 10 B9 ... returns 0x3C (0000ms, 694399ms total)
  1758. T5690 16824:785 JLINK_ReadMemEx(0x08004D94, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D94) - Data: B2 1D returns 0x02 (0000ms, 694399ms total)
  1759. T5690 16824:785 JLINK_ReadMemEx(0x08004D94, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D94) - Data: B2 1D 2D A1 38 46 02 F0 61 FA A0 69 80 68 10 B9 ... returns 0x3C (0000ms, 694399ms total)
  1760. T5690 16824:785 JLINK_ReadMemEx(0x08004D94, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D94) - Data: B2 1D returns 0x02 (0000ms, 694399ms total)
  1761. T5690 16824:785 JLINK_ReadMemEx(0x08004D96, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D96) - Data: 2D A1 returns 0x02 (0000ms, 694399ms total)
  1762. T5690 16824:785 JLINK_ReadMemEx(0x08004D96, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D96) - Data: 2D A1 returns 0x02 (0000ms, 694399ms total)
  1763. T5690 16824:785 JLINK_ReadMemEx(0x08004D98, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D98) - Data: 38 46 02 F0 61 FA A0 69 80 68 10 B9 A0 69 86 60 ... returns 0x3C (0000ms, 694399ms total)
  1764. T5690 16824:785 JLINK_ReadMemEx(0x08004D98, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D98) - Data: 38 46 returns 0x02 (0000ms, 694399ms total)
  1765. T5690 16824:785 JLINK_ReadMemEx(0x08004D98, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D98) - Data: 38 46 02 F0 61 FA A0 69 80 68 10 B9 A0 69 86 60 ... returns 0x3C (0000ms, 694399ms total)
  1766. T5690 16824:785 JLINK_ReadMemEx(0x08004D98, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D98) - Data: 38 46 returns 0x02 (0000ms, 694399ms total)
  1767. T5690 16824:785 JLINK_ReadMemEx(0x08004D9A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D9A) - Data: 02 F0 returns 0x02 (0000ms, 694399ms total)
  1768. T5690 16824:785 JLINK_ReadMemEx(0x08004D9A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D9A) - Data: 02 F0 returns 0x02 (0000ms, 694399ms total)
  1769. T5690 16824:785 JLINK_ReadMemEx(0x08004D9C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D9C) - Data: 61 FA A0 69 80 68 10 B9 A0 69 86 60 09 E0 A0 69 ... returns 0x3C (0000ms, 694399ms total)
  1770. T5690 16824:785 JLINK_ReadMemEx(0x08004D9C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D9C) - Data: 61 FA returns 0x02 (0000ms, 694399ms total)
  1771. T5690 16824:785 JLINK_ReadMemEx(0x08004D9E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D9E) - Data: A0 69 returns 0x02 (0000ms, 694399ms total)
  1772. T5690 16824:785 JLINK_ReadMemEx(0x08004DA0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004DA0) - Data: 80 68 10 B9 A0 69 86 60 09 E0 A0 69 00 E0 C0 68 ... returns 0x3C (0000ms, 694399ms total)
  1773. T5690 16824:785 JLINK_ReadMemEx(0x08004DA0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004DA0) - Data: 80 68 returns 0x02 (0000ms, 694399ms total)
  1774. T5690 16826:838 JLINK_ReadMemEx(0x20011D54, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20011D40) -- Updating C cache (64 bytes @ 0x20011D40) -- Read from C cache (4 bytes @ 0x20011D54) - Data: 02 00 80 02 returns 0x04 (0004ms, 694403ms total)
  1775. T5690 16827:895 JLINK_ReadMemEx(0x08004D8A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D8A) - Data: 2B A1 returns 0x02 (0000ms, 694403ms total)
  1776. T5690 16827:895 JLINK_ReadMemEx(0x08004D8C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D8C) - Data: 38 46 02 F0 51 FA F0 61 B2 1D 2D A1 38 46 02 F0 ... returns 0x3C (0000ms, 694403ms total)
  1777. T5690 16827:895 JLINK_ReadMemEx(0x08004D8C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D8C) - Data: 38 46 returns 0x02 (0000ms, 694403ms total)
  1778. T5690 16827:895 JLINK_ReadMemEx(0x08004D8C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D8C) - Data: 38 46 02 F0 51 FA F0 61 B2 1D 2D A1 38 46 02 F0 ... returns 0x3C (0000ms, 694403ms total)
  1779. T5690 16827:895 JLINK_ReadMemEx(0x08004D8C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D8C) - Data: 38 46 returns 0x02 (0000ms, 694403ms total)
  1780. T5690 16827:895 JLINK_ReadMemEx(0x08004D8E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D8E) - Data: 02 F0 returns 0x02 (0000ms, 694403ms total)
  1781. T5690 16827:895 JLINK_ReadMemEx(0x08004D8E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D8E) - Data: 02 F0 returns 0x02 (0000ms, 694403ms total)
  1782. T5690 16827:895 JLINK_ReadMemEx(0x08004D90, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D90) - Data: 51 FA F0 61 B2 1D 2D A1 38 46 02 F0 61 FA A0 69 ... returns 0x3C (0000ms, 694403ms total)
  1783. T5690 16827:895 JLINK_ReadMemEx(0x08004D90, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D90) - Data: 51 FA returns 0x02 (0000ms, 694403ms total)
  1784. T5690 16827:895 JLINK_ReadMemEx(0x08004D92, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D92) - Data: F0 61 returns 0x02 (0000ms, 694403ms total)
  1785. T5690 16827:895 JLINK_ReadMemEx(0x08004D94, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D94) - Data: B2 1D 2D A1 38 46 02 F0 61 FA A0 69 80 68 10 B9 ... returns 0x3C (0000ms, 694403ms total)
  1786. T5690 16827:895 JLINK_ReadMemEx(0x08004D94, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D94) - Data: B2 1D returns 0x02 (0000ms, 694403ms total)
  1787. T5690 16827:895 JLINK_ReadMemEx(0x08004D94, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D94) - Data: B2 1D 2D A1 38 46 02 F0 61 FA A0 69 80 68 10 B9 ... returns 0x3C (0000ms, 694403ms total)
  1788. T5690 16827:895 JLINK_ReadMemEx(0x08004D94, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D94) - Data: B2 1D returns 0x02 (0000ms, 694403ms total)
  1789. T5690 16827:895 JLINK_ReadMemEx(0x08004D96, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D96) - Data: 2D A1 returns 0x02 (0000ms, 694403ms total)
  1790. T5690 16827:895 JLINK_ReadMemEx(0x08004D96, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D96) - Data: 2D A1 returns 0x02 (0000ms, 694403ms total)
  1791. T5690 16827:895 JLINK_ReadMemEx(0x08004D98, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D98) - Data: 38 46 02 F0 61 FA A0 69 80 68 10 B9 A0 69 86 60 ... returns 0x3C (0000ms, 694403ms total)
  1792. T5690 16827:895 JLINK_ReadMemEx(0x08004D98, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D98) - Data: 38 46 returns 0x02 (0000ms, 694403ms total)
  1793. T5690 16827:895 JLINK_ReadMemEx(0x08004D98, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D98) - Data: 38 46 02 F0 61 FA A0 69 80 68 10 B9 A0 69 86 60 ... returns 0x3C (0000ms, 694403ms total)
  1794. T5690 16827:895 JLINK_ReadMemEx(0x08004D98, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D98) - Data: 38 46 returns 0x02 (0000ms, 694403ms total)
  1795. T5690 16827:895 JLINK_ReadMemEx(0x08004D9A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D9A) - Data: 02 F0 returns 0x02 (0000ms, 694403ms total)
  1796. T5690 16827:895 JLINK_ReadMemEx(0x08004D9A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D9A) - Data: 02 F0 returns 0x02 (0000ms, 694403ms total)
  1797. T5690 16827:895 JLINK_ReadMemEx(0x08004D9C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D9C) - Data: 61 FA A0 69 80 68 10 B9 A0 69 86 60 09 E0 A0 69 ... returns 0x3C (0000ms, 694403ms total)
  1798. T5690 16827:895 JLINK_ReadMemEx(0x08004D9C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D9C) - Data: 61 FA returns 0x02 (0000ms, 694403ms total)
  1799. T5690 16828:199 JLINK_ReadMemEx(0x20011D54, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20011D54) - Data: 02 00 80 02 returns 0x04 (0000ms, 694403ms total)
  1800. T5690 16832:026 JLINK_ReadMemEx(0x20011D54, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20011D54) - Data: 02 00 80 02 returns 0x04 (0000ms, 694403ms total)
  1801. T5690 16832:607 JLINK_ReadMemEx(0x20011D54, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20011D54) - Data: 02 00 80 02 returns 0x04 (0000ms, 694403ms total)
  1802. T5AF8 16835:721 JLINK_ReadMemEx(0x08004D94, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D94) - Data: B2 1D 2D A1 38 46 02 F0 61 FA A0 69 80 68 10 B9 ... returns 0x3C (0000ms, 694403ms total)
  1803. T5AF8 16835:721 JLINK_ReadMemEx(0x08004D94, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D94) - Data: B2 1D returns 0x02 (0000ms, 694403ms total)
  1804. T5AF8 16835:721 JLINK_ReadMemEx(0x08004D96, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D96) - Data: 2D A1 returns 0x02 (0000ms, 694403ms total)
  1805. T5AF8 16835:721 JLINK_ReadMemEx(0x08004D94, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D94) - Data: B2 1D returns 0x02 (0000ms, 694403ms total)
  1806. T5AF8 16835:721 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004D94) -- Simulated returns 0x00 (0002ms, 694405ms total)
  1807. T5AF8 16835:723 JLINK_ReadReg(R15 (PC)) returns 0x08004D96 (0000ms, 694405ms total)
  1808. T5AF8 16835:723 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 694405ms total)
  1809. T5AF8 16835:723 JLINK_ReadMemEx(0x08004D96, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D96) - Data: 2D A1 returns 0x02 (0000ms, 694405ms total)
  1810. T5AF8 16835:723 JLINK_ReadMemEx(0x08004D98, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D98) - Data: 38 46 02 F0 61 FA A0 69 80 68 10 B9 A0 69 86 60 ... returns 0x3C (0000ms, 694405ms total)
  1811. T5AF8 16835:723 JLINK_ReadMemEx(0x08004D98, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D98) - Data: 38 46 returns 0x02 (0000ms, 694405ms total)
  1812. T5AF8 16835:723 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004D96) -- Simulated returns 0x00 (0000ms, 694405ms total)
  1813. T5AF8 16835:723 JLINK_ReadReg(R15 (PC)) returns 0x08004D98 (0000ms, 694405ms total)
  1814. T5AF8 16835:723 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 694405ms total)
  1815. T5AF8 16835:723 JLINK_ReadMemEx(0x08004D98, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D98) - Data: 38 46 02 F0 61 FA A0 69 80 68 10 B9 A0 69 86 60 ... returns 0x3C (0000ms, 694405ms total)
  1816. T5AF8 16835:723 JLINK_ReadMemEx(0x08004D98, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D98) - Data: 38 46 returns 0x02 (0000ms, 694405ms total)
  1817. T5AF8 16835:723 JLINK_ReadMemEx(0x08004D9A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D9A) - Data: 02 F0 returns 0x02 (0000ms, 694405ms total)
  1818. T5AF8 16835:723 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004D98) -- Simulated returns 0x00 (0000ms, 694405ms total)
  1819. T5AF8 16835:723 JLINK_ReadReg(R15 (PC)) returns 0x08004D9A (0000ms, 694405ms total)
  1820. T5AF8 16835:723 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 694405ms total)
  1821. T5AF8 16835:723 JLINK_ReadMemEx(0x08004D9A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D9A) - Data: 02 F0 returns 0x02 (0000ms, 694405ms total)
  1822. T5AF8 16835:723 JLINK_ReadMemEx(0x08004D9C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D9C) - Data: 61 FA A0 69 80 68 10 B9 A0 69 86 60 09 E0 A0 69 ... returns 0x3C (0000ms, 694405ms total)
  1823. T5AF8 16835:723 JLINK_ReadMemEx(0x08004D9C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D9C) - Data: 61 FA returns 0x02 (0000ms, 694405ms total)
  1824. T5AF8 16835:723 JLINK_SetBPEx(Addr = 0x08004D9E, Type = 0xFFFFFFF2) returns 0x00000012 (0000ms, 694405ms total)
  1825. T5AF8 16835:723 JLINK_SetBPEx(Addr = 0x08004D60, Type = 0xFFFFFFF2) returns 0x00000013 (0000ms, 694405ms total)
  1826. T5AF8 16835:723 JLINK_SetBPEx(Addr = 0x08004AB6, Type = 0xFFFFFFF2) returns 0x00000014 (0000ms, 694405ms total)
  1827. T5AF8 16835:723 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0014ms, 694419ms total)
  1828. T5AF8 16835:838 JLINK_IsHalted() returns TRUE (0016ms, 694435ms total)
  1829. T5AF8 16835:854 JLINK_Halt() returns 0x00 (0000ms, 694419ms total)
  1830. T5AF8 16835:854 JLINK_IsHalted() returns TRUE (0000ms, 694419ms total)
  1831. T5AF8 16835:854 JLINK_IsHalted() returns TRUE (0000ms, 694419ms total)
  1832. T5AF8 16835:854 JLINK_IsHalted() returns TRUE (0000ms, 694419ms total)
  1833. T5AF8 16835:854 JLINK_ReadReg(R15 (PC)) returns 0x08004D9E (0000ms, 694419ms total)
  1834. T5AF8 16835:854 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 694419ms total)
  1835. T5AF8 16835:854 JLINK_ClrBPEx(BPHandle = 0x00000012) returns 0x00 (0000ms, 694419ms total)
  1836. T5AF8 16835:854 JLINK_ClrBPEx(BPHandle = 0x00000013) returns 0x00 (0000ms, 694419ms total)
  1837. T5AF8 16835:854 JLINK_ClrBPEx(BPHandle = 0x00000014) returns 0x00 (0000ms, 694419ms total)
  1838. T5AF8 16835:854 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 02 00 00 00 returns 1 (0002ms, 694421ms total)
  1839. T5AF8 16835:856 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00 returns 1 (0002ms, 694423ms total)
  1840. T5AF8 16835:858 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 02 00 00 returns 1 (0001ms, 694424ms total)
  1841. T5AF8 16835:859 JLINK_ReadMemU32(0xE0001048, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001048) - Data: 00 00 00 00 returns 1 (0002ms, 694426ms total)
  1842. T5AF8 16835:861 JLINK_ReadMemU32(0xE0001058, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001058) - Data: 00 00 00 00 returns 1 (0001ms, 694427ms total)
  1843. T5AF8 16835:862 JLINK_ReadReg(R0) returns 0x00000001 (0000ms, 694427ms total)
  1844. T5AF8 16835:862 JLINK_ReadReg(R1) returns 0x6807C837 (0000ms, 694427ms total)
  1845. T5AF8 16835:862 JLINK_ReadReg(R2) returns 0xFFFFFFF4 (0000ms, 694427ms total)
  1846. T5AF8 16835:862 JLINK_ReadReg(R3) returns 0x6807C82C (0000ms, 694427ms total)
  1847. T5AF8 16835:862 JLINK_ReadReg(R4) returns 0x20011CF8 (0000ms, 694427ms total)
  1848. T5AF8 16835:862 JLINK_ReadReg(R5) returns 0x200105A0 (0000ms, 694427ms total)
  1849. T5AF8 16835:862 JLINK_ReadReg(R6) returns 0x20011D38 (0000ms, 694427ms total)
  1850. T5AF8 16835:862 JLINK_ReadReg(R7) returns 0x6807C80F (0000ms, 694427ms total)
  1851. T5AF8 16835:862 JLINK_ReadReg(R8) returns 0x6807C803 (0000ms, 694427ms total)
  1852. T5AF8 16835:862 JLINK_ReadReg(R9) returns 0x6807C800 (0000ms, 694427ms total)
  1853. T5AF8 16835:862 JLINK_ReadReg(R10) returns 0x10101010 (0000ms, 694427ms total)
  1854. T5AF8 16835:862 JLINK_ReadReg(R11) returns 0x11111111 (0000ms, 694427ms total)
  1855. T5AF8 16835:862 JLINK_ReadReg(R12) returns 0x00000000 (0000ms, 694427ms total)
  1856. T5AF8 16835:862 JLINK_ReadReg(R13 (SP)) returns 0x2000A444 (0000ms, 694427ms total)
  1857. T5AF8 16835:862 JLINK_ReadReg(R14) returns 0x08000BAB (0000ms, 694427ms total)
  1858. T5AF8 16835:862 JLINK_ReadReg(R15 (PC)) returns 0x08004D9E (0000ms, 694427ms total)
  1859. T5AF8 16835:862 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 694427ms total)
  1860. T5AF8 16835:862 JLINK_ReadReg(MSP) returns 0x20011CC8 (0000ms, 694427ms total)
  1861. T5AF8 16835:862 JLINK_ReadReg(PSP) returns 0x2000A444 (0000ms, 694427ms total)
  1862. T5AF8 16835:862 JLINK_ReadReg(CFBP) returns 0x02000000 (0000ms, 694427ms total)
  1863. T5690 16835:862 JLINK_ReadMemEx(0x2000A458, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x2000A440) -- Updating C cache (64 bytes @ 0x2000A440) -- Read from C cache (4 bytes @ 0x2000A458) - Data: CB 4A 00 08 returns 0x04 (0004ms, 694431ms total)
  1864. T5690 16835:866 JLINK_ReadMemEx(0x2000A444, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A444) - Data: F8 1C 01 20 returns 0x04 (0000ms, 694431ms total)
  1865. T5690 16835:866 JLINK_ReadMemEx(0x2000A448, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A448) - Data: A0 05 01 20 returns 0x04 (0000ms, 694431ms total)
  1866. T5690 16835:866 JLINK_ReadMemEx(0x2000A44C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A44C) - Data: 0F C8 07 68 returns 0x04 (0000ms, 694431ms total)
  1867. T5690 16835:866 JLINK_ReadMemEx(0x2000A450, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A450) - Data: 03 C8 07 68 returns 0x04 (0000ms, 694431ms total)
  1868. T5690 16835:866 JLINK_ReadMemEx(0x2000A454, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A454) - Data: 03 C8 07 68 returns 0x04 (0000ms, 694431ms total)
  1869. T5690 16835:866 JLINK_ReadMemEx(0x2000A458, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A458) - Data: CB 4A 00 08 returns 0x04 (0000ms, 694431ms total)
  1870. T5690 16835:866 JLINK_ReadMemEx(0x2000A470, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A470) - Data: C3 4C 00 08 returns 0x04 (0000ms, 694431ms total)
  1871. T5690 16835:866 JLINK_ReadMemEx(0x2000A45C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A45C) - Data: A0 05 01 20 returns 0x04 (0000ms, 694431ms total)
  1872. T5690 16835:866 JLINK_ReadMemEx(0x2000A460, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A460) - Data: 00 C8 07 68 returns 0x04 (0000ms, 694431ms total)
  1873. T5690 16835:866 JLINK_ReadMemEx(0x2000A464, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A464) - Data: 01 00 00 00 returns 0x04 (0000ms, 694431ms total)
  1874. T5690 16835:866 JLINK_ReadMemEx(0x2000A468, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A468) - Data: 80 05 01 20 returns 0x04 (0000ms, 694431ms total)
  1875. T5690 16835:866 JLINK_ReadMemEx(0x2000A46C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A46C) - Data: 03 C8 07 68 returns 0x04 (0000ms, 694431ms total)
  1876. T5690 16835:866 JLINK_ReadMemEx(0x2000A470, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A470) - Data: C3 4C 00 08 returns 0x04 (0000ms, 694431ms total)
  1877. T5690 16835:866 JLINK_ReadMemEx(0x2000A490, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x2000A480) -- Updating C cache (64 bytes @ 0x2000A480) -- Read from C cache (4 bytes @ 0x2000A490) - Data: C1 4B 00 08 returns 0x04 (0004ms, 694435ms total)
  1878. T5690 16835:870 JLINK_ReadMemEx(0x2000A474, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A474) - Data: 01 00 00 00 returns 0x04 (0000ms, 694435ms total)
  1879. T5690 16835:870 JLINK_ReadMemEx(0x2000A478, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A478) - Data: 00 C8 07 68 returns 0x04 (0000ms, 694435ms total)
  1880. T5690 16835:870 JLINK_ReadMemEx(0x2000A47C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A47C) - Data: 00 DC 07 68 returns 0x04 (0000ms, 694435ms total)
  1881. T5690 16835:870 JLINK_ReadMemEx(0x2000A480, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A480) - Data: 07 07 07 07 returns 0x04 (0000ms, 694435ms total)
  1882. T5690 16835:870 JLINK_ReadMemEx(0x2000A484, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A484) - Data: 08 08 08 08 returns 0x04 (0000ms, 694435ms total)
  1883. T5690 16835:870 JLINK_ReadMemEx(0x2000A488, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A488) - Data: 09 09 09 09 returns 0x04 (0000ms, 694435ms total)
  1884. T5690 16835:870 JLINK_ReadMemEx(0x2000A48C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A48C) - Data: 10 10 10 10 returns 0x04 (0000ms, 694435ms total)
  1885. T5690 16835:870 JLINK_ReadMemEx(0x2000A490, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A490) - Data: C1 4B 00 08 returns 0x04 (0000ms, 694435ms total)
  1886. T5690 16835:870 JLINK_ReadMemEx(0x2000A4B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B8) - Data: 49 54 00 08 returns 0x04 (0000ms, 694435ms total)
  1887. T5690 16835:870 JLINK_ReadMemEx(0x2000A4A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4A4) - Data: 00 00 00 00 returns 0x04 (0000ms, 694435ms total)
  1888. T5690 16835:870 JLINK_ReadMemEx(0x2000A4A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4A8) - Data: 00 DC 07 68 returns 0x04 (0000ms, 694435ms total)
  1889. T5690 16835:870 JLINK_ReadMemEx(0x2000A4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4AC) - Data: 06 06 06 06 returns 0x04 (0000ms, 694435ms total)
  1890. T5690 16835:870 JLINK_ReadMemEx(0x2000A4B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B0) - Data: 07 07 07 07 returns 0x04 (0000ms, 694435ms total)
  1891. T5690 16835:870 JLINK_ReadMemEx(0x2000A4B4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B4) - Data: 08 08 08 08 returns 0x04 (0000ms, 694435ms total)
  1892. T5690 16835:870 JLINK_ReadMemEx(0x2000A4B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B8) - Data: 49 54 00 08 returns 0x04 (0000ms, 694435ms total)
  1893. T5690 16835:870 JLINK_ReadMemEx(0x2000A4C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x2000A4C0) -- Updating C cache (64 bytes @ 0x2000A4C0) -- Read from C cache (4 bytes @ 0x2000A4C8) - Data: 45 36 00 08 returns 0x04 (0004ms, 694439ms total)
  1894. T5690 16835:874 JLINK_ReadMemEx(0x2000A4BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4BC) - Data: 04 04 04 04 returns 0x04 (0000ms, 694439ms total)
  1895. T5690 16835:874 JLINK_ReadMemEx(0x2000A4C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C0) - Data: 05 05 05 05 returns 0x04 (0000ms, 694439ms total)
  1896. T5690 16835:874 JLINK_ReadMemEx(0x2000A4C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C4) - Data: 06 06 06 06 returns 0x04 (0000ms, 694439ms total)
  1897. T5690 16835:874 JLINK_ReadMemEx(0x2000A4C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C8) - Data: 45 36 00 08 returns 0x04 (0000ms, 694439ms total)
  1898. T5690 16835:874 JLINK_ReadMemEx(0x2000A520, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x2000A500) -- Updating C cache (64 bytes @ 0x2000A500) -- Read from C cache (4 bytes @ 0x2000A520) - Data: 37 38 37 37 returns 0x04 (0004ms, 694443ms total)
  1899. T5690 16835:878 JLINK_ReadMemEx(0x2000A500, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A500) - Data: 00 00 00 00 returns 0x04 (0000ms, 694443ms total)
  1900. T5690 16835:878 JLINK_ReadMemEx(0x2000A504, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A504) - Data: 00 00 00 00 returns 0x04 (0000ms, 694443ms total)
  1901. T5690 16835:878 JLINK_ReadMemEx(0x2000A508, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A508) - Data: 00 00 00 00 returns 0x04 (0000ms, 694443ms total)
  1902. T5690 16835:878 JLINK_ReadMemEx(0x2000A50C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A50C) - Data: 00 00 00 00 returns 0x04 (0000ms, 694443ms total)
  1903. T5690 16835:878 JLINK_ReadMemEx(0x2000A510, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A510) - Data: 00 00 00 00 returns 0x04 (0000ms, 694443ms total)
  1904. T5690 16835:878 JLINK_ReadMemEx(0x2000A514, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A514) - Data: 00 00 2F 64 returns 0x04 (0000ms, 694443ms total)
  1905. T5690 16835:878 JLINK_ReadMemEx(0x2000A518, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A518) - Data: 65 76 69 63 returns 0x04 (0000ms, 694443ms total)
  1906. T5690 16835:878 JLINK_ReadMemEx(0x2000A51C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A51C) - Data: 65 2F 32 39 returns 0x04 (0000ms, 694443ms total)
  1907. T5690 16835:878 JLINK_ReadMemEx(0x2000A520, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A520) - Data: 37 38 37 37 returns 0x04 (0000ms, 694443ms total)
  1908. T5690 16835:885 JLINK_ReadMemEx(0x6807C80F, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x6807C80F) - Data: 22 73 65 6E 73 6F 72 4C 69 73 74 22 3A 5B 7B 22 ... returns 0x20 (0004ms, 694447ms total)
  1909. T5690 16835:892 JLINK_ReadMemEx(0x6807C80F, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x6807C80F) - Data: 22 73 65 6E 73 6F 72 4C 69 73 74 22 3A 5B 7B 22 ... returns 0x20 (0003ms, 694450ms total)
  1910. T5690 16835:895 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001004) - Data: A8 7F 65 04 returns 1 (0001ms, 694451ms total)
  1911. T5690 16835:897 JLINK_ReadMemEx(0x6807C80F, 0x0E00 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(3584 bytes @ 0x6807C80F) - Data: 22 73 65 6E 73 6F 72 4C 69 73 74 22 3A 5B 7B 22 ... returns 0xE00 (0128ms, 694579ms total)
  1912. T5690 16836:031 JLINK_ReadMemEx(0x08004D94, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x08004D80) -- Updating C cache (128 bytes @ 0x08004D80) -- Read from C cache (60 bytes @ 0x08004D94) - Data: B2 1D 2D A1 38 46 02 F0 61 FA A0 69 80 68 10 B9 ... returns 0x3C (0006ms, 694585ms total)
  1913. T5690 16836:037 JLINK_ReadMemEx(0x08004D94, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D94) - Data: B2 1D returns 0x02 (0000ms, 694585ms total)
  1914. T5690 16836:037 JLINK_ReadMemEx(0x08004D96, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D96) - Data: 2D A1 returns 0x02 (0000ms, 694585ms total)
  1915. T5690 16836:037 JLINK_ReadMemEx(0x08004D96, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D96) - Data: 2D A1 returns 0x02 (0000ms, 694585ms total)
  1916. T5690 16836:037 JLINK_ReadMemEx(0x08004D98, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D98) - Data: 38 46 02 F0 61 FA A0 69 80 68 10 B9 A0 69 86 60 ... returns 0x3C (0000ms, 694585ms total)
  1917. T5690 16836:037 JLINK_ReadMemEx(0x08004D98, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D98) - Data: 38 46 returns 0x02 (0000ms, 694585ms total)
  1918. T5690 16836:037 JLINK_ReadMemEx(0x08004D98, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D98) - Data: 38 46 02 F0 61 FA A0 69 80 68 10 B9 A0 69 86 60 ... returns 0x3C (0000ms, 694585ms total)
  1919. T5690 16836:037 JLINK_ReadMemEx(0x08004D98, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D98) - Data: 38 46 returns 0x02 (0000ms, 694585ms total)
  1920. T5690 16836:037 JLINK_ReadMemEx(0x08004D9A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D9A) - Data: 02 F0 returns 0x02 (0000ms, 694585ms total)
  1921. T5690 16836:037 JLINK_ReadMemEx(0x08004D9A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D9A) - Data: 02 F0 returns 0x02 (0000ms, 694585ms total)
  1922. T5690 16836:037 JLINK_ReadMemEx(0x08004D9C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D9C) - Data: 61 FA A0 69 80 68 10 B9 A0 69 86 60 09 E0 A0 69 ... returns 0x3C (0000ms, 694585ms total)
  1923. T5690 16836:037 JLINK_ReadMemEx(0x08004D9C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D9C) - Data: 61 FA returns 0x02 (0000ms, 694585ms total)
  1924. T5690 16836:037 JLINK_ReadMemEx(0x08004D9E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D9E) - Data: A0 69 returns 0x02 (0000ms, 694585ms total)
  1925. T5690 16836:037 JLINK_ReadMemEx(0x08004DA0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004DA0) - Data: 80 68 10 B9 A0 69 86 60 09 E0 A0 69 00 E0 C0 68 ... returns 0x3C (0000ms, 694585ms total)
  1926. T5690 16836:037 JLINK_ReadMemEx(0x08004DA0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004DA0) - Data: 80 68 returns 0x02 (0000ms, 694585ms total)
  1927. T5690 16836:037 JLINK_ReadMemEx(0x08004DA0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004DA0) - Data: 80 68 10 B9 A0 69 86 60 09 E0 A0 69 00 E0 C0 68 ... returns 0x3C (0000ms, 694585ms total)
  1928. T5690 16836:037 JLINK_ReadMemEx(0x08004DA0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004DA0) - Data: 80 68 returns 0x02 (0000ms, 694585ms total)
  1929. T5690 16836:037 JLINK_ReadMemEx(0x08004DA2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004DA2) - Data: 10 B9 returns 0x02 (0000ms, 694585ms total)
  1930. T5690 16836:037 JLINK_ReadMemEx(0x08004DA2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004DA2) - Data: 10 B9 returns 0x02 (0000ms, 694585ms total)
  1931. T5690 16836:037 JLINK_ReadMemEx(0x08004DA4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004DA4) - Data: A0 69 86 60 09 E0 A0 69 00 E0 C0 68 C1 68 09 68 ... returns 0x3C (0000ms, 694585ms total)
  1932. T5690 16836:037 JLINK_ReadMemEx(0x08004DA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004DA4) - Data: A0 69 returns 0x02 (0000ms, 694585ms total)
  1933. T5690 16837:371 JLINK_ReadMemEx(0x20011D54, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20011D40) -- Updating C cache (64 bytes @ 0x20011D40) -- Read from C cache (4 bytes @ 0x20011D54) - Data: 02 00 80 02 returns 0x04 (0004ms, 694589ms total)
  1934. T5690 16838:142 JLINK_ReadMemEx(0x08004D8A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D8A) - Data: 2B A1 returns 0x02 (0000ms, 694589ms total)
  1935. T5690 16838:142 JLINK_ReadMemEx(0x08004D8C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D8C) - Data: 38 46 02 F0 51 FA F0 61 B2 1D 2D A1 38 46 02 F0 ... returns 0x3C (0000ms, 694589ms total)
  1936. T5690 16838:142 JLINK_ReadMemEx(0x08004D8C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D8C) - Data: 38 46 returns 0x02 (0000ms, 694589ms total)
  1937. T5690 16838:142 JLINK_ReadMemEx(0x08004D8C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D8C) - Data: 38 46 02 F0 51 FA F0 61 B2 1D 2D A1 38 46 02 F0 ... returns 0x3C (0000ms, 694589ms total)
  1938. T5690 16838:142 JLINK_ReadMemEx(0x08004D8C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D8C) - Data: 38 46 returns 0x02 (0000ms, 694589ms total)
  1939. T5690 16838:142 JLINK_ReadMemEx(0x08004D8E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D8E) - Data: 02 F0 returns 0x02 (0000ms, 694589ms total)
  1940. T5690 16838:142 JLINK_ReadMemEx(0x08004D8E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D8E) - Data: 02 F0 returns 0x02 (0000ms, 694589ms total)
  1941. T5690 16838:142 JLINK_ReadMemEx(0x08004D90, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D90) - Data: 51 FA F0 61 B2 1D 2D A1 38 46 02 F0 61 FA A0 69 ... returns 0x3C (0000ms, 694589ms total)
  1942. T5690 16838:142 JLINK_ReadMemEx(0x08004D90, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D90) - Data: 51 FA returns 0x02 (0000ms, 694589ms total)
  1943. T5690 16838:142 JLINK_ReadMemEx(0x08004D92, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D92) - Data: F0 61 returns 0x02 (0000ms, 694589ms total)
  1944. T5690 16838:142 JLINK_ReadMemEx(0x08004D94, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D94) - Data: B2 1D 2D A1 38 46 02 F0 61 FA A0 69 80 68 10 B9 ... returns 0x3C (0000ms, 694589ms total)
  1945. T5690 16838:142 JLINK_ReadMemEx(0x08004D94, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D94) - Data: B2 1D returns 0x02 (0000ms, 694589ms total)
  1946. T5690 16838:142 JLINK_ReadMemEx(0x08004D94, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D94) - Data: B2 1D 2D A1 38 46 02 F0 61 FA A0 69 80 68 10 B9 ... returns 0x3C (0000ms, 694589ms total)
  1947. T5690 16838:142 JLINK_ReadMemEx(0x08004D94, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D94) - Data: B2 1D returns 0x02 (0000ms, 694589ms total)
  1948. T5690 16838:142 JLINK_ReadMemEx(0x08004D96, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D96) - Data: 2D A1 returns 0x02 (0000ms, 694589ms total)
  1949. T5690 16838:142 JLINK_ReadMemEx(0x08004D96, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D96) - Data: 2D A1 returns 0x02 (0000ms, 694589ms total)
  1950. T5690 16838:142 JLINK_ReadMemEx(0x08004D98, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D98) - Data: 38 46 02 F0 61 FA A0 69 80 68 10 B9 A0 69 86 60 ... returns 0x3C (0000ms, 694589ms total)
  1951. T5690 16838:142 JLINK_ReadMemEx(0x08004D98, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D98) - Data: 38 46 returns 0x02 (0000ms, 694589ms total)
  1952. T5690 16838:142 JLINK_ReadMemEx(0x08004D98, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D98) - Data: 38 46 02 F0 61 FA A0 69 80 68 10 B9 A0 69 86 60 ... returns 0x3C (0000ms, 694589ms total)
  1953. T5690 16838:142 JLINK_ReadMemEx(0x08004D98, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D98) - Data: 38 46 returns 0x02 (0000ms, 694589ms total)
  1954. T5690 16838:142 JLINK_ReadMemEx(0x08004D9A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D9A) - Data: 02 F0 returns 0x02 (0000ms, 694589ms total)
  1955. T5690 16838:142 JLINK_ReadMemEx(0x08004D9A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D9A) - Data: 02 F0 returns 0x02 (0000ms, 694589ms total)
  1956. T5690 16838:142 JLINK_ReadMemEx(0x08004D9C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D9C) - Data: 61 FA A0 69 80 68 10 B9 A0 69 86 60 09 E0 A0 69 ... returns 0x3C (0000ms, 694589ms total)
  1957. T5690 16838:142 JLINK_ReadMemEx(0x08004D9C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D9C) - Data: 61 FA returns 0x02 (0000ms, 694589ms total)
  1958. T5690 16846:985 JLINK_ReadMemEx(0x20011D38, 0x0006 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20011D00) -- Updating C cache (64 bytes @ 0x20011D00) -- Read from C cache (6 bytes @ 0x20011D38) - Data: 00 00 00 00 00 00 returns 0x06 (0004ms, 694593ms total)
  1959. T5690 16846:989 JLINK_ReadMemEx(0x20011D3E, 0x0014 Bytes, ..., Flags = 0x02000000) -- Read from C cache (20 bytes @ 0x20011D3E) - Data: 65 6C 65 63 74 72 69 63 5F 66 72 00 00 00 00 00 ... returns 0x14 (0000ms, 694593ms total)
  1960. T5690 16846:989 JLINK_ReadMemEx(0x20011D54, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20011D54) - Data: 02 00 80 02 returns 0x04 (0000ms, 694593ms total)
  1961. T5690 16846:989 JLINK_ReadMemEx(0x20011D58, 0x0009 Bytes, ..., Flags = 0x02000000) -- Read from C cache (9 bytes @ 0x20011D58) - Data: 00 00 00 00 00 00 00 00 00 returns 0x09 (0000ms, 694593ms total)
  1962. T5690 16846:989 JLINK_ReadMemEx(0x20011D61, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20011D61) - Data: 00 returns 0x01 (0000ms, 694593ms total)
  1963. T5690 16846:989 JLINK_ReadMemEx(0x2000A458, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A458) - Data: CB 4A 00 08 returns 0x04 (0000ms, 694593ms total)
  1964. T5690 16846:989 JLINK_ReadMemEx(0x2000A444, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A444) - Data: F8 1C 01 20 returns 0x04 (0000ms, 694593ms total)
  1965. T5690 16846:989 JLINK_ReadMemEx(0x2000A448, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A448) - Data: A0 05 01 20 returns 0x04 (0000ms, 694593ms total)
  1966. T5690 16846:989 JLINK_ReadMemEx(0x2000A44C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A44C) - Data: 0F C8 07 68 returns 0x04 (0000ms, 694593ms total)
  1967. T5690 16846:989 JLINK_ReadMemEx(0x2000A450, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A450) - Data: 03 C8 07 68 returns 0x04 (0000ms, 694593ms total)
  1968. T5690 16846:989 JLINK_ReadMemEx(0x2000A454, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A454) - Data: 03 C8 07 68 returns 0x04 (0000ms, 694593ms total)
  1969. T5690 16846:989 JLINK_ReadMemEx(0x2000A458, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A458) - Data: CB 4A 00 08 returns 0x04 (0000ms, 694593ms total)
  1970. T5690 16846:989 JLINK_ReadMemEx(0x2000A470, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A470) - Data: C3 4C 00 08 returns 0x04 (0000ms, 694593ms total)
  1971. T5690 16846:989 JLINK_ReadMemEx(0x2000A45C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A45C) - Data: A0 05 01 20 returns 0x04 (0000ms, 694593ms total)
  1972. T5690 16846:989 JLINK_ReadMemEx(0x2000A460, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A460) - Data: 00 C8 07 68 returns 0x04 (0000ms, 694593ms total)
  1973. T5690 16846:989 JLINK_ReadMemEx(0x2000A464, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A464) - Data: 01 00 00 00 returns 0x04 (0000ms, 694593ms total)
  1974. T5690 16846:989 JLINK_ReadMemEx(0x2000A468, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A468) - Data: 80 05 01 20 returns 0x04 (0000ms, 694593ms total)
  1975. T5690 16846:989 JLINK_ReadMemEx(0x2000A46C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A46C) - Data: 03 C8 07 68 returns 0x04 (0000ms, 694593ms total)
  1976. T5690 16846:990 JLINK_ReadMemEx(0x2000A470, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A470) - Data: C3 4C 00 08 returns 0x04 (0000ms, 694593ms total)
  1977. T5690 16846:990 JLINK_ReadMemEx(0x2000A490, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A490) - Data: C1 4B 00 08 returns 0x04 (0000ms, 694593ms total)
  1978. T5690 16846:990 JLINK_ReadMemEx(0x2000A474, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A474) - Data: 01 00 00 00 returns 0x04 (0000ms, 694593ms total)
  1979. T5690 16846:990 JLINK_ReadMemEx(0x2000A478, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A478) - Data: 00 C8 07 68 returns 0x04 (0000ms, 694593ms total)
  1980. T5690 16846:990 JLINK_ReadMemEx(0x2000A47C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A47C) - Data: 00 DC 07 68 returns 0x04 (0000ms, 694593ms total)
  1981. T5690 16846:990 JLINK_ReadMemEx(0x2000A480, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A480) - Data: 07 07 07 07 returns 0x04 (0000ms, 694593ms total)
  1982. T5690 16846:990 JLINK_ReadMemEx(0x2000A484, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A484) - Data: 08 08 08 08 returns 0x04 (0000ms, 694593ms total)
  1983. T5690 16846:990 JLINK_ReadMemEx(0x2000A488, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A488) - Data: 09 09 09 09 returns 0x04 (0000ms, 694593ms total)
  1984. T5690 16846:990 JLINK_ReadMemEx(0x2000A48C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A48C) - Data: 10 10 10 10 returns 0x04 (0000ms, 694593ms total)
  1985. T5690 16846:990 JLINK_ReadMemEx(0x2000A490, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A490) - Data: C1 4B 00 08 returns 0x04 (0000ms, 694593ms total)
  1986. T5690 16846:990 JLINK_ReadMemEx(0x2000A4B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B8) - Data: 49 54 00 08 returns 0x04 (0000ms, 694593ms total)
  1987. T5690 16846:990 JLINK_ReadMemEx(0x2000A4A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4A4) - Data: 00 00 00 00 returns 0x04 (0000ms, 694593ms total)
  1988. T5690 16846:990 JLINK_ReadMemEx(0x2000A4A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4A8) - Data: 00 DC 07 68 returns 0x04 (0000ms, 694593ms total)
  1989. T5690 16846:990 JLINK_ReadMemEx(0x2000A4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4AC) - Data: 06 06 06 06 returns 0x04 (0000ms, 694593ms total)
  1990. T5690 16846:990 JLINK_ReadMemEx(0x2000A4B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B0) - Data: 07 07 07 07 returns 0x04 (0000ms, 694593ms total)
  1991. T5690 16846:990 JLINK_ReadMemEx(0x2000A4B4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B4) - Data: 08 08 08 08 returns 0x04 (0000ms, 694593ms total)
  1992. T5690 16846:990 JLINK_ReadMemEx(0x2000A4B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B8) - Data: 49 54 00 08 returns 0x04 (0000ms, 694593ms total)
  1993. T5690 16846:990 JLINK_ReadMemEx(0x2000A4C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C8) - Data: 45 36 00 08 returns 0x04 (0000ms, 694593ms total)
  1994. T5690 16846:990 JLINK_ReadMemEx(0x2000A4BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4BC) - Data: 04 04 04 04 returns 0x04 (0000ms, 694593ms total)
  1995. T5690 16846:990 JLINK_ReadMemEx(0x2000A4C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C0) - Data: 05 05 05 05 returns 0x04 (0000ms, 694593ms total)
  1996. T5690 16846:990 JLINK_ReadMemEx(0x2000A4C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C4) - Data: 06 06 06 06 returns 0x04 (0000ms, 694593ms total)
  1997. T5690 16846:990 JLINK_ReadMemEx(0x2000A4C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C8) - Data: 45 36 00 08 returns 0x04 (0000ms, 694593ms total)
  1998. T5690 16846:990 JLINK_ReadMemEx(0x2000A520, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A520) - Data: 37 38 37 37 returns 0x04 (0000ms, 694593ms total)
  1999. T5690 16846:990 JLINK_ReadMemEx(0x2000A500, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A500) - Data: 00 00 00 00 returns 0x04 (0000ms, 694593ms total)
  2000. T5690 16846:990 JLINK_ReadMemEx(0x2000A504, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A504) - Data: 00 00 00 00 returns 0x04 (0000ms, 694593ms total)
  2001. T5690 16846:990 JLINK_ReadMemEx(0x2000A508, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A508) - Data: 00 00 00 00 returns 0x04 (0000ms, 694593ms total)
  2002. T5690 16846:990 JLINK_ReadMemEx(0x2000A50C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A50C) - Data: 00 00 00 00 returns 0x04 (0000ms, 694593ms total)
  2003. T5690 16846:990 JLINK_ReadMemEx(0x2000A510, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A510) - Data: 00 00 00 00 returns 0x04 (0000ms, 694593ms total)
  2004. T5690 16846:990 JLINK_ReadMemEx(0x2000A514, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A514) - Data: 00 00 2F 64 returns 0x04 (0000ms, 694593ms total)
  2005. T5690 16846:990 JLINK_ReadMemEx(0x2000A518, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A518) - Data: 65 76 69 63 returns 0x04 (0000ms, 694593ms total)
  2006. T5690 16846:990 JLINK_ReadMemEx(0x2000A51C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A51C) - Data: 65 2F 32 39 returns 0x04 (0000ms, 694593ms total)
  2007. T5690 16846:990 JLINK_ReadMemEx(0x2000A520, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A520) - Data: 37 38 37 37 returns 0x04 (0000ms, 694593ms total)
  2008. T5690 16846:990 JLINK_ReadMemEx(0x6807C80F, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x6807C80F) - Data: 22 73 65 6E 73 6F 72 4C 69 73 74 22 3A 5B 7B 22 ... returns 0x20 (0003ms, 694596ms total)
  2009. T5690 16846:993 JLINK_ReadMemEx(0x20011D38, 0x0006 Bytes, ..., Flags = 0x02000000) -- Read from C cache (6 bytes @ 0x20011D38) - Data: 00 00 00 00 00 00 returns 0x06 (0001ms, 694597ms total)
  2010. T5690 16846:994 JLINK_ReadMemEx(0x20011D3E, 0x0014 Bytes, ..., Flags = 0x02000000) -- Read from C cache (20 bytes @ 0x20011D3E) - Data: 65 6C 65 63 74 72 69 63 5F 66 72 00 00 00 00 00 ... returns 0x14 (0000ms, 694597ms total)
  2011. T5690 16846:994 JLINK_ReadMemEx(0x20011D54, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20011D54) - Data: 02 00 80 02 returns 0x04 (0000ms, 694597ms total)
  2012. T5690 16846:994 JLINK_ReadMemEx(0x20011D58, 0x0009 Bytes, ..., Flags = 0x02000000) -- Read from C cache (9 bytes @ 0x20011D58) - Data: 00 00 00 00 00 00 00 00 00 returns 0x09 (0000ms, 694597ms total)
  2013. T5690 16846:994 JLINK_ReadMemEx(0x20011D61, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20011D61) - Data: 00 returns 0x01 (0000ms, 694597ms total)
  2014. T5690 16852:585 JLINK_ReadMemEx(0x08004D82, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D82) - Data: 2C 20 returns 0x02 (0000ms, 694597ms total)
  2015. T5690 16852:585 JLINK_ReadMemEx(0x08004D84, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D84) - Data: FF F7 EC F9 06 46 2B A1 38 46 02 F0 51 FA F0 61 ... returns 0x3C (0000ms, 694597ms total)
  2016. T5690 16852:585 JLINK_ReadMemEx(0x08004D84, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D84) - Data: FF F7 returns 0x02 (0000ms, 694597ms total)
  2017. T5690 16852:585 JLINK_ReadMemEx(0x08004D84, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D84) - Data: FF F7 EC F9 06 46 2B A1 38 46 02 F0 51 FA F0 61 ... returns 0x3C (0000ms, 694597ms total)
  2018. T5690 16852:585 JLINK_ReadMemEx(0x08004D84, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D84) - Data: FF F7 returns 0x02 (0000ms, 694597ms total)
  2019. T5690 16852:585 JLINK_ReadMemEx(0x08004D86, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D86) - Data: EC F9 returns 0x02 (0000ms, 694597ms total)
  2020. T5690 16852:585 JLINK_ReadMemEx(0x08004D88, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D88) - Data: 06 46 2B A1 38 46 02 F0 51 FA F0 61 B2 1D 2D A1 ... returns 0x3C (0000ms, 694597ms total)
  2021. T5690 16852:585 JLINK_ReadMemEx(0x08004D88, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D88) - Data: 06 46 returns 0x02 (0000ms, 694597ms total)
  2022. T5690 16852:585 JLINK_ReadMemEx(0x08004D8A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D8A) - Data: 2B A1 returns 0x02 (0000ms, 694597ms total)
  2023. T5690 16852:585 JLINK_ReadMemEx(0x08004D8A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D8A) - Data: 2B A1 returns 0x02 (0000ms, 694597ms total)
  2024. T5690 16852:585 JLINK_ReadMemEx(0x08004D8C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D8C) - Data: 38 46 02 F0 51 FA F0 61 B2 1D 2D A1 38 46 02 F0 ... returns 0x3C (0000ms, 694597ms total)
  2025. T5690 16852:585 JLINK_ReadMemEx(0x08004D8C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D8C) - Data: 38 46 returns 0x02 (0000ms, 694597ms total)
  2026. T5690 16852:585 JLINK_ReadMemEx(0x08004D8C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D8C) - Data: 38 46 02 F0 51 FA F0 61 B2 1D 2D A1 38 46 02 F0 ... returns 0x3C (0000ms, 694597ms total)
  2027. T5690 16852:585 JLINK_ReadMemEx(0x08004D8C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D8C) - Data: 38 46 returns 0x02 (0000ms, 694597ms total)
  2028. T5690 16852:585 JLINK_ReadMemEx(0x08004D8E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D8E) - Data: 02 F0 returns 0x02 (0000ms, 694597ms total)
  2029. T5690 16852:585 JLINK_ReadMemEx(0x08004D8E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D8E) - Data: 02 F0 returns 0x02 (0000ms, 694597ms total)
  2030. T5690 16852:586 JLINK_ReadMemEx(0x08004D90, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D90) - Data: 51 FA F0 61 B2 1D 2D A1 38 46 02 F0 61 FA A0 69 ... returns 0x3C (0000ms, 694597ms total)
  2031. T5690 16852:586 JLINK_ReadMemEx(0x08004D90, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D90) - Data: 51 FA returns 0x02 (0000ms, 694597ms total)
  2032. T5690 16852:586 JLINK_ReadMemEx(0x08004D92, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D92) - Data: F0 61 returns 0x02 (0000ms, 694597ms total)
  2033. T5690 16852:586 JLINK_ReadMemEx(0x08004D94, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D94) - Data: B2 1D 2D A1 38 46 02 F0 61 FA A0 69 80 68 10 B9 ... returns 0x3C (0000ms, 694597ms total)
  2034. T5690 16852:586 JLINK_ReadMemEx(0x08004D94, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D94) - Data: B2 1D returns 0x02 (0000ms, 694597ms total)
  2035. T5690 16853:402 JLINK_ReadMemEx(0x20011D54, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20011D54) - Data: 02 00 80 02 returns 0x04 (0000ms, 694597ms total)
  2036. T5690 16854:334 JLINK_ReadMemEx(0x08004D82, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D82) - Data: 2C 20 returns 0x02 (0000ms, 694597ms total)
  2037. T5690 16854:334 JLINK_ReadMemEx(0x08004D84, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D84) - Data: FF F7 EC F9 06 46 2B A1 38 46 02 F0 51 FA F0 61 ... returns 0x3C (0000ms, 694597ms total)
  2038. T5690 16854:334 JLINK_ReadMemEx(0x08004D84, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D84) - Data: FF F7 returns 0x02 (0000ms, 694597ms total)
  2039. T5690 16854:334 JLINK_ReadMemEx(0x08004D84, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D84) - Data: FF F7 EC F9 06 46 2B A1 38 46 02 F0 51 FA F0 61 ... returns 0x3C (0000ms, 694597ms total)
  2040. T5690 16854:334 JLINK_ReadMemEx(0x08004D84, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D84) - Data: FF F7 returns 0x02 (0000ms, 694597ms total)
  2041. T5690 16854:334 JLINK_ReadMemEx(0x08004D86, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D86) - Data: EC F9 returns 0x02 (0000ms, 694597ms total)
  2042. T5690 16854:334 JLINK_ReadMemEx(0x08004D88, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D88) - Data: 06 46 2B A1 38 46 02 F0 51 FA F0 61 B2 1D 2D A1 ... returns 0x3C (0000ms, 694597ms total)
  2043. T5690 16854:334 JLINK_ReadMemEx(0x08004D88, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D88) - Data: 06 46 returns 0x02 (0000ms, 694597ms total)
  2044. T5690 16854:334 JLINK_ReadMemEx(0x08004D8A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D8A) - Data: 2B A1 returns 0x02 (0000ms, 694597ms total)
  2045. T5690 16854:334 JLINK_ReadMemEx(0x08004D8A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D8A) - Data: 2B A1 returns 0x02 (0000ms, 694597ms total)
  2046. T5690 16854:334 JLINK_ReadMemEx(0x08004D8C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D8C) - Data: 38 46 02 F0 51 FA F0 61 B2 1D 2D A1 38 46 02 F0 ... returns 0x3C (0000ms, 694597ms total)
  2047. T5690 16854:334 JLINK_ReadMemEx(0x08004D8C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D8C) - Data: 38 46 returns 0x02 (0001ms, 694598ms total)
  2048. T5690 16854:335 JLINK_ReadMemEx(0x08004D8C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D8C) - Data: 38 46 02 F0 51 FA F0 61 B2 1D 2D A1 38 46 02 F0 ... returns 0x3C (0000ms, 694598ms total)
  2049. T5690 16854:335 JLINK_ReadMemEx(0x08004D8C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D8C) - Data: 38 46 returns 0x02 (0000ms, 694598ms total)
  2050. T5690 16854:335 JLINK_ReadMemEx(0x08004D8E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D8E) - Data: 02 F0 returns 0x02 (0000ms, 694598ms total)
  2051. T5690 16854:335 JLINK_ReadMemEx(0x08004D8E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D8E) - Data: 02 F0 returns 0x02 (0000ms, 694598ms total)
  2052. T5690 16854:335 JLINK_ReadMemEx(0x08004D90, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D90) - Data: 51 FA F0 61 B2 1D 2D A1 38 46 02 F0 61 FA A0 69 ... returns 0x3C (0000ms, 694598ms total)
  2053. T5690 16854:335 JLINK_ReadMemEx(0x08004D90, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D90) - Data: 51 FA returns 0x02 (0000ms, 694598ms total)
  2054. T5690 16854:335 JLINK_ReadMemEx(0x08004D92, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D92) - Data: F0 61 returns 0x02 (0000ms, 694598ms total)
  2055. T5690 16854:335 JLINK_ReadMemEx(0x08004D94, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D94) - Data: B2 1D 2D A1 38 46 02 F0 61 FA A0 69 80 68 10 B9 ... returns 0x3C (0000ms, 694598ms total)
  2056. T5690 16854:335 JLINK_ReadMemEx(0x08004D94, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D94) - Data: B2 1D returns 0x02 (0000ms, 694598ms total)
  2057. T5AF8 16857:044 JLINK_ReadMemEx(0x08004D9E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D9E) - Data: A0 69 returns 0x02 (0000ms, 694598ms total)
  2058. T5AF8 16857:044 JLINK_ReadMemEx(0x08004DA0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004DA0) - Data: 80 68 10 B9 A0 69 86 60 09 E0 A0 69 00 E0 C0 68 ... returns 0x3C (0001ms, 694599ms total)
  2059. T5AF8 16857:045 JLINK_ReadMemEx(0x08004DA0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004DA0) - Data: 80 68 returns 0x02 (0000ms, 694599ms total)
  2060. T5AF8 16857:045 JLINK_ReadMemEx(0x08004D9E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D9E) - Data: A0 69 returns 0x02 (0000ms, 694599ms total)
  2061. T5AF8 16857:045 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004D9E) -- Read from C cache (4 bytes @ 0x20011D10) -- Simulated returns 0x00 (0001ms, 694600ms total)
  2062. T5AF8 16857:046 JLINK_ReadReg(R15 (PC)) returns 0x08004DA0 (0000ms, 694600ms total)
  2063. T5AF8 16857:046 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 694600ms total)
  2064. T5AF8 16857:046 JLINK_ReadMemEx(0x08004DA0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004DA0) - Data: 80 68 10 B9 A0 69 86 60 09 E0 A0 69 00 E0 C0 68 ... returns 0x3C (0000ms, 694600ms total)
  2065. T5AF8 16857:046 JLINK_ReadMemEx(0x08004DA0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004DA0) - Data: 80 68 returns 0x02 (0000ms, 694600ms total)
  2066. T5AF8 16857:046 JLINK_ReadMemEx(0x08004DA2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004DA2) - Data: 10 B9 returns 0x02 (0000ms, 694600ms total)
  2067. T5AF8 16857:046 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004DA0) -- Read from C cache (4 bytes @ 0x20011D28) -- Simulated returns 0x00 (0000ms, 694600ms total)
  2068. T5AF8 16857:046 JLINK_ReadReg(R15 (PC)) returns 0x08004DA2 (0000ms, 694600ms total)
  2069. T5AF8 16857:046 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 694600ms total)
  2070. T5AF8 16857:046 JLINK_ReadMemEx(0x08004DA2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004DA2) - Data: 10 B9 returns 0x02 (0000ms, 694600ms total)
  2071. T5AF8 16857:046 JLINK_ReadMemEx(0x08004DA4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004DA4) - Data: A0 69 86 60 09 E0 A0 69 00 E0 C0 68 C1 68 09 68 ... returns 0x3C (0000ms, 694600ms total)
  2072. T5AF8 16857:046 JLINK_ReadMemEx(0x08004DA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004DA4) - Data: A0 69 returns 0x02 (0000ms, 694600ms total)
  2073. T5AF8 16857:046 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004DA2) -- Simulated returns 0x00 (0000ms, 694600ms total)
  2074. T5AF8 16857:046 JLINK_ReadReg(R15 (PC)) returns 0x08004DA4 (0000ms, 694600ms total)
  2075. T5AF8 16857:046 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 694600ms total)
  2076. T5AF8 16857:046 JLINK_ReadReg(R0) returns 0x00000000 (0000ms, 694600ms total)
  2077. T5AF8 16857:046 JLINK_ReadReg(R1) returns 0x6807C837 (0000ms, 694600ms total)
  2078. T5AF8 16857:046 JLINK_ReadReg(R2) returns 0xFFFFFFF4 (0000ms, 694600ms total)
  2079. T5AF8 16857:046 JLINK_ReadReg(R3) returns 0x6807C82C (0000ms, 694600ms total)
  2080. T5AF8 16857:046 JLINK_ReadReg(R4) returns 0x20011CF8 (0000ms, 694600ms total)
  2081. T5AF8 16857:046 JLINK_ReadReg(R5) returns 0x200105A0 (0000ms, 694600ms total)
  2082. T5AF8 16857:046 JLINK_ReadReg(R6) returns 0x20011D38 (0000ms, 694600ms total)
  2083. T5AF8 16857:046 JLINK_ReadReg(R7) returns 0x6807C80F (0000ms, 694600ms total)
  2084. T5AF8 16857:046 JLINK_ReadReg(R8) returns 0x6807C803 (0000ms, 694600ms total)
  2085. T5AF8 16857:046 JLINK_ReadReg(R9) returns 0x6807C800 (0000ms, 694600ms total)
  2086. T5AF8 16857:046 JLINK_ReadReg(R10) returns 0x10101010 (0000ms, 694600ms total)
  2087. T5AF8 16857:046 JLINK_ReadReg(R11) returns 0x11111111 (0000ms, 694600ms total)
  2088. T5AF8 16857:046 JLINK_ReadReg(R12) returns 0x00000000 (0000ms, 694600ms total)
  2089. T5AF8 16857:046 JLINK_ReadReg(R13 (SP)) returns 0x2000A444 (0000ms, 694600ms total)
  2090. T5AF8 16857:046 JLINK_ReadReg(R14) returns 0x08000BAB (0000ms, 694600ms total)
  2091. T5AF8 16857:046 JLINK_ReadReg(R15 (PC)) returns 0x08004DA4 (0000ms, 694600ms total)
  2092. T5AF8 16857:046 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 694600ms total)
  2093. T5AF8 16857:046 JLINK_ReadReg(MSP) returns 0x20011CC8 (0000ms, 694600ms total)
  2094. T5AF8 16857:046 JLINK_ReadReg(PSP) returns 0x2000A444 (0000ms, 694600ms total)
  2095. T5AF8 16857:046 JLINK_ReadReg(CFBP) returns 0x02000000 (0000ms, 694600ms total)
  2096. T5690 16857:047 JLINK_ReadMemEx(0x2000A458, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A458) - Data: CB 4A 00 08 returns 0x04 (0000ms, 694600ms total)
  2097. T5690 16857:047 JLINK_ReadMemEx(0x2000A444, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A444) - Data: F8 1C 01 20 returns 0x04 (0000ms, 694600ms total)
  2098. T5690 16857:047 JLINK_ReadMemEx(0x2000A448, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A448) - Data: A0 05 01 20 returns 0x04 (0000ms, 694600ms total)
  2099. T5690 16857:047 JLINK_ReadMemEx(0x2000A44C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A44C) - Data: 0F C8 07 68 returns 0x04 (0000ms, 694600ms total)
  2100. T5690 16857:047 JLINK_ReadMemEx(0x2000A450, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A450) - Data: 03 C8 07 68 returns 0x04 (0000ms, 694600ms total)
  2101. T5690 16857:047 JLINK_ReadMemEx(0x2000A454, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A454) - Data: 03 C8 07 68 returns 0x04 (0000ms, 694600ms total)
  2102. T5690 16857:047 JLINK_ReadMemEx(0x2000A458, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A458) - Data: CB 4A 00 08 returns 0x04 (0000ms, 694600ms total)
  2103. T5690 16857:047 JLINK_ReadMemEx(0x2000A470, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A470) - Data: C3 4C 00 08 returns 0x04 (0000ms, 694600ms total)
  2104. T5690 16857:047 JLINK_ReadMemEx(0x2000A45C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A45C) - Data: A0 05 01 20 returns 0x04 (0000ms, 694600ms total)
  2105. T5690 16857:047 JLINK_ReadMemEx(0x2000A460, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A460) - Data: 00 C8 07 68 returns 0x04 (0000ms, 694600ms total)
  2106. T5690 16857:047 JLINK_ReadMemEx(0x2000A464, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A464) - Data: 01 00 00 00 returns 0x04 (0000ms, 694600ms total)
  2107. T5690 16857:047 JLINK_ReadMemEx(0x2000A468, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A468) - Data: 80 05 01 20 returns 0x04 (0000ms, 694600ms total)
  2108. T5690 16857:047 JLINK_ReadMemEx(0x2000A46C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A46C) - Data: 03 C8 07 68 returns 0x04 (0000ms, 694600ms total)
  2109. T5690 16857:047 JLINK_ReadMemEx(0x2000A470, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A470) - Data: C3 4C 00 08 returns 0x04 (0000ms, 694600ms total)
  2110. T5690 16857:047 JLINK_ReadMemEx(0x2000A490, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A490) - Data: C1 4B 00 08 returns 0x04 (0000ms, 694600ms total)
  2111. T5690 16857:047 JLINK_ReadMemEx(0x2000A474, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A474) - Data: 01 00 00 00 returns 0x04 (0000ms, 694600ms total)
  2112. T5690 16857:047 JLINK_ReadMemEx(0x2000A478, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A478) - Data: 00 C8 07 68 returns 0x04 (0000ms, 694600ms total)
  2113. T5690 16857:047 JLINK_ReadMemEx(0x2000A47C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A47C) - Data: 00 DC 07 68 returns 0x04 (0000ms, 694600ms total)
  2114. T5690 16857:047 JLINK_ReadMemEx(0x2000A480, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A480) - Data: 07 07 07 07 returns 0x04 (0000ms, 694600ms total)
  2115. T5690 16857:047 JLINK_ReadMemEx(0x2000A484, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A484) - Data: 08 08 08 08 returns 0x04 (0000ms, 694600ms total)
  2116. T5690 16857:047 JLINK_ReadMemEx(0x2000A488, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A488) - Data: 09 09 09 09 returns 0x04 (0000ms, 694600ms total)
  2117. T5690 16857:047 JLINK_ReadMemEx(0x2000A48C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A48C) - Data: 10 10 10 10 returns 0x04 (0000ms, 694600ms total)
  2118. T5690 16857:047 JLINK_ReadMemEx(0x2000A490, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A490) - Data: C1 4B 00 08 returns 0x04 (0000ms, 694600ms total)
  2119. T5690 16857:047 JLINK_ReadMemEx(0x2000A4B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B8) - Data: 49 54 00 08 returns 0x04 (0000ms, 694600ms total)
  2120. T5690 16857:047 JLINK_ReadMemEx(0x2000A4A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4A4) - Data: 00 00 00 00 returns 0x04 (0000ms, 694600ms total)
  2121. T5690 16857:047 JLINK_ReadMemEx(0x2000A4A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4A8) - Data: 00 DC 07 68 returns 0x04 (0000ms, 694600ms total)
  2122. T5690 16857:047 JLINK_ReadMemEx(0x2000A4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4AC) - Data: 06 06 06 06 returns 0x04 (0000ms, 694600ms total)
  2123. T5690 16857:047 JLINK_ReadMemEx(0x2000A4B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B0) - Data: 07 07 07 07 returns 0x04 (0000ms, 694600ms total)
  2124. T5690 16857:047 JLINK_ReadMemEx(0x2000A4B4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B4) - Data: 08 08 08 08 returns 0x04 (0000ms, 694600ms total)
  2125. T5690 16857:047 JLINK_ReadMemEx(0x2000A4B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B8) - Data: 49 54 00 08 returns 0x04 (0000ms, 694600ms total)
  2126. T5690 16857:047 JLINK_ReadMemEx(0x2000A4C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C8) - Data: 45 36 00 08 returns 0x04 (0000ms, 694600ms total)
  2127. T5690 16857:047 JLINK_ReadMemEx(0x2000A4BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4BC) - Data: 04 04 04 04 returns 0x04 (0000ms, 694600ms total)
  2128. T5690 16857:047 JLINK_ReadMemEx(0x2000A4C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C0) - Data: 05 05 05 05 returns 0x04 (0000ms, 694600ms total)
  2129. T5690 16857:047 JLINK_ReadMemEx(0x2000A4C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C4) - Data: 06 06 06 06 returns 0x04 (0000ms, 694600ms total)
  2130. T5690 16857:047 JLINK_ReadMemEx(0x2000A4C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C8) - Data: 45 36 00 08 returns 0x04 (0000ms, 694600ms total)
  2131. T5690 16857:047 JLINK_ReadMemEx(0x2000A520, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A520) - Data: 37 38 37 37 returns 0x04 (0000ms, 694600ms total)
  2132. T5690 16857:047 JLINK_ReadMemEx(0x2000A500, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A500) - Data: 00 00 00 00 returns 0x04 (0000ms, 694600ms total)
  2133. T5690 16857:047 JLINK_ReadMemEx(0x2000A504, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A504) - Data: 00 00 00 00 returns 0x04 (0000ms, 694600ms total)
  2134. T5690 16857:047 JLINK_ReadMemEx(0x2000A508, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A508) - Data: 00 00 00 00 returns 0x04 (0000ms, 694600ms total)
  2135. T5690 16857:047 JLINK_ReadMemEx(0x2000A50C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A50C) - Data: 00 00 00 00 returns 0x04 (0000ms, 694600ms total)
  2136. T5690 16857:047 JLINK_ReadMemEx(0x2000A510, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A510) - Data: 00 00 00 00 returns 0x04 (0000ms, 694600ms total)
  2137. T5690 16857:047 JLINK_ReadMemEx(0x2000A514, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A514) - Data: 00 00 2F 64 returns 0x04 (0000ms, 694600ms total)
  2138. T5690 16857:047 JLINK_ReadMemEx(0x2000A518, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A518) - Data: 65 76 69 63 returns 0x04 (0000ms, 694600ms total)
  2139. T5690 16857:047 JLINK_ReadMemEx(0x2000A51C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A51C) - Data: 65 2F 32 39 returns 0x04 (0000ms, 694600ms total)
  2140. T5690 16857:047 JLINK_ReadMemEx(0x2000A520, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A520) - Data: 37 38 37 37 returns 0x04 (0000ms, 694600ms total)
  2141. T5690 16857:047 JLINK_ReadMemEx(0x6807C80F, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x6807C80F) - Data: 22 73 65 6E 73 6F 72 4C 69 73 74 22 3A 5B 7B 22 ... returns 0x20 (0005ms, 694605ms total)
  2142. T5690 16857:052 JLINK_ReadMemEx(0x20011D38, 0x0006 Bytes, ..., Flags = 0x02000000) -- Read from C cache (6 bytes @ 0x20011D38) - Data: 00 00 00 00 00 00 returns 0x06 (0000ms, 694605ms total)
  2143. T5690 16857:052 JLINK_ReadMemEx(0x20011D3E, 0x0014 Bytes, ..., Flags = 0x02000000) -- Read from C cache (20 bytes @ 0x20011D3E) - Data: 65 6C 65 63 74 72 69 63 5F 66 72 00 00 00 00 00 ... returns 0x14 (0000ms, 694605ms total)
  2144. T5690 16857:052 JLINK_ReadMemEx(0x20011D54, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20011D54) - Data: 02 00 80 02 returns 0x04 (0000ms, 694605ms total)
  2145. T5690 16857:052 JLINK_ReadMemEx(0x20011D58, 0x0009 Bytes, ..., Flags = 0x02000000) -- Read from C cache (9 bytes @ 0x20011D58) - Data: 00 00 00 00 00 00 00 00 00 returns 0x09 (0000ms, 694605ms total)
  2146. T5690 16857:052 JLINK_ReadMemEx(0x20011D61, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20011D61) - Data: 00 returns 0x01 (0000ms, 694605ms total)
  2147. T5690 16857:052 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: AD 7F 65 04 returns 1 (0000ms, 694605ms total)
  2148. T5690 16857:055 JLINK_ReadMemEx(0x08004D9E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D9E) - Data: A0 69 returns 0x02 (0000ms, 694605ms total)
  2149. T5690 16857:055 JLINK_ReadMemEx(0x08004DA0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004DA0) - Data: 80 68 10 B9 A0 69 86 60 09 E0 A0 69 00 E0 C0 68 ... returns 0x3C (0000ms, 694605ms total)
  2150. T5690 16857:055 JLINK_ReadMemEx(0x08004DA0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004DA0) - Data: 80 68 returns 0x02 (0000ms, 694605ms total)
  2151. T5690 16857:055 JLINK_ReadMemEx(0x08004DA0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004DA0) - Data: 80 68 10 B9 A0 69 86 60 09 E0 A0 69 00 E0 C0 68 ... returns 0x3C (0000ms, 694605ms total)
  2152. T5690 16857:055 JLINK_ReadMemEx(0x08004DA0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004DA0) - Data: 80 68 returns 0x02 (0000ms, 694605ms total)
  2153. T5690 16857:055 JLINK_ReadMemEx(0x08004DA2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004DA2) - Data: 10 B9 returns 0x02 (0000ms, 694605ms total)
  2154. T5690 16857:055 JLINK_ReadMemEx(0x08004DA2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004DA2) - Data: 10 B9 returns 0x02 (0000ms, 694605ms total)
  2155. T5690 16857:055 JLINK_ReadMemEx(0x08004DA4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004DA4) - Data: A0 69 86 60 09 E0 A0 69 00 E0 C0 68 C1 68 09 68 ... returns 0x3C (0000ms, 694605ms total)
  2156. T5690 16857:055 JLINK_ReadMemEx(0x08004DA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004DA4) - Data: A0 69 returns 0x02 (0000ms, 694605ms total)
  2157. T5690 16857:055 JLINK_ReadMemEx(0x08004DA4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004DA4) - Data: A0 69 86 60 09 E0 A0 69 00 E0 C0 68 C1 68 09 68 ... returns 0x3C (0000ms, 694605ms total)
  2158. T5690 16857:055 JLINK_ReadMemEx(0x08004DA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004DA4) - Data: A0 69 returns 0x02 (0000ms, 694605ms total)
  2159. T5690 16857:055 JLINK_ReadMemEx(0x08004DA6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004DA6) - Data: 86 60 returns 0x02 (0000ms, 694605ms total)
  2160. T5690 16857:055 JLINK_ReadMemEx(0x08004DA6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004DA6) - Data: 86 60 returns 0x02 (0000ms, 694605ms total)
  2161. T5690 16857:055 JLINK_ReadMemEx(0x08004DA8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004DA8) - Data: 09 E0 A0 69 00 E0 C0 68 C1 68 09 68 00 29 FA D1 ... returns 0x3C (0000ms, 694605ms total)
  2162. T5690 16857:055 JLINK_ReadMemEx(0x08004DA8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004DA8) - Data: 09 E0 returns 0x02 (0000ms, 694605ms total)
  2163. T5690 16857:055 JLINK_ReadMemEx(0x08004DA8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004DA8) - Data: 09 E0 A0 69 00 E0 C0 68 C1 68 09 68 00 29 FA D1 ... returns 0x3C (0000ms, 694605ms total)
  2164. T5690 16857:055 JLINK_ReadMemEx(0x08004DA8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004DA8) - Data: 09 E0 returns 0x02 (0000ms, 694605ms total)
  2165. T5690 16857:055 JLINK_ReadMemEx(0x08004DAA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004DAA) - Data: A0 69 returns 0x02 (0000ms, 694605ms total)
  2166. T5690 16906:063 JLINK_ReadMemEx(0x08004D94, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D94) - Data: B2 1D 2D A1 38 46 02 F0 61 FA A0 69 80 68 10 B9 ... returns 0x3C (0000ms, 694605ms total)
  2167. T5690 16906:063 JLINK_ReadMemEx(0x08004D94, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D94) - Data: B2 1D returns 0x02 (0000ms, 694605ms total)
  2168. T5690 16906:063 JLINK_ReadMemEx(0x08004D96, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D96) - Data: 2D A1 returns 0x02 (0000ms, 694605ms total)
  2169. T5690 16906:063 JLINK_ReadMemEx(0x08004D96, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D96) - Data: 2D A1 returns 0x02 (0000ms, 694605ms total)
  2170. T5690 16906:063 JLINK_ReadMemEx(0x08004D98, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D98) - Data: 38 46 02 F0 61 FA A0 69 80 68 10 B9 A0 69 86 60 ... returns 0x3C (0000ms, 694605ms total)
  2171. T5690 16906:063 JLINK_ReadMemEx(0x08004D98, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D98) - Data: 38 46 returns 0x02 (0000ms, 694605ms total)
  2172. T5690 16906:063 JLINK_ReadMemEx(0x08004D98, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D98) - Data: 38 46 02 F0 61 FA A0 69 80 68 10 B9 A0 69 86 60 ... returns 0x3C (0000ms, 694605ms total)
  2173. T5690 16906:063 JLINK_ReadMemEx(0x08004D98, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D98) - Data: 38 46 returns 0x02 (0000ms, 694605ms total)
  2174. T5690 16906:063 JLINK_ReadMemEx(0x08004D9A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D9A) - Data: 02 F0 returns 0x02 (0000ms, 694605ms total)
  2175. T5690 16906:063 JLINK_ReadMemEx(0x08004D9A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D9A) - Data: 02 F0 returns 0x02 (0000ms, 694605ms total)
  2176. T5690 16906:063 JLINK_ReadMemEx(0x08004D9C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D9C) - Data: 61 FA A0 69 80 68 10 B9 A0 69 86 60 09 E0 A0 69 ... returns 0x3C (0000ms, 694605ms total)
  2177. T5690 16906:063 JLINK_ReadMemEx(0x08004D9C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D9C) - Data: 61 FA returns 0x02 (0000ms, 694605ms total)
  2178. T5AF8 16910:257 JLINK_ReadMemEx(0x08004DA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004DA4) - Data: A0 69 returns 0x02 (0000ms, 694605ms total)
  2179. T5AF8 16910:257 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004DA4) -- Read from C cache (4 bytes @ 0x20011D10) -- Simulated returns 0x00 (0001ms, 694606ms total)
  2180. T5AF8 16910:258 JLINK_ReadReg(R15 (PC)) returns 0x08004DA6 (0000ms, 694606ms total)
  2181. T5AF8 16910:258 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 694606ms total)
  2182. T5AF8 16910:258 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004DA6) -- CPU_WriteMem(4 bytes @ 0x20011D28) -- Simulated returns 0x00 (0002ms, 694608ms total)
  2183. T5AF8 16910:260 JLINK_ReadReg(R15 (PC)) returns 0x08004DA8 (0000ms, 694608ms total)
  2184. T5AF8 16910:260 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 694608ms total)
  2185. T5AF8 16910:260 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004DA8) -- Simulated returns 0x00 (0000ms, 694608ms total)
  2186. T5AF8 16910:260 JLINK_ReadReg(R15 (PC)) returns 0x08004DBE (0000ms, 694608ms total)
  2187. T5AF8 16910:260 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 694608ms total)
  2188. T5AF8 16910:260 JLINK_ReadMemEx(0x08004DBC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004DBC) - Data: 00 BF 38 E0 24 20 FF F7 CD F9 05 46 24 A1 38 46 ... returns 0x3C (0000ms, 694608ms total)
  2189. T5AF8 16910:260 JLINK_ReadMemEx(0x08004DBC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004DBC) - Data: 00 BF returns 0x02 (0000ms, 694608ms total)
  2190. T5AF8 16910:260 JLINK_ReadMemEx(0x08004DBE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004DBE) - Data: 38 E0 returns 0x02 (0000ms, 694608ms total)
  2191. T5AF8 16910:260 JLINK_ReadReg(R0) returns 0x20011D20 (0000ms, 694608ms total)
  2192. T5AF8 16910:260 JLINK_ReadReg(R1) returns 0x6807C837 (0000ms, 694608ms total)
  2193. T5AF8 16910:260 JLINK_ReadReg(R2) returns 0xFFFFFFF4 (0000ms, 694608ms total)
  2194. T5AF8 16910:260 JLINK_ReadReg(R3) returns 0x6807C82C (0000ms, 694608ms total)
  2195. T5AF8 16910:260 JLINK_ReadReg(R4) returns 0x20011CF8 (0000ms, 694608ms total)
  2196. T5AF8 16910:260 JLINK_ReadReg(R5) returns 0x200105A0 (0000ms, 694608ms total)
  2197. T5AF8 16910:260 JLINK_ReadReg(R6) returns 0x20011D38 (0000ms, 694608ms total)
  2198. T5AF8 16910:260 JLINK_ReadReg(R7) returns 0x6807C80F (0000ms, 694608ms total)
  2199. T5AF8 16910:260 JLINK_ReadReg(R8) returns 0x6807C803 (0000ms, 694608ms total)
  2200. T5AF8 16910:260 JLINK_ReadReg(R9) returns 0x6807C800 (0000ms, 694608ms total)
  2201. T5AF8 16910:260 JLINK_ReadReg(R10) returns 0x10101010 (0000ms, 694608ms total)
  2202. T5AF8 16910:260 JLINK_ReadReg(R11) returns 0x11111111 (0000ms, 694608ms total)
  2203. T5AF8 16910:260 JLINK_ReadReg(R12) returns 0x00000000 (0000ms, 694608ms total)
  2204. T5AF8 16910:260 JLINK_ReadReg(R13 (SP)) returns 0x2000A444 (0000ms, 694608ms total)
  2205. T5AF8 16910:260 JLINK_ReadReg(R14) returns 0x08000BAB (0000ms, 694608ms total)
  2206. T5AF8 16910:260 JLINK_ReadReg(R15 (PC)) returns 0x08004DBE (0000ms, 694608ms total)
  2207. T5AF8 16910:260 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 694608ms total)
  2208. T5AF8 16910:260 JLINK_ReadReg(MSP) returns 0x20011CC8 (0000ms, 694608ms total)
  2209. T5AF8 16910:260 JLINK_ReadReg(PSP) returns 0x2000A444 (0000ms, 694608ms total)
  2210. T5AF8 16910:260 JLINK_ReadReg(CFBP) returns 0x02000000 (0000ms, 694608ms total)
  2211. T5690 16910:261 JLINK_ReadMemEx(0x2000A458, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A458) - Data: CB 4A 00 08 returns 0x04 (0000ms, 694608ms total)
  2212. T5690 16910:261 JLINK_ReadMemEx(0x2000A444, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A444) - Data: F8 1C 01 20 returns 0x04 (0000ms, 694608ms total)
  2213. T5690 16910:261 JLINK_ReadMemEx(0x2000A448, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A448) - Data: A0 05 01 20 returns 0x04 (0000ms, 694608ms total)
  2214. T5690 16910:261 JLINK_ReadMemEx(0x2000A44C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A44C) - Data: 0F C8 07 68 returns 0x04 (0000ms, 694608ms total)
  2215. T5690 16910:261 JLINK_ReadMemEx(0x2000A450, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A450) - Data: 03 C8 07 68 returns 0x04 (0000ms, 694608ms total)
  2216. T5690 16910:261 JLINK_ReadMemEx(0x2000A454, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A454) - Data: 03 C8 07 68 returns 0x04 (0000ms, 694608ms total)
  2217. T5690 16910:261 JLINK_ReadMemEx(0x2000A458, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A458) - Data: CB 4A 00 08 returns 0x04 (0000ms, 694608ms total)
  2218. T5690 16910:261 JLINK_ReadMemEx(0x2000A470, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A470) - Data: C3 4C 00 08 returns 0x04 (0000ms, 694608ms total)
  2219. T5690 16910:261 JLINK_ReadMemEx(0x2000A45C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A45C) - Data: A0 05 01 20 returns 0x04 (0000ms, 694608ms total)
  2220. T5690 16910:261 JLINK_ReadMemEx(0x2000A460, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A460) - Data: 00 C8 07 68 returns 0x04 (0000ms, 694608ms total)
  2221. T5690 16910:261 JLINK_ReadMemEx(0x2000A464, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A464) - Data: 01 00 00 00 returns 0x04 (0000ms, 694608ms total)
  2222. T5690 16910:261 JLINK_ReadMemEx(0x2000A468, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A468) - Data: 80 05 01 20 returns 0x04 (0000ms, 694608ms total)
  2223. T5690 16910:261 JLINK_ReadMemEx(0x2000A46C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A46C) - Data: 03 C8 07 68 returns 0x04 (0000ms, 694608ms total)
  2224. T5690 16910:261 JLINK_ReadMemEx(0x2000A470, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A470) - Data: C3 4C 00 08 returns 0x04 (0000ms, 694608ms total)
  2225. T5690 16910:261 JLINK_ReadMemEx(0x2000A490, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A490) - Data: C1 4B 00 08 returns 0x04 (0000ms, 694608ms total)
  2226. T5690 16910:261 JLINK_ReadMemEx(0x2000A474, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A474) - Data: 01 00 00 00 returns 0x04 (0000ms, 694608ms total)
  2227. T5690 16910:261 JLINK_ReadMemEx(0x2000A478, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A478) - Data: 00 C8 07 68 returns 0x04 (0000ms, 694608ms total)
  2228. T5690 16910:261 JLINK_ReadMemEx(0x2000A47C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A47C) - Data: 00 DC 07 68 returns 0x04 (0000ms, 694608ms total)
  2229. T5690 16910:261 JLINK_ReadMemEx(0x2000A480, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A480) - Data: 07 07 07 07 returns 0x04 (0000ms, 694608ms total)
  2230. T5690 16910:261 JLINK_ReadMemEx(0x2000A484, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A484) - Data: 08 08 08 08 returns 0x04 (0000ms, 694608ms total)
  2231. T5690 16910:261 JLINK_ReadMemEx(0x2000A488, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A488) - Data: 09 09 09 09 returns 0x04 (0000ms, 694608ms total)
  2232. T5690 16910:261 JLINK_ReadMemEx(0x2000A48C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A48C) - Data: 10 10 10 10 returns 0x04 (0000ms, 694608ms total)
  2233. T5690 16910:261 JLINK_ReadMemEx(0x2000A490, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A490) - Data: C1 4B 00 08 returns 0x04 (0000ms, 694608ms total)
  2234. T5690 16910:261 JLINK_ReadMemEx(0x2000A4B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B8) - Data: 49 54 00 08 returns 0x04 (0000ms, 694608ms total)
  2235. T5690 16910:261 JLINK_ReadMemEx(0x2000A4A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4A4) - Data: 00 00 00 00 returns 0x04 (0000ms, 694608ms total)
  2236. T5690 16910:261 JLINK_ReadMemEx(0x2000A4A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4A8) - Data: 00 DC 07 68 returns 0x04 (0000ms, 694608ms total)
  2237. T5690 16910:261 JLINK_ReadMemEx(0x2000A4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4AC) - Data: 06 06 06 06 returns 0x04 (0000ms, 694608ms total)
  2238. T5690 16910:261 JLINK_ReadMemEx(0x2000A4B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B0) - Data: 07 07 07 07 returns 0x04 (0000ms, 694608ms total)
  2239. T5690 16910:261 JLINK_ReadMemEx(0x2000A4B4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B4) - Data: 08 08 08 08 returns 0x04 (0000ms, 694608ms total)
  2240. T5690 16910:261 JLINK_ReadMemEx(0x2000A4B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B8) - Data: 49 54 00 08 returns 0x04 (0000ms, 694608ms total)
  2241. T5690 16910:261 JLINK_ReadMemEx(0x2000A4C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C8) - Data: 45 36 00 08 returns 0x04 (0000ms, 694608ms total)
  2242. T5690 16910:261 JLINK_ReadMemEx(0x2000A4BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4BC) - Data: 04 04 04 04 returns 0x04 (0000ms, 694608ms total)
  2243. T5690 16910:261 JLINK_ReadMemEx(0x2000A4C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C0) - Data: 05 05 05 05 returns 0x04 (0000ms, 694608ms total)
  2244. T5690 16910:261 JLINK_ReadMemEx(0x2000A4C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C4) - Data: 06 06 06 06 returns 0x04 (0000ms, 694608ms total)
  2245. T5690 16910:261 JLINK_ReadMemEx(0x2000A4C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C8) - Data: 45 36 00 08 returns 0x04 (0000ms, 694608ms total)
  2246. T5690 16910:261 JLINK_ReadMemEx(0x2000A520, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A520) - Data: 37 38 37 37 returns 0x04 (0000ms, 694608ms total)
  2247. T5690 16910:261 JLINK_ReadMemEx(0x2000A500, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A500) - Data: 00 00 00 00 returns 0x04 (0000ms, 694608ms total)
  2248. T5690 16910:261 JLINK_ReadMemEx(0x2000A504, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A504) - Data: 00 00 00 00 returns 0x04 (0000ms, 694608ms total)
  2249. T5690 16910:261 JLINK_ReadMemEx(0x2000A508, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A508) - Data: 00 00 00 00 returns 0x04 (0000ms, 694608ms total)
  2250. T5690 16910:261 JLINK_ReadMemEx(0x2000A50C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A50C) - Data: 00 00 00 00 returns 0x04 (0000ms, 694608ms total)
  2251. T5690 16910:261 JLINK_ReadMemEx(0x2000A510, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A510) - Data: 00 00 00 00 returns 0x04 (0000ms, 694608ms total)
  2252. T5690 16910:261 JLINK_ReadMemEx(0x2000A514, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A514) - Data: 00 00 2F 64 returns 0x04 (0000ms, 694608ms total)
  2253. T5690 16910:261 JLINK_ReadMemEx(0x2000A518, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A518) - Data: 65 76 69 63 returns 0x04 (0000ms, 694608ms total)
  2254. T5690 16910:261 JLINK_ReadMemEx(0x2000A51C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A51C) - Data: 65 2F 32 39 returns 0x04 (0000ms, 694608ms total)
  2255. T5690 16910:261 JLINK_ReadMemEx(0x2000A520, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A520) - Data: 37 38 37 37 returns 0x04 (0000ms, 694608ms total)
  2256. T5690 16910:262 JLINK_ReadMemEx(0x6807C80F, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x6807C80F) - Data: 22 73 65 6E 73 6F 72 4C 69 73 74 22 3A 5B 7B 22 ... returns 0x20 (0003ms, 694611ms total)
  2257. T5690 16910:266 JLINK_ReadMemEx(0x20011D38, 0x0006 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20011D00) -- Updating C cache (64 bytes @ 0x20011D00) -- Read from C cache (6 bytes @ 0x20011D38) - Data: 00 00 00 00 00 00 returns 0x06 (0004ms, 694615ms total)
  2258. T5690 16910:270 JLINK_ReadMemEx(0x20011D3E, 0x0014 Bytes, ..., Flags = 0x02000000) -- Read from C cache (20 bytes @ 0x20011D3E) - Data: 65 6C 65 63 74 72 69 63 5F 66 72 00 00 00 00 00 ... returns 0x14 (0000ms, 694615ms total)
  2259. T5690 16910:270 JLINK_ReadMemEx(0x20011D54, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20011D54) - Data: 02 00 80 02 returns 0x04 (0000ms, 694615ms total)
  2260. T5690 16910:270 JLINK_ReadMemEx(0x20011D58, 0x0009 Bytes, ..., Flags = 0x02000000) -- Read from C cache (9 bytes @ 0x20011D58) - Data: 00 00 00 00 00 00 00 00 00 returns 0x09 (0000ms, 694615ms total)
  2261. T5690 16910:270 JLINK_ReadMemEx(0x20011D61, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20011D61) - Data: 00 returns 0x01 (0000ms, 694615ms total)
  2262. T5690 16910:270 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: B2 7F 65 04 returns 1 (0000ms, 694615ms total)
  2263. T5690 16910:273 JLINK_ReadMemEx(0x08004DBE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004DBE) - Data: 38 E0 returns 0x02 (0000ms, 694615ms total)
  2264. T5690 16910:273 JLINK_ReadMemEx(0x08004DC0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004DC0) - Data: 24 20 FF F7 CD F9 05 46 24 A1 38 46 02 F0 32 FA ... returns 0x3C (0000ms, 694615ms total)
  2265. T5690 16910:273 JLINK_ReadMemEx(0x08004DC0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004DC0) - Data: 24 20 returns 0x02 (0000ms, 694615ms total)
  2266. T5690 16910:273 JLINK_ReadMemEx(0x08004DC0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004DC0) - Data: 24 20 FF F7 CD F9 05 46 24 A1 38 46 02 F0 32 FA ... returns 0x3C (0000ms, 694615ms total)
  2267. T5690 16910:273 JLINK_ReadMemEx(0x08004DC0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004DC0) - Data: 24 20 returns 0x02 (0000ms, 694615ms total)
  2268. T5690 16910:273 JLINK_ReadMemEx(0x08004DC2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004DC2) - Data: FF F7 returns 0x02 (0000ms, 694615ms total)
  2269. T5690 16910:273 JLINK_ReadMemEx(0x08004DC2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004DC2) - Data: FF F7 returns 0x02 (0000ms, 694615ms total)
  2270. T5690 16910:273 JLINK_ReadMemEx(0x08004DC4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004DC4) - Data: CD F9 05 46 24 A1 38 46 02 F0 32 FA A8 75 27 A1 ... returns 0x3C (0000ms, 694615ms total)
  2271. T5690 16910:273 JLINK_ReadMemEx(0x08004DC4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004DC4) - Data: CD F9 returns 0x02 (0000ms, 694615ms total)
  2272. T5690 16910:273 JLINK_ReadMemEx(0x08004DC6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004DC6) - Data: 05 46 returns 0x02 (0000ms, 694615ms total)
  2273. T5690 16910:273 JLINK_ReadMemEx(0x08004DC8, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08004E00) -- Updating C cache (64 bytes @ 0x08004E00) -- Read from C cache (60 bytes @ 0x08004DC8) - Data: 24 A1 38 46 02 F0 32 FA A8 75 27 A1 38 46 02 F0 ... returns 0x3C (0004ms, 694619ms total)
  2274. T5690 16910:277 JLINK_ReadMemEx(0x08004DC8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004DC8) - Data: 24 A1 returns 0x02 (0000ms, 694619ms total)
  2275. T5690 16910:277 JLINK_ReadMemEx(0x08004DC8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004DC8) - Data: 24 A1 38 46 02 F0 32 FA A8 75 27 A1 38 46 02 F0 ... returns 0x3C (0000ms, 694619ms total)
  2276. T5690 16910:277 JLINK_ReadMemEx(0x08004DC8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004DC8) - Data: 24 A1 returns 0x02 (0000ms, 694619ms total)
  2277. T5690 16910:277 JLINK_ReadMemEx(0x08004DCA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004DCA) - Data: 38 46 returns 0x02 (0000ms, 694619ms total)
  2278. T5690 16910:277 JLINK_ReadMemEx(0x08004DCA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004DCA) - Data: 38 46 returns 0x02 (0000ms, 694619ms total)
  2279. T5690 16910:277 JLINK_ReadMemEx(0x08004DCC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004DCC) - Data: 02 F0 32 FA A8 75 27 A1 38 46 02 F0 2D FA E8 75 ... returns 0x3C (0000ms, 694619ms total)
  2280. T5690 16910:277 JLINK_ReadMemEx(0x08004DCC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004DCC) - Data: 02 F0 returns 0x02 (0000ms, 694619ms total)
  2281. T5690 16910:277 JLINK_ReadMemEx(0x08004DCC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004DCC) - Data: 02 F0 32 FA A8 75 27 A1 38 46 02 F0 2D FA E8 75 ... returns 0x3C (0000ms, 694619ms total)
  2282. T5690 16910:277 JLINK_ReadMemEx(0x08004DCC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004DCC) - Data: 02 F0 returns 0x02 (0000ms, 694619ms total)
  2283. T5690 16910:277 JLINK_ReadMemEx(0x08004DCE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004DCE) - Data: 32 FA returns 0x02 (0000ms, 694619ms total)
  2284. T5690 16910:277 JLINK_ReadMemEx(0x08004DD0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004DD0) - Data: A8 75 27 A1 38 46 02 F0 2D FA E8 75 27 A1 38 46 ... returns 0x3C (0000ms, 694619ms total)
  2285. T5690 16910:277 JLINK_ReadMemEx(0x08004DD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004DD0) - Data: A8 75 returns 0x02 (0000ms, 694619ms total)
  2286. T5690 16910:277 JLINK_ReadMemEx(0x08004DD2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004DD2) - Data: 27 A1 returns 0x02 (0000ms, 694619ms total)
  2287. T5AF8 16913:505 JLINK_ReadMemEx(0x08004DBE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004DBE) - Data: 38 E0 returns 0x02 (0000ms, 694619ms total)
  2288. T5AF8 16913:505 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004DBE) -- Simulated returns 0x00 (0001ms, 694620ms total)
  2289. T5AF8 16913:506 JLINK_ReadReg(R15 (PC)) returns 0x08004E32 (0000ms, 694620ms total)
  2290. T5AF8 16913:506 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 694620ms total)
  2291. T5AF8 16913:507 JLINK_ReadReg(R0) returns 0x20011D20 (0000ms, 694620ms total)
  2292. T5AF8 16913:507 JLINK_ReadReg(R1) returns 0x6807C837 (0000ms, 694620ms total)
  2293. T5AF8 16913:507 JLINK_ReadReg(R2) returns 0xFFFFFFF4 (0000ms, 694620ms total)
  2294. T5AF8 16913:507 JLINK_ReadReg(R3) returns 0x6807C82C (0000ms, 694620ms total)
  2295. T5AF8 16913:507 JLINK_ReadReg(R4) returns 0x20011CF8 (0000ms, 694620ms total)
  2296. T5AF8 16913:507 JLINK_ReadReg(R5) returns 0x200105A0 (0000ms, 694620ms total)
  2297. T5AF8 16913:507 JLINK_ReadReg(R6) returns 0x20011D38 (0000ms, 694620ms total)
  2298. T5AF8 16913:507 JLINK_ReadReg(R7) returns 0x6807C80F (0000ms, 694620ms total)
  2299. T5AF8 16913:507 JLINK_ReadReg(R8) returns 0x6807C803 (0000ms, 694620ms total)
  2300. T5AF8 16913:507 JLINK_ReadReg(R9) returns 0x6807C800 (0000ms, 694620ms total)
  2301. T5AF8 16913:507 JLINK_ReadReg(R10) returns 0x10101010 (0000ms, 694620ms total)
  2302. T5AF8 16913:507 JLINK_ReadReg(R11) returns 0x11111111 (0000ms, 694620ms total)
  2303. T5AF8 16913:507 JLINK_ReadReg(R12) returns 0x00000000 (0000ms, 694620ms total)
  2304. T5AF8 16913:507 JLINK_ReadReg(R13 (SP)) returns 0x2000A444 (0000ms, 694620ms total)
  2305. T5AF8 16913:507 JLINK_ReadReg(R14) returns 0x08000BAB (0000ms, 694620ms total)
  2306. T5AF8 16913:507 JLINK_ReadReg(R15 (PC)) returns 0x08004E32 (0000ms, 694620ms total)
  2307. T5AF8 16913:507 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 694620ms total)
  2308. T5AF8 16913:507 JLINK_ReadReg(MSP) returns 0x20011CC8 (0000ms, 694620ms total)
  2309. T5AF8 16913:507 JLINK_ReadReg(PSP) returns 0x2000A444 (0000ms, 694620ms total)
  2310. T5AF8 16913:507 JLINK_ReadReg(CFBP) returns 0x02000000 (0000ms, 694620ms total)
  2311. T5690 16913:507 JLINK_ReadMemEx(0x2000A458, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A458) - Data: CB 4A 00 08 returns 0x04 (0000ms, 694620ms total)
  2312. T5690 16913:507 JLINK_ReadMemEx(0x2000A444, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A444) - Data: F8 1C 01 20 returns 0x04 (0000ms, 694620ms total)
  2313. T5690 16913:507 JLINK_ReadMemEx(0x2000A448, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A448) - Data: A0 05 01 20 returns 0x04 (0000ms, 694620ms total)
  2314. T5690 16913:507 JLINK_ReadMemEx(0x2000A44C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A44C) - Data: 0F C8 07 68 returns 0x04 (0000ms, 694620ms total)
  2315. T5690 16913:507 JLINK_ReadMemEx(0x2000A450, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A450) - Data: 03 C8 07 68 returns 0x04 (0000ms, 694620ms total)
  2316. T5690 16913:507 JLINK_ReadMemEx(0x2000A454, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A454) - Data: 03 C8 07 68 returns 0x04 (0000ms, 694620ms total)
  2317. T5690 16913:507 JLINK_ReadMemEx(0x2000A458, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A458) - Data: CB 4A 00 08 returns 0x04 (0001ms, 694621ms total)
  2318. T5690 16913:508 JLINK_ReadMemEx(0x2000A470, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A470) - Data: C3 4C 00 08 returns 0x04 (0000ms, 694621ms total)
  2319. T5690 16913:508 JLINK_ReadMemEx(0x2000A45C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A45C) - Data: A0 05 01 20 returns 0x04 (0000ms, 694621ms total)
  2320. T5690 16913:508 JLINK_ReadMemEx(0x2000A460, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A460) - Data: 00 C8 07 68 returns 0x04 (0000ms, 694621ms total)
  2321. T5690 16913:508 JLINK_ReadMemEx(0x2000A464, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A464) - Data: 01 00 00 00 returns 0x04 (0000ms, 694621ms total)
  2322. T5690 16913:508 JLINK_ReadMemEx(0x2000A468, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A468) - Data: 80 05 01 20 returns 0x04 (0000ms, 694621ms total)
  2323. T5690 16913:508 JLINK_ReadMemEx(0x2000A46C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A46C) - Data: 03 C8 07 68 returns 0x04 (0000ms, 694621ms total)
  2324. T5690 16913:508 JLINK_ReadMemEx(0x2000A470, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A470) - Data: C3 4C 00 08 returns 0x04 (0000ms, 694621ms total)
  2325. T5690 16913:508 JLINK_ReadMemEx(0x2000A490, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A490) - Data: C1 4B 00 08 returns 0x04 (0000ms, 694621ms total)
  2326. T5690 16913:508 JLINK_ReadMemEx(0x2000A474, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A474) - Data: 01 00 00 00 returns 0x04 (0000ms, 694621ms total)
  2327. T5690 16913:508 JLINK_ReadMemEx(0x2000A478, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A478) - Data: 00 C8 07 68 returns 0x04 (0000ms, 694621ms total)
  2328. T5690 16913:508 JLINK_ReadMemEx(0x2000A47C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A47C) - Data: 00 DC 07 68 returns 0x04 (0000ms, 694621ms total)
  2329. T5690 16913:508 JLINK_ReadMemEx(0x2000A480, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A480) - Data: 07 07 07 07 returns 0x04 (0000ms, 694621ms total)
  2330. T5690 16913:508 JLINK_ReadMemEx(0x2000A484, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A484) - Data: 08 08 08 08 returns 0x04 (0000ms, 694621ms total)
  2331. T5690 16913:508 JLINK_ReadMemEx(0x2000A488, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A488) - Data: 09 09 09 09 returns 0x04 (0000ms, 694621ms total)
  2332. T5690 16913:508 JLINK_ReadMemEx(0x2000A48C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A48C) - Data: 10 10 10 10 returns 0x04 (0000ms, 694621ms total)
  2333. T5690 16913:508 JLINK_ReadMemEx(0x2000A490, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A490) - Data: C1 4B 00 08 returns 0x04 (0000ms, 694621ms total)
  2334. T5690 16913:508 JLINK_ReadMemEx(0x2000A4B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B8) - Data: 49 54 00 08 returns 0x04 (0000ms, 694621ms total)
  2335. T5690 16913:508 JLINK_ReadMemEx(0x2000A4A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4A4) - Data: 00 00 00 00 returns 0x04 (0000ms, 694621ms total)
  2336. T5690 16913:508 JLINK_ReadMemEx(0x2000A4A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4A8) - Data: 00 DC 07 68 returns 0x04 (0000ms, 694621ms total)
  2337. T5690 16913:508 JLINK_ReadMemEx(0x2000A4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4AC) - Data: 06 06 06 06 returns 0x04 (0000ms, 694621ms total)
  2338. T5690 16913:508 JLINK_ReadMemEx(0x2000A4B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B0) - Data: 07 07 07 07 returns 0x04 (0000ms, 694621ms total)
  2339. T5690 16913:508 JLINK_ReadMemEx(0x2000A4B4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B4) - Data: 08 08 08 08 returns 0x04 (0000ms, 694621ms total)
  2340. T5690 16913:508 JLINK_ReadMemEx(0x2000A4B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B8) - Data: 49 54 00 08 returns 0x04 (0000ms, 694621ms total)
  2341. T5690 16913:508 JLINK_ReadMemEx(0x2000A4C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C8) - Data: 45 36 00 08 returns 0x04 (0000ms, 694621ms total)
  2342. T5690 16913:508 JLINK_ReadMemEx(0x2000A4BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4BC) - Data: 04 04 04 04 returns 0x04 (0000ms, 694621ms total)
  2343. T5690 16913:508 JLINK_ReadMemEx(0x2000A4C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C0) - Data: 05 05 05 05 returns 0x04 (0000ms, 694621ms total)
  2344. T5690 16913:508 JLINK_ReadMemEx(0x2000A4C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C4) - Data: 06 06 06 06 returns 0x04 (0000ms, 694621ms total)
  2345. T5690 16913:508 JLINK_ReadMemEx(0x2000A4C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C8) - Data: 45 36 00 08 returns 0x04 (0000ms, 694621ms total)
  2346. T5690 16913:508 JLINK_ReadMemEx(0x2000A520, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A520) - Data: 37 38 37 37 returns 0x04 (0000ms, 694621ms total)
  2347. T5690 16913:508 JLINK_ReadMemEx(0x2000A500, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A500) - Data: 00 00 00 00 returns 0x04 (0000ms, 694621ms total)
  2348. T5690 16913:508 JLINK_ReadMemEx(0x2000A504, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A504) - Data: 00 00 00 00 returns 0x04 (0000ms, 694621ms total)
  2349. T5690 16913:508 JLINK_ReadMemEx(0x2000A508, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A508) - Data: 00 00 00 00 returns 0x04 (0000ms, 694621ms total)
  2350. T5690 16913:508 JLINK_ReadMemEx(0x2000A50C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A50C) - Data: 00 00 00 00 returns 0x04 (0000ms, 694621ms total)
  2351. T5690 16913:508 JLINK_ReadMemEx(0x2000A510, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A510) - Data: 00 00 00 00 returns 0x04 (0000ms, 694621ms total)
  2352. T5690 16913:508 JLINK_ReadMemEx(0x2000A514, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A514) - Data: 00 00 2F 64 returns 0x04 (0000ms, 694621ms total)
  2353. T5690 16913:508 JLINK_ReadMemEx(0x2000A518, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A518) - Data: 65 76 69 63 returns 0x04 (0000ms, 694621ms total)
  2354. T5690 16913:508 JLINK_ReadMemEx(0x2000A51C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A51C) - Data: 65 2F 32 39 returns 0x04 (0000ms, 694621ms total)
  2355. T5690 16913:508 JLINK_ReadMemEx(0x2000A520, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A520) - Data: 37 38 37 37 returns 0x04 (0000ms, 694621ms total)
  2356. T5690 16913:508 JLINK_ReadMemEx(0x6807C80F, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x6807C80F) - Data: 22 73 65 6E 73 6F 72 4C 69 73 74 22 3A 5B 7B 22 ... returns 0x20 (0005ms, 694626ms total)
  2357. T5690 16913:513 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: B3 7F 65 04 returns 1 (0000ms, 694626ms total)
  2358. T5690 16913:515 JLINK_ReadMemEx(0x08004E30, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08004E40) -- Updating C cache (64 bytes @ 0x08004E40) -- Read from C cache (60 bytes @ 0x08004E30) - Data: 00 BF 00 BF BD E8 F0 81 22 69 64 65 6E 74 69 66 ... returns 0x3C (0004ms, 694630ms total)
  2359. T5690 16913:519 JLINK_ReadMemEx(0x08004E30, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004E30) - Data: 00 BF returns 0x02 (0000ms, 694630ms total)
  2360. T5690 16913:519 JLINK_ReadMemEx(0x08004E32, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004E32) - Data: 00 BF returns 0x02 (0000ms, 694630ms total)
  2361. T5690 16913:519 JLINK_ReadMemEx(0x08004E32, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004E32) - Data: 00 BF returns 0x02 (0000ms, 694630ms total)
  2362. T5690 16913:519 JLINK_ReadMemEx(0x08004E34, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004E34) - Data: BD E8 F0 81 22 69 64 65 6E 74 69 66 69 65 72 36 ... returns 0x3C (0000ms, 694630ms total)
  2363. T5690 16913:519 JLINK_ReadMemEx(0x08004E34, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004E34) - Data: BD E8 returns 0x02 (0000ms, 694630ms total)
  2364. T5690 16913:519 JLINK_ReadMemEx(0x08004E34, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004E34) - Data: BD E8 F0 81 22 69 64 65 6E 74 69 66 69 65 72 36 ... returns 0x3C (0000ms, 694630ms total)
  2365. T5690 16913:519 JLINK_ReadMemEx(0x08004E34, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004E34) - Data: BD E8 returns 0x02 (0000ms, 694630ms total)
  2366. T5690 16913:519 JLINK_ReadMemEx(0x08004E36, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004E36) - Data: F0 81 returns 0x02 (0000ms, 694630ms total)
  2367. T5690 16913:519 JLINK_ReadMemEx(0x08004E38, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004E38) - Data: 22 69 64 65 6E 74 69 66 69 65 72 36 34 35 22 3A ... returns 0x3C (0000ms, 694630ms total)
  2368. T5690 16913:519 JLINK_ReadMemEx(0x08004E38, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004E38) - Data: 22 69 returns 0x02 (0000ms, 694630ms total)
  2369. T5690 16913:519 JLINK_ReadMemEx(0x08004E3A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004E3A) - Data: 64 65 returns 0x02 (0000ms, 694630ms total)
  2370. T5690 16913:519 JLINK_ReadMemEx(0x08004E3A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004E3A) - Data: 64 65 returns 0x02 (0000ms, 694630ms total)
  2371. T5690 16913:519 JLINK_ReadMemEx(0x08004E3C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004E3C) - Data: 6E 74 69 66 69 65 72 36 34 35 22 3A 00 00 00 00 ... returns 0x3C (0000ms, 694630ms total)
  2372. T5690 16913:519 JLINK_ReadMemEx(0x08004E3C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004E3C) - Data: 6E 74 returns 0x02 (0000ms, 694630ms total)
  2373. T5AF8 16916:105 JLINK_ReadMemEx(0x08004E32, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004E32) - Data: 00 BF returns 0x02 (0000ms, 694630ms total)
  2374. T5AF8 16916:105 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004E32) -- Simulated returns 0x00 (0001ms, 694631ms total)
  2375. T5AF8 16916:106 JLINK_ReadReg(R15 (PC)) returns 0x08004E34 (0000ms, 694631ms total)
  2376. T5AF8 16916:106 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 694631ms total)
  2377. T5AF8 16916:106 JLINK_ReadReg(R0) returns 0x20011D20 (0000ms, 694631ms total)
  2378. T5AF8 16916:106 JLINK_ReadReg(R1) returns 0x6807C837 (0000ms, 694631ms total)
  2379. T5AF8 16916:106 JLINK_ReadReg(R2) returns 0xFFFFFFF4 (0000ms, 694631ms total)
  2380. T5AF8 16916:106 JLINK_ReadReg(R3) returns 0x6807C82C (0000ms, 694631ms total)
  2381. T5AF8 16916:106 JLINK_ReadReg(R4) returns 0x20011CF8 (0000ms, 694631ms total)
  2382. T5AF8 16916:106 JLINK_ReadReg(R5) returns 0x200105A0 (0000ms, 694631ms total)
  2383. T5AF8 16916:106 JLINK_ReadReg(R6) returns 0x20011D38 (0000ms, 694631ms total)
  2384. T5AF8 16916:106 JLINK_ReadReg(R7) returns 0x6807C80F (0000ms, 694631ms total)
  2385. T5AF8 16916:106 JLINK_ReadReg(R8) returns 0x6807C803 (0000ms, 694631ms total)
  2386. T5AF8 16916:106 JLINK_ReadReg(R9) returns 0x6807C800 (0000ms, 694631ms total)
  2387. T5AF8 16916:106 JLINK_ReadReg(R10) returns 0x10101010 (0000ms, 694631ms total)
  2388. T5AF8 16916:106 JLINK_ReadReg(R11) returns 0x11111111 (0000ms, 694631ms total)
  2389. T5AF8 16916:106 JLINK_ReadReg(R12) returns 0x00000000 (0000ms, 694631ms total)
  2390. T5AF8 16916:106 JLINK_ReadReg(R13 (SP)) returns 0x2000A444 (0000ms, 694631ms total)
  2391. T5AF8 16916:106 JLINK_ReadReg(R14) returns 0x08000BAB (0000ms, 694631ms total)
  2392. T5AF8 16916:106 JLINK_ReadReg(R15 (PC)) returns 0x08004E34 (0000ms, 694631ms total)
  2393. T5AF8 16916:106 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 694631ms total)
  2394. T5AF8 16916:106 JLINK_ReadReg(MSP) returns 0x20011CC8 (0000ms, 694631ms total)
  2395. T5AF8 16916:106 JLINK_ReadReg(PSP) returns 0x2000A444 (0000ms, 694631ms total)
  2396. T5AF8 16916:106 JLINK_ReadReg(CFBP) returns 0x02000000 (0000ms, 694631ms total)
  2397. T5690 16916:107 JLINK_ReadMemEx(0x2000A458, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A458) - Data: CB 4A 00 08 returns 0x04 (0000ms, 694631ms total)
  2398. T5690 16916:107 JLINK_ReadMemEx(0x2000A444, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A444) - Data: F8 1C 01 20 returns 0x04 (0000ms, 694631ms total)
  2399. T5690 16916:107 JLINK_ReadMemEx(0x2000A448, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A448) - Data: A0 05 01 20 returns 0x04 (0000ms, 694631ms total)
  2400. T5690 16916:107 JLINK_ReadMemEx(0x2000A44C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A44C) - Data: 0F C8 07 68 returns 0x04 (0000ms, 694631ms total)
  2401. T5690 16916:107 JLINK_ReadMemEx(0x2000A450, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A450) - Data: 03 C8 07 68 returns 0x04 (0000ms, 694631ms total)
  2402. T5690 16916:107 JLINK_ReadMemEx(0x2000A454, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A454) - Data: 03 C8 07 68 returns 0x04 (0000ms, 694631ms total)
  2403. T5690 16916:107 JLINK_ReadMemEx(0x2000A458, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A458) - Data: CB 4A 00 08 returns 0x04 (0000ms, 694631ms total)
  2404. T5690 16916:107 JLINK_ReadMemEx(0x2000A470, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A470) - Data: C3 4C 00 08 returns 0x04 (0000ms, 694631ms total)
  2405. T5690 16916:107 JLINK_ReadMemEx(0x2000A45C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A45C) - Data: A0 05 01 20 returns 0x04 (0000ms, 694631ms total)
  2406. T5690 16916:107 JLINK_ReadMemEx(0x2000A460, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A460) - Data: 00 C8 07 68 returns 0x04 (0000ms, 694631ms total)
  2407. T5690 16916:107 JLINK_ReadMemEx(0x2000A464, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A464) - Data: 01 00 00 00 returns 0x04 (0000ms, 694631ms total)
  2408. T5690 16916:107 JLINK_ReadMemEx(0x2000A468, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A468) - Data: 80 05 01 20 returns 0x04 (0000ms, 694631ms total)
  2409. T5690 16916:108 JLINK_ReadMemEx(0x2000A46C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A46C) - Data: 03 C8 07 68 returns 0x04 (0000ms, 694631ms total)
  2410. T5690 16916:108 JLINK_ReadMemEx(0x2000A470, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A470) - Data: C3 4C 00 08 returns 0x04 (0000ms, 694631ms total)
  2411. T5690 16916:108 JLINK_ReadMemEx(0x2000A490, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A490) - Data: C1 4B 00 08 returns 0x04 (0000ms, 694631ms total)
  2412. T5690 16916:108 JLINK_ReadMemEx(0x2000A474, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A474) - Data: 01 00 00 00 returns 0x04 (0000ms, 694631ms total)
  2413. T5690 16916:108 JLINK_ReadMemEx(0x2000A478, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A478) - Data: 00 C8 07 68 returns 0x04 (0000ms, 694631ms total)
  2414. T5690 16916:108 JLINK_ReadMemEx(0x2000A47C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A47C) - Data: 00 DC 07 68 returns 0x04 (0000ms, 694631ms total)
  2415. T5690 16916:108 JLINK_ReadMemEx(0x2000A480, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A480) - Data: 07 07 07 07 returns 0x04 (0000ms, 694631ms total)
  2416. T5690 16916:108 JLINK_ReadMemEx(0x2000A484, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A484) - Data: 08 08 08 08 returns 0x04 (0000ms, 694631ms total)
  2417. T5690 16916:108 JLINK_ReadMemEx(0x2000A488, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A488) - Data: 09 09 09 09 returns 0x04 (0000ms, 694631ms total)
  2418. T5690 16916:108 JLINK_ReadMemEx(0x2000A48C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A48C) - Data: 10 10 10 10 returns 0x04 (0000ms, 694631ms total)
  2419. T5690 16916:108 JLINK_ReadMemEx(0x2000A490, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A490) - Data: C1 4B 00 08 returns 0x04 (0000ms, 694631ms total)
  2420. T5690 16916:108 JLINK_ReadMemEx(0x2000A4B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B8) - Data: 49 54 00 08 returns 0x04 (0000ms, 694631ms total)
  2421. T5690 16916:108 JLINK_ReadMemEx(0x2000A4A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4A4) - Data: 00 00 00 00 returns 0x04 (0000ms, 694631ms total)
  2422. T5690 16916:108 JLINK_ReadMemEx(0x2000A4A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4A8) - Data: 00 DC 07 68 returns 0x04 (0000ms, 694631ms total)
  2423. T5690 16916:108 JLINK_ReadMemEx(0x2000A4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4AC) - Data: 06 06 06 06 returns 0x04 (0000ms, 694631ms total)
  2424. T5690 16916:108 JLINK_ReadMemEx(0x2000A4B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B0) - Data: 07 07 07 07 returns 0x04 (0000ms, 694631ms total)
  2425. T5690 16916:108 JLINK_ReadMemEx(0x2000A4B4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B4) - Data: 08 08 08 08 returns 0x04 (0000ms, 694631ms total)
  2426. T5690 16916:108 JLINK_ReadMemEx(0x2000A4B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B8) - Data: 49 54 00 08 returns 0x04 (0000ms, 694631ms total)
  2427. T5690 16916:108 JLINK_ReadMemEx(0x2000A4C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C8) - Data: 45 36 00 08 returns 0x04 (0000ms, 694631ms total)
  2428. T5690 16916:108 JLINK_ReadMemEx(0x2000A4BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4BC) - Data: 04 04 04 04 returns 0x04 (0000ms, 694631ms total)
  2429. T5690 16916:108 JLINK_ReadMemEx(0x2000A4C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C0) - Data: 05 05 05 05 returns 0x04 (0000ms, 694631ms total)
  2430. T5690 16916:108 JLINK_ReadMemEx(0x2000A4C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C4) - Data: 06 06 06 06 returns 0x04 (0000ms, 694631ms total)
  2431. T5690 16916:108 JLINK_ReadMemEx(0x2000A4C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C8) - Data: 45 36 00 08 returns 0x04 (0000ms, 694631ms total)
  2432. T5690 16916:108 JLINK_ReadMemEx(0x2000A520, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A520) - Data: 37 38 37 37 returns 0x04 (0000ms, 694631ms total)
  2433. T5690 16916:108 JLINK_ReadMemEx(0x2000A500, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A500) - Data: 00 00 00 00 returns 0x04 (0000ms, 694631ms total)
  2434. T5690 16916:108 JLINK_ReadMemEx(0x2000A504, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A504) - Data: 00 00 00 00 returns 0x04 (0000ms, 694631ms total)
  2435. T5690 16916:108 JLINK_ReadMemEx(0x2000A508, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A508) - Data: 00 00 00 00 returns 0x04 (0000ms, 694631ms total)
  2436. T5690 16916:108 JLINK_ReadMemEx(0x2000A50C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A50C) - Data: 00 00 00 00 returns 0x04 (0000ms, 694631ms total)
  2437. T5690 16916:108 JLINK_ReadMemEx(0x2000A510, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A510) - Data: 00 00 00 00 returns 0x04 (0000ms, 694631ms total)
  2438. T5690 16916:108 JLINK_ReadMemEx(0x2000A514, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A514) - Data: 00 00 2F 64 returns 0x04 (0000ms, 694631ms total)
  2439. T5690 16916:108 JLINK_ReadMemEx(0x2000A518, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A518) - Data: 65 76 69 63 returns 0x04 (0000ms, 694631ms total)
  2440. T5690 16916:108 JLINK_ReadMemEx(0x2000A51C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A51C) - Data: 65 2F 32 39 returns 0x04 (0000ms, 694631ms total)
  2441. T5690 16916:108 JLINK_ReadMemEx(0x2000A520, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A520) - Data: 37 38 37 37 returns 0x04 (0000ms, 694631ms total)
  2442. T5690 16916:108 JLINK_ReadMemEx(0x6807C80F, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x6807C80F) - Data: 22 73 65 6E 73 6F 72 4C 69 73 74 22 3A 5B 7B 22 ... returns 0x20 (0005ms, 694636ms total)
  2443. T5690 16916:113 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: B4 7F 65 04 returns 1 (0000ms, 694636ms total)
  2444. T5690 16916:122 JLINK_ReadMemEx(0x08004E30, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004E30) - Data: 00 BF 00 BF BD E8 F0 81 22 69 64 65 6E 74 69 66 ... returns 0x3C (0000ms, 694636ms total)
  2445. T5690 16916:122 JLINK_ReadMemEx(0x08004E30, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004E30) - Data: 00 BF returns 0x02 (0000ms, 694636ms total)
  2446. T5690 16916:122 JLINK_ReadMemEx(0x08004E32, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004E32) - Data: 00 BF returns 0x02 (0000ms, 694636ms total)
  2447. T5690 16916:122 JLINK_ReadMemEx(0x08004E32, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004E32) - Data: 00 BF returns 0x02 (0000ms, 694636ms total)
  2448. T5690 16916:122 JLINK_ReadMemEx(0x08004E34, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004E34) - Data: BD E8 F0 81 22 69 64 65 6E 74 69 66 69 65 72 36 ... returns 0x3C (0000ms, 694636ms total)
  2449. T5690 16916:122 JLINK_ReadMemEx(0x08004E34, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004E34) - Data: BD E8 returns 0x02 (0000ms, 694636ms total)
  2450. T5690 16916:122 JLINK_ReadMemEx(0x08004E34, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004E34) - Data: BD E8 F0 81 22 69 64 65 6E 74 69 66 69 65 72 36 ... returns 0x3C (0000ms, 694636ms total)
  2451. T5690 16916:122 JLINK_ReadMemEx(0x08004E34, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004E34) - Data: BD E8 returns 0x02 (0000ms, 694636ms total)
  2452. T5690 16916:122 JLINK_ReadMemEx(0x08004E36, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004E36) - Data: F0 81 returns 0x02 (0000ms, 694636ms total)
  2453. T5690 16916:122 JLINK_ReadMemEx(0x08004E38, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004E38) - Data: 22 69 64 65 6E 74 69 66 69 65 72 36 34 35 22 3A ... returns 0x3C (0000ms, 694636ms total)
  2454. T5690 16916:122 JLINK_ReadMemEx(0x08004E38, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004E38) - Data: 22 69 returns 0x02 (0000ms, 694636ms total)
  2455. T5690 16916:122 JLINK_ReadMemEx(0x08004E3A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004E3A) - Data: 64 65 returns 0x02 (0000ms, 694636ms total)
  2456. T5690 16916:122 JLINK_ReadMemEx(0x08004E3A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004E3A) - Data: 64 65 returns 0x02 (0000ms, 694636ms total)
  2457. T5690 16916:122 JLINK_ReadMemEx(0x08004E3C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004E3C) - Data: 6E 74 69 66 69 65 72 36 34 35 22 3A 00 00 00 00 ... returns 0x3C (0000ms, 694636ms total)
  2458. T5690 16916:122 JLINK_ReadMemEx(0x08004E3C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004E3C) - Data: 6E 74 returns 0x02 (0000ms, 694636ms total)
  2459. T5AF8 16916:976 JLINK_ReadMemEx(0x08004E34, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004E34) - Data: BD E8 returns 0x02 (0000ms, 694636ms total)
  2460. T5AF8 16916:976 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004E34) -- Read from C cache (2 bytes @ 0x08004E36) -- Not simulated -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU_WriteMem(4 bytes @ 0xE0001004) returns 0x00 (0027ms, 694663ms total)
  2461. T5AF8 16917:003 JLINK_ReadReg(R15 (PC)) returns 0x08004ACA (0000ms, 694663ms total)
  2462. T5AF8 16917:003 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 694663ms total)
  2463. T5AF8 16917:004 JLINK_ReadReg(R0) returns 0x20011D20 (0000ms, 694663ms total)
  2464. T5AF8 16917:004 JLINK_ReadReg(R1) returns 0x6807C837 (0000ms, 694663ms total)
  2465. T5AF8 16917:004 JLINK_ReadReg(R2) returns 0xFFFFFFF4 (0000ms, 694663ms total)
  2466. T5AF8 16917:004 JLINK_ReadReg(R3) returns 0x6807C82C (0000ms, 694663ms total)
  2467. T5AF8 16917:004 JLINK_ReadReg(R4) returns 0x20011CF8 (0000ms, 694663ms total)
  2468. T5AF8 16917:004 JLINK_ReadReg(R5) returns 0x200105A0 (0000ms, 694663ms total)
  2469. T5AF8 16917:004 JLINK_ReadReg(R6) returns 0x6807C80F (0000ms, 694663ms total)
  2470. T5AF8 16917:004 JLINK_ReadReg(R7) returns 0x6807C803 (0000ms, 694663ms total)
  2471. T5AF8 16917:004 JLINK_ReadReg(R8) returns 0x6807C803 (0000ms, 694663ms total)
  2472. T5AF8 16917:004 JLINK_ReadReg(R9) returns 0x6807C800 (0000ms, 694663ms total)
  2473. T5AF8 16917:004 JLINK_ReadReg(R10) returns 0x10101010 (0000ms, 694663ms total)
  2474. T5AF8 16917:004 JLINK_ReadReg(R11) returns 0x11111111 (0000ms, 694663ms total)
  2475. T5AF8 16917:004 JLINK_ReadReg(R12) returns 0x00000000 (0000ms, 694663ms total)
  2476. T5AF8 16917:004 JLINK_ReadReg(R13 (SP)) returns 0x2000A45C (0000ms, 694663ms total)
  2477. T5AF8 16917:004 JLINK_ReadReg(R14) returns 0x08000BAB (0000ms, 694663ms total)
  2478. T5AF8 16917:004 JLINK_ReadReg(R15 (PC)) returns 0x08004ACA (0000ms, 694663ms total)
  2479. T5AF8 16917:004 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 694663ms total)
  2480. T5AF8 16917:004 JLINK_ReadReg(MSP) returns 0x20011CC8 (0000ms, 694663ms total)
  2481. T5AF8 16917:004 JLINK_ReadReg(PSP) returns 0x2000A45C (0000ms, 694663ms total)
  2482. T5AF8 16917:004 JLINK_ReadReg(CFBP) returns 0x02000000 (0000ms, 694663ms total)
  2483. T5690 16917:004 JLINK_ReadMemEx(0x2000A470, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x2000A440) -- Updating C cache (64 bytes @ 0x2000A440) -- Read from C cache (4 bytes @ 0x2000A470) - Data: C3 4C 00 08 returns 0x04 (0003ms, 694666ms total)
  2484. T5690 16917:007 JLINK_ReadMemEx(0x2000A45C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A45C) - Data: A0 05 01 20 returns 0x04 (0000ms, 694666ms total)
  2485. T5690 16917:007 JLINK_ReadMemEx(0x2000A460, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A460) - Data: 00 C8 07 68 returns 0x04 (0000ms, 694666ms total)
  2486. T5690 16917:007 JLINK_ReadMemEx(0x2000A464, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A464) - Data: 01 00 00 00 returns 0x04 (0000ms, 694666ms total)
  2487. T5690 16917:007 JLINK_ReadMemEx(0x2000A468, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A468) - Data: 80 05 01 20 returns 0x04 (0000ms, 694666ms total)
  2488. T5690 16917:007 JLINK_ReadMemEx(0x2000A46C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A46C) - Data: 03 C8 07 68 returns 0x04 (0000ms, 694666ms total)
  2489. T5690 16917:007 JLINK_ReadMemEx(0x2000A470, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A470) - Data: C3 4C 00 08 returns 0x04 (0000ms, 694666ms total)
  2490. T5690 16917:007 JLINK_ReadMemEx(0x2000A490, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x2000A480) -- Updating C cache (64 bytes @ 0x2000A480) -- Read from C cache (4 bytes @ 0x2000A490) - Data: C1 4B 00 08 returns 0x04 (0004ms, 694670ms total)
  2491. T5690 16917:011 JLINK_ReadMemEx(0x2000A474, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A474) - Data: 01 00 00 00 returns 0x04 (0000ms, 694670ms total)
  2492. T5690 16917:011 JLINK_ReadMemEx(0x2000A478, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A478) - Data: 00 C8 07 68 returns 0x04 (0000ms, 694670ms total)
  2493. T5690 16917:011 JLINK_ReadMemEx(0x2000A47C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A47C) - Data: 00 DC 07 68 returns 0x04 (0000ms, 694670ms total)
  2494. T5690 16917:011 JLINK_ReadMemEx(0x2000A480, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A480) - Data: 07 07 07 07 returns 0x04 (0000ms, 694670ms total)
  2495. T5690 16917:011 JLINK_ReadMemEx(0x2000A484, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A484) - Data: 08 08 08 08 returns 0x04 (0000ms, 694670ms total)
  2496. T5690 16917:011 JLINK_ReadMemEx(0x2000A488, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A488) - Data: 09 09 09 09 returns 0x04 (0000ms, 694670ms total)
  2497. T5690 16917:011 JLINK_ReadMemEx(0x2000A48C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A48C) - Data: 10 10 10 10 returns 0x04 (0000ms, 694670ms total)
  2498. T5690 16917:011 JLINK_ReadMemEx(0x2000A490, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A490) - Data: C1 4B 00 08 returns 0x04 (0000ms, 694670ms total)
  2499. T5690 16917:011 JLINK_ReadMemEx(0x2000A4B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B8) - Data: 49 54 00 08 returns 0x04 (0000ms, 694670ms total)
  2500. T5690 16917:011 JLINK_ReadMemEx(0x2000A4A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4A4) - Data: 00 00 00 00 returns 0x04 (0000ms, 694670ms total)
  2501. T5690 16917:011 JLINK_ReadMemEx(0x2000A4A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4A8) - Data: 00 DC 07 68 returns 0x04 (0000ms, 694670ms total)
  2502. T5690 16917:011 JLINK_ReadMemEx(0x2000A4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4AC) - Data: 06 06 06 06 returns 0x04 (0000ms, 694670ms total)
  2503. T5690 16917:011 JLINK_ReadMemEx(0x2000A4B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B0) - Data: 07 07 07 07 returns 0x04 (0000ms, 694670ms total)
  2504. T5690 16917:011 JLINK_ReadMemEx(0x2000A4B4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B4) - Data: 08 08 08 08 returns 0x04 (0000ms, 694670ms total)
  2505. T5690 16917:011 JLINK_ReadMemEx(0x2000A4B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B8) - Data: 49 54 00 08 returns 0x04 (0000ms, 694670ms total)
  2506. T5690 16917:011 JLINK_ReadMemEx(0x2000A4C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x2000A4C0) -- Updating C cache (64 bytes @ 0x2000A4C0) -- Read from C cache (4 bytes @ 0x2000A4C8) - Data: 45 36 00 08 returns 0x04 (0004ms, 694674ms total)
  2507. T5690 16917:015 JLINK_ReadMemEx(0x2000A4BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4BC) - Data: 04 04 04 04 returns 0x04 (0000ms, 694674ms total)
  2508. T5690 16917:015 JLINK_ReadMemEx(0x2000A4C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C0) - Data: 05 05 05 05 returns 0x04 (0000ms, 694674ms total)
  2509. T5690 16917:015 JLINK_ReadMemEx(0x2000A4C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C4) - Data: 06 06 06 06 returns 0x04 (0000ms, 694674ms total)
  2510. T5690 16917:015 JLINK_ReadMemEx(0x2000A4C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C8) - Data: 45 36 00 08 returns 0x04 (0000ms, 694674ms total)
  2511. T5690 16917:015 JLINK_ReadMemEx(0x2000A520, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x2000A500) -- Updating C cache (64 bytes @ 0x2000A500) -- Read from C cache (4 bytes @ 0x2000A520) - Data: 37 38 37 37 returns 0x04 (0004ms, 694678ms total)
  2512. T5690 16917:019 JLINK_ReadMemEx(0x2000A500, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A500) - Data: 00 00 00 00 returns 0x04 (0000ms, 694678ms total)
  2513. T5690 16917:019 JLINK_ReadMemEx(0x2000A504, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A504) - Data: 00 00 00 00 returns 0x04 (0000ms, 694678ms total)
  2514. T5690 16917:019 JLINK_ReadMemEx(0x2000A508, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A508) - Data: 00 00 00 00 returns 0x04 (0000ms, 694678ms total)
  2515. T5690 16917:019 JLINK_ReadMemEx(0x2000A50C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A50C) - Data: 00 00 00 00 returns 0x04 (0000ms, 694678ms total)
  2516. T5690 16917:019 JLINK_ReadMemEx(0x2000A510, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A510) - Data: 00 00 00 00 returns 0x04 (0000ms, 694678ms total)
  2517. T5690 16917:019 JLINK_ReadMemEx(0x2000A514, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A514) - Data: 00 00 2F 64 returns 0x04 (0000ms, 694678ms total)
  2518. T5690 16917:019 JLINK_ReadMemEx(0x2000A518, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A518) - Data: 65 76 69 63 returns 0x04 (0000ms, 694678ms total)
  2519. T5690 16917:019 JLINK_ReadMemEx(0x2000A51C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A51C) - Data: 65 2F 32 39 returns 0x04 (0000ms, 694678ms total)
  2520. T5690 16917:019 JLINK_ReadMemEx(0x2000A520, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A520) - Data: 37 38 37 37 returns 0x04 (0000ms, 694678ms total)
  2521. T5690 16917:028 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001004) - Data: BD 7F 65 04 returns 1 (0002ms, 694680ms total)
  2522. T5690 16917:035 JLINK_ReadMemEx(0x08004AC2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08004AC0) -- Updating C cache (64 bytes @ 0x08004AC0) -- Read from C cache (2 bytes @ 0x08004AC2) - Data: 21 46 returns 0x02 (0003ms, 694683ms total)
  2523. T5690 16917:038 JLINK_ReadMemEx(0x08004AC4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004AC4) - Data: 30 46 00 F0 4B F9 18 A1 30 46 FB F7 22 FC 06 46 ... returns 0x3C (0000ms, 694683ms total)
  2524. T5690 16917:038 JLINK_ReadMemEx(0x08004AC4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AC4) - Data: 30 46 returns 0x02 (0000ms, 694683ms total)
  2525. T5690 16917:038 JLINK_ReadMemEx(0x08004AC4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004AC4) - Data: 30 46 00 F0 4B F9 18 A1 30 46 FB F7 22 FC 06 46 ... returns 0x3C (0000ms, 694683ms total)
  2526. T5690 16917:038 JLINK_ReadMemEx(0x08004AC4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AC4) - Data: 30 46 returns 0x02 (0000ms, 694683ms total)
  2527. T5690 16917:038 JLINK_ReadMemEx(0x08004AC6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AC6) - Data: 00 F0 returns 0x02 (0000ms, 694683ms total)
  2528. T5690 16917:038 JLINK_ReadMemEx(0x08004AC6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AC6) - Data: 00 F0 returns 0x02 (0000ms, 694683ms total)
  2529. T5690 16917:038 JLINK_ReadMemEx(0x08004AC8, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08004B00) -- Updating C cache (64 bytes @ 0x08004B00) -- Read from C cache (60 bytes @ 0x08004AC8) - Data: 4B F9 18 A1 30 46 FB F7 22 FC 06 46 76 1C 30 78 ... returns 0x3C (0004ms, 694687ms total)
  2530. T5690 16917:042 JLINK_ReadMemEx(0x08004AC8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AC8) - Data: 4B F9 returns 0x02 (0000ms, 694687ms total)
  2531. T5690 16917:042 JLINK_ReadMemEx(0x08004ACA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004ACA) - Data: 18 A1 returns 0x02 (0000ms, 694687ms total)
  2532. T5690 16917:042 JLINK_ReadMemEx(0x08004ACC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004ACC) - Data: 30 46 FB F7 22 FC 06 46 76 1C 30 78 5D 28 00 D1 ... returns 0x3C (0000ms, 694687ms total)
  2533. T5690 16917:042 JLINK_ReadMemEx(0x08004ACC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004ACC) - Data: 30 46 returns 0x02 (0000ms, 694687ms total)
  2534. T5690 16917:042 JLINK_ReadMemEx(0x08004ACC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004ACC) - Data: 30 46 FB F7 22 FC 06 46 76 1C 30 78 5D 28 00 D1 ... returns 0x3C (0000ms, 694687ms total)
  2535. T5690 16917:042 JLINK_ReadMemEx(0x08004ACC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004ACC) - Data: 30 46 returns 0x02 (0000ms, 694687ms total)
  2536. T5690 16917:042 JLINK_ReadMemEx(0x08004ACE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004ACE) - Data: FB F7 returns 0x02 (0000ms, 694687ms total)
  2537. T5690 16917:042 JLINK_ReadMemEx(0x08004ACE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004ACE) - Data: FB F7 returns 0x02 (0000ms, 694687ms total)
  2538. T5690 16917:042 JLINK_ReadMemEx(0x08004AD0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004AD0) - Data: 22 FC 06 46 76 1C 30 78 5D 28 00 D1 00 E0 F0 E7 ... returns 0x3C (0000ms, 694687ms total)
  2539. T5690 16917:042 JLINK_ReadMemEx(0x08004AD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AD0) - Data: 22 FC returns 0x02 (0000ms, 694687ms total)
  2540. T5690 16917:042 JLINK_ReadMemEx(0x08004AD2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AD2) - Data: 06 46 returns 0x02 (0000ms, 694687ms total)
  2541. T5690 16917:042 JLINK_ReadMemEx(0x08004AD4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004AD4) - Data: 76 1C 30 78 5D 28 00 D1 00 E0 F0 E7 00 BF E8 69 ... returns 0x3C (0000ms, 694687ms total)
  2542. T5690 16917:042 JLINK_ReadMemEx(0x08004AD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AD4) - Data: 76 1C returns 0x02 (0000ms, 694687ms total)
  2543. T5690 16917:042 JLINK_ReadMemEx(0x08004AD4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004AD4) - Data: 76 1C 30 78 5D 28 00 D1 00 E0 F0 E7 00 BF E8 69 ... returns 0x3C (0000ms, 694687ms total)
  2544. T5690 16917:042 JLINK_ReadMemEx(0x08004AD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AD4) - Data: 76 1C returns 0x02 (0000ms, 694687ms total)
  2545. T5690 16917:042 JLINK_ReadMemEx(0x08004AD6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AD6) - Data: 30 78 returns 0x02 (0000ms, 694687ms total)
  2546. T5AF8 16918:202 JLINK_ReadMemEx(0x08004ACA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004ACA) - Data: 18 A1 returns 0x02 (0000ms, 694687ms total)
  2547. T5AF8 16918:202 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004ACA) -- Simulated returns 0x00 (0002ms, 694689ms total)
  2548. T5AF8 16918:204 JLINK_ReadReg(R15 (PC)) returns 0x08004ACC (0000ms, 694689ms total)
  2549. T5AF8 16918:204 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 694689ms total)
  2550. T5AF8 16918:204 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004ACC) -- Simulated returns 0x00 (0000ms, 694689ms total)
  2551. T5AF8 16918:204 JLINK_ReadReg(R15 (PC)) returns 0x08004ACE (0000ms, 694689ms total)
  2552. T5AF8 16918:204 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 694689ms total)
  2553. T5AF8 16918:204 JLINK_SetBPEx(Addr = 0x08004AD2, Type = 0xFFFFFFF2) returns 0x00000015 (0000ms, 694689ms total)
  2554. T5AF8 16918:204 JLINK_SetBPEx(Addr = 0x08004D60, Type = 0xFFFFFFF2) returns 0x00000016 (0000ms, 694689ms total)
  2555. T5AF8 16918:204 JLINK_SetBPEx(Addr = 0x08004AB6, Type = 0xFFFFFFF2) returns 0x00000017 (0000ms, 694689ms total)
  2556. T5AF8 16918:204 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0016ms, 694705ms total)
  2557. T5AF8 16918:321 JLINK_IsHalted() returns TRUE (0017ms, 694722ms total)
  2558. T5AF8 16918:338 JLINK_Halt() returns 0x00 (0000ms, 694705ms total)
  2559. T5AF8 16918:338 JLINK_IsHalted() returns TRUE (0000ms, 694705ms total)
  2560. T5AF8 16918:338 JLINK_IsHalted() returns TRUE (0000ms, 694705ms total)
  2561. T5AF8 16918:338 JLINK_IsHalted() returns TRUE (0000ms, 694705ms total)
  2562. T5AF8 16918:338 JLINK_ReadReg(R15 (PC)) returns 0x08004AD2 (0000ms, 694705ms total)
  2563. T5AF8 16918:338 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 694705ms total)
  2564. T5AF8 16918:338 JLINK_ClrBPEx(BPHandle = 0x00000015) returns 0x00 (0000ms, 694705ms total)
  2565. T5AF8 16918:338 JLINK_ClrBPEx(BPHandle = 0x00000016) returns 0x00 (0000ms, 694705ms total)
  2566. T5AF8 16918:338 JLINK_ClrBPEx(BPHandle = 0x00000017) returns 0x00 (0000ms, 694705ms total)
  2567. T5AF8 16918:338 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 02 00 00 00 returns 1 (0001ms, 694706ms total)
  2568. T5AF8 16918:339 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00 returns 1 (0002ms, 694708ms total)
  2569. T5AF8 16918:341 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 02 00 00 returns 1 (0002ms, 694710ms total)
  2570. T5AF8 16918:343 JLINK_ReadMemU32(0xE0001048, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001048) - Data: 00 00 00 00 returns 1 (0001ms, 694711ms total)
  2571. T5AF8 16918:344 JLINK_ReadMemU32(0xE0001058, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001058) - Data: 00 00 00 00 returns 1 (0002ms, 694713ms total)
  2572. T5AF8 16918:346 JLINK_ReadMemEx(0x08004AD0, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x08004AC0) -- Updating C cache (128 bytes @ 0x08004AC0) -- Read from C cache (60 bytes @ 0x08004AD0) - Data: 22 FC 06 46 76 1C 30 78 5D 28 00 D1 00 E0 F0 E7 ... returns 0x3C (0006ms, 694719ms total)
  2573. T5AF8 16918:352 JLINK_ReadMemEx(0x08004AD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AD0) - Data: 22 FC returns 0x02 (0000ms, 694719ms total)
  2574. T5AF8 16918:352 JLINK_ReadMemEx(0x08004AD2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AD2) - Data: 06 46 returns 0x02 (0000ms, 694719ms total)
  2575. T5AF8 16918:352 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004AD2) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Simulated returns 0x00 (0001ms, 694720ms total)
  2576. T5AF8 16918:353 JLINK_ReadReg(R15 (PC)) returns 0x08004AD4 (0000ms, 694720ms total)
  2577. T5AF8 16918:353 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 694720ms total)
  2578. T5AF8 16918:353 JLINK_ReadReg(R0) returns 0x6807C86E (0000ms, 694720ms total)
  2579. T5AF8 16918:353 JLINK_ReadReg(R1) returns 0x08004B2C (0000ms, 694720ms total)
  2580. T5AF8 16918:353 JLINK_ReadReg(R2) returns 0x6807C870 (0000ms, 694720ms total)
  2581. T5AF8 16918:353 JLINK_ReadReg(R3) returns 0x08004B2E (0000ms, 694720ms total)
  2582. T5AF8 16918:353 JLINK_ReadReg(R4) returns 0x20011CF8 (0000ms, 694720ms total)
  2583. T5AF8 16918:353 JLINK_ReadReg(R5) returns 0x200105A0 (0000ms, 694720ms total)
  2584. T5AF8 16918:353 JLINK_ReadReg(R6) returns 0x6807C86E (0000ms, 694720ms total)
  2585. T5AF8 16918:353 JLINK_ReadReg(R7) returns 0x6807C803 (0000ms, 694720ms total)
  2586. T5AF8 16918:353 JLINK_ReadReg(R8) returns 0x6807C803 (0000ms, 694720ms total)
  2587. T5AF8 16918:353 JLINK_ReadReg(R9) returns 0x6807C800 (0000ms, 694720ms total)
  2588. T5AF8 16918:353 JLINK_ReadReg(R10) returns 0x10101010 (0001ms, 694721ms total)
  2589. T5AF8 16918:354 JLINK_ReadReg(R11) returns 0x11111111 (0000ms, 694721ms total)
  2590. T5AF8 16918:354 JLINK_ReadReg(R12) returns 0x00000000 (0000ms, 694721ms total)
  2591. T5AF8 16918:354 JLINK_ReadReg(R13 (SP)) returns 0x2000A45C (0000ms, 694721ms total)
  2592. T5AF8 16918:354 JLINK_ReadReg(R14) returns 0x08004AD3 (0000ms, 694721ms total)
  2593. T5AF8 16918:354 JLINK_ReadReg(R15 (PC)) returns 0x08004AD4 (0000ms, 694721ms total)
  2594. T5AF8 16918:354 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 694721ms total)
  2595. T5AF8 16918:354 JLINK_ReadReg(MSP) returns 0x20011CC8 (0000ms, 694721ms total)
  2596. T5AF8 16918:354 JLINK_ReadReg(PSP) returns 0x2000A45C (0000ms, 694721ms total)
  2597. T5AF8 16918:354 JLINK_ReadReg(CFBP) returns 0x02000000 (0000ms, 694721ms total)
  2598. T5690 16918:354 JLINK_ReadMemEx(0x2000A470, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x2000A440) -- Updating C cache (64 bytes @ 0x2000A440) -- Read from C cache (4 bytes @ 0x2000A470) - Data: C3 4C 00 08 returns 0x04 (0003ms, 694724ms total)
  2599. T5690 16918:357 JLINK_ReadMemEx(0x2000A45C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A45C) - Data: A0 05 01 20 returns 0x04 (0001ms, 694725ms total)
  2600. T5690 16918:358 JLINK_ReadMemEx(0x2000A460, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A460) - Data: 00 C8 07 68 returns 0x04 (0000ms, 694725ms total)
  2601. T5690 16918:358 JLINK_ReadMemEx(0x2000A464, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A464) - Data: 01 00 00 00 returns 0x04 (0000ms, 694725ms total)
  2602. T5690 16918:358 JLINK_ReadMemEx(0x2000A468, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A468) - Data: 80 05 01 20 returns 0x04 (0000ms, 694725ms total)
  2603. T5690 16918:358 JLINK_ReadMemEx(0x2000A46C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A46C) - Data: 03 C8 07 68 returns 0x04 (0000ms, 694725ms total)
  2604. T5690 16918:358 JLINK_ReadMemEx(0x2000A470, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A470) - Data: C3 4C 00 08 returns 0x04 (0000ms, 694725ms total)
  2605. T5690 16918:358 JLINK_ReadMemEx(0x2000A490, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x2000A480) -- Updating C cache (64 bytes @ 0x2000A480) -- Read from C cache (4 bytes @ 0x2000A490) - Data: C1 4B 00 08 returns 0x04 (0003ms, 694728ms total)
  2606. T5690 16918:361 JLINK_ReadMemEx(0x2000A474, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A474) - Data: 01 00 00 00 returns 0x04 (0000ms, 694728ms total)
  2607. T5690 16918:361 JLINK_ReadMemEx(0x2000A478, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A478) - Data: 00 C8 07 68 returns 0x04 (0000ms, 694728ms total)
  2608. T5690 16918:361 JLINK_ReadMemEx(0x2000A47C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A47C) - Data: 00 DC 07 68 returns 0x04 (0000ms, 694728ms total)
  2609. T5690 16918:361 JLINK_ReadMemEx(0x2000A480, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A480) - Data: 07 07 07 07 returns 0x04 (0000ms, 694728ms total)
  2610. T5690 16918:361 JLINK_ReadMemEx(0x2000A484, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A484) - Data: 08 08 08 08 returns 0x04 (0000ms, 694728ms total)
  2611. T5690 16918:361 JLINK_ReadMemEx(0x2000A488, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A488) - Data: 09 09 09 09 returns 0x04 (0000ms, 694728ms total)
  2612. T5690 16918:361 JLINK_ReadMemEx(0x2000A48C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A48C) - Data: 10 10 10 10 returns 0x04 (0000ms, 694728ms total)
  2613. T5690 16918:361 JLINK_ReadMemEx(0x2000A490, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A490) - Data: C1 4B 00 08 returns 0x04 (0000ms, 694728ms total)
  2614. T5690 16918:361 JLINK_ReadMemEx(0x2000A4B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B8) - Data: 49 54 00 08 returns 0x04 (0000ms, 694728ms total)
  2615. T5690 16918:361 JLINK_ReadMemEx(0x2000A4A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4A4) - Data: 00 00 00 00 returns 0x04 (0001ms, 694729ms total)
  2616. T5690 16918:362 JLINK_ReadMemEx(0x2000A4A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4A8) - Data: 00 DC 07 68 returns 0x04 (0000ms, 694729ms total)
  2617. T5690 16918:362 JLINK_ReadMemEx(0x2000A4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4AC) - Data: 06 06 06 06 returns 0x04 (0000ms, 694729ms total)
  2618. T5690 16918:362 JLINK_ReadMemEx(0x2000A4B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B0) - Data: 07 07 07 07 returns 0x04 (0000ms, 694729ms total)
  2619. T5690 16918:362 JLINK_ReadMemEx(0x2000A4B4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B4) - Data: 08 08 08 08 returns 0x04 (0000ms, 694729ms total)
  2620. T5690 16918:362 JLINK_ReadMemEx(0x2000A4B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B8) - Data: 49 54 00 08 returns 0x04 (0000ms, 694729ms total)
  2621. T5690 16918:362 JLINK_ReadMemEx(0x2000A4C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x2000A4C0) -- Updating C cache (64 bytes @ 0x2000A4C0) -- Read from C cache (4 bytes @ 0x2000A4C8) - Data: 45 36 00 08 returns 0x04 (0003ms, 694732ms total)
  2622. T5690 16918:365 JLINK_ReadMemEx(0x2000A4BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4BC) - Data: 04 04 04 04 returns 0x04 (0000ms, 694732ms total)
  2623. T5690 16918:365 JLINK_ReadMemEx(0x2000A4C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C0) - Data: 05 05 05 05 returns 0x04 (0000ms, 694732ms total)
  2624. T5690 16918:365 JLINK_ReadMemEx(0x2000A4C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C4) - Data: 06 06 06 06 returns 0x04 (0000ms, 694732ms total)
  2625. T5690 16918:365 JLINK_ReadMemEx(0x2000A4C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C8) - Data: 45 36 00 08 returns 0x04 (0000ms, 694732ms total)
  2626. T5690 16918:365 JLINK_ReadMemEx(0x2000A4E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4E0) - Data: 00 00 5B 07 returns 0x04 (0000ms, 694732ms total)
  2627. T5690 16918:365 JLINK_ReadMemEx(0x2000A4CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4CC) - Data: 00 33 36 2E returns 0x04 (0000ms, 694732ms total)
  2628. T5690 16918:365 JLINK_ReadMemEx(0x2000A4D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4D0) - Data: 31 33 34 2E returns 0x04 (0000ms, 694732ms total)
  2629. T5690 16918:365 JLINK_ReadMemEx(0x2000A4D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4D4) - Data: 32 33 2E 31 returns 0x04 (0000ms, 694732ms total)
  2630. T5690 16918:365 JLINK_ReadMemEx(0x2000A4D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4D8) - Data: 31 00 00 00 returns 0x04 (0000ms, 694732ms total)
  2631. T5690 16918:365 JLINK_ReadMemEx(0x2000A4DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4DC) - Data: 00 00 00 00 returns 0x04 (0000ms, 694732ms total)
  2632. T5690 16918:365 JLINK_ReadMemEx(0x2000A4E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4E0) - Data: 00 00 5B 07 returns 0x04 (0000ms, 694732ms total)
  2633. T5690 16918:392 JLINK_ReadMemEx(0x6807C803, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x6807C803) - Data: 22 64 65 76 69 63 65 5F 31 22 3A 7B 22 73 65 6E ... returns 0x20 (0004ms, 694736ms total)
  2634. T5690 16918:396 JLINK_ReadMemEx(0x6807C86E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x6807C86E) - Data: 7D 2C 7B 22 69 64 65 6E 74 69 66 69 65 72 22 3A ... returns 0x20 (0004ms, 694740ms total)
  2635. T5690 16918:405 JLINK_ReadMemEx(0x6807C803, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x6807C803) - Data: 22 64 65 76 69 63 65 5F 31 22 3A 7B 22 73 65 6E ... returns 0x20 (0004ms, 694744ms total)
  2636. T5690 16918:409 JLINK_ReadMemEx(0x6807C86E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x6807C86E) - Data: 7D 2C 7B 22 69 64 65 6E 74 69 66 69 65 72 22 3A ... returns 0x20 (0004ms, 694748ms total)
  2637. T5690 16918:413 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 01 87 65 04 returns 1 (0000ms, 694748ms total)
  2638. T5690 16918:418 JLINK_ReadMemEx(0x08004AC4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004AC4) - Data: 30 46 00 F0 4B F9 18 A1 30 46 FB F7 22 FC 06 46 ... returns 0x3C (0000ms, 694748ms total)
  2639. T5690 16918:418 JLINK_ReadMemEx(0x08004AC4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AC4) - Data: 30 46 returns 0x02 (0000ms, 694748ms total)
  2640. T5690 16918:418 JLINK_ReadMemEx(0x08004AC6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AC6) - Data: 00 F0 returns 0x02 (0000ms, 694748ms total)
  2641. T5690 16918:418 JLINK_ReadMemEx(0x08004AC6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AC6) - Data: 00 F0 returns 0x02 (0000ms, 694748ms total)
  2642. T5690 16918:418 JLINK_ReadMemEx(0x08004AC8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004AC8) - Data: 4B F9 18 A1 30 46 FB F7 22 FC 06 46 76 1C 30 78 ... returns 0x3C (0000ms, 694748ms total)
  2643. T5690 16918:418 JLINK_ReadMemEx(0x08004AC8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AC8) - Data: 4B F9 returns 0x02 (0000ms, 694748ms total)
  2644. T5690 16918:418 JLINK_ReadMemEx(0x08004ACA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004ACA) - Data: 18 A1 returns 0x02 (0000ms, 694748ms total)
  2645. T5690 16918:418 JLINK_ReadMemEx(0x08004ACC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004ACC) - Data: 30 46 FB F7 22 FC 06 46 76 1C 30 78 5D 28 00 D1 ... returns 0x3C (0000ms, 694748ms total)
  2646. T5690 16918:418 JLINK_ReadMemEx(0x08004ACC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004ACC) - Data: 30 46 returns 0x02 (0000ms, 694748ms total)
  2647. T5690 16918:418 JLINK_ReadMemEx(0x08004ACC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004ACC) - Data: 30 46 FB F7 22 FC 06 46 76 1C 30 78 5D 28 00 D1 ... returns 0x3C (0000ms, 694748ms total)
  2648. T5690 16918:418 JLINK_ReadMemEx(0x08004ACC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004ACC) - Data: 30 46 returns 0x02 (0000ms, 694748ms total)
  2649. T5690 16918:418 JLINK_ReadMemEx(0x08004ACE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004ACE) - Data: FB F7 returns 0x02 (0000ms, 694748ms total)
  2650. T5690 16918:418 JLINK_ReadMemEx(0x08004ACE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004ACE) - Data: FB F7 returns 0x02 (0000ms, 694748ms total)
  2651. T5690 16918:418 JLINK_ReadMemEx(0x08004AD0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004AD0) - Data: 22 FC 06 46 76 1C 30 78 5D 28 00 D1 00 E0 F0 E7 ... returns 0x3C (0000ms, 694748ms total)
  2652. T5690 16918:418 JLINK_ReadMemEx(0x08004AD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AD0) - Data: 22 FC returns 0x02 (0000ms, 694748ms total)
  2653. T5690 16918:418 JLINK_ReadMemEx(0x08004AD2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AD2) - Data: 06 46 returns 0x02 (0000ms, 694748ms total)
  2654. T5690 16918:418 JLINK_ReadMemEx(0x08004AD4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004AD4) - Data: 76 1C 30 78 5D 28 00 D1 00 E0 F0 E7 00 BF E8 69 ... returns 0x3C (0000ms, 694748ms total)
  2655. T5690 16918:418 JLINK_ReadMemEx(0x08004AD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AD4) - Data: 76 1C returns 0x02 (0000ms, 694748ms total)
  2656. T5690 16918:418 JLINK_ReadMemEx(0x08004AD4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004AD4) - Data: 76 1C 30 78 5D 28 00 D1 00 E0 F0 E7 00 BF E8 69 ... returns 0x3C (0000ms, 694748ms total)
  2657. T5690 16918:418 JLINK_ReadMemEx(0x08004AD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AD4) - Data: 76 1C returns 0x02 (0000ms, 694748ms total)
  2658. T5690 16918:418 JLINK_ReadMemEx(0x08004AD6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AD6) - Data: 30 78 returns 0x02 (0000ms, 694748ms total)
  2659. T5690 16922:904 JLINK_ReadMemEx(0x6807C80F, 0x0E00 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(3584 bytes @ 0x6807C80F) - Data: 22 73 65 6E 73 6F 72 4C 69 73 74 22 3A 5B 7B 22 ... returns 0xE00 (0127ms, 694875ms total)
  2660. T5690 16923:032 JLINK_ReadMemEx(0x6807C86E, 0x0E00 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(3584 bytes @ 0x6807C86E) - Data: 7D 2C 7B 22 69 64 65 6E 74 69 66 69 65 72 22 3A ... returns 0xE00 (0126ms, 695001ms total)
  2661. T5690 16923:163 JLINK_ReadMemEx(0x6807C86E, 0x0E00 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(3584 bytes @ 0x6807C86E) - Data: 7D 2C 7B 22 69 64 65 6E 74 69 66 69 65 72 22 3A ... returns 0xE00 (0126ms, 695127ms total)
  2662. T5690 16923:290 JLINK_ReadMemEx(0x6807C86E, 0x0E00 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(3584 bytes @ 0x6807C86E) - Data: 7D 2C 7B 22 69 64 65 6E 74 69 66 69 65 72 22 3A ... returns 0xE00 (0126ms, 695253ms total)
  2663. T5AF8 16926:262 JLINK_ReadMemEx(0x08004AD4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004AD4) - Data: 76 1C 30 78 5D 28 00 D1 00 E0 F0 E7 00 BF E8 69 ... returns 0x3C (0000ms, 695253ms total)
  2664. T5AF8 16926:262 JLINK_ReadMemEx(0x08004AD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AD4) - Data: 76 1C returns 0x02 (0000ms, 695253ms total)
  2665. T5AF8 16926:262 JLINK_ReadMemEx(0x08004AD6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AD6) - Data: 30 78 returns 0x02 (0000ms, 695253ms total)
  2666. T5AF8 16926:262 JLINK_ReadMemEx(0x08004AD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AD4) - Data: 76 1C returns 0x02 (0000ms, 695253ms total)
  2667. T5AF8 16926:262 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004AD4) -- Simulated returns 0x00 (0002ms, 695255ms total)
  2668. T5AF8 16926:264 JLINK_ReadReg(R15 (PC)) returns 0x08004AD6 (0000ms, 695255ms total)
  2669. T5AF8 16926:264 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 695255ms total)
  2670. T5AF8 16926:264 JLINK_ReadReg(R0) returns 0x6807C86E (0000ms, 695255ms total)
  2671. T5AF8 16926:264 JLINK_ReadReg(R1) returns 0x08004B2C (0000ms, 695255ms total)
  2672. T5AF8 16926:264 JLINK_ReadReg(R2) returns 0x6807C870 (0000ms, 695255ms total)
  2673. T5AF8 16926:264 JLINK_ReadReg(R3) returns 0x08004B2E (0000ms, 695255ms total)
  2674. T5AF8 16926:264 JLINK_ReadReg(R4) returns 0x20011CF8 (0000ms, 695255ms total)
  2675. T5AF8 16926:264 JLINK_ReadReg(R5) returns 0x200105A0 (0000ms, 695255ms total)
  2676. T5AF8 16926:264 JLINK_ReadReg(R6) returns 0x6807C86F (0000ms, 695255ms total)
  2677. T5AF8 16926:264 JLINK_ReadReg(R7) returns 0x6807C803 (0000ms, 695255ms total)
  2678. T5AF8 16926:264 JLINK_ReadReg(R8) returns 0x6807C803 (0000ms, 695255ms total)
  2679. T5AF8 16926:264 JLINK_ReadReg(R9) returns 0x6807C800 (0000ms, 695255ms total)
  2680. T5AF8 16926:264 JLINK_ReadReg(R10) returns 0x10101010 (0000ms, 695255ms total)
  2681. T5AF8 16926:264 JLINK_ReadReg(R11) returns 0x11111111 (0000ms, 695255ms total)
  2682. T5AF8 16926:264 JLINK_ReadReg(R12) returns 0x00000000 (0000ms, 695255ms total)
  2683. T5AF8 16926:264 JLINK_ReadReg(R13 (SP)) returns 0x2000A45C (0000ms, 695255ms total)
  2684. T5AF8 16926:264 JLINK_ReadReg(R14) returns 0x08004AD3 (0000ms, 695255ms total)
  2685. T5AF8 16926:264 JLINK_ReadReg(R15 (PC)) returns 0x08004AD6 (0000ms, 695255ms total)
  2686. T5AF8 16926:264 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 695255ms total)
  2687. T5AF8 16926:264 JLINK_ReadReg(MSP) returns 0x20011CC8 (0000ms, 695255ms total)
  2688. T5AF8 16926:264 JLINK_ReadReg(PSP) returns 0x2000A45C (0000ms, 695255ms total)
  2689. T5AF8 16926:264 JLINK_ReadReg(CFBP) returns 0x02000000 (0000ms, 695255ms total)
  2690. T5690 16926:264 JLINK_ReadMemEx(0x2000A470, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A470) - Data: C3 4C 00 08 returns 0x04 (0000ms, 695255ms total)
  2691. T5690 16926:264 JLINK_ReadMemEx(0x2000A45C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A45C) - Data: A0 05 01 20 returns 0x04 (0000ms, 695255ms total)
  2692. T5690 16926:264 JLINK_ReadMemEx(0x2000A460, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A460) - Data: 00 C8 07 68 returns 0x04 (0000ms, 695255ms total)
  2693. T5690 16926:264 JLINK_ReadMemEx(0x2000A464, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A464) - Data: 01 00 00 00 returns 0x04 (0000ms, 695255ms total)
  2694. T5690 16926:264 JLINK_ReadMemEx(0x2000A468, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A468) - Data: 80 05 01 20 returns 0x04 (0000ms, 695255ms total)
  2695. T5690 16926:264 JLINK_ReadMemEx(0x2000A46C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A46C) - Data: 03 C8 07 68 returns 0x04 (0000ms, 695255ms total)
  2696. T5690 16926:264 JLINK_ReadMemEx(0x2000A470, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A470) - Data: C3 4C 00 08 returns 0x04 (0000ms, 695255ms total)
  2697. T5690 16926:264 JLINK_ReadMemEx(0x2000A490, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A490) - Data: C1 4B 00 08 returns 0x04 (0000ms, 695255ms total)
  2698. T5690 16926:264 JLINK_ReadMemEx(0x2000A474, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A474) - Data: 01 00 00 00 returns 0x04 (0000ms, 695255ms total)
  2699. T5690 16926:264 JLINK_ReadMemEx(0x2000A478, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A478) - Data: 00 C8 07 68 returns 0x04 (0000ms, 695255ms total)
  2700. T5690 16926:264 JLINK_ReadMemEx(0x2000A47C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A47C) - Data: 00 DC 07 68 returns 0x04 (0000ms, 695255ms total)
  2701. T5690 16926:264 JLINK_ReadMemEx(0x2000A480, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A480) - Data: 07 07 07 07 returns 0x04 (0001ms, 695256ms total)
  2702. T5690 16926:265 JLINK_ReadMemEx(0x2000A484, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A484) - Data: 08 08 08 08 returns 0x04 (0000ms, 695256ms total)
  2703. T5690 16926:265 JLINK_ReadMemEx(0x2000A488, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A488) - Data: 09 09 09 09 returns 0x04 (0000ms, 695256ms total)
  2704. T5690 16926:265 JLINK_ReadMemEx(0x2000A48C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A48C) - Data: 10 10 10 10 returns 0x04 (0000ms, 695256ms total)
  2705. T5690 16926:265 JLINK_ReadMemEx(0x2000A490, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A490) - Data: C1 4B 00 08 returns 0x04 (0000ms, 695256ms total)
  2706. T5690 16926:265 JLINK_ReadMemEx(0x2000A4B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B8) - Data: 49 54 00 08 returns 0x04 (0000ms, 695256ms total)
  2707. T5690 16926:265 JLINK_ReadMemEx(0x2000A4A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4A4) - Data: 00 00 00 00 returns 0x04 (0000ms, 695256ms total)
  2708. T5690 16926:265 JLINK_ReadMemEx(0x2000A4A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4A8) - Data: 00 DC 07 68 returns 0x04 (0000ms, 695256ms total)
  2709. T5690 16926:265 JLINK_ReadMemEx(0x2000A4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4AC) - Data: 06 06 06 06 returns 0x04 (0000ms, 695256ms total)
  2710. T5690 16926:265 JLINK_ReadMemEx(0x2000A4B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B0) - Data: 07 07 07 07 returns 0x04 (0000ms, 695256ms total)
  2711. T5690 16926:265 JLINK_ReadMemEx(0x2000A4B4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B4) - Data: 08 08 08 08 returns 0x04 (0000ms, 695256ms total)
  2712. T5690 16926:265 JLINK_ReadMemEx(0x2000A4B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B8) - Data: 49 54 00 08 returns 0x04 (0000ms, 695256ms total)
  2713. T5690 16926:265 JLINK_ReadMemEx(0x2000A4C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C8) - Data: 45 36 00 08 returns 0x04 (0000ms, 695256ms total)
  2714. T5690 16926:265 JLINK_ReadMemEx(0x2000A4BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4BC) - Data: 04 04 04 04 returns 0x04 (0000ms, 695256ms total)
  2715. T5690 16926:265 JLINK_ReadMemEx(0x2000A4C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C0) - Data: 05 05 05 05 returns 0x04 (0000ms, 695256ms total)
  2716. T5690 16926:265 JLINK_ReadMemEx(0x2000A4C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C4) - Data: 06 06 06 06 returns 0x04 (0000ms, 695256ms total)
  2717. T5690 16926:265 JLINK_ReadMemEx(0x2000A4C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C8) - Data: 45 36 00 08 returns 0x04 (0000ms, 695256ms total)
  2718. T5690 16926:265 JLINK_ReadMemEx(0x2000A4E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4E0) - Data: 00 00 5B 07 returns 0x04 (0000ms, 695256ms total)
  2719. T5690 16926:265 JLINK_ReadMemEx(0x2000A4CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4CC) - Data: 00 33 36 2E returns 0x04 (0000ms, 695256ms total)
  2720. T5690 16926:265 JLINK_ReadMemEx(0x2000A4D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4D0) - Data: 31 33 34 2E returns 0x04 (0000ms, 695256ms total)
  2721. T5690 16926:265 JLINK_ReadMemEx(0x2000A4D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4D4) - Data: 32 33 2E 31 returns 0x04 (0000ms, 695256ms total)
  2722. T5690 16926:265 JLINK_ReadMemEx(0x2000A4D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4D8) - Data: 31 00 00 00 returns 0x04 (0000ms, 695256ms total)
  2723. T5690 16926:265 JLINK_ReadMemEx(0x2000A4DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4DC) - Data: 00 00 00 00 returns 0x04 (0000ms, 695256ms total)
  2724. T5690 16926:265 JLINK_ReadMemEx(0x2000A4E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4E0) - Data: 00 00 5B 07 returns 0x04 (0000ms, 695256ms total)
  2725. T5690 16926:265 JLINK_ReadMemEx(0x6807C803, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x6807C803) - Data: 22 64 65 76 69 63 65 5F 31 22 3A 7B 22 73 65 6E ... returns 0x20 (0004ms, 695260ms total)
  2726. T5690 16926:269 JLINK_ReadMemEx(0x6807C86F, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x6807C86F) - Data: 2C 7B 22 69 64 65 6E 74 69 66 69 65 72 22 3A 22 ... returns 0x20 (0004ms, 695264ms total)
  2727. T5690 16926:273 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 02 87 65 04 returns 1 (0000ms, 695264ms total)
  2728. T5690 16926:273 JLINK_ReadMemEx(0x6807C86F, 0x0E00 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(3584 bytes @ 0x6807C86F) - Data: 2C 7B 22 69 64 65 6E 74 69 66 69 65 72 22 3A 22 ... returns 0xE00 (0127ms, 695391ms total)
  2729. T5690 16926:407 JLINK_ReadMemEx(0x08004AD4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004AD4) - Data: 76 1C 30 78 5D 28 00 D1 00 E0 F0 E7 00 BF E8 69 ... returns 0x3C (0000ms, 695391ms total)
  2730. T5690 16926:407 JLINK_ReadMemEx(0x08004AD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AD4) - Data: 76 1C returns 0x02 (0000ms, 695391ms total)
  2731. T5690 16926:407 JLINK_ReadMemEx(0x08004AD6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AD6) - Data: 30 78 returns 0x02 (0000ms, 695391ms total)
  2732. T5690 16926:407 JLINK_ReadMemEx(0x08004AD6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AD6) - Data: 30 78 returns 0x02 (0000ms, 695391ms total)
  2733. T5690 16926:407 JLINK_ReadMemEx(0x08004AD8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004AD8) - Data: 5D 28 00 D1 00 E0 F0 E7 00 BF E8 69 08 B9 EC 61 ... returns 0x3C (0000ms, 695391ms total)
  2734. T5690 16926:407 JLINK_ReadMemEx(0x08004AD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AD8) - Data: 5D 28 returns 0x02 (0000ms, 695391ms total)
  2735. T5690 16926:407 JLINK_ReadMemEx(0x08004AD8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004AD8) - Data: 5D 28 00 D1 00 E0 F0 E7 00 BF E8 69 08 B9 EC 61 ... returns 0x3C (0000ms, 695391ms total)
  2736. T5690 16926:407 JLINK_ReadMemEx(0x08004AD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AD8) - Data: 5D 28 returns 0x02 (0000ms, 695391ms total)
  2737. T5690 16926:407 JLINK_ReadMemEx(0x08004ADA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004ADA) - Data: 00 D1 returns 0x02 (0000ms, 695391ms total)
  2738. T5690 16926:407 JLINK_ReadMemEx(0x08004ADA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004ADA) - Data: 00 D1 returns 0x02 (0000ms, 695391ms total)
  2739. T5690 16926:407 JLINK_ReadMemEx(0x08004ADC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004ADC) - Data: 00 E0 F0 E7 00 BF E8 69 08 B9 EC 61 07 E0 E8 69 ... returns 0x3C (0000ms, 695391ms total)
  2740. T5690 16926:407 JLINK_ReadMemEx(0x08004ADC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004ADC) - Data: 00 E0 returns 0x02 (0000ms, 695391ms total)
  2741. T5AF8 16928:321 JLINK_ReadMemEx(0x08004AD6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AD6) - Data: 30 78 returns 0x02 (0000ms, 695391ms total)
  2742. T5AF8 16928:321 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004AD6) -- Not simulated -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU_WriteMem(4 bytes @ 0xE0001004) returns 0x00 (0028ms, 695419ms total)
  2743. T5AF8 16928:349 JLINK_ReadReg(R15 (PC)) returns 0x08004AD8 (0000ms, 695419ms total)
  2744. T5AF8 16928:349 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 695419ms total)
  2745. T5AF8 16928:349 JLINK_Step() -- CPU_ReadMem(64 bytes @ 0x08004AC0) -- Updating C cache (64 bytes @ 0x08004AC0) -- Read from C cache (2 bytes @ 0x08004AD8) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Simulated returns 0x00 (0005ms, 695424ms total)
  2746. T5AF8 16928:354 JLINK_ReadReg(R15 (PC)) returns 0x08004ADA (0000ms, 695424ms total)
  2747. T5AF8 16928:354 JLINK_ReadReg(XPSR) returns 0x81000000 (0000ms, 695424ms total)
  2748. T5AF8 16928:354 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004ADA) -- Simulated returns 0x00 (0000ms, 695424ms total)
  2749. T5AF8 16928:354 JLINK_ReadReg(R15 (PC)) returns 0x08004ADE (0000ms, 695424ms total)
  2750. T5AF8 16928:354 JLINK_ReadReg(XPSR) returns 0x81000000 (0000ms, 695424ms total)
  2751. T5AF8 16928:354 JLINK_ReadReg(R0) returns 0x0000002C (0000ms, 695424ms total)
  2752. T5AF8 16928:354 JLINK_ReadReg(R1) returns 0x08004B2C (0000ms, 695424ms total)
  2753. T5AF8 16928:354 JLINK_ReadReg(R2) returns 0x6807C870 (0000ms, 695424ms total)
  2754. T5AF8 16928:354 JLINK_ReadReg(R3) returns 0x08004B2E (0000ms, 695424ms total)
  2755. T5AF8 16928:354 JLINK_ReadReg(R4) returns 0x20011CF8 (0000ms, 695424ms total)
  2756. T5AF8 16928:354 JLINK_ReadReg(R5) returns 0x200105A0 (0000ms, 695424ms total)
  2757. T5AF8 16928:354 JLINK_ReadReg(R6) returns 0x6807C86F (0000ms, 695424ms total)
  2758. T5AF8 16928:354 JLINK_ReadReg(R7) returns 0x6807C803 (0000ms, 695424ms total)
  2759. T5AF8 16928:354 JLINK_ReadReg(R8) returns 0x6807C803 (0000ms, 695424ms total)
  2760. T5AF8 16928:354 JLINK_ReadReg(R9) returns 0x6807C800 (0000ms, 695424ms total)
  2761. T5AF8 16928:354 JLINK_ReadReg(R10) returns 0x10101010 (0000ms, 695424ms total)
  2762. T5AF8 16928:354 JLINK_ReadReg(R11) returns 0x11111111 (0000ms, 695424ms total)
  2763. T5AF8 16928:354 JLINK_ReadReg(R12) returns 0x00000000 (0000ms, 695424ms total)
  2764. T5AF8 16928:354 JLINK_ReadReg(R13 (SP)) returns 0x2000A45C (0000ms, 695424ms total)
  2765. T5AF8 16928:354 JLINK_ReadReg(R14) returns 0x08004AD3 (0000ms, 695424ms total)
  2766. T5AF8 16928:354 JLINK_ReadReg(R15 (PC)) returns 0x08004ADE (0001ms, 695425ms total)
  2767. T5AF8 16928:355 JLINK_ReadReg(XPSR) returns 0x81000000 (0000ms, 695425ms total)
  2768. T5AF8 16928:355 JLINK_ReadReg(MSP) returns 0x20011CC8 (0000ms, 695425ms total)
  2769. T5AF8 16928:355 JLINK_ReadReg(PSP) returns 0x2000A45C (0000ms, 695425ms total)
  2770. T5AF8 16928:355 JLINK_ReadReg(CFBP) returns 0x02000000 (0000ms, 695425ms total)
  2771. T5690 16928:355 JLINK_ReadMemEx(0x2000A470, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x2000A440) -- Updating C cache (64 bytes @ 0x2000A440) -- Read from C cache (4 bytes @ 0x2000A470) - Data: C3 4C 00 08 returns 0x04 (0003ms, 695428ms total)
  2772. T5690 16928:358 JLINK_ReadMemEx(0x2000A45C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A45C) - Data: A0 05 01 20 returns 0x04 (0001ms, 695429ms total)
  2773. T5690 16928:359 JLINK_ReadMemEx(0x2000A460, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A460) - Data: 00 C8 07 68 returns 0x04 (0000ms, 695429ms total)
  2774. T5690 16928:359 JLINK_ReadMemEx(0x2000A464, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A464) - Data: 01 00 00 00 returns 0x04 (0000ms, 695429ms total)
  2775. T5690 16928:359 JLINK_ReadMemEx(0x2000A468, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A468) - Data: 80 05 01 20 returns 0x04 (0000ms, 695429ms total)
  2776. T5690 16928:359 JLINK_ReadMemEx(0x2000A46C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A46C) - Data: 03 C8 07 68 returns 0x04 (0000ms, 695429ms total)
  2777. T5690 16928:359 JLINK_ReadMemEx(0x2000A470, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A470) - Data: C3 4C 00 08 returns 0x04 (0000ms, 695429ms total)
  2778. T5690 16928:359 JLINK_ReadMemEx(0x2000A490, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x2000A480) -- Updating C cache (64 bytes @ 0x2000A480) -- Read from C cache (4 bytes @ 0x2000A490) - Data: C1 4B 00 08 returns 0x04 (0003ms, 695432ms total)
  2779. T5690 16928:362 JLINK_ReadMemEx(0x2000A474, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A474) - Data: 01 00 00 00 returns 0x04 (0000ms, 695432ms total)
  2780. T5690 16928:362 JLINK_ReadMemEx(0x2000A478, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A478) - Data: 00 C8 07 68 returns 0x04 (0000ms, 695432ms total)
  2781. T5690 16928:362 JLINK_ReadMemEx(0x2000A47C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A47C) - Data: 00 DC 07 68 returns 0x04 (0000ms, 695432ms total)
  2782. T5690 16928:362 JLINK_ReadMemEx(0x2000A480, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A480) - Data: 07 07 07 07 returns 0x04 (0000ms, 695432ms total)
  2783. T5690 16928:362 JLINK_ReadMemEx(0x2000A484, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A484) - Data: 08 08 08 08 returns 0x04 (0000ms, 695432ms total)
  2784. T5690 16928:362 JLINK_ReadMemEx(0x2000A488, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A488) - Data: 09 09 09 09 returns 0x04 (0000ms, 695432ms total)
  2785. T5690 16928:362 JLINK_ReadMemEx(0x2000A48C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A48C) - Data: 10 10 10 10 returns 0x04 (0000ms, 695432ms total)
  2786. T5690 16928:362 JLINK_ReadMemEx(0x2000A490, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A490) - Data: C1 4B 00 08 returns 0x04 (0000ms, 695432ms total)
  2787. T5690 16928:362 JLINK_ReadMemEx(0x2000A4B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B8) - Data: 49 54 00 08 returns 0x04 (0000ms, 695432ms total)
  2788. T5690 16928:362 JLINK_ReadMemEx(0x2000A4A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4A4) - Data: 00 00 00 00 returns 0x04 (0000ms, 695432ms total)
  2789. T5690 16928:362 JLINK_ReadMemEx(0x2000A4A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4A8) - Data: 00 DC 07 68 returns 0x04 (0000ms, 695432ms total)
  2790. T5690 16928:362 JLINK_ReadMemEx(0x2000A4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4AC) - Data: 06 06 06 06 returns 0x04 (0001ms, 695433ms total)
  2791. T5690 16928:363 JLINK_ReadMemEx(0x2000A4B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B0) - Data: 07 07 07 07 returns 0x04 (0000ms, 695433ms total)
  2792. T5690 16928:363 JLINK_ReadMemEx(0x2000A4B4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B4) - Data: 08 08 08 08 returns 0x04 (0000ms, 695433ms total)
  2793. T5690 16928:363 JLINK_ReadMemEx(0x2000A4B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B8) - Data: 49 54 00 08 returns 0x04 (0000ms, 695433ms total)
  2794. T5690 16928:363 JLINK_ReadMemEx(0x2000A4C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x2000A4C0) -- Updating C cache (64 bytes @ 0x2000A4C0) -- Read from C cache (4 bytes @ 0x2000A4C8) - Data: 45 36 00 08 returns 0x04 (0003ms, 695436ms total)
  2795. T5690 16928:366 JLINK_ReadMemEx(0x2000A4BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4BC) - Data: 04 04 04 04 returns 0x04 (0000ms, 695436ms total)
  2796. T5690 16928:366 JLINK_ReadMemEx(0x2000A4C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C0) - Data: 05 05 05 05 returns 0x04 (0000ms, 695436ms total)
  2797. T5690 16928:366 JLINK_ReadMemEx(0x2000A4C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C4) - Data: 06 06 06 06 returns 0x04 (0000ms, 695436ms total)
  2798. T5690 16928:366 JLINK_ReadMemEx(0x2000A4C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C8) - Data: 45 36 00 08 returns 0x04 (0000ms, 695436ms total)
  2799. T5690 16928:366 JLINK_ReadMemEx(0x2000A4E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4E0) - Data: 00 00 5B 07 returns 0x04 (0000ms, 695436ms total)
  2800. T5690 16928:366 JLINK_ReadMemEx(0x2000A4CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4CC) - Data: 00 33 36 2E returns 0x04 (0000ms, 695436ms total)
  2801. T5690 16928:366 JLINK_ReadMemEx(0x2000A4D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4D0) - Data: 31 33 34 2E returns 0x04 (0000ms, 695436ms total)
  2802. T5690 16928:366 JLINK_ReadMemEx(0x2000A4D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4D4) - Data: 32 33 2E 31 returns 0x04 (0000ms, 695436ms total)
  2803. T5690 16928:366 JLINK_ReadMemEx(0x2000A4D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4D8) - Data: 31 00 00 00 returns 0x04 (0000ms, 695436ms total)
  2804. T5690 16928:366 JLINK_ReadMemEx(0x2000A4DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4DC) - Data: 00 00 00 00 returns 0x04 (0000ms, 695436ms total)
  2805. T5690 16928:366 JLINK_ReadMemEx(0x2000A4E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4E0) - Data: 00 00 5B 07 returns 0x04 (0000ms, 695436ms total)
  2806. T5690 16928:366 JLINK_ReadMemEx(0x6807C803, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x6807C803) - Data: 22 64 65 76 69 63 65 5F 31 22 3A 7B 22 73 65 6E ... returns 0x20 (0005ms, 695441ms total)
  2807. T5690 16928:371 JLINK_ReadMemEx(0x6807C86F, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x6807C86F) - Data: 2C 7B 22 69 64 65 6E 74 69 66 69 65 72 22 3A 22 ... returns 0x20 (0004ms, 695445ms total)
  2808. T5690 16928:376 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 0A 87 65 04 returns 1 (0000ms, 695445ms total)
  2809. T5690 16928:376 JLINK_ReadMemEx(0x6807C86F, 0x0E00 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(3584 bytes @ 0x6807C86F) - Data: 2C 7B 22 69 64 65 6E 74 69 66 69 65 72 22 3A 22 ... returns 0xE00 (0127ms, 695572ms total)
  2810. T5690 16928:512 JLINK_ReadMemEx(0x08004ADC, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08004B00) -- Updating C cache (64 bytes @ 0x08004B00) -- Read from C cache (60 bytes @ 0x08004ADC) - Data: 00 E0 F0 E7 00 BF E8 69 08 B9 EC 61 07 E0 E8 69 ... returns 0x3C (0004ms, 695576ms total)
  2811. T5690 16928:516 JLINK_ReadMemEx(0x08004ADC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004ADC) - Data: 00 E0 returns 0x02 (0000ms, 695576ms total)
  2812. T5690 16928:516 JLINK_ReadMemEx(0x08004ADE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004ADE) - Data: F0 E7 returns 0x02 (0000ms, 695576ms total)
  2813. T5AF8 16930:146 JLINK_ReadMemEx(0x08004ADE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004ADE) - Data: F0 E7 returns 0x02 (0000ms, 695576ms total)
  2814. T5AF8 16930:146 JLINK_ReadMemEx(0x08004AE0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004AE0) - Data: 00 BF E8 69 08 B9 EC 61 07 E0 E8 69 00 E0 C0 69 ... returns 0x3C (0000ms, 695576ms total)
  2815. T5AF8 16930:146 JLINK_ReadMemEx(0x08004AE0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AE0) - Data: 00 BF returns 0x02 (0000ms, 695576ms total)
  2816. T5AF8 16930:146 JLINK_ReadMemEx(0x08004ADE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004ADE) - Data: F0 E7 returns 0x02 (0000ms, 695576ms total)
  2817. T5AF8 16930:146 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004ADE) -- Simulated returns 0x00 (0001ms, 695577ms total)
  2818. T5AF8 16930:147 JLINK_ReadReg(R15 (PC)) returns 0x08004AC2 (0000ms, 695577ms total)
  2819. T5AF8 16930:147 JLINK_ReadReg(XPSR) returns 0x81000000 (0000ms, 695577ms total)
  2820. T5AF8 16930:147 JLINK_ReadReg(R0) returns 0x0000002C (0000ms, 695577ms total)
  2821. T5AF8 16930:147 JLINK_ReadReg(R1) returns 0x08004B2C (0000ms, 695577ms total)
  2822. T5AF8 16930:147 JLINK_ReadReg(R2) returns 0x6807C870 (0000ms, 695577ms total)
  2823. T5AF8 16930:147 JLINK_ReadReg(R3) returns 0x08004B2E (0000ms, 695577ms total)
  2824. T5AF8 16930:147 JLINK_ReadReg(R4) returns 0x20011CF8 (0000ms, 695577ms total)
  2825. T5AF8 16930:147 JLINK_ReadReg(R5) returns 0x200105A0 (0000ms, 695577ms total)
  2826. T5AF8 16930:147 JLINK_ReadReg(R6) returns 0x6807C86F (0000ms, 695577ms total)
  2827. T5AF8 16930:147 JLINK_ReadReg(R7) returns 0x6807C803 (0000ms, 695577ms total)
  2828. T5AF8 16930:148 JLINK_ReadReg(R8) returns 0x6807C803 (0000ms, 695577ms total)
  2829. T5AF8 16930:148 JLINK_ReadReg(R9) returns 0x6807C800 (0000ms, 695577ms total)
  2830. T5AF8 16930:148 JLINK_ReadReg(R10) returns 0x10101010 (0000ms, 695577ms total)
  2831. T5AF8 16930:148 JLINK_ReadReg(R11) returns 0x11111111 (0000ms, 695577ms total)
  2832. T5AF8 16930:148 JLINK_ReadReg(R12) returns 0x00000000 (0000ms, 695577ms total)
  2833. T5AF8 16930:148 JLINK_ReadReg(R13 (SP)) returns 0x2000A45C (0000ms, 695577ms total)
  2834. T5AF8 16930:148 JLINK_ReadReg(R14) returns 0x08004AD3 (0000ms, 695577ms total)
  2835. T5AF8 16930:148 JLINK_ReadReg(R15 (PC)) returns 0x08004AC2 (0000ms, 695577ms total)
  2836. T5AF8 16930:148 JLINK_ReadReg(XPSR) returns 0x81000000 (0000ms, 695577ms total)
  2837. T5AF8 16930:148 JLINK_ReadReg(MSP) returns 0x20011CC8 (0000ms, 695577ms total)
  2838. T5AF8 16930:148 JLINK_ReadReg(PSP) returns 0x2000A45C (0000ms, 695577ms total)
  2839. T5AF8 16930:148 JLINK_ReadReg(CFBP) returns 0x02000000 (0000ms, 695577ms total)
  2840. T5690 16930:148 JLINK_ReadMemEx(0x2000A470, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A470) - Data: C3 4C 00 08 returns 0x04 (0000ms, 695577ms total)
  2841. T5690 16930:148 JLINK_ReadMemEx(0x2000A45C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A45C) - Data: A0 05 01 20 returns 0x04 (0000ms, 695577ms total)
  2842. T5690 16930:148 JLINK_ReadMemEx(0x2000A460, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A460) - Data: 00 C8 07 68 returns 0x04 (0000ms, 695577ms total)
  2843. T5690 16930:148 JLINK_ReadMemEx(0x2000A464, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A464) - Data: 01 00 00 00 returns 0x04 (0000ms, 695577ms total)
  2844. T5690 16930:148 JLINK_ReadMemEx(0x2000A468, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A468) - Data: 80 05 01 20 returns 0x04 (0000ms, 695577ms total)
  2845. T5690 16930:148 JLINK_ReadMemEx(0x2000A46C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A46C) - Data: 03 C8 07 68 returns 0x04 (0000ms, 695577ms total)
  2846. T5690 16930:148 JLINK_ReadMemEx(0x2000A470, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A470) - Data: C3 4C 00 08 returns 0x04 (0000ms, 695577ms total)
  2847. T5690 16930:148 JLINK_ReadMemEx(0x2000A490, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A490) - Data: C1 4B 00 08 returns 0x04 (0000ms, 695577ms total)
  2848. T5690 16930:148 JLINK_ReadMemEx(0x2000A474, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A474) - Data: 01 00 00 00 returns 0x04 (0000ms, 695577ms total)
  2849. T5690 16930:148 JLINK_ReadMemEx(0x2000A478, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A478) - Data: 00 C8 07 68 returns 0x04 (0000ms, 695577ms total)
  2850. T5690 16930:148 JLINK_ReadMemEx(0x2000A47C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A47C) - Data: 00 DC 07 68 returns 0x04 (0000ms, 695577ms total)
  2851. T5690 16930:148 JLINK_ReadMemEx(0x2000A480, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A480) - Data: 07 07 07 07 returns 0x04 (0000ms, 695577ms total)
  2852. T5690 16930:148 JLINK_ReadMemEx(0x2000A484, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A484) - Data: 08 08 08 08 returns 0x04 (0000ms, 695577ms total)
  2853. T5690 16930:148 JLINK_ReadMemEx(0x2000A488, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A488) - Data: 09 09 09 09 returns 0x04 (0000ms, 695577ms total)
  2854. T5690 16930:148 JLINK_ReadMemEx(0x2000A48C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A48C) - Data: 10 10 10 10 returns 0x04 (0000ms, 695577ms total)
  2855. T5690 16930:148 JLINK_ReadMemEx(0x2000A490, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A490) - Data: C1 4B 00 08 returns 0x04 (0000ms, 695577ms total)
  2856. T5690 16930:148 JLINK_ReadMemEx(0x2000A4B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B8) - Data: 49 54 00 08 returns 0x04 (0000ms, 695577ms total)
  2857. T5690 16930:148 JLINK_ReadMemEx(0x2000A4A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4A4) - Data: 00 00 00 00 returns 0x04 (0000ms, 695577ms total)
  2858. T5690 16930:148 JLINK_ReadMemEx(0x2000A4A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4A8) - Data: 00 DC 07 68 returns 0x04 (0000ms, 695577ms total)
  2859. T5690 16930:148 JLINK_ReadMemEx(0x2000A4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4AC) - Data: 06 06 06 06 returns 0x04 (0000ms, 695577ms total)
  2860. T5690 16930:148 JLINK_ReadMemEx(0x2000A4B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B0) - Data: 07 07 07 07 returns 0x04 (0000ms, 695577ms total)
  2861. T5690 16930:148 JLINK_ReadMemEx(0x2000A4B4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B4) - Data: 08 08 08 08 returns 0x04 (0000ms, 695577ms total)
  2862. T5690 16930:148 JLINK_ReadMemEx(0x2000A4B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B8) - Data: 49 54 00 08 returns 0x04 (0000ms, 695577ms total)
  2863. T5690 16930:148 JLINK_ReadMemEx(0x2000A4C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C8) - Data: 45 36 00 08 returns 0x04 (0000ms, 695577ms total)
  2864. T5690 16930:148 JLINK_ReadMemEx(0x2000A4BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4BC) - Data: 04 04 04 04 returns 0x04 (0000ms, 695577ms total)
  2865. T5690 16930:148 JLINK_ReadMemEx(0x2000A4C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C0) - Data: 05 05 05 05 returns 0x04 (0000ms, 695577ms total)
  2866. T5690 16930:148 JLINK_ReadMemEx(0x2000A4C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C4) - Data: 06 06 06 06 returns 0x04 (0000ms, 695577ms total)
  2867. T5690 16930:148 JLINK_ReadMemEx(0x2000A4C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C8) - Data: 45 36 00 08 returns 0x04 (0000ms, 695577ms total)
  2868. T5690 16930:148 JLINK_ReadMemEx(0x2000A4E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4E0) - Data: 00 00 5B 07 returns 0x04 (0000ms, 695577ms total)
  2869. T5690 16930:148 JLINK_ReadMemEx(0x2000A4CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4CC) - Data: 00 33 36 2E returns 0x04 (0000ms, 695577ms total)
  2870. T5690 16930:148 JLINK_ReadMemEx(0x2000A4D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4D0) - Data: 31 33 34 2E returns 0x04 (0000ms, 695577ms total)
  2871. T5690 16930:148 JLINK_ReadMemEx(0x2000A4D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4D4) - Data: 32 33 2E 31 returns 0x04 (0000ms, 695577ms total)
  2872. T5690 16930:148 JLINK_ReadMemEx(0x2000A4D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4D8) - Data: 31 00 00 00 returns 0x04 (0000ms, 695577ms total)
  2873. T5690 16930:148 JLINK_ReadMemEx(0x2000A4DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4DC) - Data: 00 00 00 00 returns 0x04 (0000ms, 695577ms total)
  2874. T5690 16930:148 JLINK_ReadMemEx(0x2000A4E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4E0) - Data: 00 00 5B 07 returns 0x04 (0000ms, 695577ms total)
  2875. T5690 16930:148 JLINK_ReadMemEx(0x6807C803, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x6807C803) - Data: 22 64 65 76 69 63 65 5F 31 22 3A 7B 22 73 65 6E ... returns 0x20 (0005ms, 695582ms total)
  2876. T5690 16930:153 JLINK_ReadMemEx(0x6807C86F, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x6807C86F) - Data: 2C 7B 22 69 64 65 6E 74 69 66 69 65 72 22 3A 22 ... returns 0x20 (0003ms, 695585ms total)
  2877. T5690 16930:157 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 0B 87 65 04 returns 1 (0000ms, 695585ms total)
  2878. T5690 16930:157 JLINK_ReadMemEx(0x6807C86F, 0x0E00 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(3584 bytes @ 0x6807C86F) - Data: 2C 7B 22 69 64 65 6E 74 69 66 69 65 72 22 3A 22 ... returns 0xE00 (0127ms, 695712ms total)
  2879. T5690 16930:291 JLINK_ReadMemEx(0x08004AC0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004AC0) - Data: 0D E0 21 46 30 46 00 F0 4B F9 18 A1 30 46 FB F7 ... returns 0x3C (0000ms, 695712ms total)
  2880. T5690 16930:291 JLINK_ReadMemEx(0x08004AC0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AC0) - Data: 0D E0 returns 0x02 (0000ms, 695712ms total)
  2881. T5690 16930:291 JLINK_ReadMemEx(0x08004AC2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AC2) - Data: 21 46 returns 0x02 (0000ms, 695712ms total)
  2882. T5690 16930:291 JLINK_ReadMemEx(0x08004AC2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AC2) - Data: 21 46 returns 0x02 (0000ms, 695712ms total)
  2883. T5690 16930:291 JLINK_ReadMemEx(0x08004AC4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004AC4) - Data: 30 46 00 F0 4B F9 18 A1 30 46 FB F7 22 FC 06 46 ... returns 0x3C (0000ms, 695712ms total)
  2884. T5690 16930:291 JLINK_ReadMemEx(0x08004AC4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AC4) - Data: 30 46 returns 0x02 (0000ms, 695712ms total)
  2885. T5690 16930:291 JLINK_ReadMemEx(0x08004AC4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004AC4) - Data: 30 46 00 F0 4B F9 18 A1 30 46 FB F7 22 FC 06 46 ... returns 0x3C (0000ms, 695712ms total)
  2886. T5690 16930:291 JLINK_ReadMemEx(0x08004AC4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AC4) - Data: 30 46 returns 0x02 (0000ms, 695712ms total)
  2887. T5690 16930:291 JLINK_ReadMemEx(0x08004AC6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AC6) - Data: 00 F0 returns 0x02 (0000ms, 695712ms total)
  2888. T5690 16930:291 JLINK_ReadMemEx(0x08004AC6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AC6) - Data: 00 F0 returns 0x02 (0000ms, 695712ms total)
  2889. T5690 16930:291 JLINK_ReadMemEx(0x08004AC8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004AC8) - Data: 4B F9 18 A1 30 46 FB F7 22 FC 06 46 76 1C 30 78 ... returns 0x3C (0000ms, 695712ms total)
  2890. T5690 16930:291 JLINK_ReadMemEx(0x08004AC8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AC8) - Data: 4B F9 returns 0x02 (0000ms, 695712ms total)
  2891. T5690 16930:291 JLINK_ReadMemEx(0x08004ACA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004ACA) - Data: 18 A1 returns 0x02 (0000ms, 695712ms total)
  2892. T5690 16930:291 JLINK_ReadMemEx(0x08004ACC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004ACC) - Data: 30 46 FB F7 22 FC 06 46 76 1C 30 78 5D 28 00 D1 ... returns 0x3C (0000ms, 695712ms total)
  2893. T5690 16930:291 JLINK_ReadMemEx(0x08004ACC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004ACC) - Data: 30 46 returns 0x02 (0000ms, 695712ms total)
  2894. T5690 16930:291 JLINK_ReadMemEx(0x08004ACC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004ACC) - Data: 30 46 FB F7 22 FC 06 46 76 1C 30 78 5D 28 00 D1 ... returns 0x3C (0000ms, 695712ms total)
  2895. T5690 16930:291 JLINK_ReadMemEx(0x08004ACC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004ACC) - Data: 30 46 returns 0x02 (0000ms, 695712ms total)
  2896. T5690 16930:291 JLINK_ReadMemEx(0x08004ACE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004ACE) - Data: FB F7 returns 0x02 (0000ms, 695712ms total)
  2897. T5690 16930:291 JLINK_ReadMemEx(0x08004ACE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004ACE) - Data: FB F7 returns 0x02 (0000ms, 695712ms total)
  2898. T5690 16930:291 JLINK_ReadMemEx(0x08004AD0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004AD0) - Data: 22 FC 06 46 76 1C 30 78 5D 28 00 D1 00 E0 F0 E7 ... returns 0x3C (0000ms, 695712ms total)
  2899. T5690 16930:291 JLINK_ReadMemEx(0x08004AD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AD0) - Data: 22 FC returns 0x02 (0000ms, 695712ms total)
  2900. T5AF8 16935:473 JLINK_ReadMemEx(0x08004AC2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AC2) - Data: 21 46 returns 0x02 (0000ms, 695712ms total)
  2901. T5AF8 16935:473 JLINK_SetBPEx(Addr = 0x08004D60, Type = 0xFFFFFFF2) returns 0x00000018 (0000ms, 695712ms total)
  2902. T5AF8 16935:473 JLINK_SetBPEx(Addr = 0x08004AB6, Type = 0xFFFFFFF2) returns 0x00000019 (0000ms, 695712ms total)
  2903. T5AF8 16935:473 JLINK_SetBPEx(Addr = 0x08004ADC, Type = 0xFFFFFFF2) returns 0x0000001A (0000ms, 695712ms total)
  2904. T5AF8 16935:473 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0015ms, 695727ms total)
  2905. T5AF8 16935:589 JLINK_IsHalted() returns TRUE (0016ms, 695743ms total)
  2906. T5AF8 16935:605 JLINK_Halt() returns 0x00 (0000ms, 695727ms total)
  2907. T5AF8 16935:605 JLINK_IsHalted() returns TRUE (0000ms, 695727ms total)
  2908. T5AF8 16935:605 JLINK_IsHalted() returns TRUE (0000ms, 695727ms total)
  2909. T5AF8 16935:605 JLINK_IsHalted() returns TRUE (0000ms, 695727ms total)
  2910. T5AF8 16935:605 JLINK_ReadReg(R15 (PC)) returns 0x08004D60 (0000ms, 695727ms total)
  2911. T5AF8 16935:605 JLINK_ReadReg(XPSR) returns 0x81000000 (0000ms, 695727ms total)
  2912. T5AF8 16935:605 JLINK_ClrBPEx(BPHandle = 0x00000018) returns 0x00 (0000ms, 695727ms total)
  2913. T5AF8 16935:605 JLINK_ClrBPEx(BPHandle = 0x00000019) returns 0x00 (0000ms, 695727ms total)
  2914. T5AF8 16935:605 JLINK_ClrBPEx(BPHandle = 0x0000001A) returns 0x00 (0000ms, 695727ms total)
  2915. T5AF8 16935:605 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 02 00 00 00 returns 1 (0002ms, 695729ms total)
  2916. T5AF8 16935:607 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00 returns 1 (0002ms, 695731ms total)
  2917. T5AF8 16935:609 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 02 00 00 returns 1 (0002ms, 695733ms total)
  2918. T5AF8 16935:611 JLINK_ReadMemU32(0xE0001048, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001048) - Data: 00 00 00 00 returns 1 (0002ms, 695735ms total)
  2919. T5AF8 16935:613 JLINK_ReadMemU32(0xE0001058, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001058) - Data: 00 00 00 00 returns 1 (0002ms, 695737ms total)
  2920. T5AF8 16935:615 JLINK_ReadReg(R0) returns 0x6807C86F (0000ms, 695737ms total)
  2921. T5AF8 16935:615 JLINK_ReadReg(R1) returns 0x20011CF8 (0000ms, 695737ms total)
  2922. T5AF8 16935:615 JLINK_ReadReg(R2) returns 0x6807C870 (0000ms, 695737ms total)
  2923. T5AF8 16935:615 JLINK_ReadReg(R3) returns 0x08004B2E (0000ms, 695737ms total)
  2924. T5AF8 16935:615 JLINK_ReadReg(R4) returns 0x20011CF8 (0000ms, 695737ms total)
  2925. T5AF8 16935:615 JLINK_ReadReg(R5) returns 0x200105A0 (0000ms, 695737ms total)
  2926. T5AF8 16935:615 JLINK_ReadReg(R6) returns 0x6807C86F (0000ms, 695737ms total)
  2927. T5AF8 16935:615 JLINK_ReadReg(R7) returns 0x6807C803 (0000ms, 695737ms total)
  2928. T5AF8 16935:615 JLINK_ReadReg(R8) returns 0x6807C803 (0000ms, 695737ms total)
  2929. T5AF8 16935:615 JLINK_ReadReg(R9) returns 0x6807C800 (0000ms, 695737ms total)
  2930. T5AF8 16935:615 JLINK_ReadReg(R10) returns 0x10101010 (0000ms, 695737ms total)
  2931. T5AF8 16935:615 JLINK_ReadReg(R11) returns 0x11111111 (0000ms, 695737ms total)
  2932. T5AF8 16935:615 JLINK_ReadReg(R12) returns 0x00000000 (0000ms, 695737ms total)
  2933. T5AF8 16935:615 JLINK_ReadReg(R13 (SP)) returns 0x2000A45C (0000ms, 695737ms total)
  2934. T5AF8 16935:615 JLINK_ReadReg(R14) returns 0x08004ACB (0000ms, 695737ms total)
  2935. T5AF8 16935:615 JLINK_ReadReg(R15 (PC)) returns 0x08004D60 (0000ms, 695737ms total)
  2936. T5AF8 16935:615 JLINK_ReadReg(XPSR) returns 0x81000000 (0000ms, 695737ms total)
  2937. T5AF8 16935:615 JLINK_ReadReg(MSP) returns 0x20011CC8 (0000ms, 695737ms total)
  2938. T5AF8 16935:615 JLINK_ReadReg(PSP) returns 0x2000A45C (0000ms, 695737ms total)
  2939. T5AF8 16935:615 JLINK_ReadReg(CFBP) returns 0x02000000 (0000ms, 695737ms total)
  2940. T5690 16935:615 JLINK_ReadMemEx(0x2000A470, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x2000A440) -- Updating C cache (64 bytes @ 0x2000A440) -- Read from C cache (4 bytes @ 0x2000A470) - Data: C3 4C 00 08 returns 0x04 (0004ms, 695741ms total)
  2941. T5690 16935:619 JLINK_ReadMemEx(0x2000A45C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A45C) - Data: A0 05 01 20 returns 0x04 (0000ms, 695741ms total)
  2942. T5690 16935:619 JLINK_ReadMemEx(0x2000A460, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A460) - Data: 00 C8 07 68 returns 0x04 (0000ms, 695741ms total)
  2943. T5690 16935:619 JLINK_ReadMemEx(0x2000A464, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A464) - Data: 01 00 00 00 returns 0x04 (0000ms, 695741ms total)
  2944. T5690 16935:619 JLINK_ReadMemEx(0x2000A468, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A468) - Data: 80 05 01 20 returns 0x04 (0000ms, 695741ms total)
  2945. T5690 16935:619 JLINK_ReadMemEx(0x2000A46C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A46C) - Data: 03 C8 07 68 returns 0x04 (0000ms, 695741ms total)
  2946. T5690 16935:619 JLINK_ReadMemEx(0x2000A470, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A470) - Data: C3 4C 00 08 returns 0x04 (0000ms, 695741ms total)
  2947. T5690 16935:619 JLINK_ReadMemEx(0x2000A490, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x2000A480) -- Updating C cache (64 bytes @ 0x2000A480) -- Read from C cache (4 bytes @ 0x2000A490) - Data: C1 4B 00 08 returns 0x04 (0004ms, 695745ms total)
  2948. T5690 16935:623 JLINK_ReadMemEx(0x2000A474, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A474) - Data: 01 00 00 00 returns 0x04 (0000ms, 695745ms total)
  2949. T5690 16935:623 JLINK_ReadMemEx(0x2000A478, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A478) - Data: 00 C8 07 68 returns 0x04 (0000ms, 695745ms total)
  2950. T5690 16935:623 JLINK_ReadMemEx(0x2000A47C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A47C) - Data: 00 DC 07 68 returns 0x04 (0000ms, 695745ms total)
  2951. T5690 16935:623 JLINK_ReadMemEx(0x2000A480, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A480) - Data: 07 07 07 07 returns 0x04 (0000ms, 695745ms total)
  2952. T5690 16935:623 JLINK_ReadMemEx(0x2000A484, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A484) - Data: 08 08 08 08 returns 0x04 (0000ms, 695745ms total)
  2953. T5690 16935:623 JLINK_ReadMemEx(0x2000A488, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A488) - Data: 09 09 09 09 returns 0x04 (0000ms, 695745ms total)
  2954. T5690 16935:623 JLINK_ReadMemEx(0x2000A48C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A48C) - Data: 10 10 10 10 returns 0x04 (0000ms, 695745ms total)
  2955. T5690 16935:623 JLINK_ReadMemEx(0x2000A490, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A490) - Data: C1 4B 00 08 returns 0x04 (0000ms, 695745ms total)
  2956. T5690 16935:623 JLINK_ReadMemEx(0x2000A4B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B8) - Data: 49 54 00 08 returns 0x04 (0000ms, 695745ms total)
  2957. T5690 16935:623 JLINK_ReadMemEx(0x2000A4A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4A4) - Data: 00 00 00 00 returns 0x04 (0000ms, 695745ms total)
  2958. T5690 16935:623 JLINK_ReadMemEx(0x2000A4A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4A8) - Data: 00 DC 07 68 returns 0x04 (0000ms, 695745ms total)
  2959. T5690 16935:623 JLINK_ReadMemEx(0x2000A4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4AC) - Data: 06 06 06 06 returns 0x04 (0000ms, 695745ms total)
  2960. T5690 16935:623 JLINK_ReadMemEx(0x2000A4B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B0) - Data: 07 07 07 07 returns 0x04 (0000ms, 695745ms total)
  2961. T5690 16935:623 JLINK_ReadMemEx(0x2000A4B4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B4) - Data: 08 08 08 08 returns 0x04 (0000ms, 695745ms total)
  2962. T5690 16935:623 JLINK_ReadMemEx(0x2000A4B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B8) - Data: 49 54 00 08 returns 0x04 (0000ms, 695745ms total)
  2963. T5690 16935:623 JLINK_ReadMemEx(0x2000A4C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x2000A4C0) -- Updating C cache (64 bytes @ 0x2000A4C0) -- Read from C cache (4 bytes @ 0x2000A4C8) - Data: 45 36 00 08 returns 0x04 (0004ms, 695749ms total)
  2964. T5690 16935:627 JLINK_ReadMemEx(0x2000A4BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4BC) - Data: 04 04 04 04 returns 0x04 (0000ms, 695749ms total)
  2965. T5690 16935:627 JLINK_ReadMemEx(0x2000A4C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C0) - Data: 05 05 05 05 returns 0x04 (0000ms, 695749ms total)
  2966. T5690 16935:627 JLINK_ReadMemEx(0x2000A4C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C4) - Data: 06 06 06 06 returns 0x04 (0000ms, 695749ms total)
  2967. T5690 16935:627 JLINK_ReadMemEx(0x2000A4C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C8) - Data: 45 36 00 08 returns 0x04 (0000ms, 695749ms total)
  2968. T5690 16935:627 JLINK_ReadMemEx(0x2000A4E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4E0) - Data: 00 00 5B 07 returns 0x04 (0000ms, 695749ms total)
  2969. T5690 16935:627 JLINK_ReadMemEx(0x2000A4CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4CC) - Data: 00 33 36 2E returns 0x04 (0000ms, 695749ms total)
  2970. T5690 16935:627 JLINK_ReadMemEx(0x2000A4D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4D0) - Data: 31 33 34 2E returns 0x04 (0000ms, 695749ms total)
  2971. T5690 16935:627 JLINK_ReadMemEx(0x2000A4D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4D4) - Data: 32 33 2E 31 returns 0x04 (0000ms, 695749ms total)
  2972. T5690 16935:627 JLINK_ReadMemEx(0x2000A4D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4D8) - Data: 31 00 00 00 returns 0x04 (0000ms, 695749ms total)
  2973. T5690 16935:627 JLINK_ReadMemEx(0x2000A4DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4DC) - Data: 00 00 00 00 returns 0x04 (0000ms, 695749ms total)
  2974. T5690 16935:627 JLINK_ReadMemEx(0x2000A4E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4E0) - Data: 00 00 5B 07 returns 0x04 (0000ms, 695749ms total)
  2975. T5690 16935:627 JLINK_ReadMemEx(0x6807C86F, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x6807C86F) - Data: 2C 7B 22 69 64 65 6E 74 69 66 69 65 72 22 3A 22 ... returns 0x20 (0004ms, 695753ms total)
  2976. T5690 16935:633 JLINK_ReadMemEx(0x6807C86F, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x6807C86F) - Data: 2C 7B 22 69 64 65 6E 74 69 66 69 65 72 22 3A 22 ... returns 0x20 (0004ms, 695757ms total)
  2977. T5690 16935:637 JLINK_ReadMemEx(0x6807C803, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x6807C803) - Data: 22 64 65 76 69 63 65 5F 31 22 3A 7B 22 73 65 6E ... returns 0x20 (0004ms, 695761ms total)
  2978. T5690 16935:641 JLINK_ReadMemEx(0x6807C86F, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x6807C86F) - Data: 2C 7B 22 69 64 65 6E 74 69 66 69 65 72 22 3A 22 ... returns 0x20 (0004ms, 695765ms total)
  2979. T5690 16935:645 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001004) - Data: 12 87 65 04 returns 1 (0002ms, 695767ms total)
  2980. T5690 16935:647 JLINK_ReadMemEx(0x6807C86F, 0x0E00 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(3584 bytes @ 0x6807C86F) - Data: 2C 7B 22 69 64 65 6E 74 69 66 69 65 72 22 3A 22 ... returns 0xE00 (0128ms, 695895ms total)
  2981. T5690 16935:786 JLINK_ReadMemEx(0x08004C60, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x08004C40) -- Updating C cache (128 bytes @ 0x08004C40) -- Read from C cache (60 bytes @ 0x08004C60) - Data: 22 46 27 A1 28 46 02 F0 FB FA 28 A1 28 46 02 F0 ... returns 0x3C (0006ms, 695901ms total)
  2982. T5690 16935:792 JLINK_ReadMemEx(0x08004C60, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C60) - Data: 22 46 returns 0x02 (0000ms, 695901ms total)
  2983. T5690 16935:792 JLINK_ReadMemEx(0x08004C62, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C62) - Data: 27 A1 returns 0x02 (0000ms, 695901ms total)
  2984. T5690 16935:792 JLINK_ReadMemEx(0x08004C62, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C62) - Data: 27 A1 returns 0x02 (0000ms, 695901ms total)
  2985. T5690 16935:792 JLINK_ReadMemEx(0x08004C64, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004C64) - Data: 28 46 02 F0 FB FA 28 A1 28 46 02 F0 E1 FA 20 75 ... returns 0x3C (0000ms, 695901ms total)
  2986. T5690 16935:792 JLINK_ReadMemEx(0x08004C64, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C64) - Data: 28 46 returns 0x02 (0000ms, 695901ms total)
  2987. T5690 16935:792 JLINK_ReadMemEx(0x08004C64, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004C64) - Data: 28 46 02 F0 FB FA 28 A1 28 46 02 F0 E1 FA 20 75 ... returns 0x3C (0000ms, 695901ms total)
  2988. T5690 16935:792 JLINK_ReadMemEx(0x08004C64, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C64) - Data: 28 46 returns 0x02 (0000ms, 695901ms total)
  2989. T5690 16935:792 JLINK_ReadMemEx(0x08004C66, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C66) - Data: 02 F0 returns 0x02 (0000ms, 695901ms total)
  2990. T5690 16935:792 JLINK_ReadMemEx(0x08004C66, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C66) - Data: 02 F0 returns 0x02 (0000ms, 695901ms total)
  2991. T5690 16935:792 JLINK_ReadMemEx(0x08004C68, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004C68) - Data: FB FA 28 A1 28 46 02 F0 E1 FA 20 75 29 A1 28 46 ... returns 0x3C (0000ms, 695901ms total)
  2992. T5690 16935:792 JLINK_ReadMemEx(0x08004C68, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C68) - Data: FB FA returns 0x02 (0000ms, 695901ms total)
  2993. T5690 16935:792 JLINK_ReadMemEx(0x08004C6A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C6A) - Data: 28 A1 returns 0x02 (0000ms, 695901ms total)
  2994. T5690 16935:792 JLINK_ReadMemEx(0x08004C6C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004C6C) - Data: 28 46 02 F0 E1 FA 20 75 29 A1 28 46 02 F0 DC FA ... returns 0x3C (0000ms, 695901ms total)
  2995. T5690 16935:792 JLINK_ReadMemEx(0x08004C6C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C6C) - Data: 28 46 returns 0x02 (0000ms, 695901ms total)
  2996. T5690 16935:792 JLINK_ReadMemEx(0x08004C6C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004C6C) - Data: 28 46 02 F0 E1 FA 20 75 29 A1 28 46 02 F0 DC FA ... returns 0x3C (0000ms, 695901ms total)
  2997. T5690 16935:792 JLINK_ReadMemEx(0x08004C6C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C6C) - Data: 28 46 returns 0x02 (0000ms, 695901ms total)
  2998. T5690 16935:792 JLINK_ReadMemEx(0x08004C6E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C6E) - Data: 02 F0 returns 0x02 (0000ms, 695901ms total)
  2999. T5690 16935:792 JLINK_ReadMemEx(0x08004C6E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C6E) - Data: 02 F0 returns 0x02 (0000ms, 695901ms total)
  3000. T5690 16935:792 JLINK_ReadMemEx(0x08004C70, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004C70) - Data: E1 FA 20 75 29 A1 28 46 02 F0 DC FA 60 75 2A A1 ... returns 0x3C (0000ms, 695901ms total)
  3001. T5690 16935:792 JLINK_ReadMemEx(0x08004C70, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C70) - Data: E1 FA returns 0x02 (0000ms, 695901ms total)
  3002. T5690 16935:792 JLINK_ReadMemEx(0x08004C72, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C72) - Data: 20 75 returns 0x02 (0000ms, 695901ms total)
  3003. T5690 16935:792 JLINK_ReadMemEx(0x08004C74, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004C74) - Data: 29 A1 28 46 02 F0 DC FA 60 75 2A A1 28 46 02 F0 ... returns 0x3C (0000ms, 695901ms total)
  3004. T5690 16935:792 JLINK_ReadMemEx(0x08004C74, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C74) - Data: 29 A1 returns 0x02 (0000ms, 695901ms total)
  3005. T5690 16935:792 JLINK_ReadMemEx(0x08004C74, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004C74) - Data: 29 A1 28 46 02 F0 DC FA 60 75 2A A1 28 46 02 F0 ... returns 0x3C (0000ms, 695901ms total)
  3006. T5690 16935:792 JLINK_ReadMemEx(0x08004C74, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C74) - Data: 29 A1 returns 0x02 (0000ms, 695901ms total)
  3007. T5690 16935:792 JLINK_ReadMemEx(0x08004C76, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C76) - Data: 28 46 returns 0x02 (0000ms, 695901ms total)
  3008. T5690 16935:792 JLINK_ReadMemEx(0x08004C76, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C76) - Data: 28 46 returns 0x02 (0000ms, 695901ms total)
  3009. T5690 16935:792 JLINK_ReadMemEx(0x08004C78, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004C78) - Data: 02 F0 DC FA 60 75 2A A1 28 46 02 F0 D7 FA A0 75 ... returns 0x3C (0000ms, 695901ms total)
  3010. T5690 16935:792 JLINK_ReadMemEx(0x08004C78, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C78) - Data: 02 F0 returns 0x02 (0000ms, 695901ms total)
  3011. T5690 16935:792 JLINK_ReadMemEx(0x08004C78, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004C78) - Data: 02 F0 DC FA 60 75 2A A1 28 46 02 F0 D7 FA A0 75 ... returns 0x3C (0000ms, 695901ms total)
  3012. T5690 16935:792 JLINK_ReadMemEx(0x08004C78, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C78) - Data: 02 F0 returns 0x02 (0000ms, 695901ms total)
  3013. T5690 16935:792 JLINK_ReadMemEx(0x08004C7A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C7A) - Data: DC FA returns 0x02 (0000ms, 695901ms total)
  3014. T5690 16935:792 JLINK_ReadMemEx(0x08004C7C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004C7C) - Data: 60 75 2A A1 28 46 02 F0 D7 FA A0 75 2C A1 28 46 ... returns 0x3C (0000ms, 695901ms total)
  3015. T5690 16935:792 JLINK_ReadMemEx(0x08004C7C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C7C) - Data: 60 75 returns 0x02 (0000ms, 695901ms total)
  3016. T5690 16935:792 JLINK_ReadMemEx(0x08004C7E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C7E) - Data: 2A A1 returns 0x02 (0000ms, 695901ms total)
  3017. T5690 16935:792 JLINK_ReadMemEx(0x08004C7E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C7E) - Data: 2A A1 returns 0x02 (0000ms, 695901ms total)
  3018. T5690 16935:792 JLINK_ReadMemEx(0x08004C80, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004C80) - Data: 28 46 02 F0 D7 FA A0 75 2C A1 28 46 02 F0 D2 FA ... returns 0x3C (0000ms, 695901ms total)
  3019. T5690 16935:792 JLINK_ReadMemEx(0x08004C80, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C80) - Data: 28 46 returns 0x02 (0000ms, 695901ms total)
  3020. T5690 16935:792 JLINK_ReadMemEx(0x08004C80, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004C80) - Data: 28 46 02 F0 D7 FA A0 75 2C A1 28 46 02 F0 D2 FA ... returns 0x3C (0000ms, 695901ms total)
  3021. T5690 16935:792 JLINK_ReadMemEx(0x08004C80, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C80) - Data: 28 46 returns 0x02 (0000ms, 695901ms total)
  3022. T5690 16935:792 JLINK_ReadMemEx(0x08004C82, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C82) - Data: 02 F0 returns 0x02 (0000ms, 695901ms total)
  3023. T5690 16935:792 JLINK_ReadMemEx(0x08004C82, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C82) - Data: 02 F0 returns 0x02 (0000ms, 695901ms total)
  3024. T5690 16935:792 JLINK_ReadMemEx(0x08004C84, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004C84) - Data: D7 FA A0 75 2C A1 28 46 02 F0 D2 FA E0 75 01 26 ... returns 0x3C (0000ms, 695901ms total)
  3025. T5690 16935:792 JLINK_ReadMemEx(0x08004C84, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C84) - Data: D7 FA returns 0x02 (0000ms, 695901ms total)
  3026. T5690 16935:792 JLINK_ReadMemEx(0x08004C86, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C86) - Data: A0 75 returns 0x02 (0000ms, 695901ms total)
  3027. T5690 16935:792 JLINK_ReadMemEx(0x08004C88, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08004CC0) -- Updating C cache (64 bytes @ 0x08004CC0) -- Read from C cache (60 bytes @ 0x08004C88) - Data: 2C A1 28 46 02 F0 D2 FA E0 75 01 26 14 21 00 20 ... returns 0x3C (0004ms, 695905ms total)
  3028. T5690 16935:796 JLINK_ReadMemEx(0x08004C88, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C88) - Data: 2C A1 returns 0x02 (0000ms, 695905ms total)
  3029. T5690 16935:796 JLINK_ReadMemEx(0x08004C88, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004C88) - Data: 2C A1 28 46 02 F0 D2 FA E0 75 01 26 14 21 00 20 ... returns 0x3C (0000ms, 695905ms total)
  3030. T5690 16935:796 JLINK_ReadMemEx(0x08004C88, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C88) - Data: 2C A1 returns 0x02 (0000ms, 695905ms total)
  3031. T5690 16935:796 JLINK_ReadMemEx(0x08004C8A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C8A) - Data: 28 46 returns 0x02 (0000ms, 695905ms total)
  3032. T5690 16935:796 JLINK_ReadMemEx(0x08004C8A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C8A) - Data: 28 46 returns 0x02 (0000ms, 695905ms total)
  3033. T5690 16935:796 JLINK_ReadMemEx(0x08004C8C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004C8C) - Data: 02 F0 D2 FA E0 75 01 26 14 21 00 20 02 F0 90 FA ... returns 0x3C (0000ms, 695905ms total)
  3034. T5690 16935:796 JLINK_ReadMemEx(0x08004C8C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C8C) - Data: 02 F0 returns 0x02 (0000ms, 695905ms total)
  3035. T5690 16935:796 JLINK_ReadMemEx(0x08004C8C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004C8C) - Data: 02 F0 D2 FA E0 75 01 26 14 21 00 20 02 F0 90 FA ... returns 0x3C (0000ms, 695905ms total)
  3036. T5690 16935:796 JLINK_ReadMemEx(0x08004C8C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C8C) - Data: 02 F0 returns 0x02 (0000ms, 695905ms total)
  3037. T5690 16935:796 JLINK_ReadMemEx(0x08004C8E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C8E) - Data: D2 FA returns 0x02 (0000ms, 695905ms total)
  3038. T5690 16935:796 JLINK_ReadMemEx(0x08004C90, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004C90) - Data: E0 75 01 26 14 21 00 20 02 F0 90 FA 07 46 15 E0 ... returns 0x3C (0000ms, 695905ms total)
  3039. T5690 16935:796 JLINK_ReadMemEx(0x08004C90, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C90) - Data: E0 75 returns 0x02 (0000ms, 695905ms total)
  3040. T5690 16935:796 JLINK_ReadMemEx(0x08004C92, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C92) - Data: 01 26 returns 0x02 (0000ms, 695905ms total)
  3041. T5690 16935:796 JLINK_ReadMemEx(0x08004C92, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C92) - Data: 01 26 returns 0x02 (0000ms, 695905ms total)
  3042. T5690 16935:796 JLINK_ReadMemEx(0x08004C94, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004C94) - Data: 14 21 00 20 02 F0 90 FA 07 46 15 E0 32 46 2A A1 ... returns 0x3C (0000ms, 695905ms total)
  3043. T5690 16935:796 JLINK_ReadMemEx(0x08004C94, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C94) - Data: 14 21 returns 0x02 (0000ms, 695905ms total)
  3044. T5690 16935:796 JLINK_ReadMemEx(0x08004C94, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004C94) - Data: 14 21 00 20 02 F0 90 FA 07 46 15 E0 32 46 2A A1 ... returns 0x3C (0000ms, 695905ms total)
  3045. T5690 16935:796 JLINK_ReadMemEx(0x08004C94, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C94) - Data: 14 21 returns 0x02 (0000ms, 695905ms total)
  3046. T5690 16935:796 JLINK_ReadMemEx(0x08004C96, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C96) - Data: 00 20 returns 0x02 (0000ms, 695905ms total)
  3047. T5690 16935:796 JLINK_ReadMemEx(0x08004C96, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C96) - Data: 00 20 returns 0x02 (0000ms, 695905ms total)
  3048. T5690 16935:796 JLINK_ReadMemEx(0x08004C98, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004C98) - Data: 02 F0 90 FA 07 46 15 E0 32 46 2A A1 38 46 FF F7 ... returns 0x3C (0000ms, 695905ms total)
  3049. T5690 16935:796 JLINK_ReadMemEx(0x08004C98, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C98) - Data: 02 F0 returns 0x02 (0000ms, 695905ms total)
  3050. T5690 16935:796 JLINK_ReadMemEx(0x08004C98, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004C98) - Data: 02 F0 90 FA 07 46 15 E0 32 46 2A A1 38 46 FF F7 ... returns 0x3C (0000ms, 695905ms total)
  3051. T5690 16935:796 JLINK_ReadMemEx(0x08004C98, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C98) - Data: 02 F0 returns 0x02 (0000ms, 695905ms total)
  3052. T5690 16935:796 JLINK_ReadMemEx(0x08004C9A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C9A) - Data: 90 FA returns 0x02 (0000ms, 695905ms total)
  3053. T5690 16935:796 JLINK_ReadMemEx(0x08004C9C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004C9C) - Data: 07 46 15 E0 32 46 2A A1 38 46 FF F7 15 FA 39 46 ... returns 0x3C (0000ms, 695905ms total)
  3054. T5690 16935:796 JLINK_ReadMemEx(0x08004C9C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C9C) - Data: 07 46 returns 0x02 (0000ms, 695905ms total)
  3055. T5690 16935:796 JLINK_ReadMemEx(0x08004C9E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C9E) - Data: 15 E0 returns 0x02 (0000ms, 695905ms total)
  3056. T5690 16935:796 JLINK_ReadMemEx(0x08004C9E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004C9E) - Data: 15 E0 returns 0x02 (0000ms, 695905ms total)
  3057. T5690 16935:797 JLINK_ReadMemEx(0x08004CA0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CA0) - Data: 32 46 2A A1 38 46 FF F7 15 FA 39 46 28 46 FB F7 ... returns 0x3C (0000ms, 695906ms total)
  3058. T5690 16935:797 JLINK_ReadMemEx(0x08004CA0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CA0) - Data: 32 46 returns 0x02 (0000ms, 695906ms total)
  3059. T5690 16935:797 JLINK_ReadMemEx(0x08004CA0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CA0) - Data: 32 46 2A A1 38 46 FF F7 15 FA 39 46 28 46 FB F7 ... returns 0x3C (0000ms, 695906ms total)
  3060. T5690 16935:797 JLINK_ReadMemEx(0x08004CA0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CA0) - Data: 32 46 returns 0x02 (0000ms, 695906ms total)
  3061. T5690 16935:797 JLINK_ReadMemEx(0x08004CA2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CA2) - Data: 2A A1 returns 0x02 (0000ms, 695906ms total)
  3062. T5690 16935:797 JLINK_ReadMemEx(0x08004CA2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CA2) - Data: 2A A1 returns 0x02 (0000ms, 695906ms total)
  3063. T5690 16935:797 JLINK_ReadMemEx(0x08004CA4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CA4) - Data: 38 46 FF F7 15 FA 39 46 28 46 FB F7 32 FB 80 46 ... returns 0x3C (0000ms, 695906ms total)
  3064. T5690 16935:797 JLINK_ReadMemEx(0x08004CA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CA4) - Data: 38 46 returns 0x02 (0000ms, 695906ms total)
  3065. T5690 16935:797 JLINK_ReadMemEx(0x08004CA4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CA4) - Data: 38 46 FF F7 15 FA 39 46 28 46 FB F7 32 FB 80 46 ... returns 0x3C (0000ms, 695906ms total)
  3066. T5690 16935:797 JLINK_ReadMemEx(0x08004CA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CA4) - Data: 38 46 returns 0x02 (0000ms, 695906ms total)
  3067. T5690 16935:797 JLINK_ReadMemEx(0x08004CA6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CA6) - Data: FF F7 returns 0x02 (0000ms, 695906ms total)
  3068. T5690 16935:797 JLINK_ReadMemEx(0x08004CA6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CA6) - Data: FF F7 returns 0x02 (0000ms, 695906ms total)
  3069. T5690 16935:797 JLINK_ReadMemEx(0x08004CA8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CA8) - Data: 15 FA 39 46 28 46 FB F7 32 FB 80 46 B8 F1 00 0F ... returns 0x3C (0000ms, 695906ms total)
  3070. T5690 16935:797 JLINK_ReadMemEx(0x08004CA8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CA8) - Data: 15 FA returns 0x02 (0000ms, 695906ms total)
  3071. T5690 16935:797 JLINK_ReadMemEx(0x08004CAA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CAA) - Data: 39 46 returns 0x02 (0000ms, 695906ms total)
  3072. T5690 16935:797 JLINK_ReadMemEx(0x08004CAC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CAC) - Data: 28 46 FB F7 32 FB 80 46 B8 F1 00 0F 06 D0 21 46 ... returns 0x3C (0000ms, 695906ms total)
  3073. T5690 16935:797 JLINK_ReadMemEx(0x08004CAC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CAC) - Data: 28 46 returns 0x02 (0000ms, 695906ms total)
  3074. T5690 16935:797 JLINK_ReadMemEx(0x08004CAC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CAC) - Data: 28 46 FB F7 32 FB 80 46 B8 F1 00 0F 06 D0 21 46 ... returns 0x3C (0000ms, 695906ms total)
  3075. T5690 16935:797 JLINK_ReadMemEx(0x08004CAC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CAC) - Data: 28 46 returns 0x02 (0000ms, 695906ms total)
  3076. T5690 16935:797 JLINK_ReadMemEx(0x08004CAE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CAE) - Data: FB F7 returns 0x02 (0000ms, 695906ms total)
  3077. T5690 16935:797 JLINK_ReadMemEx(0x08004CAE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CAE) - Data: FB F7 returns 0x02 (0000ms, 695906ms total)
  3078. T5690 16935:797 JLINK_ReadMemEx(0x08004CB0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CB0) - Data: 32 FB 80 46 B8 F1 00 0F 06 D0 21 46 40 46 FF F7 ... returns 0x3C (0000ms, 695906ms total)
  3079. T5690 16935:797 JLINK_ReadMemEx(0x08004CB0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CB0) - Data: 32 FB returns 0x02 (0000ms, 695906ms total)
  3080. T5690 16935:797 JLINK_ReadMemEx(0x08004CB2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CB2) - Data: 80 46 returns 0x02 (0000ms, 695906ms total)
  3081. T5690 16935:797 JLINK_ReadMemEx(0x08004CB4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CB4) - Data: B8 F1 00 0F 06 D0 21 46 40 46 FF F7 E5 FE 70 1C ... returns 0x3C (0000ms, 695906ms total)
  3082. T5690 16935:797 JLINK_ReadMemEx(0x08004CB4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CB4) - Data: B8 F1 returns 0x02 (0000ms, 695906ms total)
  3083. T5690 16935:797 JLINK_ReadMemEx(0x08004CB4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CB4) - Data: B8 F1 00 0F 06 D0 21 46 40 46 FF F7 E5 FE 70 1C ... returns 0x3C (0000ms, 695906ms total)
  3084. T5690 16935:797 JLINK_ReadMemEx(0x08004CB4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CB4) - Data: B8 F1 returns 0x02 (0000ms, 695906ms total)
  3085. T5690 16935:797 JLINK_ReadMemEx(0x08004CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CB6) - Data: 00 0F returns 0x02 (0000ms, 695906ms total)
  3086. T5690 16935:797 JLINK_ReadMemEx(0x08004CB8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CB8) - Data: 06 D0 21 46 40 46 FF F7 E5 FE 70 1C C6 B2 00 E0 ... returns 0x3C (0000ms, 695906ms total)
  3087. T5690 16935:797 JLINK_ReadMemEx(0x08004CB8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CB8) - Data: 06 D0 returns 0x02 (0000ms, 695906ms total)
  3088. T5690 16935:797 JLINK_ReadMemEx(0x08004CBA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CBA) - Data: 21 46 returns 0x02 (0000ms, 695906ms total)
  3089. T5690 16935:797 JLINK_ReadMemEx(0x08004CBA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CBA) - Data: 21 46 returns 0x02 (0000ms, 695906ms total)
  3090. T5690 16935:797 JLINK_ReadMemEx(0x08004CBC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CBC) - Data: 40 46 FF F7 E5 FE 70 1C C6 B2 00 E0 01 E0 00 BF ... returns 0x3C (0000ms, 695906ms total)
  3091. T5690 16935:797 JLINK_ReadMemEx(0x08004CBC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CBC) - Data: 40 46 returns 0x02 (0000ms, 695906ms total)
  3092. T5690 16935:797 JLINK_ReadMemEx(0x08004CBC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CBC) - Data: 40 46 FF F7 E5 FE 70 1C C6 B2 00 E0 01 E0 00 BF ... returns 0x3C (0000ms, 695906ms total)
  3093. T5690 16935:797 JLINK_ReadMemEx(0x08004CBC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CBC) - Data: 40 46 returns 0x02 (0000ms, 695906ms total)
  3094. T5690 16935:797 JLINK_ReadMemEx(0x08004CBE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CBE) - Data: FF F7 returns 0x02 (0000ms, 695906ms total)
  3095. T5690 16935:797 JLINK_ReadMemEx(0x08004CBE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CBE) - Data: FF F7 returns 0x02 (0000ms, 695906ms total)
  3096. T5690 16935:797 JLINK_ReadMemEx(0x08004CC0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CC0) - Data: E5 FE 70 1C C6 B2 00 E0 01 E0 00 BF E8 E7 00 BF ... returns 0x3C (0000ms, 695906ms total)
  3097. T5690 16935:797 JLINK_ReadMemEx(0x08004CC0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CC0) - Data: E5 FE returns 0x02 (0000ms, 695906ms total)
  3098. T5690 16935:797 JLINK_ReadMemEx(0x08004CC2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CC2) - Data: 70 1C returns 0x02 (0000ms, 695906ms total)
  3099. T5690 16935:797 JLINK_ReadMemEx(0x08004CC4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CC4) - Data: C6 B2 00 E0 01 E0 00 BF E8 E7 00 BF 39 46 00 20 ... returns 0x3C (0000ms, 695906ms total)
  3100. T5690 16935:797 JLINK_ReadMemEx(0x08004CC4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CC4) - Data: C6 B2 returns 0x02 (0000ms, 695906ms total)
  3101. T5690 16935:797 JLINK_ReadMemEx(0x08004CC4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CC4) - Data: C6 B2 00 E0 01 E0 00 BF E8 E7 00 BF 39 46 00 20 ... returns 0x3C (0000ms, 695906ms total)
  3102. T5690 16935:797 JLINK_ReadMemEx(0x08004CC4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CC4) - Data: C6 B2 returns 0x02 (0000ms, 695906ms total)
  3103. T5690 16935:797 JLINK_ReadMemEx(0x08004CC6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CC6) - Data: 00 E0 returns 0x02 (0000ms, 695906ms total)
  3104. T5690 16935:797 JLINK_ReadMemEx(0x08004CC6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CC6) - Data: 00 E0 returns 0x02 (0000ms, 695906ms total)
  3105. T5690 16935:797 JLINK_ReadMemEx(0x08004CC8, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08004D00) -- Updating C cache (64 bytes @ 0x08004D00) -- Read from C cache (60 bytes @ 0x08004CC8) - Data: 01 E0 00 BF E8 E7 00 BF 39 46 00 20 02 F0 60 FA ... returns 0x3C (0004ms, 695910ms total)
  3106. T5690 16935:801 JLINK_ReadMemEx(0x08004CC8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CC8) - Data: 01 E0 returns 0x02 (0000ms, 695910ms total)
  3107. T5690 16935:801 JLINK_ReadMemEx(0x08004CC8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CC8) - Data: 01 E0 00 BF E8 E7 00 BF 39 46 00 20 02 F0 60 FA ... returns 0x3C (0000ms, 695910ms total)
  3108. T5690 16935:801 JLINK_ReadMemEx(0x08004CC8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CC8) - Data: 01 E0 returns 0x02 (0000ms, 695910ms total)
  3109. T5690 16935:801 JLINK_ReadMemEx(0x08004CCA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CCA) - Data: 00 BF returns 0x02 (0000ms, 695910ms total)
  3110. T5690 16935:801 JLINK_ReadMemEx(0x08004CCA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CCA) - Data: 00 BF returns 0x02 (0000ms, 695910ms total)
  3111. T5690 16935:801 JLINK_ReadMemEx(0x08004CCC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CCC) - Data: E8 E7 00 BF 39 46 00 20 02 F0 60 FA 20 48 D0 F8 ... returns 0x3C (0000ms, 695910ms total)
  3112. T5690 16935:801 JLINK_ReadMemEx(0x08004CCC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CCC) - Data: E8 E7 returns 0x02 (0000ms, 695910ms total)
  3113. T5690 16935:801 JLINK_ReadMemEx(0x08004CCC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CCC) - Data: E8 E7 00 BF 39 46 00 20 02 F0 60 FA 20 48 D0 F8 ... returns 0x3C (0000ms, 695910ms total)
  3114. T5690 16935:801 JLINK_ReadMemEx(0x08004CCC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CCC) - Data: E8 E7 returns 0x02 (0000ms, 695910ms total)
  3115. T5690 16935:801 JLINK_ReadMemEx(0x08004CCE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CCE) - Data: 00 BF returns 0x02 (0000ms, 695910ms total)
  3116. T5690 16935:801 JLINK_ReadMemEx(0x08004CCE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CCE) - Data: 00 BF returns 0x02 (0000ms, 695910ms total)
  3117. T5690 16935:801 JLINK_ReadMemEx(0x08004CD0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CD0) - Data: 39 46 00 20 02 F0 60 FA 20 48 D0 F8 C0 00 18 B9 ... returns 0x3C (0000ms, 695910ms total)
  3118. T5690 16935:801 JLINK_ReadMemEx(0x08004CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CD0) - Data: 39 46 returns 0x02 (0000ms, 695910ms total)
  3119. T5690 16935:801 JLINK_ReadMemEx(0x08004CD0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CD0) - Data: 39 46 00 20 02 F0 60 FA 20 48 D0 F8 C0 00 18 B9 ... returns 0x3C (0000ms, 695910ms total)
  3120. T5690 16935:801 JLINK_ReadMemEx(0x08004CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CD0) - Data: 39 46 returns 0x02 (0000ms, 695910ms total)
  3121. T5690 16935:801 JLINK_ReadMemEx(0x08004CD2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CD2) - Data: 00 20 returns 0x02 (0000ms, 695910ms total)
  3122. T5690 16935:801 JLINK_ReadMemEx(0x08004CD2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CD2) - Data: 00 20 returns 0x02 (0000ms, 695910ms total)
  3123. T5690 16935:801 JLINK_ReadMemEx(0x08004CD4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CD4) - Data: 02 F0 60 FA 20 48 D0 F8 C0 00 18 B9 1E 48 C0 F8 ... returns 0x3C (0000ms, 695910ms total)
  3124. T5690 16935:801 JLINK_ReadMemEx(0x08004CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CD4) - Data: 02 F0 returns 0x02 (0000ms, 695910ms total)
  3125. T5690 16935:801 JLINK_ReadMemEx(0x08004CD4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CD4) - Data: 02 F0 60 FA 20 48 D0 F8 C0 00 18 B9 1E 48 C0 F8 ... returns 0x3C (0000ms, 695910ms total)
  3126. T5690 16935:801 JLINK_ReadMemEx(0x08004CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CD4) - Data: 02 F0 returns 0x02 (0000ms, 695910ms total)
  3127. T5690 16935:801 JLINK_ReadMemEx(0x08004CD6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CD6) - Data: 60 FA returns 0x02 (0000ms, 695910ms total)
  3128. T5690 16935:801 JLINK_ReadMemEx(0x08004CD8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CD8) - Data: 20 48 D0 F8 C0 00 18 B9 1E 48 C0 F8 C0 40 09 E0 ... returns 0x3C (0000ms, 695910ms total)
  3129. T5690 16935:801 JLINK_ReadMemEx(0x08004CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CD8) - Data: 20 48 returns 0x02 (0000ms, 695910ms total)
  3130. T5690 16935:801 JLINK_ReadMemEx(0x08004CDA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CDA) - Data: D0 F8 returns 0x02 (0000ms, 695910ms total)
  3131. T5690 16935:801 JLINK_ReadMemEx(0x08004CDA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CDA) - Data: D0 F8 returns 0x02 (0000ms, 695910ms total)
  3132. T5690 16935:801 JLINK_ReadMemEx(0x08004CDC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CDC) - Data: C0 00 18 B9 1E 48 C0 F8 C0 40 09 E0 1C 49 D1 F8 ... returns 0x3C (0000ms, 695910ms total)
  3133. T5690 16935:801 JLINK_ReadMemEx(0x08004CDC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CDC) - Data: C0 00 returns 0x02 (0000ms, 695910ms total)
  3134. T5690 16935:801 JLINK_ReadMemEx(0x08004CDE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CDE) - Data: 18 B9 returns 0x02 (0000ms, 695910ms total)
  3135. T5690 16935:801 JLINK_ReadMemEx(0x08004CE0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CE0) - Data: 1E 48 C0 F8 C0 40 09 E0 1C 49 D1 F8 C0 00 00 E0 ... returns 0x3C (0000ms, 695910ms total)
  3136. T5690 16935:801 JLINK_ReadMemEx(0x08004CE0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CE0) - Data: 1E 48 returns 0x02 (0000ms, 695910ms total)
  3137. T5690 16935:801 JLINK_ReadMemEx(0x08004CE0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CE0) - Data: 1E 48 C0 F8 C0 40 09 E0 1C 49 D1 F8 C0 00 00 E0 ... returns 0x3C (0000ms, 695910ms total)
  3138. T5690 16935:801 JLINK_ReadMemEx(0x08004CE0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CE0) - Data: 1E 48 returns 0x02 (0000ms, 695910ms total)
  3139. T5690 16935:801 JLINK_ReadMemEx(0x08004CE2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CE2) - Data: C0 F8 returns 0x02 (0000ms, 695910ms total)
  3140. T5690 16935:801 JLINK_ReadMemEx(0x08004CE2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CE2) - Data: C0 F8 returns 0x02 (0000ms, 695910ms total)
  3141. T5690 16935:801 JLINK_ReadMemEx(0x08004CE4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CE4) - Data: C0 40 09 E0 1C 49 D1 F8 C0 00 00 E0 00 6A 01 6A ... returns 0x3C (0000ms, 695910ms total)
  3142. T5690 16935:801 JLINK_ReadMemEx(0x08004CE4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CE4) - Data: C0 40 returns 0x02 (0000ms, 695910ms total)
  3143. T5690 16935:801 JLINK_ReadMemEx(0x08004CE6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CE6) - Data: 09 E0 returns 0x02 (0000ms, 695910ms total)
  3144. T5690 16935:801 JLINK_ReadMemEx(0x08004CE8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CE8) - Data: 1C 49 D1 F8 C0 00 00 E0 00 6A 01 6A 00 29 FB D1 ... returns 0x3C (0000ms, 695910ms total)
  3145. T5690 16935:801 JLINK_ReadMemEx(0x08004CE8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CE8) - Data: 1C 49 returns 0x02 (0000ms, 695910ms total)
  3146. T5690 16935:801 JLINK_ReadMemEx(0x08004CE8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CE8) - Data: 1C 49 D1 F8 C0 00 00 E0 00 6A 01 6A 00 29 FB D1 ... returns 0x3C (0000ms, 695910ms total)
  3147. T5690 16935:801 JLINK_ReadMemEx(0x08004CE8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CE8) - Data: 1C 49 returns 0x02 (0000ms, 695910ms total)
  3148. T5690 16935:801 JLINK_ReadMemEx(0x08004CEA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CEA) - Data: D1 F8 returns 0x02 (0000ms, 695910ms total)
  3149. T5690 16935:801 JLINK_ReadMemEx(0x08004CEA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CEA) - Data: D1 F8 returns 0x02 (0000ms, 695910ms total)
  3150. T5690 16935:801 JLINK_ReadMemEx(0x08004CEC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CEC) - Data: C0 00 00 E0 00 6A 01 6A 00 29 FB D1 04 62 00 BF ... returns 0x3C (0000ms, 695910ms total)
  3151. T5690 16935:801 JLINK_ReadMemEx(0x08004CEC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CEC) - Data: C0 00 returns 0x02 (0000ms, 695910ms total)
  3152. T5690 16935:801 JLINK_ReadMemEx(0x08004CEE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CEE) - Data: 00 E0 returns 0x02 (0000ms, 695910ms total)
  3153. T5690 16935:801 JLINK_ReadMemEx(0x08004CF0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CF0) - Data: 00 6A 01 6A 00 29 FB D1 04 62 00 BF BD E8 F0 87 ... returns 0x3C (0000ms, 695910ms total)
  3154. T5690 16935:801 JLINK_ReadMemEx(0x08004CF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CF0) - Data: 00 6A returns 0x02 (0000ms, 695910ms total)
  3155. T5690 16935:801 JLINK_ReadMemEx(0x08004CF0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CF0) - Data: 00 6A 01 6A 00 29 FB D1 04 62 00 BF BD E8 F0 87 ... returns 0x3C (0000ms, 695910ms total)
  3156. T5690 16935:801 JLINK_ReadMemEx(0x08004CF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CF0) - Data: 00 6A returns 0x02 (0000ms, 695910ms total)
  3157. T5690 16935:801 JLINK_ReadMemEx(0x08004CF2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CF2) - Data: 01 6A returns 0x02 (0000ms, 695910ms total)
  3158. T5690 16935:801 JLINK_ReadMemEx(0x08004CF2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CF2) - Data: 01 6A returns 0x02 (0000ms, 695910ms total)
  3159. T5690 16935:801 JLINK_ReadMemEx(0x08004CF4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CF4) - Data: 00 29 FB D1 04 62 00 BF BD E8 F0 87 22 6E 6F 64 ... returns 0x3C (0000ms, 695910ms total)
  3160. T5690 16935:801 JLINK_ReadMemEx(0x08004CF4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CF4) - Data: 00 29 returns 0x02 (0000ms, 695910ms total)
  3161. T5690 16935:801 JLINK_ReadMemEx(0x08004CF4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CF4) - Data: 00 29 FB D1 04 62 00 BF BD E8 F0 87 22 6E 6F 64 ... returns 0x3C (0000ms, 695910ms total)
  3162. T5690 16935:801 JLINK_ReadMemEx(0x08004CF4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CF4) - Data: 00 29 returns 0x02 (0000ms, 695910ms total)
  3163. T5690 16935:801 JLINK_ReadMemEx(0x08004CF6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CF6) - Data: FB D1 returns 0x02 (0000ms, 695910ms total)
  3164. T5690 16935:801 JLINK_ReadMemEx(0x08004CF6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CF6) - Data: FB D1 returns 0x02 (0000ms, 695910ms total)
  3165. T5690 16935:801 JLINK_ReadMemEx(0x08004CF8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CF8) - Data: 04 62 00 BF BD E8 F0 87 22 6E 6F 64 65 49 64 22 ... returns 0x3C (0000ms, 695910ms total)
  3166. T5690 16935:801 JLINK_ReadMemEx(0x08004CF8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CF8) - Data: 04 62 returns 0x02 (0000ms, 695910ms total)
  3167. T5690 16935:801 JLINK_ReadMemEx(0x08004CF8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CF8) - Data: 04 62 00 BF BD E8 F0 87 22 6E 6F 64 65 49 64 22 ... returns 0x3C (0000ms, 695910ms total)
  3168. T5690 16935:801 JLINK_ReadMemEx(0x08004CF8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CF8) - Data: 04 62 returns 0x02 (0000ms, 695910ms total)
  3169. T5690 16935:801 JLINK_ReadMemEx(0x08004CFA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CFA) - Data: 00 BF returns 0x02 (0000ms, 695910ms total)
  3170. T5690 16935:801 JLINK_ReadMemEx(0x08004CFA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CFA) - Data: 00 BF returns 0x02 (0000ms, 695910ms total)
  3171. T5690 16935:801 JLINK_ReadMemEx(0x08004CFC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CFC) - Data: BD E8 F0 87 22 6E 6F 64 65 49 64 22 3A 22 00 00 ... returns 0x3C (0000ms, 695910ms total)
  3172. T5690 16935:801 JLINK_ReadMemEx(0x08004CFC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CFC) - Data: BD E8 returns 0x02 (0000ms, 695910ms total)
  3173. T5690 16935:801 JLINK_ReadMemEx(0x08004CFC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004CFC) - Data: BD E8 F0 87 22 6E 6F 64 65 49 64 22 3A 22 00 00 ... returns 0x3C (0000ms, 695910ms total)
  3174. T5690 16935:801 JLINK_ReadMemEx(0x08004CFC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CFC) - Data: BD E8 returns 0x02 (0000ms, 695910ms total)
  3175. T5690 16935:801 JLINK_ReadMemEx(0x08004CFE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004CFE) - Data: F0 87 returns 0x02 (0000ms, 695910ms total)
  3176. T5690 16935:801 JLINK_ReadMemEx(0x08004D5C, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x08004D40) -- Updating C cache (128 bytes @ 0x08004D40) -- Read from C cache (60 bytes @ 0x08004D5C) - Data: CC A4 00 20 2D E9 F0 41 07 46 0C 46 10 20 FF F7 ... returns 0x3C (0007ms, 695917ms total)
  3177. T5690 16935:808 JLINK_ReadMemEx(0x08004D5C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D5C) - Data: CC A4 returns 0x02 (0000ms, 695917ms total)
  3178. T5690 16935:808 JLINK_ReadMemEx(0x08004D5E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D5E) - Data: 00 20 returns 0x02 (0000ms, 695917ms total)
  3179. T5690 16935:808 JLINK_ReadMemEx(0x08004D5E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D5E) - Data: 00 20 returns 0x02 (0000ms, 695917ms total)
  3180. T5690 16935:808 JLINK_ReadMemEx(0x08004D60, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D60) - Data: 2D E9 F0 41 07 46 0C 46 10 20 FF F7 F9 F9 A0 61 ... returns 0x3C (0000ms, 695917ms total)
  3181. T5690 16935:808 JLINK_ReadMemEx(0x08004D60, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D60) - Data: 2D E9 returns 0x02 (0000ms, 695917ms total)
  3182. T5690 16935:808 JLINK_ReadMemEx(0x08004D60, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D60) - Data: 2D E9 F0 41 07 46 0C 46 10 20 FF F7 F9 F9 A0 61 ... returns 0x3C (0000ms, 695917ms total)
  3183. T5690 16935:808 JLINK_ReadMemEx(0x08004D60, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D60) - Data: 2D E9 returns 0x02 (0000ms, 695917ms total)
  3184. T5690 16935:808 JLINK_ReadMemEx(0x08004D62, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D62) - Data: F0 41 returns 0x02 (0000ms, 695917ms total)
  3185. T5690 16935:808 JLINK_ReadMemEx(0x08004D64, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D64) - Data: 07 46 0C 46 10 20 FF F7 F9 F9 A0 61 60 7D 01 28 ... returns 0x3C (0000ms, 695917ms total)
  3186. T5690 16935:808 JLINK_ReadMemEx(0x08004D64, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D64) - Data: 07 46 returns 0x02 (0000ms, 695917ms total)
  3187. T5690 16935:808 JLINK_ReadMemEx(0x08004D66, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D66) - Data: 0C 46 returns 0x02 (0000ms, 695917ms total)
  3188. T5690 16935:808 JLINK_ReadMemEx(0x08004D66, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D66) - Data: 0C 46 returns 0x02 (0000ms, 695917ms total)
  3189. T5690 16935:808 JLINK_ReadMemEx(0x08004D68, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D68) - Data: 10 20 FF F7 F9 F9 A0 61 60 7D 01 28 04 D0 02 28 ... returns 0x3C (0000ms, 695917ms total)
  3190. T5690 16935:808 JLINK_ReadMemEx(0x08004D68, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D68) - Data: 10 20 returns 0x02 (0000ms, 695917ms total)
  3191. T5690 16935:808 JLINK_ReadMemEx(0x08004D68, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D68) - Data: 10 20 FF F7 F9 F9 A0 61 60 7D 01 28 04 D0 02 28 ... returns 0x3C (0000ms, 695917ms total)
  3192. T5690 16935:808 JLINK_ReadMemEx(0x08004D68, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D68) - Data: 10 20 returns 0x02 (0000ms, 695917ms total)
  3193. T5690 16935:808 JLINK_ReadMemEx(0x08004D6A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D6A) - Data: FF F7 returns 0x02 (0000ms, 695917ms total)
  3194. T5690 16935:808 JLINK_ReadMemEx(0x08004D6A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D6A) - Data: FF F7 returns 0x02 (0000ms, 695917ms total)
  3195. T5690 16935:808 JLINK_ReadMemEx(0x08004D6C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004D6C) - Data: F9 F9 A0 61 60 7D 01 28 04 D0 02 28 03 D0 03 28 ... returns 0x3C (0000ms, 695917ms total)
  3196. T5690 16935:808 JLINK_ReadMemEx(0x08004D6C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D6C) - Data: F9 F9 returns 0x02 (0000ms, 695917ms total)
  3197. T5AF8 16939:593 JLINK_ReadMemEx(0x08004D60, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004D60) - Data: 2D E9 returns 0x02 (0000ms, 695917ms total)
  3198. T5AF8 16939:593 JLINK_SetBPEx(Addr = 0x08004AB6, Type = 0xFFFFFFF2) returns 0x0000001B (0000ms, 695917ms total)
  3199. T5AF8 16939:593 JLINK_SetBPEx(Addr = 0x08004ADC, Type = 0xFFFFFFF2) returns 0x0000001C (0000ms, 695917ms total)
  3200. T5AF8 16939:593 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0002010) (0012ms, 695929ms total)
  3201. T5AF8 16939:705 JLINK_IsHalted() returns TRUE (0017ms, 695946ms total)
  3202. T5AF8 16939:722 JLINK_Halt() returns 0x00 (0000ms, 695929ms total)
  3203. T5AF8 16939:722 JLINK_IsHalted() returns TRUE (0000ms, 695929ms total)
  3204. T5AF8 16939:722 JLINK_IsHalted() returns TRUE (0000ms, 695929ms total)
  3205. T5AF8 16939:722 JLINK_IsHalted() returns TRUE (0000ms, 695929ms total)
  3206. T5AF8 16939:722 JLINK_ReadReg(R15 (PC)) returns 0x08004ADC (0000ms, 695929ms total)
  3207. T5AF8 16939:722 JLINK_ReadReg(XPSR) returns 0x61000000 (0000ms, 695929ms total)
  3208. T5AF8 16939:722 JLINK_ClrBPEx(BPHandle = 0x0000001B) returns 0x00 (0000ms, 695929ms total)
  3209. T5AF8 16939:722 JLINK_ClrBPEx(BPHandle = 0x0000001C) returns 0x00 (0000ms, 695929ms total)
  3210. T5AF8 16939:722 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 02 00 00 00 returns 1 (0001ms, 695930ms total)
  3211. T5AF8 16939:723 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00 returns 1 (0002ms, 695932ms total)
  3212. T5AF8 16939:725 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 02 00 00 returns 1 (0002ms, 695934ms total)
  3213. T5AF8 16939:727 JLINK_ReadMemU32(0xE0001048, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001048) - Data: 00 00 00 00 returns 1 (0002ms, 695936ms total)
  3214. T5AF8 16939:729 JLINK_ReadMemU32(0xE0001058, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001058) - Data: 00 00 00 00 returns 1 (0001ms, 695937ms total)
  3215. T5AF8 16939:731 JLINK_ReadReg(R0) returns 0x0000005D (0000ms, 695938ms total)
  3216. T5AF8 16939:731 JLINK_ReadReg(R1) returns 0x08004B2C (0000ms, 695938ms total)
  3217. T5AF8 16939:731 JLINK_ReadReg(R2) returns 0x6807D06B (0000ms, 695938ms total)
  3218. T5AF8 16939:731 JLINK_ReadReg(R3) returns 0x08004B2E (0000ms, 695938ms total)
  3219. T5AF8 16939:731 JLINK_ReadReg(R4) returns 0x20011CF8 (0000ms, 695938ms total)
  3220. T5AF8 16939:731 JLINK_ReadReg(R5) returns 0x200105A0 (0000ms, 695938ms total)
  3221. T5AF8 16939:731 JLINK_ReadReg(R6) returns 0x6807D06A (0000ms, 695938ms total)
  3222. T5AF8 16939:731 JLINK_ReadReg(R7) returns 0x6807C803 (0000ms, 695938ms total)
  3223. T5AF8 16939:731 JLINK_ReadReg(R8) returns 0x6807C803 (0000ms, 695938ms total)
  3224. T5AF8 16939:731 JLINK_ReadReg(R9) returns 0x6807C800 (0000ms, 695938ms total)
  3225. T5AF8 16939:731 JLINK_ReadReg(R10) returns 0x10101010 (0000ms, 695938ms total)
  3226. T5AF8 16939:731 JLINK_ReadReg(R11) returns 0x11111111 (0000ms, 695938ms total)
  3227. T5AF8 16939:731 JLINK_ReadReg(R12) returns 0x00000000 (0000ms, 695938ms total)
  3228. T5AF8 16939:731 JLINK_ReadReg(R13 (SP)) returns 0x2000A45C (0000ms, 695938ms total)
  3229. T5AF8 16939:731 JLINK_ReadReg(R14) returns 0x08004AD3 (0000ms, 695938ms total)
  3230. T5AF8 16939:731 JLINK_ReadReg(R15 (PC)) returns 0x08004ADC (0000ms, 695938ms total)
  3231. T5AF8 16939:731 JLINK_ReadReg(XPSR) returns 0x61000000 (0000ms, 695938ms total)
  3232. T5AF8 16939:731 JLINK_ReadReg(MSP) returns 0x20011CC8 (0000ms, 695938ms total)
  3233. T5AF8 16939:731 JLINK_ReadReg(PSP) returns 0x2000A45C (0000ms, 695938ms total)
  3234. T5AF8 16939:731 JLINK_ReadReg(CFBP) returns 0x02000000 (0000ms, 695938ms total)
  3235. T5690 16939:731 JLINK_ReadMemEx(0x2000A470, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x2000A440) -- Updating C cache (64 bytes @ 0x2000A440) -- Read from C cache (4 bytes @ 0x2000A470) - Data: C3 4C 00 08 returns 0x04 (0004ms, 695942ms total)
  3236. T5690 16939:735 JLINK_ReadMemEx(0x2000A45C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A45C) - Data: A0 05 01 20 returns 0x04 (0000ms, 695942ms total)
  3237. T5690 16939:735 JLINK_ReadMemEx(0x2000A460, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A460) - Data: 00 C8 07 68 returns 0x04 (0000ms, 695942ms total)
  3238. T5690 16939:735 JLINK_ReadMemEx(0x2000A464, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A464) - Data: 01 00 00 00 returns 0x04 (0000ms, 695942ms total)
  3239. T5690 16939:735 JLINK_ReadMemEx(0x2000A468, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A468) - Data: 80 05 01 20 returns 0x04 (0000ms, 695942ms total)
  3240. T5690 16939:735 JLINK_ReadMemEx(0x2000A46C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A46C) - Data: 03 C8 07 68 returns 0x04 (0000ms, 695942ms total)
  3241. T5690 16939:735 JLINK_ReadMemEx(0x2000A470, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A470) - Data: C3 4C 00 08 returns 0x04 (0000ms, 695942ms total)
  3242. T5690 16939:735 JLINK_ReadMemEx(0x2000A490, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x2000A480) -- Updating C cache (64 bytes @ 0x2000A480) -- Read from C cache (4 bytes @ 0x2000A490) - Data: C1 4B 00 08 returns 0x04 (0004ms, 695946ms total)
  3243. T5690 16939:739 JLINK_ReadMemEx(0x2000A474, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A474) - Data: 01 00 00 00 returns 0x04 (0000ms, 695946ms total)
  3244. T5690 16939:739 JLINK_ReadMemEx(0x2000A478, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A478) - Data: 00 C8 07 68 returns 0x04 (0000ms, 695946ms total)
  3245. T5690 16939:739 JLINK_ReadMemEx(0x2000A47C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A47C) - Data: 00 DC 07 68 returns 0x04 (0000ms, 695946ms total)
  3246. T5690 16939:739 JLINK_ReadMemEx(0x2000A480, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A480) - Data: 07 07 07 07 returns 0x04 (0000ms, 695946ms total)
  3247. T5690 16939:739 JLINK_ReadMemEx(0x2000A484, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A484) - Data: 08 08 08 08 returns 0x04 (0000ms, 695946ms total)
  3248. T5690 16939:739 JLINK_ReadMemEx(0x2000A488, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A488) - Data: 09 09 09 09 returns 0x04 (0000ms, 695946ms total)
  3249. T5690 16939:739 JLINK_ReadMemEx(0x2000A48C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A48C) - Data: 10 10 10 10 returns 0x04 (0000ms, 695946ms total)
  3250. T5690 16939:739 JLINK_ReadMemEx(0x2000A490, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A490) - Data: C1 4B 00 08 returns 0x04 (0000ms, 695946ms total)
  3251. T5690 16939:739 JLINK_ReadMemEx(0x2000A4B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B8) - Data: 49 54 00 08 returns 0x04 (0000ms, 695946ms total)
  3252. T5690 16939:739 JLINK_ReadMemEx(0x2000A4A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4A4) - Data: 00 00 00 00 returns 0x04 (0000ms, 695946ms total)
  3253. T5690 16939:739 JLINK_ReadMemEx(0x2000A4A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4A8) - Data: 00 DC 07 68 returns 0x04 (0000ms, 695946ms total)
  3254. T5690 16939:739 JLINK_ReadMemEx(0x2000A4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4AC) - Data: 06 06 06 06 returns 0x04 (0000ms, 695946ms total)
  3255. T5690 16939:739 JLINK_ReadMemEx(0x2000A4B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B0) - Data: 07 07 07 07 returns 0x04 (0000ms, 695946ms total)
  3256. T5690 16939:739 JLINK_ReadMemEx(0x2000A4B4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B4) - Data: 08 08 08 08 returns 0x04 (0000ms, 695946ms total)
  3257. T5690 16939:739 JLINK_ReadMemEx(0x2000A4B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4B8) - Data: 49 54 00 08 returns 0x04 (0000ms, 695946ms total)
  3258. T5690 16939:739 JLINK_ReadMemEx(0x2000A4C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x2000A4C0) -- Updating C cache (64 bytes @ 0x2000A4C0) -- Read from C cache (4 bytes @ 0x2000A4C8) - Data: 45 36 00 08 returns 0x04 (0005ms, 695951ms total)
  3259. T5690 16939:744 JLINK_ReadMemEx(0x2000A4BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4BC) - Data: 04 04 04 04 returns 0x04 (0000ms, 695951ms total)
  3260. T5690 16939:744 JLINK_ReadMemEx(0x2000A4C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C0) - Data: 05 05 05 05 returns 0x04 (0000ms, 695951ms total)
  3261. T5690 16939:744 JLINK_ReadMemEx(0x2000A4C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C4) - Data: 06 06 06 06 returns 0x04 (0000ms, 695951ms total)
  3262. T5690 16939:744 JLINK_ReadMemEx(0x2000A4C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4C8) - Data: 45 36 00 08 returns 0x04 (0000ms, 695951ms total)
  3263. T5690 16939:744 JLINK_ReadMemEx(0x2000A4E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4E0) - Data: 00 00 5B 07 returns 0x04 (0000ms, 695951ms total)
  3264. T5690 16939:744 JLINK_ReadMemEx(0x2000A4CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4CC) - Data: 00 33 36 2E returns 0x04 (0000ms, 695951ms total)
  3265. T5690 16939:744 JLINK_ReadMemEx(0x2000A4D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4D0) - Data: 31 33 34 2E returns 0x04 (0000ms, 695951ms total)
  3266. T5690 16939:744 JLINK_ReadMemEx(0x2000A4D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4D4) - Data: 32 33 2E 31 returns 0x04 (0000ms, 695951ms total)
  3267. T5690 16939:744 JLINK_ReadMemEx(0x2000A4D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4D8) - Data: 31 00 00 00 returns 0x04 (0000ms, 695951ms total)
  3268. T5690 16939:744 JLINK_ReadMemEx(0x2000A4DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4DC) - Data: 00 00 00 00 returns 0x04 (0000ms, 695951ms total)
  3269. T5690 16939:744 JLINK_ReadMemEx(0x2000A4E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000A4E0) - Data: 00 00 5B 07 returns 0x04 (0000ms, 695951ms total)
  3270. T5690 16939:746 JLINK_ReadMemEx(0x6807C803, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x6807C803) - Data: 22 64 65 76 69 63 65 5F 31 22 3A 7B 22 73 65 6E ... returns 0x20 (0004ms, 695955ms total)
  3271. T5690 16939:750 JLINK_ReadMemEx(0x6807D06A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x6807D06A) - Data: 5D 2C 22 63 6F 6D 6D 61 6E 64 4C 69 73 74 22 3A ... returns 0x20 (0004ms, 695959ms total)
  3272. T5690 16939:754 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001004) - Data: B9 BA 67 04 returns 1 (0002ms, 695961ms total)
  3273. T5690 16939:756 JLINK_ReadMemEx(0x6807D06A, 0x0E00 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(3584 bytes @ 0x6807D06A) - Data: 5D 2C 22 63 6F 6D 6D 61 6E 64 4C 69 73 74 22 3A ... returns 0xE00 (0126ms, 696087ms total)
  3274. T5690 16939:888 JLINK_ReadMemEx(0x08004AD6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08004AC0) -- Updating C cache (64 bytes @ 0x08004AC0) -- Read from C cache (2 bytes @ 0x08004AD6) - Data: 30 78 returns 0x02 (0004ms, 696091ms total)
  3275. T5690 16939:892 JLINK_ReadMemEx(0x08004AD8, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08004B00) -- Updating C cache (64 bytes @ 0x08004B00) -- Read from C cache (60 bytes @ 0x08004AD8) - Data: 5D 28 00 D1 00 E0 F0 E7 00 BF E8 69 08 B9 EC 61 ... returns 0x3C (0004ms, 696095ms total)
  3276. T5690 16939:896 JLINK_ReadMemEx(0x08004AD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AD8) - Data: 5D 28 returns 0x02 (0000ms, 696095ms total)
  3277. T5690 16939:896 JLINK_ReadMemEx(0x08004AD8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004AD8) - Data: 5D 28 00 D1 00 E0 F0 E7 00 BF E8 69 08 B9 EC 61 ... returns 0x3C (0000ms, 696095ms total)
  3278. T5690 16939:896 JLINK_ReadMemEx(0x08004AD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004AD8) - Data: 5D 28 returns 0x02 (0000ms, 696095ms total)
  3279. T5690 16939:896 JLINK_ReadMemEx(0x08004ADA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004ADA) - Data: 00 D1 returns 0x02 (0000ms, 696095ms total)
  3280. T5690 16939:896 JLINK_ReadMemEx(0x08004ADA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004ADA) - Data: 00 D1 returns 0x02 (0000ms, 696095ms total)
  3281. T5690 16939:896 JLINK_ReadMemEx(0x08004ADC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004ADC) - Data: 00 E0 F0 E7 00 BF E8 69 08 B9 EC 61 07 E0 E8 69 ... returns 0x3C (0000ms, 696095ms total)
  3282. T5690 16939:896 JLINK_ReadMemEx(0x08004ADC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004ADC) - Data: 00 E0 returns 0x02 (0000ms, 696095ms total)
  3283. T5690 16939:896 JLINK_ReadMemEx(0x08004ADC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08004ADC) - Data: 00 E0 F0 E7 00 BF E8 69 08 B9 EC 61 07 E0 E8 69 ... returns 0x3C (0000ms, 696095ms total)
  3284. T5690 16939:896 JLINK_ReadMemEx(0x08004ADC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004ADC) - Data: 00 E0 returns 0x02 (0000ms, 696095ms total)
  3285. T5690 16939:896 JLINK_ReadMemEx(0x08004ADE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08004ADE) - Data: F0 E7 returns 0x02 (0000ms, 696095ms total)
  3286. T5690 16960:516 JLINK_Close() -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_ReadMem(4 bytes @ 0xE0001000) >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> (0019ms, 696114ms total)
  3287. T5690 16960:516 (0019ms, 696114ms total)
  3288. T5690 16960:516 Closed (0019ms, 696114ms total)