123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288 |
- T5690 16774:752 SEGGER J-Link V6.46 Log File (0000ms, 690847ms total)
- T5690 16774:752 DLL Compiled: May 23 2019 17:49:56 (0000ms, 690847ms total)
- T5690 16774:752 Logging started @ 2023-08-14 15:59 (0000ms, 690847ms total)
- T5690 16774:752 JLINK_SetWarnOutHandler(...) (0000ms, 690847ms total)
- T5690 16774:752 JLINK_OpenEx(...)
- Firmware: J-Link V9 compiled May 7 2021 16:26:12
- Hardware: V9.40
- S/N: 69406807
- Feature(s): RDI, GDB, FlashDL, FlashBP, JFlash
- TELNET listener socket opened on port 19021WEBSRV
- Starting webserver (0032ms, 690879ms total)
- T5690 16774:752 WEBSRV Webserver running on local port 19080 (0032ms, 690879ms total)
- T5690 16774:752 returns O.K. (0032ms, 690879ms total)
- T5690 16774:784 JLINK_GetEmuCaps() returns 0xB9FF7BBF (0000ms, 690879ms total)
- T5690 16774:785 JLINK_TIF_GetAvailable(...) (0000ms, 690879ms total)
- T5690 16774:785 JLINK_SetErrorOutHandler(...) (0000ms, 690879ms total)
- T5690 16774:785 JLINK_ExecCommand("ProjectFile = "D:\Project\Lora_gateway_sx1278\app\MDKProject\JLinkSettings.ini"", ...). returns 0x00 (0001ms, 690880ms total)
- T5690 16774:786 JLINK_ExecCommand("Device = STM32F207ZGTx", ...). Device "STM32F207ZG" selected. returns 0x00 (0001ms, 690881ms total)
- T5690 16774:787 JLINK_ExecCommand("DisableConnectionTimeout", ...). returns 0x01 (0000ms, 690881ms total)
- T5690 16774:787 JLINK_GetHardwareVersion() returns 0x16F30 (0000ms, 690881ms total)
- T5690 16774:787 JLINK_GetDLLVersion() returns 64600 (0000ms, 690881ms total)
- T5690 16774:787 JLINK_GetFirmwareString(...) (0000ms, 690881ms total)
- T5690 16774:787 JLINK_GetDLLVersion() returns 64600 (0000ms, 690881ms total)
- T5690 16774:787 JLINK_GetCompileDateTime() (0000ms, 690881ms total)
- T5690 16774:787 JLINK_GetFirmwareString(...) (0000ms, 690881ms total)
- T5690 16774:787 JLINK_GetHardwareVersion() returns 0x16F30 (0000ms, 690881ms total)
- T5690 16774:787 JLINK_TIF_Select(JLINKARM_TIF_SWD) returns 0x00 (0001ms, 690882ms total)
- T5690 16774:788 JLINK_SetSpeed(500) (0001ms, 690883ms total)
- 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>
- >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>
- 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>
- 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)
- -- 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)
- 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
- >0x0D TIF> >0x21 TIF> returns 0x2BA01477 (0187ms, 691070ms total)
- T5690 16774:976 JLINK_GetDLLVersion() returns 64600 (0000ms, 691070ms total)
- T5690 16774:976 JLINK_CORE_GetFound() returns 0x30000FF (0000ms, 691070ms total)
- T5690 16774:976 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xE00FF000 returns 0x00 (0000ms, 691070ms total)
- T5690 16774:976 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xE00FF000 returns 0x00 (0000ms, 691070ms total)
- T5690 16774:976 JLINK_GetDebugInfo(0x101 = JLINKARM_DEBUG_INFO_ETM_ADDR_INDEX) -- Value=0xE0041000 returns 0x00 (0000ms, 691070ms total)
- 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)
- T5690 16774:979 JLINK_GetDebugInfo(0x102 = JLINKARM_DEBUG_INFO_MTB_ADDR_INDEX) -- Value=0x00000000 returns 0x00 (0000ms, 691073ms total)
- T5690 16774:979 JLINK_GetDebugInfo(0x103 = JLINKARM_DEBUG_INFO_TPIU_ADDR_INDEX) -- Value=0xE0040000 returns 0x00 (0000ms, 691073ms total)
- T5690 16774:979 JLINK_GetDebugInfo(0x104 = JLINKARM_DEBUG_INFO_ITM_ADDR_INDEX) -- Value=0xE0000000 returns 0x00 (0000ms, 691073ms total)
- T5690 16774:979 JLINK_GetDebugInfo(0x105 = JLINKARM_DEBUG_INFO_DWT_ADDR_INDEX) -- Value=0xE0001000 returns 0x00 (0000ms, 691073ms total)
- T5690 16774:979 JLINK_GetDebugInfo(0x106 = JLINKARM_DEBUG_INFO_FPB_ADDR_INDEX) -- Value=0xE0002000 returns 0x00 (0000ms, 691073ms total)
- T5690 16774:979 JLINK_GetDebugInfo(0x107 = JLINKARM_DEBUG_INFO_NVIC_ADDR_INDEX) -- Value=0xE000E000 returns 0x00 (0000ms, 691073ms total)
- T5690 16774:979 JLINK_GetDebugInfo(0x10C = JLINKARM_DEBUG_INFO_DBG_ADDR_INDEX) -- Value=0xE000EDF0 returns 0x00 (0000ms, 691073ms total)
- T5690 16774:979 JLINK_GetDebugInfo(0x01 = Unknown) -- Value=0x00000000 returns 0x00 (0000ms, 691073ms total)
- T5690 16774:979 JLINK_ReadMemU32(0xE000ED00, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED00) - Data: 30 C2 2F 41 returns 1 (0001ms, 691074ms total)
- T5690 16774:980 JLINK_GetDebugInfo(0x10F = JLINKARM_DEBUG_INFO_HAS_CORTEX_M_SECURITY_EXT_INDEX) -- Value=0x00000000 returns 0x00 (0000ms, 691074ms total)
- T5690 16774:980 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 691074ms total)
- 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
- -- 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)
- T5690 16775:072 JLINK_ReadReg(R15 (PC)) returns 0x08000198 (0000ms, 691166ms total)
- T5690 16775:072 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 691166ms total)
- T5690 16775:072 JLINK_Halt() returns 0x00 (0000ms, 691166ms total)
- T5690 16775:072 JLINK_ReadMemU32(0xE000EDF0, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) - Data: 03 00 03 00 returns 1 (0002ms, 691168ms total)
- T5690 16775:074 JLINK_WriteU32(0xE000EDF0, 0xA05F0003) -- CPU_WriteMem(4 bytes @ 0xE000EDF0) returns 0 (0002ms, 691170ms total)
- T5690 16775:076 JLINK_WriteU32(0xE000EDFC, 0x01000000) -- CPU_WriteMem(4 bytes @ 0xE000EDFC) returns 0 (0002ms, 691172ms total)
- T5690 16775:078 JLINK_GetHWStatus(...) returns 0x00 (0000ms, 691172ms total)
- T5690 16775:078 JLINK_GetNumBPUnits(Type = 0xFFFFFF00) returns 0x06 (0000ms, 691172ms total)
- T5690 16775:078 JLINK_GetNumBPUnits(Type = 0xF0) returns 0x2000 (0000ms, 691172ms total)
- T5690 16775:078 JLINK_GetNumWPUnits() returns 0x04 (0000ms, 691172ms total)
- T5690 16775:078 JLINK_GetSpeed() returns 0x1F4 (0000ms, 691172ms total)
- T5690 16775:078 JLINK_ReadMemU32(0xE000E004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000E004) - Data: 02 00 00 00 returns 1 (0002ms, 691174ms total)
- T5690 16775:080 JLINK_ReadMemU32(0xE000E004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000E004) - Data: 02 00 00 00 returns 1 (0001ms, 691175ms total)
- 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)
- T5690 16775:084 JLINK_ReadReg(R15 (PC)) returns 0x08000198 (0000ms, 691178ms total)
- T5690 16775:084 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 691178ms total)
- T5690 16775:085 JLINK_ReadMemEx(0xE0001004, 0x0004 Bytes, ..., Flags = 0x02000000) - Data: 00 00 00 00 returns 0x04 (0000ms, 691178ms total)
- T5690 16775:169 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 691178ms total)
- 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)
- -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) (0090ms, 691268ms total)
- T5690 16775:259 JLINK_ReadReg(R15 (PC)) returns 0x08000198 (0000ms, 691268ms total)
- T5690 16775:259 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 691268ms total)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- T5690 16776:723 JLINK_ReadReg(R0) returns 0x00000000 (0001ms, 691277ms total)
- T5690 16776:724 JLINK_ReadReg(R1) returns 0x00000000 (0000ms, 691277ms total)
- T5690 16776:724 JLINK_ReadReg(R2) returns 0x00000000 (0000ms, 691277ms total)
- T5690 16776:724 JLINK_ReadReg(R3) returns 0x00000000 (0000ms, 691277ms total)
- T5690 16776:724 JLINK_ReadReg(R4) returns 0x00000000 (0000ms, 691277ms total)
- T5690 16776:724 JLINK_ReadReg(R5) returns 0x00000000 (0000ms, 691277ms total)
- T5690 16776:724 JLINK_ReadReg(R6) returns 0x00000000 (0000ms, 691277ms total)
- T5690 16776:724 JLINK_ReadReg(R7) returns 0x00000000 (0000ms, 691277ms total)
- T5690 16776:724 JLINK_ReadReg(R8) returns 0x00000000 (0000ms, 691277ms total)
- T5690 16776:724 JLINK_ReadReg(R9) returns 0x00000000 (0000ms, 691277ms total)
- T5690 16776:724 JLINK_ReadReg(R10) returns 0x00000000 (0000ms, 691277ms total)
- T5690 16776:724 JLINK_ReadReg(R11) returns 0x00000000 (0000ms, 691277ms total)
- T5690 16776:724 JLINK_ReadReg(R12) returns 0x00000000 (0000ms, 691277ms total)
- T5690 16776:724 JLINK_ReadReg(R13 (SP)) returns 0x20019CF0 (0000ms, 691277ms total)
- T5690 16776:724 JLINK_ReadReg(R14) returns 0xFFFFFFFF (0000ms, 691277ms total)
- T5690 16776:724 JLINK_ReadReg(R15 (PC)) returns 0x08000198 (0000ms, 691277ms total)
- T5690 16776:724 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 691277ms total)
- T5690 16776:724 JLINK_ReadReg(MSP) returns 0x20019CF0 (0000ms, 691277ms total)
- T5690 16776:724 JLINK_ReadReg(PSP) returns 0x00000000 (0000ms, 691277ms total)
- T5690 16776:724 JLINK_ReadReg(CFBP) returns 0x00000000 (0000ms, 691277ms total)
- 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)
- 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)
- T5AF8 16776:817 JLINK_SetBPEx(Addr = 0x08006F38, Type = 0xFFFFFFF2) returns 0x00000001 (0000ms, 691320ms total)
- T5AF8 16776:817 JLINK_SetBPEx(Addr = 0x08004D60, Type = 0xFFFFFFF2) returns 0x00000002 (0000ms, 691320ms total)
- T5AF8 16776:817 JLINK_SetBPEx(Addr = 0x08004AB6, Type = 0xFFFFFFF2) returns 0x00000003 (0000ms, 691320ms total)
- 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)
- T5AF8 16776:940 JLINK_IsHalted() returns TRUE (0015ms, 691358ms total)
- T5AF8 16776:955 JLINK_Halt() returns 0x00 (0000ms, 691343ms total)
- T5AF8 16776:955 JLINK_IsHalted() returns TRUE (0000ms, 691343ms total)
- T5AF8 16776:955 JLINK_IsHalted() returns TRUE (0000ms, 691343ms total)
- T5AF8 16776:955 JLINK_IsHalted() returns TRUE (0001ms, 691344ms total)
- T5AF8 16776:956 JLINK_ReadReg(R15 (PC)) returns 0x08006F38 (0000ms, 691343ms total)
- T5AF8 16776:956 JLINK_ReadReg(XPSR) returns 0x61000000 (0000ms, 691343ms total)
- T5AF8 16776:956 JLINK_ClrBPEx(BPHandle = 0x00000001) returns 0x00 (0000ms, 691343ms total)
- T5AF8 16776:956 JLINK_ClrBPEx(BPHandle = 0x00000002) returns 0x00 (0000ms, 691343ms total)
- T5AF8 16776:956 JLINK_ClrBPEx(BPHandle = 0x00000003) returns 0x00 (0000ms, 691343ms total)
- T5AF8 16776:956 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 02 00 00 00 returns 1 (0001ms, 691344ms total)
- T5AF8 16776:957 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00 returns 1 (0001ms, 691345ms total)
- T5AF8 16776:958 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 02 00 00 returns 1 (0001ms, 691346ms total)
- T5AF8 16776:959 JLINK_ReadMemU32(0xE0001048, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001048) - Data: 00 00 00 00 returns 1 (0001ms, 691347ms total)
- T5AF8 16776:960 JLINK_ReadMemU32(0xE0001058, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001058) - Data: 00 00 00 00 returns 1 (0002ms, 691349ms total)
- T5AF8 16776:962 JLINK_ReadReg(R0) returns 0x08006F39 (0000ms, 691349ms total)
- T5AF8 16776:962 JLINK_ReadReg(R1) returns 0x20019CF0 (0000ms, 691349ms total)
- T5AF8 16776:962 JLINK_ReadReg(R2) returns 0x00000000 (0000ms, 691349ms total)
- T5AF8 16776:962 JLINK_ReadReg(R3) returns 0x080041C1 (0000ms, 691349ms total)
- T5AF8 16776:962 JLINK_ReadReg(R4) returns 0x08032708 (0000ms, 691349ms total)
- T5AF8 16776:962 JLINK_ReadReg(R5) returns 0x08032708 (0000ms, 691349ms total)
- T5AF8 16776:962 JLINK_ReadReg(R6) returns 0x00000000 (0000ms, 691349ms total)
- T5AF8 16776:962 JLINK_ReadReg(R7) returns 0x00000000 (0000ms, 691349ms total)
- T5AF8 16776:962 JLINK_ReadReg(R8) returns 0x00000000 (0000ms, 691349ms total)
- T5AF8 16776:962 JLINK_ReadReg(R9) returns 0x00000000 (0000ms, 691349ms total)
- T5AF8 16776:962 JLINK_ReadReg(R10) returns 0x00000000 (0000ms, 691349ms total)
- T5AF8 16776:962 JLINK_ReadReg(R11) returns 0x00000000 (0000ms, 691349ms total)
- T5AF8 16776:962 JLINK_ReadReg(R12) returns 0x00000000 (0000ms, 691349ms total)
- T5AF8 16776:962 JLINK_ReadReg(R13 (SP)) returns 0x20019CF0 (0000ms, 691349ms total)
- T5AF8 16776:962 JLINK_ReadReg(R14) returns 0x08000B0D (0000ms, 691349ms total)
- T5AF8 16776:962 JLINK_ReadReg(R15 (PC)) returns 0x08006F38 (0000ms, 691349ms total)
- T5AF8 16776:962 JLINK_ReadReg(XPSR) returns 0x61000000 (0000ms, 691349ms total)
- T5AF8 16776:962 JLINK_ReadReg(MSP) returns 0x20019CF0 (0000ms, 691349ms total)
- T5AF8 16776:962 JLINK_ReadReg(PSP) returns 0x00000000 (0000ms, 691349ms total)
- T5AF8 16776:962 JLINK_ReadReg(CFBP) returns 0x00000000 (0000ms, 691349ms total)
- T5690 16776:964 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001004) - Data: 4B C0 02 00 returns 1 (0001ms, 691350ms total)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- T5AF8 16789:000 JLINK_SetBPEx(Addr = 0x08004D60, Type = 0xFFFFFFF2) returns 0x00000004 (0000ms, 691420ms total)
- T5AF8 16789:000 JLINK_SetBPEx(Addr = 0x08004AB6, Type = 0xFFFFFFF2) returns 0x00000005 (0000ms, 691420ms total)
- 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)
- T5AF8 16789:112 JLINK_IsHalted() returns FALSE (0001ms, 691432ms total)
- T5AF8 16789:214 JLINK_IsHalted() returns FALSE (0001ms, 691432ms total)
- T5AF8 16789:316 JLINK_IsHalted() returns FALSE (0001ms, 691432ms total)
- T5AF8 16789:418 JLINK_IsHalted() returns FALSE (0002ms, 691433ms total)
- T5AF8 16789:520 JLINK_IsHalted() returns FALSE (0002ms, 691433ms total)
- T5AF8 16789:622 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001004) - Data: 4F 6B 65 04 returns 1 (0002ms, 691433ms total)
- T5AF8 16789:624 JLINK_IsHalted() returns FALSE (0002ms, 691435ms total)
- T5AF8 16789:726 JLINK_IsHalted() returns FALSE (0002ms, 691435ms total)
- T5AF8 16789:828 JLINK_IsHalted() returns TRUE (0016ms, 691449ms total)
- T5AF8 16789:844 JLINK_Halt() returns 0x00 (0000ms, 691433ms total)
- T5AF8 16789:844 JLINK_IsHalted() returns TRUE (0000ms, 691433ms total)
- T5AF8 16789:844 JLINK_IsHalted() returns TRUE (0000ms, 691433ms total)
- T5AF8 16789:844 JLINK_IsHalted() returns TRUE (0000ms, 691433ms total)
- T5AF8 16789:844 JLINK_ReadReg(R15 (PC)) returns 0x08004AB6 (0001ms, 691434ms total)
- T5AF8 16789:845 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 691434ms total)
- T5AF8 16789:845 JLINK_ClrBPEx(BPHandle = 0x00000004) returns 0x00 (0000ms, 691434ms total)
- T5AF8 16789:845 JLINK_ClrBPEx(BPHandle = 0x00000005) returns 0x00 (0000ms, 691434ms total)
- T5AF8 16789:845 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 02 00 00 00 returns 1 (0001ms, 691435ms total)
- T5AF8 16789:846 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00 returns 1 (0002ms, 691437ms total)
- T5AF8 16789:848 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 02 00 00 returns 1 (0001ms, 691438ms total)
- T5AF8 16789:849 JLINK_ReadMemU32(0xE0001048, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001048) - Data: 00 00 00 00 returns 1 (0001ms, 691439ms total)
- T5AF8 16789:850 JLINK_ReadMemU32(0xE0001058, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001058) - Data: 00 00 00 00 returns 1 (0001ms, 691440ms total)
- T5AF8 16789:852 JLINK_ReadReg(R0) returns 0x00000002 (0000ms, 691440ms total)
- T5AF8 16789:852 JLINK_ReadReg(R1) returns 0x00000000 (0000ms, 691440ms total)
- T5AF8 16789:852 JLINK_ReadReg(R2) returns 0x0000005D (0000ms, 691440ms total)
- T5AF8 16789:852 JLINK_ReadReg(R3) returns 0x6807D119 (0000ms, 691440ms total)
- T5AF8 16789:852 JLINK_ReadReg(R4) returns 0x20011CF8 (0000ms, 691440ms total)
- T5AF8 16789:852 JLINK_ReadReg(R5) returns 0x200105A0 (0000ms, 691440ms total)
- T5AF8 16789:852 JLINK_ReadReg(R6) returns 0x6807C803 (0000ms, 691440ms total)
- T5AF8 16789:852 JLINK_ReadReg(R7) returns 0x6807C803 (0000ms, 691440ms total)
- T5AF8 16789:852 JLINK_ReadReg(R8) returns 0x6807C803 (0000ms, 691440ms total)
- T5AF8 16789:852 JLINK_ReadReg(R9) returns 0x6807C800 (0000ms, 691440ms total)
- T5AF8 16789:852 JLINK_ReadReg(R10) returns 0x10101010 (0000ms, 691440ms total)
- T5AF8 16789:852 JLINK_ReadReg(R11) returns 0x11111111 (0000ms, 691440ms total)
- T5AF8 16789:852 JLINK_ReadReg(R12) returns 0x00000000 (0000ms, 691440ms total)
- T5AF8 16789:852 JLINK_ReadReg(R13 (SP)) returns 0x2000A45C (0000ms, 691440ms total)
- T5AF8 16789:852 JLINK_ReadReg(R14) returns 0x080009D7 (0000ms, 691440ms total)
- T5AF8 16789:852 JLINK_ReadReg(R15 (PC)) returns 0x08004AB6 (0000ms, 691440ms total)
- T5AF8 16789:852 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 691440ms total)
- T5AF8 16789:852 JLINK_ReadReg(MSP) returns 0x20011CC8 (0000ms, 691440ms total)
- T5AF8 16789:852 JLINK_ReadReg(PSP) returns 0x2000A45C (0000ms, 691440ms total)
- T5AF8 16789:852 JLINK_ReadReg(CFBP) returns 0x02000000 (0000ms, 691440ms total)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- T5690 16789:881 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 4F 6B 65 04 returns 1 (0000ms, 691467ms total)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- T5AF8 16792:665 JLINK_ReadReg(R15 (PC)) returns 0x08004AB8 (0000ms, 691504ms total)
- T5AF8 16792:665 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 691504ms total)
- T5AF8 16792:665 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004AB8) -- Simulated returns 0x00 (0000ms, 691504ms total)
- T5AF8 16792:665 JLINK_ReadReg(R15 (PC)) returns 0x08004ABA (0000ms, 691504ms total)
- T5AF8 16792:665 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 691504ms total)
- T5AF8 16792:665 JLINK_SetBPEx(Addr = 0x08004ABE, Type = 0xFFFFFFF2) returns 0x00000006 (0000ms, 691504ms total)
- T5AF8 16792:665 JLINK_SetBPEx(Addr = 0x08004D60, Type = 0xFFFFFFF2) returns 0x00000007 (0000ms, 691504ms total)
- T5AF8 16792:665 JLINK_SetBPEx(Addr = 0x08004AB6, Type = 0xFFFFFFF2) returns 0x00000008 (0000ms, 691504ms total)
- 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)
- T5AF8 16792:780 JLINK_IsHalted() returns TRUE (0016ms, 691535ms total)
- T5AF8 16792:796 JLINK_Halt() returns 0x00 (0000ms, 691519ms total)
- T5AF8 16792:796 JLINK_IsHalted() returns TRUE (0000ms, 691519ms total)
- T5AF8 16792:796 JLINK_IsHalted() returns TRUE (0000ms, 691519ms total)
- T5AF8 16792:796 JLINK_IsHalted() returns TRUE (0000ms, 691519ms total)
- T5AF8 16792:796 JLINK_ReadReg(R15 (PC)) returns 0x08004ABE (0000ms, 691519ms total)
- T5AF8 16792:796 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 691519ms total)
- T5AF8 16792:796 JLINK_ClrBPEx(BPHandle = 0x00000006) returns 0x00 (0000ms, 691519ms total)
- T5AF8 16792:796 JLINK_ClrBPEx(BPHandle = 0x00000007) returns 0x00 (0000ms, 691519ms total)
- T5AF8 16792:796 JLINK_ClrBPEx(BPHandle = 0x00000008) returns 0x00 (0000ms, 691519ms total)
- T5AF8 16792:796 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 02 00 00 00 returns 1 (0002ms, 691521ms total)
- T5AF8 16792:798 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00 returns 1 (0002ms, 691523ms total)
- T5AF8 16792:800 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 02 00 00 returns 1 (0001ms, 691524ms total)
- T5AF8 16792:801 JLINK_ReadMemU32(0xE0001048, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001048) - Data: 00 00 00 00 returns 1 (0001ms, 691525ms total)
- T5AF8 16792:802 JLINK_ReadMemU32(0xE0001058, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001058) - Data: 00 00 00 00 returns 1 (0002ms, 691527ms total)
- 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)
- 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)
- 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)
- T5AF8 16792:809 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004ABE) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Simulated returns 0x00 (0002ms, 691534ms total)
- T5AF8 16792:811 JLINK_ReadReg(R15 (PC)) returns 0x08004AC0 (0000ms, 691534ms total)
- T5AF8 16792:811 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 691534ms total)
- T5AF8 16792:811 JLINK_ReadReg(R0) returns 0x6807C80F (0000ms, 691534ms total)
- T5AF8 16792:811 JLINK_ReadReg(R1) returns 0x08004B1C (0000ms, 691534ms total)
- T5AF8 16792:811 JLINK_ReadReg(R2) returns 0x6807C81E (0000ms, 691534ms total)
- T5AF8 16792:811 JLINK_ReadReg(R3) returns 0x08004B2B (0000ms, 691534ms total)
- T5AF8 16792:811 JLINK_ReadReg(R4) returns 0x20011CF8 (0000ms, 691534ms total)
- T5AF8 16792:811 JLINK_ReadReg(R5) returns 0x200105A0 (0000ms, 691534ms total)
- T5AF8 16792:811 JLINK_ReadReg(R6) returns 0x6807C80F (0000ms, 691534ms total)
- T5AF8 16792:811 JLINK_ReadReg(R7) returns 0x6807C803 (0000ms, 691534ms total)
- T5AF8 16792:811 JLINK_ReadReg(R8) returns 0x6807C803 (0000ms, 691534ms total)
- T5AF8 16792:811 JLINK_ReadReg(R9) returns 0x6807C800 (0000ms, 691534ms total)
- T5AF8 16792:811 JLINK_ReadReg(R10) returns 0x10101010 (0000ms, 691534ms total)
- T5AF8 16792:811 JLINK_ReadReg(R11) returns 0x11111111 (0000ms, 691534ms total)
- T5AF8 16792:811 JLINK_ReadReg(R12) returns 0x00000000 (0000ms, 691534ms total)
- T5AF8 16792:811 JLINK_ReadReg(R13 (SP)) returns 0x2000A45C (0000ms, 691534ms total)
- T5AF8 16792:811 JLINK_ReadReg(R14) returns 0x08004ABF (0000ms, 691534ms total)
- T5AF8 16792:811 JLINK_ReadReg(R15 (PC)) returns 0x08004AC0 (0000ms, 691534ms total)
- T5AF8 16792:811 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 691534ms total)
- T5AF8 16792:811 JLINK_ReadReg(MSP) returns 0x20011CC8 (0000ms, 691534ms total)
- T5AF8 16792:811 JLINK_ReadReg(PSP) returns 0x2000A45C (0000ms, 691534ms total)
- T5AF8 16792:811 JLINK_ReadReg(CFBP) returns 0x02000000 (0000ms, 691534ms total)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- T5690 16792:846 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 2D 6D 65 04 returns 1 (0000ms, 691561ms total)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- T5AF8 16801:528 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004AC0) -- Simulated returns 0x00 (0001ms, 691636ms total)
- T5AF8 16801:529 JLINK_ReadReg(R15 (PC)) returns 0x08004ADE (0000ms, 691636ms total)
- T5AF8 16801:529 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 691636ms total)
- T5AF8 16801:529 JLINK_ReadReg(R0) returns 0x6807C80F (0001ms, 691637ms total)
- T5AF8 16801:530 JLINK_ReadReg(R1) returns 0x08004B1C (0000ms, 691637ms total)
- T5AF8 16801:530 JLINK_ReadReg(R2) returns 0x6807C81E (0000ms, 691637ms total)
- T5AF8 16801:530 JLINK_ReadReg(R3) returns 0x08004B2B (0000ms, 691637ms total)
- T5AF8 16801:530 JLINK_ReadReg(R4) returns 0x20011CF8 (0000ms, 691637ms total)
- T5AF8 16801:530 JLINK_ReadReg(R5) returns 0x200105A0 (0000ms, 691637ms total)
- T5AF8 16801:530 JLINK_ReadReg(R6) returns 0x6807C80F (0000ms, 691637ms total)
- T5AF8 16801:530 JLINK_ReadReg(R7) returns 0x6807C803 (0000ms, 691637ms total)
- T5AF8 16801:530 JLINK_ReadReg(R8) returns 0x6807C803 (0000ms, 691637ms total)
- T5AF8 16801:530 JLINK_ReadReg(R9) returns 0x6807C800 (0000ms, 691637ms total)
- T5AF8 16801:530 JLINK_ReadReg(R10) returns 0x10101010 (0000ms, 691637ms total)
- T5AF8 16801:530 JLINK_ReadReg(R11) returns 0x11111111 (0000ms, 691637ms total)
- T5AF8 16801:530 JLINK_ReadReg(R12) returns 0x00000000 (0000ms, 691637ms total)
- T5AF8 16801:530 JLINK_ReadReg(R13 (SP)) returns 0x2000A45C (0000ms, 691637ms total)
- T5AF8 16801:530 JLINK_ReadReg(R14) returns 0x08004ABF (0000ms, 691637ms total)
- T5AF8 16801:530 JLINK_ReadReg(R15 (PC)) returns 0x08004ADE (0000ms, 691637ms total)
- T5AF8 16801:530 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 691637ms total)
- T5AF8 16801:530 JLINK_ReadReg(MSP) returns 0x20011CC8 (0000ms, 691637ms total)
- T5AF8 16801:530 JLINK_ReadReg(PSP) returns 0x2000A45C (0000ms, 691637ms total)
- T5AF8 16801:530 JLINK_ReadReg(CFBP) returns 0x02000000 (0000ms, 691637ms total)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- T5690 16801:539 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 2E 6D 65 04 returns 1 (0000ms, 691646ms total)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- T5AF8 16802:400 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004ADE) -- Simulated returns 0x00 (0002ms, 691677ms total)
- T5AF8 16802:402 JLINK_ReadReg(R15 (PC)) returns 0x08004AC2 (0000ms, 691677ms total)
- T5AF8 16802:402 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 691677ms total)
- T5AF8 16802:402 JLINK_ReadReg(R0) returns 0x6807C80F (0000ms, 691677ms total)
- T5AF8 16802:402 JLINK_ReadReg(R1) returns 0x08004B1C (0000ms, 691677ms total)
- T5AF8 16802:402 JLINK_ReadReg(R2) returns 0x6807C81E (0000ms, 691677ms total)
- T5AF8 16802:402 JLINK_ReadReg(R3) returns 0x08004B2B (0000ms, 691677ms total)
- T5AF8 16802:402 JLINK_ReadReg(R4) returns 0x20011CF8 (0000ms, 691677ms total)
- T5AF8 16802:402 JLINK_ReadReg(R5) returns 0x200105A0 (0000ms, 691677ms total)
- T5AF8 16802:402 JLINK_ReadReg(R6) returns 0x6807C80F (0000ms, 691677ms total)
- T5AF8 16802:402 JLINK_ReadReg(R7) returns 0x6807C803 (0000ms, 691677ms total)
- T5AF8 16802:402 JLINK_ReadReg(R8) returns 0x6807C803 (0000ms, 691677ms total)
- T5AF8 16802:402 JLINK_ReadReg(R9) returns 0x6807C800 (0000ms, 691677ms total)
- T5AF8 16802:402 JLINK_ReadReg(R10) returns 0x10101010 (0000ms, 691677ms total)
- T5AF8 16802:402 JLINK_ReadReg(R11) returns 0x11111111 (0000ms, 691677ms total)
- T5AF8 16802:402 JLINK_ReadReg(R12) returns 0x00000000 (0000ms, 691677ms total)
- T5AF8 16802:402 JLINK_ReadReg(R13 (SP)) returns 0x2000A45C (0000ms, 691677ms total)
- T5AF8 16802:402 JLINK_ReadReg(R14) returns 0x08004ABF (0000ms, 691677ms total)
- T5AF8 16802:402 JLINK_ReadReg(R15 (PC)) returns 0x08004AC2 (0000ms, 691677ms total)
- T5AF8 16802:402 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 691677ms total)
- T5AF8 16802:402 JLINK_ReadReg(MSP) returns 0x20011CC8 (0000ms, 691677ms total)
- T5AF8 16802:402 JLINK_ReadReg(PSP) returns 0x2000A45C (0000ms, 691677ms total)
- T5AF8 16802:402 JLINK_ReadReg(CFBP) returns 0x02000000 (0000ms, 691677ms total)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- T5690 16802:412 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 2F 6D 65 04 returns 1 (0000ms, 691687ms total)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- T5AF8 16805:585 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004AC2) -- Simulated returns 0x00 (0001ms, 691712ms total)
- T5AF8 16805:586 JLINK_ReadReg(R15 (PC)) returns 0x08004AC4 (0000ms, 691712ms total)
- T5AF8 16805:586 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 691712ms total)
- T5AF8 16805:586 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004AC4) -- Simulated returns 0x00 (0000ms, 691712ms total)
- T5AF8 16805:586 JLINK_ReadReg(R15 (PC)) returns 0x08004AC6 (0000ms, 691712ms total)
- T5AF8 16805:586 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 691712ms total)
- 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)
- T5AF8 16805:586 JLINK_ReadReg(R15 (PC)) returns 0x08004D60 (0000ms, 691712ms total)
- T5AF8 16805:586 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 691712ms total)
- T5AF8 16805:586 JLINK_ReadReg(R0) returns 0x6807C80F (0000ms, 691712ms total)
- T5AF8 16805:586 JLINK_ReadReg(R1) returns 0x20011CF8 (0000ms, 691712ms total)
- T5AF8 16805:586 JLINK_ReadReg(R2) returns 0x6807C81E (0000ms, 691712ms total)
- T5AF8 16805:586 JLINK_ReadReg(R3) returns 0x08004B2B (0000ms, 691712ms total)
- T5AF8 16805:586 JLINK_ReadReg(R4) returns 0x20011CF8 (0000ms, 691712ms total)
- T5AF8 16805:586 JLINK_ReadReg(R5) returns 0x200105A0 (0000ms, 691712ms total)
- T5AF8 16805:586 JLINK_ReadReg(R6) returns 0x6807C80F (0000ms, 691712ms total)
- T5AF8 16805:586 JLINK_ReadReg(R7) returns 0x6807C803 (0000ms, 691712ms total)
- T5AF8 16805:586 JLINK_ReadReg(R8) returns 0x6807C803 (0001ms, 691713ms total)
- T5AF8 16805:587 JLINK_ReadReg(R9) returns 0x6807C800 (0000ms, 691713ms total)
- T5AF8 16805:587 JLINK_ReadReg(R10) returns 0x10101010 (0000ms, 691713ms total)
- T5AF8 16805:587 JLINK_ReadReg(R11) returns 0x11111111 (0000ms, 691713ms total)
- T5AF8 16805:587 JLINK_ReadReg(R12) returns 0x00000000 (0000ms, 691713ms total)
- T5AF8 16805:587 JLINK_ReadReg(R13 (SP)) returns 0x2000A45C (0000ms, 691713ms total)
- T5AF8 16805:587 JLINK_ReadReg(R14) returns 0x08004ACB (0000ms, 691713ms total)
- T5AF8 16805:587 JLINK_ReadReg(R15 (PC)) returns 0x08004D60 (0000ms, 691713ms total)
- T5AF8 16805:587 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 691713ms total)
- T5AF8 16805:587 JLINK_ReadReg(MSP) returns 0x20011CC8 (0000ms, 691713ms total)
- T5AF8 16805:587 JLINK_ReadReg(PSP) returns 0x2000A45C (0000ms, 691713ms total)
- T5AF8 16805:587 JLINK_ReadReg(CFBP) returns 0x02000000 (0000ms, 691713ms total)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- T5690 16805:605 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 32 6D 65 04 returns 1 (0000ms, 691728ms total)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- T5AF8 16818:413 JLINK_ReadReg(R15 (PC)) returns 0x08004D64 (0000ms, 693560ms total)
- T5AF8 16818:413 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 693560ms total)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- T5AF8 16818:421 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004D64) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Simulated returns 0x00 (0001ms, 693569ms total)
- T5AF8 16818:422 JLINK_ReadReg(R15 (PC)) returns 0x08004D66 (0000ms, 693569ms total)
- T5AF8 16818:422 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 693569ms total)
- 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)
- 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)
- 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)
- T5AF8 16818:423 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004D66) -- Simulated returns 0x00 (0000ms, 693570ms total)
- T5AF8 16818:423 JLINK_ReadReg(R15 (PC)) returns 0x08004D68 (0000ms, 693570ms total)
- T5AF8 16818:423 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 693570ms total)
- T5AF8 16818:423 JLINK_ReadReg(R0) returns 0x6807C80F (0000ms, 693570ms total)
- T5AF8 16818:423 JLINK_ReadReg(R1) returns 0x20011CF8 (0000ms, 693570ms total)
- T5AF8 16818:423 JLINK_ReadReg(R2) returns 0x6807C81E (0000ms, 693570ms total)
- T5AF8 16818:423 JLINK_ReadReg(R3) returns 0x08004B2B (0000ms, 693570ms total)
- T5AF8 16818:423 JLINK_ReadReg(R4) returns 0x20011CF8 (0000ms, 693570ms total)
- T5AF8 16818:423 JLINK_ReadReg(R5) returns 0x200105A0 (0000ms, 693570ms total)
- T5AF8 16818:423 JLINK_ReadReg(R6) returns 0x6807C80F (0000ms, 693570ms total)
- T5AF8 16818:423 JLINK_ReadReg(R7) returns 0x6807C80F (0000ms, 693570ms total)
- T5AF8 16818:423 JLINK_ReadReg(R8) returns 0x6807C803 (0000ms, 693570ms total)
- T5AF8 16818:423 JLINK_ReadReg(R9) returns 0x6807C800 (0000ms, 693570ms total)
- T5AF8 16818:423 JLINK_ReadReg(R10) returns 0x10101010 (0000ms, 693570ms total)
- T5AF8 16818:423 JLINK_ReadReg(R11) returns 0x11111111 (0000ms, 693570ms total)
- T5AF8 16818:423 JLINK_ReadReg(R12) returns 0x00000000 (0000ms, 693570ms total)
- T5AF8 16818:423 JLINK_ReadReg(R13 (SP)) returns 0x2000A444 (0000ms, 693570ms total)
- T5AF8 16818:423 JLINK_ReadReg(R14) returns 0x08004ACB (0000ms, 693570ms total)
- T5AF8 16818:423 JLINK_ReadReg(R15 (PC)) returns 0x08004D68 (0000ms, 693570ms total)
- T5AF8 16818:423 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 693570ms total)
- T5AF8 16818:423 JLINK_ReadReg(MSP) returns 0x20011CC8 (0000ms, 693570ms total)
- T5AF8 16818:423 JLINK_ReadReg(PSP) returns 0x2000A444 (0000ms, 693570ms total)
- T5AF8 16818:423 JLINK_ReadReg(CFBP) returns 0x02000000 (0000ms, 693570ms total)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- T5690 16818:446 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 3C 6D 65 04 returns 1 (0000ms, 693593ms total)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- T5AF8 16819:663 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004D68) -- Simulated returns 0x00 (0001ms, 693722ms total)
- T5AF8 16819:664 JLINK_ReadReg(R15 (PC)) returns 0x08004D6A (0000ms, 693722ms total)
- T5AF8 16819:664 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 693722ms total)
- T5AF8 16819:664 JLINK_SetBPEx(Addr = 0x08004D6E, Type = 0xFFFFFFF2) returns 0x00000009 (0000ms, 693722ms total)
- T5AF8 16819:664 JLINK_SetBPEx(Addr = 0x08004D60, Type = 0xFFFFFFF2) returns 0x0000000A (0000ms, 693722ms total)
- T5AF8 16819:664 JLINK_SetBPEx(Addr = 0x08004AB6, Type = 0xFFFFFFF2) returns 0x0000000B (0000ms, 693722ms total)
- 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)
- T5AF8 16819:781 JLINK_IsHalted() returns TRUE (0017ms, 693756ms total)
- T5AF8 16819:798 JLINK_Halt() returns 0x00 (0000ms, 693739ms total)
- T5AF8 16819:798 JLINK_IsHalted() returns TRUE (0000ms, 693739ms total)
- T5AF8 16819:798 JLINK_IsHalted() returns TRUE (0000ms, 693739ms total)
- T5AF8 16819:798 JLINK_IsHalted() returns TRUE (0000ms, 693739ms total)
- T5AF8 16819:798 JLINK_ReadReg(R15 (PC)) returns 0x08004D6E (0000ms, 693739ms total)
- T5AF8 16819:798 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 693739ms total)
- T5AF8 16819:798 JLINK_ClrBPEx(BPHandle = 0x00000009) returns 0x00 (0000ms, 693739ms total)
- T5AF8 16819:798 JLINK_ClrBPEx(BPHandle = 0x0000000A) returns 0x00 (0000ms, 693739ms total)
- T5AF8 16819:798 JLINK_ClrBPEx(BPHandle = 0x0000000B) returns 0x00 (0000ms, 693739ms total)
- T5AF8 16819:798 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 02 00 00 00 returns 1 (0002ms, 693741ms total)
- T5AF8 16819:800 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00 returns 1 (0001ms, 693742ms total)
- T5AF8 16819:801 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 02 00 00 returns 1 (0002ms, 693744ms total)
- T5AF8 16819:803 JLINK_ReadMemU32(0xE0001048, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001048) - Data: 00 00 00 00 returns 1 (0001ms, 693745ms total)
- T5AF8 16819:804 JLINK_ReadMemU32(0xE0001058, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001058) - Data: 00 00 00 00 returns 1 (0002ms, 693747ms total)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- T5AF8 16819:814 JLINK_ReadReg(R15 (PC)) returns 0x08004D70 (0000ms, 693755ms total)
- T5AF8 16819:814 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 693755ms total)
- T5AF8 16819:814 JLINK_ReadReg(R0) returns 0x20011D20 (0000ms, 693755ms total)
- T5AF8 16819:814 JLINK_ReadReg(R1) returns 0x00000000 (0000ms, 693755ms total)
- T5AF8 16819:814 JLINK_ReadReg(R2) returns 0xFFFFFFFF (0000ms, 693755ms total)
- T5AF8 16819:814 JLINK_ReadReg(R3) returns 0x00000000 (0000ms, 693755ms total)
- T5AF8 16819:814 JLINK_ReadReg(R4) returns 0x20011CF8 (0000ms, 693755ms total)
- T5AF8 16819:814 JLINK_ReadReg(R5) returns 0x200105A0 (0000ms, 693755ms total)
- T5AF8 16819:814 JLINK_ReadReg(R6) returns 0x6807C80F (0000ms, 693755ms total)
- T5AF8 16819:814 JLINK_ReadReg(R7) returns 0x6807C80F (0000ms, 693755ms total)
- T5AF8 16819:814 JLINK_ReadReg(R8) returns 0x6807C803 (0000ms, 693755ms total)
- T5AF8 16819:814 JLINK_ReadReg(R9) returns 0x6807C800 (0000ms, 693755ms total)
- T5AF8 16819:814 JLINK_ReadReg(R10) returns 0x10101010 (0000ms, 693755ms total)
- T5AF8 16819:814 JLINK_ReadReg(R11) returns 0x11111111 (0000ms, 693755ms total)
- T5AF8 16819:814 JLINK_ReadReg(R12) returns 0x00000000 (0000ms, 693755ms total)
- T5AF8 16819:814 JLINK_ReadReg(R13 (SP)) returns 0x2000A444 (0000ms, 693755ms total)
- T5AF8 16819:814 JLINK_ReadReg(R14) returns 0x08006EB5 (0000ms, 693755ms total)
- T5AF8 16819:814 JLINK_ReadReg(R15 (PC)) returns 0x08004D70 (0000ms, 693755ms total)
- T5AF8 16819:814 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 693755ms total)
- T5AF8 16819:814 JLINK_ReadReg(MSP) returns 0x20011CC8 (0000ms, 693755ms total)
- T5AF8 16819:814 JLINK_ReadReg(PSP) returns 0x2000A444 (0000ms, 693755ms total)
- T5AF8 16819:814 JLINK_ReadReg(CFBP) returns 0x02000000 (0000ms, 693755ms total)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- T5690 16819:844 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: C8 6D 65 04 returns 1 (0001ms, 693775ms total)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- T5AF8 16820:478 JLINK_ReadReg(R15 (PC)) returns 0x08004D72 (0000ms, 693908ms total)
- T5AF8 16820:478 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 693908ms total)
- T5AF8 16820:478 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004D72) -- Simulated returns 0x00 (0000ms, 693908ms total)
- T5AF8 16820:478 JLINK_ReadReg(R15 (PC)) returns 0x08004D74 (0000ms, 693908ms total)
- T5AF8 16820:478 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 693908ms total)
- T5AF8 16820:478 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004D74) -- Simulated returns 0x00 (0000ms, 693908ms total)
- T5AF8 16820:478 JLINK_ReadReg(R15 (PC)) returns 0x08004D76 (0000ms, 693908ms total)
- T5AF8 16820:478 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 693908ms total)
- T5AF8 16820:478 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004D76) -- Simulated returns 0x00 (0000ms, 693908ms total)
- T5AF8 16820:478 JLINK_ReadReg(R15 (PC)) returns 0x08004D78 (0000ms, 693908ms total)
- T5AF8 16820:478 JLINK_ReadReg(XPSR) returns 0x61000000 (0000ms, 693908ms total)
- T5AF8 16820:478 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004D78) -- Simulated returns 0x00 (0000ms, 693908ms total)
- T5AF8 16820:478 JLINK_ReadReg(R15 (PC)) returns 0x08004D82 (0000ms, 693908ms total)
- T5AF8 16820:478 JLINK_ReadReg(XPSR) returns 0x61000000 (0000ms, 693908ms total)
- T5AF8 16820:478 JLINK_ReadReg(R0) returns 0x00000002 (0000ms, 693908ms total)
- T5AF8 16820:478 JLINK_ReadReg(R1) returns 0x00000000 (0000ms, 693908ms total)
- T5AF8 16820:478 JLINK_ReadReg(R2) returns 0xFFFFFFFF (0000ms, 693908ms total)
- T5AF8 16820:478 JLINK_ReadReg(R3) returns 0x00000000 (0000ms, 693908ms total)
- T5AF8 16820:478 JLINK_ReadReg(R4) returns 0x20011CF8 (0000ms, 693908ms total)
- T5AF8 16820:478 JLINK_ReadReg(R5) returns 0x200105A0 (0000ms, 693908ms total)
- T5AF8 16820:478 JLINK_ReadReg(R6) returns 0x6807C80F (0000ms, 693908ms total)
- T5AF8 16820:478 JLINK_ReadReg(R7) returns 0x6807C80F (0000ms, 693908ms total)
- T5AF8 16820:478 JLINK_ReadReg(R8) returns 0x6807C803 (0000ms, 693908ms total)
- T5AF8 16820:478 JLINK_ReadReg(R9) returns 0x6807C800 (0000ms, 693908ms total)
- T5AF8 16820:478 JLINK_ReadReg(R10) returns 0x10101010 (0000ms, 693908ms total)
- T5AF8 16820:478 JLINK_ReadReg(R11) returns 0x11111111 (0000ms, 693908ms total)
- T5AF8 16820:478 JLINK_ReadReg(R12) returns 0x00000000 (0000ms, 693908ms total)
- T5AF8 16820:478 JLINK_ReadReg(R13 (SP)) returns 0x2000A444 (0000ms, 693908ms total)
- T5AF8 16820:478 JLINK_ReadReg(R14) returns 0x08006EB5 (0000ms, 693908ms total)
- T5AF8 16820:478 JLINK_ReadReg(R15 (PC)) returns 0x08004D82 (0000ms, 693908ms total)
- T5AF8 16820:478 JLINK_ReadReg(XPSR) returns 0x61000000 (0000ms, 693908ms total)
- T5AF8 16820:478 JLINK_ReadReg(MSP) returns 0x20011CC8 (0000ms, 693908ms total)
- T5AF8 16820:478 JLINK_ReadReg(PSP) returns 0x2000A444 (0000ms, 693908ms total)
- T5AF8 16820:478 JLINK_ReadReg(CFBP) returns 0x02000000 (0000ms, 693908ms total)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- T5690 16820:484 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: CE 6D 65 04 returns 1 (0000ms, 693913ms total)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- T5AF8 16821:322 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004D82) -- Simulated returns 0x00 (0002ms, 694046ms total)
- T5AF8 16821:324 JLINK_ReadReg(R15 (PC)) returns 0x08004D84 (0000ms, 694046ms total)
- T5AF8 16821:324 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 694046ms total)
- T5AF8 16821:324 JLINK_SetBPEx(Addr = 0x08004D88, Type = 0xFFFFFFF2) returns 0x0000000C (0000ms, 694046ms total)
- T5AF8 16821:324 JLINK_SetBPEx(Addr = 0x08004D60, Type = 0xFFFFFFF2) returns 0x0000000D (0000ms, 694046ms total)
- T5AF8 16821:324 JLINK_SetBPEx(Addr = 0x08004AB6, Type = 0xFFFFFFF2) returns 0x0000000E (0000ms, 694046ms total)
- 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)
- T5AF8 16821:438 JLINK_IsHalted() returns TRUE (0017ms, 694077ms total)
- T5AF8 16821:455 JLINK_Halt() returns 0x00 (0000ms, 694060ms total)
- T5AF8 16821:455 JLINK_IsHalted() returns TRUE (0000ms, 694060ms total)
- T5AF8 16821:455 JLINK_IsHalted() returns TRUE (0000ms, 694060ms total)
- T5AF8 16821:455 JLINK_IsHalted() returns TRUE (0000ms, 694060ms total)
- T5AF8 16821:455 JLINK_ReadReg(R15 (PC)) returns 0x08004D88 (0000ms, 694060ms total)
- T5AF8 16821:455 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 694060ms total)
- T5AF8 16821:455 JLINK_ClrBPEx(BPHandle = 0x0000000C) returns 0x00 (0000ms, 694060ms total)
- T5AF8 16821:455 JLINK_ClrBPEx(BPHandle = 0x0000000D) returns 0x00 (0000ms, 694060ms total)
- T5AF8 16821:455 JLINK_ClrBPEx(BPHandle = 0x0000000E) returns 0x00 (0000ms, 694060ms total)
- T5AF8 16821:455 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 02 00 00 00 returns 1 (0001ms, 694061ms total)
- T5AF8 16821:456 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00 returns 1 (0003ms, 694064ms total)
- T5AF8 16821:459 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 02 00 00 returns 1 (0002ms, 694066ms total)
- T5AF8 16821:461 JLINK_ReadMemU32(0xE0001048, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001048) - Data: 00 00 00 00 returns 1 (0001ms, 694067ms total)
- T5AF8 16821:462 JLINK_ReadMemU32(0xE0001058, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001058) - Data: 00 00 00 00 returns 1 (0002ms, 694069ms total)
- 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)
- 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)
- 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)
- T5AF8 16821:471 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004D88) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Simulated returns 0x00 (0001ms, 694077ms total)
- T5AF8 16821:472 JLINK_ReadReg(R15 (PC)) returns 0x08004D8A (0000ms, 694077ms total)
- T5AF8 16821:472 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 694077ms total)
- T5AF8 16821:472 JLINK_ReadReg(R0) returns 0x20011D38 (0000ms, 694077ms total)
- T5AF8 16821:472 JLINK_ReadReg(R1) returns 0x00000000 (0000ms, 694077ms total)
- T5AF8 16821:472 JLINK_ReadReg(R2) returns 0xFFFFFFFF (0000ms, 694077ms total)
- T5AF8 16821:472 JLINK_ReadReg(R3) returns 0x00000000 (0000ms, 694077ms total)
- T5AF8 16821:472 JLINK_ReadReg(R4) returns 0x20011CF8 (0000ms, 694077ms total)
- T5AF8 16821:472 JLINK_ReadReg(R5) returns 0x200105A0 (0000ms, 694077ms total)
- T5AF8 16821:472 JLINK_ReadReg(R6) returns 0x20011D38 (0000ms, 694077ms total)
- T5AF8 16821:472 JLINK_ReadReg(R7) returns 0x6807C80F (0000ms, 694077ms total)
- T5AF8 16821:472 JLINK_ReadReg(R8) returns 0x6807C803 (0000ms, 694077ms total)
- T5AF8 16821:472 JLINK_ReadReg(R9) returns 0x6807C800 (0000ms, 694077ms total)
- T5AF8 16821:472 JLINK_ReadReg(R10) returns 0x10101010 (0000ms, 694077ms total)
- T5AF8 16821:472 JLINK_ReadReg(R11) returns 0x11111111 (0000ms, 694077ms total)
- T5AF8 16821:472 JLINK_ReadReg(R12) returns 0x00000000 (0000ms, 694077ms total)
- T5AF8 16821:472 JLINK_ReadReg(R13 (SP)) returns 0x2000A444 (0000ms, 694077ms total)
- T5AF8 16821:472 JLINK_ReadReg(R14) returns 0x08006EB5 (0000ms, 694077ms total)
- T5AF8 16821:472 JLINK_ReadReg(R15 (PC)) returns 0x08004D8A (0000ms, 694077ms total)
- T5AF8 16821:472 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 694077ms total)
- T5AF8 16821:472 JLINK_ReadReg(MSP) returns 0x20011CC8 (0000ms, 694077ms total)
- T5AF8 16821:472 JLINK_ReadReg(PSP) returns 0x2000A444 (0000ms, 694077ms total)
- T5AF8 16821:472 JLINK_ReadReg(CFBP) returns 0x02000000 (0000ms, 694077ms total)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- T5690 16821:488 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 41 6E 65 04 returns 1 (0000ms, 694092ms total)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- T5AF8 16824:464 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004D8A) -- Simulated returns 0x00 (0001ms, 694220ms total)
- T5AF8 16824:466 JLINK_ReadReg(R15 (PC)) returns 0x08004D8C (0000ms, 694220ms total)
- T5AF8 16824:466 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 694220ms total)
- T5AF8 16824:466 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004D8C) -- Simulated returns 0x00 (0000ms, 694220ms total)
- T5AF8 16824:466 JLINK_ReadReg(R15 (PC)) returns 0x08004D8E (0000ms, 694220ms total)
- T5AF8 16824:466 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 694220ms total)
- T5AF8 16824:466 JLINK_SetBPEx(Addr = 0x08004D92, Type = 0xFFFFFFF2) returns 0x0000000F (0000ms, 694220ms total)
- T5AF8 16824:466 JLINK_SetBPEx(Addr = 0x08004D60, Type = 0xFFFFFFF2) returns 0x00000010 (0000ms, 694220ms total)
- T5AF8 16824:466 JLINK_SetBPEx(Addr = 0x08004AB6, Type = 0xFFFFFFF2) returns 0x00000011 (0000ms, 694220ms total)
- 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)
- T5AF8 16824:580 JLINK_IsHalted() returns TRUE (0016ms, 694248ms total)
- T5AF8 16824:596 JLINK_Halt() returns 0x00 (0000ms, 694232ms total)
- T5AF8 16824:596 JLINK_IsHalted() returns TRUE (0000ms, 694232ms total)
- T5AF8 16824:596 JLINK_IsHalted() returns TRUE (0000ms, 694232ms total)
- T5AF8 16824:596 JLINK_IsHalted() returns TRUE (0000ms, 694232ms total)
- T5AF8 16824:596 JLINK_ReadReg(R15 (PC)) returns 0x08004D92 (0000ms, 694232ms total)
- T5AF8 16824:596 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 694232ms total)
- T5AF8 16824:596 JLINK_ClrBPEx(BPHandle = 0x0000000F) returns 0x00 (0000ms, 694232ms total)
- T5AF8 16824:596 JLINK_ClrBPEx(BPHandle = 0x00000010) returns 0x00 (0000ms, 694232ms total)
- T5AF8 16824:596 JLINK_ClrBPEx(BPHandle = 0x00000011) returns 0x00 (0000ms, 694232ms total)
- T5AF8 16824:596 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 02 00 00 00 returns 1 (0002ms, 694234ms total)
- T5AF8 16824:598 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00 returns 1 (0002ms, 694236ms total)
- T5AF8 16824:600 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 02 00 00 returns 1 (0001ms, 694237ms total)
- T5AF8 16824:601 JLINK_ReadMemU32(0xE0001048, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001048) - Data: 00 00 00 00 returns 1 (0002ms, 694239ms total)
- T5AF8 16824:603 JLINK_ReadMemU32(0xE0001058, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001058) - Data: 00 00 00 00 returns 1 (0001ms, 694240ms total)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- T5AF8 16824:614 JLINK_ReadReg(R15 (PC)) returns 0x08004D94 (0000ms, 694250ms total)
- T5AF8 16824:614 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 694250ms total)
- T5AF8 16824:614 JLINK_ReadReg(R0) returns 0x02800002 (0000ms, 694250ms total)
- T5AF8 16824:614 JLINK_ReadReg(R1) returns 0x00000000 (0000ms, 694250ms total)
- T5AF8 16824:614 JLINK_ReadReg(R2) returns 0x0000005D (0000ms, 694250ms total)
- T5AF8 16824:614 JLINK_ReadReg(R3) returns 0x6807C86E (0000ms, 694250ms total)
- T5AF8 16824:614 JLINK_ReadReg(R4) returns 0x20011CF8 (0000ms, 694250ms total)
- T5AF8 16824:614 JLINK_ReadReg(R5) returns 0x200105A0 (0000ms, 694250ms total)
- T5AF8 16824:614 JLINK_ReadReg(R6) returns 0x20011D38 (0000ms, 694250ms total)
- T5AF8 16824:614 JLINK_ReadReg(R7) returns 0x6807C80F (0000ms, 694250ms total)
- T5AF8 16824:614 JLINK_ReadReg(R8) returns 0x6807C803 (0000ms, 694250ms total)
- T5AF8 16824:614 JLINK_ReadReg(R9) returns 0x6807C800 (0000ms, 694250ms total)
- T5AF8 16824:614 JLINK_ReadReg(R10) returns 0x10101010 (0000ms, 694250ms total)
- T5AF8 16824:614 JLINK_ReadReg(R11) returns 0x11111111 (0000ms, 694250ms total)
- T5AF8 16824:614 JLINK_ReadReg(R12) returns 0x00000000 (0000ms, 694250ms total)
- T5AF8 16824:614 JLINK_ReadReg(R13 (SP)) returns 0x2000A444 (0000ms, 694250ms total)
- T5AF8 16824:614 JLINK_ReadReg(R14) returns 0x080009D7 (0000ms, 694250ms total)
- T5AF8 16824:614 JLINK_ReadReg(R15 (PC)) returns 0x08004D94 (0000ms, 694250ms total)
- T5AF8 16824:614 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 694250ms total)
- T5AF8 16824:614 JLINK_ReadReg(MSP) returns 0x20011CC8 (0000ms, 694250ms total)
- T5AF8 16824:614 JLINK_ReadReg(PSP) returns 0x2000A444 (0000ms, 694250ms total)
- T5AF8 16824:614 JLINK_ReadReg(CFBP) returns 0x02000000 (0000ms, 694250ms total)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- T5690 16824:650 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: AE 77 65 04 returns 1 (0000ms, 694271ms total)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- T5AF8 16835:721 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004D94) -- Simulated returns 0x00 (0002ms, 694405ms total)
- T5AF8 16835:723 JLINK_ReadReg(R15 (PC)) returns 0x08004D96 (0000ms, 694405ms total)
- T5AF8 16835:723 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 694405ms total)
- 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)
- 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)
- 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)
- T5AF8 16835:723 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004D96) -- Simulated returns 0x00 (0000ms, 694405ms total)
- T5AF8 16835:723 JLINK_ReadReg(R15 (PC)) returns 0x08004D98 (0000ms, 694405ms total)
- T5AF8 16835:723 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 694405ms total)
- 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)
- 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)
- 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)
- T5AF8 16835:723 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004D98) -- Simulated returns 0x00 (0000ms, 694405ms total)
- T5AF8 16835:723 JLINK_ReadReg(R15 (PC)) returns 0x08004D9A (0000ms, 694405ms total)
- T5AF8 16835:723 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 694405ms total)
- 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)
- 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)
- 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)
- T5AF8 16835:723 JLINK_SetBPEx(Addr = 0x08004D9E, Type = 0xFFFFFFF2) returns 0x00000012 (0000ms, 694405ms total)
- T5AF8 16835:723 JLINK_SetBPEx(Addr = 0x08004D60, Type = 0xFFFFFFF2) returns 0x00000013 (0000ms, 694405ms total)
- T5AF8 16835:723 JLINK_SetBPEx(Addr = 0x08004AB6, Type = 0xFFFFFFF2) returns 0x00000014 (0000ms, 694405ms total)
- 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)
- T5AF8 16835:838 JLINK_IsHalted() returns TRUE (0016ms, 694435ms total)
- T5AF8 16835:854 JLINK_Halt() returns 0x00 (0000ms, 694419ms total)
- T5AF8 16835:854 JLINK_IsHalted() returns TRUE (0000ms, 694419ms total)
- T5AF8 16835:854 JLINK_IsHalted() returns TRUE (0000ms, 694419ms total)
- T5AF8 16835:854 JLINK_IsHalted() returns TRUE (0000ms, 694419ms total)
- T5AF8 16835:854 JLINK_ReadReg(R15 (PC)) returns 0x08004D9E (0000ms, 694419ms total)
- T5AF8 16835:854 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 694419ms total)
- T5AF8 16835:854 JLINK_ClrBPEx(BPHandle = 0x00000012) returns 0x00 (0000ms, 694419ms total)
- T5AF8 16835:854 JLINK_ClrBPEx(BPHandle = 0x00000013) returns 0x00 (0000ms, 694419ms total)
- T5AF8 16835:854 JLINK_ClrBPEx(BPHandle = 0x00000014) returns 0x00 (0000ms, 694419ms total)
- T5AF8 16835:854 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 02 00 00 00 returns 1 (0002ms, 694421ms total)
- T5AF8 16835:856 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00 returns 1 (0002ms, 694423ms total)
- T5AF8 16835:858 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 02 00 00 returns 1 (0001ms, 694424ms total)
- T5AF8 16835:859 JLINK_ReadMemU32(0xE0001048, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001048) - Data: 00 00 00 00 returns 1 (0002ms, 694426ms total)
- T5AF8 16835:861 JLINK_ReadMemU32(0xE0001058, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001058) - Data: 00 00 00 00 returns 1 (0001ms, 694427ms total)
- T5AF8 16835:862 JLINK_ReadReg(R0) returns 0x00000001 (0000ms, 694427ms total)
- T5AF8 16835:862 JLINK_ReadReg(R1) returns 0x6807C837 (0000ms, 694427ms total)
- T5AF8 16835:862 JLINK_ReadReg(R2) returns 0xFFFFFFF4 (0000ms, 694427ms total)
- T5AF8 16835:862 JLINK_ReadReg(R3) returns 0x6807C82C (0000ms, 694427ms total)
- T5AF8 16835:862 JLINK_ReadReg(R4) returns 0x20011CF8 (0000ms, 694427ms total)
- T5AF8 16835:862 JLINK_ReadReg(R5) returns 0x200105A0 (0000ms, 694427ms total)
- T5AF8 16835:862 JLINK_ReadReg(R6) returns 0x20011D38 (0000ms, 694427ms total)
- T5AF8 16835:862 JLINK_ReadReg(R7) returns 0x6807C80F (0000ms, 694427ms total)
- T5AF8 16835:862 JLINK_ReadReg(R8) returns 0x6807C803 (0000ms, 694427ms total)
- T5AF8 16835:862 JLINK_ReadReg(R9) returns 0x6807C800 (0000ms, 694427ms total)
- T5AF8 16835:862 JLINK_ReadReg(R10) returns 0x10101010 (0000ms, 694427ms total)
- T5AF8 16835:862 JLINK_ReadReg(R11) returns 0x11111111 (0000ms, 694427ms total)
- T5AF8 16835:862 JLINK_ReadReg(R12) returns 0x00000000 (0000ms, 694427ms total)
- T5AF8 16835:862 JLINK_ReadReg(R13 (SP)) returns 0x2000A444 (0000ms, 694427ms total)
- T5AF8 16835:862 JLINK_ReadReg(R14) returns 0x08000BAB (0000ms, 694427ms total)
- T5AF8 16835:862 JLINK_ReadReg(R15 (PC)) returns 0x08004D9E (0000ms, 694427ms total)
- T5AF8 16835:862 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 694427ms total)
- T5AF8 16835:862 JLINK_ReadReg(MSP) returns 0x20011CC8 (0000ms, 694427ms total)
- T5AF8 16835:862 JLINK_ReadReg(PSP) returns 0x2000A444 (0000ms, 694427ms total)
- T5AF8 16835:862 JLINK_ReadReg(CFBP) returns 0x02000000 (0000ms, 694427ms total)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- T5690 16835:895 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001004) - Data: A8 7F 65 04 returns 1 (0001ms, 694451ms total)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- T5690 16846:989 JLINK_ReadMemEx(0x20011D61, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20011D61) - Data: 00 returns 0x01 (0000ms, 694593ms total)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- T5690 16846:994 JLINK_ReadMemEx(0x20011D61, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20011D61) - Data: 00 returns 0x01 (0000ms, 694597ms total)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- T5AF8 16857:046 JLINK_ReadReg(R15 (PC)) returns 0x08004DA0 (0000ms, 694600ms total)
- T5AF8 16857:046 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 694600ms total)
- 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)
- 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)
- 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)
- 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)
- T5AF8 16857:046 JLINK_ReadReg(R15 (PC)) returns 0x08004DA2 (0000ms, 694600ms total)
- T5AF8 16857:046 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 694600ms total)
- 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)
- 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)
- 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)
- T5AF8 16857:046 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004DA2) -- Simulated returns 0x00 (0000ms, 694600ms total)
- T5AF8 16857:046 JLINK_ReadReg(R15 (PC)) returns 0x08004DA4 (0000ms, 694600ms total)
- T5AF8 16857:046 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 694600ms total)
- T5AF8 16857:046 JLINK_ReadReg(R0) returns 0x00000000 (0000ms, 694600ms total)
- T5AF8 16857:046 JLINK_ReadReg(R1) returns 0x6807C837 (0000ms, 694600ms total)
- T5AF8 16857:046 JLINK_ReadReg(R2) returns 0xFFFFFFF4 (0000ms, 694600ms total)
- T5AF8 16857:046 JLINK_ReadReg(R3) returns 0x6807C82C (0000ms, 694600ms total)
- T5AF8 16857:046 JLINK_ReadReg(R4) returns 0x20011CF8 (0000ms, 694600ms total)
- T5AF8 16857:046 JLINK_ReadReg(R5) returns 0x200105A0 (0000ms, 694600ms total)
- T5AF8 16857:046 JLINK_ReadReg(R6) returns 0x20011D38 (0000ms, 694600ms total)
- T5AF8 16857:046 JLINK_ReadReg(R7) returns 0x6807C80F (0000ms, 694600ms total)
- T5AF8 16857:046 JLINK_ReadReg(R8) returns 0x6807C803 (0000ms, 694600ms total)
- T5AF8 16857:046 JLINK_ReadReg(R9) returns 0x6807C800 (0000ms, 694600ms total)
- T5AF8 16857:046 JLINK_ReadReg(R10) returns 0x10101010 (0000ms, 694600ms total)
- T5AF8 16857:046 JLINK_ReadReg(R11) returns 0x11111111 (0000ms, 694600ms total)
- T5AF8 16857:046 JLINK_ReadReg(R12) returns 0x00000000 (0000ms, 694600ms total)
- T5AF8 16857:046 JLINK_ReadReg(R13 (SP)) returns 0x2000A444 (0000ms, 694600ms total)
- T5AF8 16857:046 JLINK_ReadReg(R14) returns 0x08000BAB (0000ms, 694600ms total)
- T5AF8 16857:046 JLINK_ReadReg(R15 (PC)) returns 0x08004DA4 (0000ms, 694600ms total)
- T5AF8 16857:046 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 694600ms total)
- T5AF8 16857:046 JLINK_ReadReg(MSP) returns 0x20011CC8 (0000ms, 694600ms total)
- T5AF8 16857:046 JLINK_ReadReg(PSP) returns 0x2000A444 (0000ms, 694600ms total)
- T5AF8 16857:046 JLINK_ReadReg(CFBP) returns 0x02000000 (0000ms, 694600ms total)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- T5690 16857:052 JLINK_ReadMemEx(0x20011D61, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20011D61) - Data: 00 returns 0x01 (0000ms, 694605ms total)
- T5690 16857:052 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: AD 7F 65 04 returns 1 (0000ms, 694605ms total)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- T5AF8 16910:258 JLINK_ReadReg(R15 (PC)) returns 0x08004DA6 (0000ms, 694606ms total)
- T5AF8 16910:258 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 694606ms total)
- T5AF8 16910:258 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004DA6) -- CPU_WriteMem(4 bytes @ 0x20011D28) -- Simulated returns 0x00 (0002ms, 694608ms total)
- T5AF8 16910:260 JLINK_ReadReg(R15 (PC)) returns 0x08004DA8 (0000ms, 694608ms total)
- T5AF8 16910:260 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 694608ms total)
- T5AF8 16910:260 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004DA8) -- Simulated returns 0x00 (0000ms, 694608ms total)
- T5AF8 16910:260 JLINK_ReadReg(R15 (PC)) returns 0x08004DBE (0000ms, 694608ms total)
- T5AF8 16910:260 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 694608ms total)
- 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)
- 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)
- 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)
- T5AF8 16910:260 JLINK_ReadReg(R0) returns 0x20011D20 (0000ms, 694608ms total)
- T5AF8 16910:260 JLINK_ReadReg(R1) returns 0x6807C837 (0000ms, 694608ms total)
- T5AF8 16910:260 JLINK_ReadReg(R2) returns 0xFFFFFFF4 (0000ms, 694608ms total)
- T5AF8 16910:260 JLINK_ReadReg(R3) returns 0x6807C82C (0000ms, 694608ms total)
- T5AF8 16910:260 JLINK_ReadReg(R4) returns 0x20011CF8 (0000ms, 694608ms total)
- T5AF8 16910:260 JLINK_ReadReg(R5) returns 0x200105A0 (0000ms, 694608ms total)
- T5AF8 16910:260 JLINK_ReadReg(R6) returns 0x20011D38 (0000ms, 694608ms total)
- T5AF8 16910:260 JLINK_ReadReg(R7) returns 0x6807C80F (0000ms, 694608ms total)
- T5AF8 16910:260 JLINK_ReadReg(R8) returns 0x6807C803 (0000ms, 694608ms total)
- T5AF8 16910:260 JLINK_ReadReg(R9) returns 0x6807C800 (0000ms, 694608ms total)
- T5AF8 16910:260 JLINK_ReadReg(R10) returns 0x10101010 (0000ms, 694608ms total)
- T5AF8 16910:260 JLINK_ReadReg(R11) returns 0x11111111 (0000ms, 694608ms total)
- T5AF8 16910:260 JLINK_ReadReg(R12) returns 0x00000000 (0000ms, 694608ms total)
- T5AF8 16910:260 JLINK_ReadReg(R13 (SP)) returns 0x2000A444 (0000ms, 694608ms total)
- T5AF8 16910:260 JLINK_ReadReg(R14) returns 0x08000BAB (0000ms, 694608ms total)
- T5AF8 16910:260 JLINK_ReadReg(R15 (PC)) returns 0x08004DBE (0000ms, 694608ms total)
- T5AF8 16910:260 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 694608ms total)
- T5AF8 16910:260 JLINK_ReadReg(MSP) returns 0x20011CC8 (0000ms, 694608ms total)
- T5AF8 16910:260 JLINK_ReadReg(PSP) returns 0x2000A444 (0000ms, 694608ms total)
- T5AF8 16910:260 JLINK_ReadReg(CFBP) returns 0x02000000 (0000ms, 694608ms total)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- T5690 16910:270 JLINK_ReadMemEx(0x20011D61, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20011D61) - Data: 00 returns 0x01 (0000ms, 694615ms total)
- T5690 16910:270 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: B2 7F 65 04 returns 1 (0000ms, 694615ms total)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- T5AF8 16913:505 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004DBE) -- Simulated returns 0x00 (0001ms, 694620ms total)
- T5AF8 16913:506 JLINK_ReadReg(R15 (PC)) returns 0x08004E32 (0000ms, 694620ms total)
- T5AF8 16913:506 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 694620ms total)
- T5AF8 16913:507 JLINK_ReadReg(R0) returns 0x20011D20 (0000ms, 694620ms total)
- T5AF8 16913:507 JLINK_ReadReg(R1) returns 0x6807C837 (0000ms, 694620ms total)
- T5AF8 16913:507 JLINK_ReadReg(R2) returns 0xFFFFFFF4 (0000ms, 694620ms total)
- T5AF8 16913:507 JLINK_ReadReg(R3) returns 0x6807C82C (0000ms, 694620ms total)
- T5AF8 16913:507 JLINK_ReadReg(R4) returns 0x20011CF8 (0000ms, 694620ms total)
- T5AF8 16913:507 JLINK_ReadReg(R5) returns 0x200105A0 (0000ms, 694620ms total)
- T5AF8 16913:507 JLINK_ReadReg(R6) returns 0x20011D38 (0000ms, 694620ms total)
- T5AF8 16913:507 JLINK_ReadReg(R7) returns 0x6807C80F (0000ms, 694620ms total)
- T5AF8 16913:507 JLINK_ReadReg(R8) returns 0x6807C803 (0000ms, 694620ms total)
- T5AF8 16913:507 JLINK_ReadReg(R9) returns 0x6807C800 (0000ms, 694620ms total)
- T5AF8 16913:507 JLINK_ReadReg(R10) returns 0x10101010 (0000ms, 694620ms total)
- T5AF8 16913:507 JLINK_ReadReg(R11) returns 0x11111111 (0000ms, 694620ms total)
- T5AF8 16913:507 JLINK_ReadReg(R12) returns 0x00000000 (0000ms, 694620ms total)
- T5AF8 16913:507 JLINK_ReadReg(R13 (SP)) returns 0x2000A444 (0000ms, 694620ms total)
- T5AF8 16913:507 JLINK_ReadReg(R14) returns 0x08000BAB (0000ms, 694620ms total)
- T5AF8 16913:507 JLINK_ReadReg(R15 (PC)) returns 0x08004E32 (0000ms, 694620ms total)
- T5AF8 16913:507 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 694620ms total)
- T5AF8 16913:507 JLINK_ReadReg(MSP) returns 0x20011CC8 (0000ms, 694620ms total)
- T5AF8 16913:507 JLINK_ReadReg(PSP) returns 0x2000A444 (0000ms, 694620ms total)
- T5AF8 16913:507 JLINK_ReadReg(CFBP) returns 0x02000000 (0000ms, 694620ms total)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- T5690 16913:513 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: B3 7F 65 04 returns 1 (0000ms, 694626ms total)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- T5AF8 16916:105 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004E32) -- Simulated returns 0x00 (0001ms, 694631ms total)
- T5AF8 16916:106 JLINK_ReadReg(R15 (PC)) returns 0x08004E34 (0000ms, 694631ms total)
- T5AF8 16916:106 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 694631ms total)
- T5AF8 16916:106 JLINK_ReadReg(R0) returns 0x20011D20 (0000ms, 694631ms total)
- T5AF8 16916:106 JLINK_ReadReg(R1) returns 0x6807C837 (0000ms, 694631ms total)
- T5AF8 16916:106 JLINK_ReadReg(R2) returns 0xFFFFFFF4 (0000ms, 694631ms total)
- T5AF8 16916:106 JLINK_ReadReg(R3) returns 0x6807C82C (0000ms, 694631ms total)
- T5AF8 16916:106 JLINK_ReadReg(R4) returns 0x20011CF8 (0000ms, 694631ms total)
- T5AF8 16916:106 JLINK_ReadReg(R5) returns 0x200105A0 (0000ms, 694631ms total)
- T5AF8 16916:106 JLINK_ReadReg(R6) returns 0x20011D38 (0000ms, 694631ms total)
- T5AF8 16916:106 JLINK_ReadReg(R7) returns 0x6807C80F (0000ms, 694631ms total)
- T5AF8 16916:106 JLINK_ReadReg(R8) returns 0x6807C803 (0000ms, 694631ms total)
- T5AF8 16916:106 JLINK_ReadReg(R9) returns 0x6807C800 (0000ms, 694631ms total)
- T5AF8 16916:106 JLINK_ReadReg(R10) returns 0x10101010 (0000ms, 694631ms total)
- T5AF8 16916:106 JLINK_ReadReg(R11) returns 0x11111111 (0000ms, 694631ms total)
- T5AF8 16916:106 JLINK_ReadReg(R12) returns 0x00000000 (0000ms, 694631ms total)
- T5AF8 16916:106 JLINK_ReadReg(R13 (SP)) returns 0x2000A444 (0000ms, 694631ms total)
- T5AF8 16916:106 JLINK_ReadReg(R14) returns 0x08000BAB (0000ms, 694631ms total)
- T5AF8 16916:106 JLINK_ReadReg(R15 (PC)) returns 0x08004E34 (0000ms, 694631ms total)
- T5AF8 16916:106 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 694631ms total)
- T5AF8 16916:106 JLINK_ReadReg(MSP) returns 0x20011CC8 (0000ms, 694631ms total)
- T5AF8 16916:106 JLINK_ReadReg(PSP) returns 0x2000A444 (0000ms, 694631ms total)
- T5AF8 16916:106 JLINK_ReadReg(CFBP) returns 0x02000000 (0000ms, 694631ms total)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- T5690 16916:113 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: B4 7F 65 04 returns 1 (0000ms, 694636ms total)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- T5AF8 16917:003 JLINK_ReadReg(R15 (PC)) returns 0x08004ACA (0000ms, 694663ms total)
- T5AF8 16917:003 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 694663ms total)
- T5AF8 16917:004 JLINK_ReadReg(R0) returns 0x20011D20 (0000ms, 694663ms total)
- T5AF8 16917:004 JLINK_ReadReg(R1) returns 0x6807C837 (0000ms, 694663ms total)
- T5AF8 16917:004 JLINK_ReadReg(R2) returns 0xFFFFFFF4 (0000ms, 694663ms total)
- T5AF8 16917:004 JLINK_ReadReg(R3) returns 0x6807C82C (0000ms, 694663ms total)
- T5AF8 16917:004 JLINK_ReadReg(R4) returns 0x20011CF8 (0000ms, 694663ms total)
- T5AF8 16917:004 JLINK_ReadReg(R5) returns 0x200105A0 (0000ms, 694663ms total)
- T5AF8 16917:004 JLINK_ReadReg(R6) returns 0x6807C80F (0000ms, 694663ms total)
- T5AF8 16917:004 JLINK_ReadReg(R7) returns 0x6807C803 (0000ms, 694663ms total)
- T5AF8 16917:004 JLINK_ReadReg(R8) returns 0x6807C803 (0000ms, 694663ms total)
- T5AF8 16917:004 JLINK_ReadReg(R9) returns 0x6807C800 (0000ms, 694663ms total)
- T5AF8 16917:004 JLINK_ReadReg(R10) returns 0x10101010 (0000ms, 694663ms total)
- T5AF8 16917:004 JLINK_ReadReg(R11) returns 0x11111111 (0000ms, 694663ms total)
- T5AF8 16917:004 JLINK_ReadReg(R12) returns 0x00000000 (0000ms, 694663ms total)
- T5AF8 16917:004 JLINK_ReadReg(R13 (SP)) returns 0x2000A45C (0000ms, 694663ms total)
- T5AF8 16917:004 JLINK_ReadReg(R14) returns 0x08000BAB (0000ms, 694663ms total)
- T5AF8 16917:004 JLINK_ReadReg(R15 (PC)) returns 0x08004ACA (0000ms, 694663ms total)
- T5AF8 16917:004 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 694663ms total)
- T5AF8 16917:004 JLINK_ReadReg(MSP) returns 0x20011CC8 (0000ms, 694663ms total)
- T5AF8 16917:004 JLINK_ReadReg(PSP) returns 0x2000A45C (0000ms, 694663ms total)
- T5AF8 16917:004 JLINK_ReadReg(CFBP) returns 0x02000000 (0000ms, 694663ms total)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- T5690 16917:028 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001004) - Data: BD 7F 65 04 returns 1 (0002ms, 694680ms total)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- T5AF8 16918:202 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004ACA) -- Simulated returns 0x00 (0002ms, 694689ms total)
- T5AF8 16918:204 JLINK_ReadReg(R15 (PC)) returns 0x08004ACC (0000ms, 694689ms total)
- T5AF8 16918:204 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 694689ms total)
- T5AF8 16918:204 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004ACC) -- Simulated returns 0x00 (0000ms, 694689ms total)
- T5AF8 16918:204 JLINK_ReadReg(R15 (PC)) returns 0x08004ACE (0000ms, 694689ms total)
- T5AF8 16918:204 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 694689ms total)
- T5AF8 16918:204 JLINK_SetBPEx(Addr = 0x08004AD2, Type = 0xFFFFFFF2) returns 0x00000015 (0000ms, 694689ms total)
- T5AF8 16918:204 JLINK_SetBPEx(Addr = 0x08004D60, Type = 0xFFFFFFF2) returns 0x00000016 (0000ms, 694689ms total)
- T5AF8 16918:204 JLINK_SetBPEx(Addr = 0x08004AB6, Type = 0xFFFFFFF2) returns 0x00000017 (0000ms, 694689ms total)
- 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)
- T5AF8 16918:321 JLINK_IsHalted() returns TRUE (0017ms, 694722ms total)
- T5AF8 16918:338 JLINK_Halt() returns 0x00 (0000ms, 694705ms total)
- T5AF8 16918:338 JLINK_IsHalted() returns TRUE (0000ms, 694705ms total)
- T5AF8 16918:338 JLINK_IsHalted() returns TRUE (0000ms, 694705ms total)
- T5AF8 16918:338 JLINK_IsHalted() returns TRUE (0000ms, 694705ms total)
- T5AF8 16918:338 JLINK_ReadReg(R15 (PC)) returns 0x08004AD2 (0000ms, 694705ms total)
- T5AF8 16918:338 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 694705ms total)
- T5AF8 16918:338 JLINK_ClrBPEx(BPHandle = 0x00000015) returns 0x00 (0000ms, 694705ms total)
- T5AF8 16918:338 JLINK_ClrBPEx(BPHandle = 0x00000016) returns 0x00 (0000ms, 694705ms total)
- T5AF8 16918:338 JLINK_ClrBPEx(BPHandle = 0x00000017) returns 0x00 (0000ms, 694705ms total)
- T5AF8 16918:338 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 02 00 00 00 returns 1 (0001ms, 694706ms total)
- T5AF8 16918:339 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00 returns 1 (0002ms, 694708ms total)
- T5AF8 16918:341 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 02 00 00 returns 1 (0002ms, 694710ms total)
- T5AF8 16918:343 JLINK_ReadMemU32(0xE0001048, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001048) - Data: 00 00 00 00 returns 1 (0001ms, 694711ms total)
- T5AF8 16918:344 JLINK_ReadMemU32(0xE0001058, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001058) - Data: 00 00 00 00 returns 1 (0002ms, 694713ms total)
- 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)
- 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)
- 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)
- T5AF8 16918:352 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004AD2) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Simulated returns 0x00 (0001ms, 694720ms total)
- T5AF8 16918:353 JLINK_ReadReg(R15 (PC)) returns 0x08004AD4 (0000ms, 694720ms total)
- T5AF8 16918:353 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 694720ms total)
- T5AF8 16918:353 JLINK_ReadReg(R0) returns 0x6807C86E (0000ms, 694720ms total)
- T5AF8 16918:353 JLINK_ReadReg(R1) returns 0x08004B2C (0000ms, 694720ms total)
- T5AF8 16918:353 JLINK_ReadReg(R2) returns 0x6807C870 (0000ms, 694720ms total)
- T5AF8 16918:353 JLINK_ReadReg(R3) returns 0x08004B2E (0000ms, 694720ms total)
- T5AF8 16918:353 JLINK_ReadReg(R4) returns 0x20011CF8 (0000ms, 694720ms total)
- T5AF8 16918:353 JLINK_ReadReg(R5) returns 0x200105A0 (0000ms, 694720ms total)
- T5AF8 16918:353 JLINK_ReadReg(R6) returns 0x6807C86E (0000ms, 694720ms total)
- T5AF8 16918:353 JLINK_ReadReg(R7) returns 0x6807C803 (0000ms, 694720ms total)
- T5AF8 16918:353 JLINK_ReadReg(R8) returns 0x6807C803 (0000ms, 694720ms total)
- T5AF8 16918:353 JLINK_ReadReg(R9) returns 0x6807C800 (0000ms, 694720ms total)
- T5AF8 16918:353 JLINK_ReadReg(R10) returns 0x10101010 (0001ms, 694721ms total)
- T5AF8 16918:354 JLINK_ReadReg(R11) returns 0x11111111 (0000ms, 694721ms total)
- T5AF8 16918:354 JLINK_ReadReg(R12) returns 0x00000000 (0000ms, 694721ms total)
- T5AF8 16918:354 JLINK_ReadReg(R13 (SP)) returns 0x2000A45C (0000ms, 694721ms total)
- T5AF8 16918:354 JLINK_ReadReg(R14) returns 0x08004AD3 (0000ms, 694721ms total)
- T5AF8 16918:354 JLINK_ReadReg(R15 (PC)) returns 0x08004AD4 (0000ms, 694721ms total)
- T5AF8 16918:354 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 694721ms total)
- T5AF8 16918:354 JLINK_ReadReg(MSP) returns 0x20011CC8 (0000ms, 694721ms total)
- T5AF8 16918:354 JLINK_ReadReg(PSP) returns 0x2000A45C (0000ms, 694721ms total)
- T5AF8 16918:354 JLINK_ReadReg(CFBP) returns 0x02000000 (0000ms, 694721ms total)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- T5690 16918:413 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 01 87 65 04 returns 1 (0000ms, 694748ms total)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- T5AF8 16926:262 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004AD4) -- Simulated returns 0x00 (0002ms, 695255ms total)
- T5AF8 16926:264 JLINK_ReadReg(R15 (PC)) returns 0x08004AD6 (0000ms, 695255ms total)
- T5AF8 16926:264 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 695255ms total)
- T5AF8 16926:264 JLINK_ReadReg(R0) returns 0x6807C86E (0000ms, 695255ms total)
- T5AF8 16926:264 JLINK_ReadReg(R1) returns 0x08004B2C (0000ms, 695255ms total)
- T5AF8 16926:264 JLINK_ReadReg(R2) returns 0x6807C870 (0000ms, 695255ms total)
- T5AF8 16926:264 JLINK_ReadReg(R3) returns 0x08004B2E (0000ms, 695255ms total)
- T5AF8 16926:264 JLINK_ReadReg(R4) returns 0x20011CF8 (0000ms, 695255ms total)
- T5AF8 16926:264 JLINK_ReadReg(R5) returns 0x200105A0 (0000ms, 695255ms total)
- T5AF8 16926:264 JLINK_ReadReg(R6) returns 0x6807C86F (0000ms, 695255ms total)
- T5AF8 16926:264 JLINK_ReadReg(R7) returns 0x6807C803 (0000ms, 695255ms total)
- T5AF8 16926:264 JLINK_ReadReg(R8) returns 0x6807C803 (0000ms, 695255ms total)
- T5AF8 16926:264 JLINK_ReadReg(R9) returns 0x6807C800 (0000ms, 695255ms total)
- T5AF8 16926:264 JLINK_ReadReg(R10) returns 0x10101010 (0000ms, 695255ms total)
- T5AF8 16926:264 JLINK_ReadReg(R11) returns 0x11111111 (0000ms, 695255ms total)
- T5AF8 16926:264 JLINK_ReadReg(R12) returns 0x00000000 (0000ms, 695255ms total)
- T5AF8 16926:264 JLINK_ReadReg(R13 (SP)) returns 0x2000A45C (0000ms, 695255ms total)
- T5AF8 16926:264 JLINK_ReadReg(R14) returns 0x08004AD3 (0000ms, 695255ms total)
- T5AF8 16926:264 JLINK_ReadReg(R15 (PC)) returns 0x08004AD6 (0000ms, 695255ms total)
- T5AF8 16926:264 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 695255ms total)
- T5AF8 16926:264 JLINK_ReadReg(MSP) returns 0x20011CC8 (0000ms, 695255ms total)
- T5AF8 16926:264 JLINK_ReadReg(PSP) returns 0x2000A45C (0000ms, 695255ms total)
- T5AF8 16926:264 JLINK_ReadReg(CFBP) returns 0x02000000 (0000ms, 695255ms total)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- T5690 16926:273 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 02 87 65 04 returns 1 (0000ms, 695264ms total)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- T5AF8 16928:349 JLINK_ReadReg(R15 (PC)) returns 0x08004AD8 (0000ms, 695419ms total)
- T5AF8 16928:349 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 695419ms total)
- 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)
- T5AF8 16928:354 JLINK_ReadReg(R15 (PC)) returns 0x08004ADA (0000ms, 695424ms total)
- T5AF8 16928:354 JLINK_ReadReg(XPSR) returns 0x81000000 (0000ms, 695424ms total)
- T5AF8 16928:354 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004ADA) -- Simulated returns 0x00 (0000ms, 695424ms total)
- T5AF8 16928:354 JLINK_ReadReg(R15 (PC)) returns 0x08004ADE (0000ms, 695424ms total)
- T5AF8 16928:354 JLINK_ReadReg(XPSR) returns 0x81000000 (0000ms, 695424ms total)
- T5AF8 16928:354 JLINK_ReadReg(R0) returns 0x0000002C (0000ms, 695424ms total)
- T5AF8 16928:354 JLINK_ReadReg(R1) returns 0x08004B2C (0000ms, 695424ms total)
- T5AF8 16928:354 JLINK_ReadReg(R2) returns 0x6807C870 (0000ms, 695424ms total)
- T5AF8 16928:354 JLINK_ReadReg(R3) returns 0x08004B2E (0000ms, 695424ms total)
- T5AF8 16928:354 JLINK_ReadReg(R4) returns 0x20011CF8 (0000ms, 695424ms total)
- T5AF8 16928:354 JLINK_ReadReg(R5) returns 0x200105A0 (0000ms, 695424ms total)
- T5AF8 16928:354 JLINK_ReadReg(R6) returns 0x6807C86F (0000ms, 695424ms total)
- T5AF8 16928:354 JLINK_ReadReg(R7) returns 0x6807C803 (0000ms, 695424ms total)
- T5AF8 16928:354 JLINK_ReadReg(R8) returns 0x6807C803 (0000ms, 695424ms total)
- T5AF8 16928:354 JLINK_ReadReg(R9) returns 0x6807C800 (0000ms, 695424ms total)
- T5AF8 16928:354 JLINK_ReadReg(R10) returns 0x10101010 (0000ms, 695424ms total)
- T5AF8 16928:354 JLINK_ReadReg(R11) returns 0x11111111 (0000ms, 695424ms total)
- T5AF8 16928:354 JLINK_ReadReg(R12) returns 0x00000000 (0000ms, 695424ms total)
- T5AF8 16928:354 JLINK_ReadReg(R13 (SP)) returns 0x2000A45C (0000ms, 695424ms total)
- T5AF8 16928:354 JLINK_ReadReg(R14) returns 0x08004AD3 (0000ms, 695424ms total)
- T5AF8 16928:354 JLINK_ReadReg(R15 (PC)) returns 0x08004ADE (0001ms, 695425ms total)
- T5AF8 16928:355 JLINK_ReadReg(XPSR) returns 0x81000000 (0000ms, 695425ms total)
- T5AF8 16928:355 JLINK_ReadReg(MSP) returns 0x20011CC8 (0000ms, 695425ms total)
- T5AF8 16928:355 JLINK_ReadReg(PSP) returns 0x2000A45C (0000ms, 695425ms total)
- T5AF8 16928:355 JLINK_ReadReg(CFBP) returns 0x02000000 (0000ms, 695425ms total)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- T5690 16928:376 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 0A 87 65 04 returns 1 (0000ms, 695445ms total)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- T5AF8 16930:146 JLINK_Step() -- Read from C cache (2 bytes @ 0x08004ADE) -- Simulated returns 0x00 (0001ms, 695577ms total)
- T5AF8 16930:147 JLINK_ReadReg(R15 (PC)) returns 0x08004AC2 (0000ms, 695577ms total)
- T5AF8 16930:147 JLINK_ReadReg(XPSR) returns 0x81000000 (0000ms, 695577ms total)
- T5AF8 16930:147 JLINK_ReadReg(R0) returns 0x0000002C (0000ms, 695577ms total)
- T5AF8 16930:147 JLINK_ReadReg(R1) returns 0x08004B2C (0000ms, 695577ms total)
- T5AF8 16930:147 JLINK_ReadReg(R2) returns 0x6807C870 (0000ms, 695577ms total)
- T5AF8 16930:147 JLINK_ReadReg(R3) returns 0x08004B2E (0000ms, 695577ms total)
- T5AF8 16930:147 JLINK_ReadReg(R4) returns 0x20011CF8 (0000ms, 695577ms total)
- T5AF8 16930:147 JLINK_ReadReg(R5) returns 0x200105A0 (0000ms, 695577ms total)
- T5AF8 16930:147 JLINK_ReadReg(R6) returns 0x6807C86F (0000ms, 695577ms total)
- T5AF8 16930:147 JLINK_ReadReg(R7) returns 0x6807C803 (0000ms, 695577ms total)
- T5AF8 16930:148 JLINK_ReadReg(R8) returns 0x6807C803 (0000ms, 695577ms total)
- T5AF8 16930:148 JLINK_ReadReg(R9) returns 0x6807C800 (0000ms, 695577ms total)
- T5AF8 16930:148 JLINK_ReadReg(R10) returns 0x10101010 (0000ms, 695577ms total)
- T5AF8 16930:148 JLINK_ReadReg(R11) returns 0x11111111 (0000ms, 695577ms total)
- T5AF8 16930:148 JLINK_ReadReg(R12) returns 0x00000000 (0000ms, 695577ms total)
- T5AF8 16930:148 JLINK_ReadReg(R13 (SP)) returns 0x2000A45C (0000ms, 695577ms total)
- T5AF8 16930:148 JLINK_ReadReg(R14) returns 0x08004AD3 (0000ms, 695577ms total)
- T5AF8 16930:148 JLINK_ReadReg(R15 (PC)) returns 0x08004AC2 (0000ms, 695577ms total)
- T5AF8 16930:148 JLINK_ReadReg(XPSR) returns 0x81000000 (0000ms, 695577ms total)
- T5AF8 16930:148 JLINK_ReadReg(MSP) returns 0x20011CC8 (0000ms, 695577ms total)
- T5AF8 16930:148 JLINK_ReadReg(PSP) returns 0x2000A45C (0000ms, 695577ms total)
- T5AF8 16930:148 JLINK_ReadReg(CFBP) returns 0x02000000 (0000ms, 695577ms total)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- T5690 16930:157 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 0B 87 65 04 returns 1 (0000ms, 695585ms total)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- T5AF8 16935:473 JLINK_SetBPEx(Addr = 0x08004D60, Type = 0xFFFFFFF2) returns 0x00000018 (0000ms, 695712ms total)
- T5AF8 16935:473 JLINK_SetBPEx(Addr = 0x08004AB6, Type = 0xFFFFFFF2) returns 0x00000019 (0000ms, 695712ms total)
- T5AF8 16935:473 JLINK_SetBPEx(Addr = 0x08004ADC, Type = 0xFFFFFFF2) returns 0x0000001A (0000ms, 695712ms total)
- 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)
- T5AF8 16935:589 JLINK_IsHalted() returns TRUE (0016ms, 695743ms total)
- T5AF8 16935:605 JLINK_Halt() returns 0x00 (0000ms, 695727ms total)
- T5AF8 16935:605 JLINK_IsHalted() returns TRUE (0000ms, 695727ms total)
- T5AF8 16935:605 JLINK_IsHalted() returns TRUE (0000ms, 695727ms total)
- T5AF8 16935:605 JLINK_IsHalted() returns TRUE (0000ms, 695727ms total)
- T5AF8 16935:605 JLINK_ReadReg(R15 (PC)) returns 0x08004D60 (0000ms, 695727ms total)
- T5AF8 16935:605 JLINK_ReadReg(XPSR) returns 0x81000000 (0000ms, 695727ms total)
- T5AF8 16935:605 JLINK_ClrBPEx(BPHandle = 0x00000018) returns 0x00 (0000ms, 695727ms total)
- T5AF8 16935:605 JLINK_ClrBPEx(BPHandle = 0x00000019) returns 0x00 (0000ms, 695727ms total)
- T5AF8 16935:605 JLINK_ClrBPEx(BPHandle = 0x0000001A) returns 0x00 (0000ms, 695727ms total)
- T5AF8 16935:605 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 02 00 00 00 returns 1 (0002ms, 695729ms total)
- T5AF8 16935:607 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00 returns 1 (0002ms, 695731ms total)
- T5AF8 16935:609 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 02 00 00 returns 1 (0002ms, 695733ms total)
- T5AF8 16935:611 JLINK_ReadMemU32(0xE0001048, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001048) - Data: 00 00 00 00 returns 1 (0002ms, 695735ms total)
- T5AF8 16935:613 JLINK_ReadMemU32(0xE0001058, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001058) - Data: 00 00 00 00 returns 1 (0002ms, 695737ms total)
- T5AF8 16935:615 JLINK_ReadReg(R0) returns 0x6807C86F (0000ms, 695737ms total)
- T5AF8 16935:615 JLINK_ReadReg(R1) returns 0x20011CF8 (0000ms, 695737ms total)
- T5AF8 16935:615 JLINK_ReadReg(R2) returns 0x6807C870 (0000ms, 695737ms total)
- T5AF8 16935:615 JLINK_ReadReg(R3) returns 0x08004B2E (0000ms, 695737ms total)
- T5AF8 16935:615 JLINK_ReadReg(R4) returns 0x20011CF8 (0000ms, 695737ms total)
- T5AF8 16935:615 JLINK_ReadReg(R5) returns 0x200105A0 (0000ms, 695737ms total)
- T5AF8 16935:615 JLINK_ReadReg(R6) returns 0x6807C86F (0000ms, 695737ms total)
- T5AF8 16935:615 JLINK_ReadReg(R7) returns 0x6807C803 (0000ms, 695737ms total)
- T5AF8 16935:615 JLINK_ReadReg(R8) returns 0x6807C803 (0000ms, 695737ms total)
- T5AF8 16935:615 JLINK_ReadReg(R9) returns 0x6807C800 (0000ms, 695737ms total)
- T5AF8 16935:615 JLINK_ReadReg(R10) returns 0x10101010 (0000ms, 695737ms total)
- T5AF8 16935:615 JLINK_ReadReg(R11) returns 0x11111111 (0000ms, 695737ms total)
- T5AF8 16935:615 JLINK_ReadReg(R12) returns 0x00000000 (0000ms, 695737ms total)
- T5AF8 16935:615 JLINK_ReadReg(R13 (SP)) returns 0x2000A45C (0000ms, 695737ms total)
- T5AF8 16935:615 JLINK_ReadReg(R14) returns 0x08004ACB (0000ms, 695737ms total)
- T5AF8 16935:615 JLINK_ReadReg(R15 (PC)) returns 0x08004D60 (0000ms, 695737ms total)
- T5AF8 16935:615 JLINK_ReadReg(XPSR) returns 0x81000000 (0000ms, 695737ms total)
- T5AF8 16935:615 JLINK_ReadReg(MSP) returns 0x20011CC8 (0000ms, 695737ms total)
- T5AF8 16935:615 JLINK_ReadReg(PSP) returns 0x2000A45C (0000ms, 695737ms total)
- T5AF8 16935:615 JLINK_ReadReg(CFBP) returns 0x02000000 (0000ms, 695737ms total)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- T5690 16935:645 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001004) - Data: 12 87 65 04 returns 1 (0002ms, 695767ms total)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- T5AF8 16939:593 JLINK_SetBPEx(Addr = 0x08004AB6, Type = 0xFFFFFFF2) returns 0x0000001B (0000ms, 695917ms total)
- T5AF8 16939:593 JLINK_SetBPEx(Addr = 0x08004ADC, Type = 0xFFFFFFF2) returns 0x0000001C (0000ms, 695917ms total)
- 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)
- T5AF8 16939:705 JLINK_IsHalted() returns TRUE (0017ms, 695946ms total)
- T5AF8 16939:722 JLINK_Halt() returns 0x00 (0000ms, 695929ms total)
- T5AF8 16939:722 JLINK_IsHalted() returns TRUE (0000ms, 695929ms total)
- T5AF8 16939:722 JLINK_IsHalted() returns TRUE (0000ms, 695929ms total)
- T5AF8 16939:722 JLINK_IsHalted() returns TRUE (0000ms, 695929ms total)
- T5AF8 16939:722 JLINK_ReadReg(R15 (PC)) returns 0x08004ADC (0000ms, 695929ms total)
- T5AF8 16939:722 JLINK_ReadReg(XPSR) returns 0x61000000 (0000ms, 695929ms total)
- T5AF8 16939:722 JLINK_ClrBPEx(BPHandle = 0x0000001B) returns 0x00 (0000ms, 695929ms total)
- T5AF8 16939:722 JLINK_ClrBPEx(BPHandle = 0x0000001C) returns 0x00 (0000ms, 695929ms total)
- T5AF8 16939:722 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 02 00 00 00 returns 1 (0001ms, 695930ms total)
- T5AF8 16939:723 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00 returns 1 (0002ms, 695932ms total)
- T5AF8 16939:725 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 02 00 00 returns 1 (0002ms, 695934ms total)
- T5AF8 16939:727 JLINK_ReadMemU32(0xE0001048, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001048) - Data: 00 00 00 00 returns 1 (0002ms, 695936ms total)
- T5AF8 16939:729 JLINK_ReadMemU32(0xE0001058, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001058) - Data: 00 00 00 00 returns 1 (0001ms, 695937ms total)
- T5AF8 16939:731 JLINK_ReadReg(R0) returns 0x0000005D (0000ms, 695938ms total)
- T5AF8 16939:731 JLINK_ReadReg(R1) returns 0x08004B2C (0000ms, 695938ms total)
- T5AF8 16939:731 JLINK_ReadReg(R2) returns 0x6807D06B (0000ms, 695938ms total)
- T5AF8 16939:731 JLINK_ReadReg(R3) returns 0x08004B2E (0000ms, 695938ms total)
- T5AF8 16939:731 JLINK_ReadReg(R4) returns 0x20011CF8 (0000ms, 695938ms total)
- T5AF8 16939:731 JLINK_ReadReg(R5) returns 0x200105A0 (0000ms, 695938ms total)
- T5AF8 16939:731 JLINK_ReadReg(R6) returns 0x6807D06A (0000ms, 695938ms total)
- T5AF8 16939:731 JLINK_ReadReg(R7) returns 0x6807C803 (0000ms, 695938ms total)
- T5AF8 16939:731 JLINK_ReadReg(R8) returns 0x6807C803 (0000ms, 695938ms total)
- T5AF8 16939:731 JLINK_ReadReg(R9) returns 0x6807C800 (0000ms, 695938ms total)
- T5AF8 16939:731 JLINK_ReadReg(R10) returns 0x10101010 (0000ms, 695938ms total)
- T5AF8 16939:731 JLINK_ReadReg(R11) returns 0x11111111 (0000ms, 695938ms total)
- T5AF8 16939:731 JLINK_ReadReg(R12) returns 0x00000000 (0000ms, 695938ms total)
- T5AF8 16939:731 JLINK_ReadReg(R13 (SP)) returns 0x2000A45C (0000ms, 695938ms total)
- T5AF8 16939:731 JLINK_ReadReg(R14) returns 0x08004AD3 (0000ms, 695938ms total)
- T5AF8 16939:731 JLINK_ReadReg(R15 (PC)) returns 0x08004ADC (0000ms, 695938ms total)
- T5AF8 16939:731 JLINK_ReadReg(XPSR) returns 0x61000000 (0000ms, 695938ms total)
- T5AF8 16939:731 JLINK_ReadReg(MSP) returns 0x20011CC8 (0000ms, 695938ms total)
- T5AF8 16939:731 JLINK_ReadReg(PSP) returns 0x2000A45C (0000ms, 695938ms total)
- T5AF8 16939:731 JLINK_ReadReg(CFBP) returns 0x02000000 (0000ms, 695938ms total)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- T5690 16939:754 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001004) - Data: B9 BA 67 04 returns 1 (0002ms, 695961ms total)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- T5690 16960:516 (0019ms, 696114ms total)
- T5690 16960:516 Closed (0019ms, 696114ms total)
|