| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150 |
- <?xml version="1.0" encoding="ISO-8859-1" ?>
- <link_info>
- <banner>TI ARM Clang Linker PC v4.0.0.LTS</banner>
- <copyright>Copyright (c) 1996-2018 Texas Instruments Incorporated</copyright>
- <command_line>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\bin\tiarmlnk -IC:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib -o segment_main.out -msegment_main.map -iC:/ti/mspm0_sdk_2_02_00_05/source -iC:/Users/User/workspace_ccstheia/segment_main -iC:/Users/User/workspace_ccstheia/segment_main/Debug/syscfg -iC:/ti/ccstheia150/ccs/tools/compiler/ti-cgt-armllvm_4.0.0.LTS/lib --diag_wrap=off --display_error_number --warn_sections --xml_link_info=segment_main_linkInfo.xml --rom_model ./01_sw_components/01_sc/01_src/init_sc.o ./01_sw_components/01_sc/01_src/main_sc.o ./01_sw_components/02_sig/01_src/Com_rx_signal_sig.o ./01_sw_components/02_sig/01_src/Com_tx_signal_sig.o ./01_sw_components/03_hw/01_src/Hw_Interface.o ./01_sw_components/04_frs/01_src/OverLowVoltage_Frs.o ./01_sw_components/04_frs/01_src/OverheatingTemperature_Frs.o ./01_sw_components/06_mem/01_src/GetDeviceID_Mem.o ./01_sw_components/06_mem/01_src/initializeDeviceID.o ./01_sw_components/07_utils/01_src/Store_DeviceUID_Unit8_Array_Utils.o ./01_sw_components/07_utils/01_src/parseCanID_utils.o ./ti_msp_dl_config.o ./04_config/startup_mspm0g350x_ticlang.o -l./device_linker.cmd -ldevice.cmd.genlibs -llibc.a --start-group -llibc++.a -llibc++abi.a -llibc.a -llibsys.a -llibsysbm.a -llibclang_rt.builtins.a -llibclang_rt.profile.a --end-group --cg_opt_level=2</command_line>
- <link_time>0x670af9b5</link_time>
- <link_errors>0x0</link_errors>
- <output_file>C:\Users\User\workspace_ccstheia\segment_main\Debug\segment_main.out</output_file>
- <entry_point>
- <name>_c_int00_noargs</name>
- <address>0x107d</address>
- </entry_point>
- <input_file_list>
- <input_file id="fl-1">
- <path>C:\Users\User\workspace_ccstheia\segment_main\Debug\.\01_sw_components\01_sc\01_src\</path>
- <kind>object</kind>
- <file>init_sc.o</file>
- <name>init_sc.o</name>
- </input_file>
- <input_file id="fl-2">
- <path>C:\Users\User\workspace_ccstheia\segment_main\Debug\.\01_sw_components\01_sc\01_src\</path>
- <kind>object</kind>
- <file>main_sc.o</file>
- <name>main_sc.o</name>
- </input_file>
- <input_file id="fl-3">
- <path>C:\Users\User\workspace_ccstheia\segment_main\Debug\.\01_sw_components\02_sig\01_src\</path>
- <kind>object</kind>
- <file>Com_rx_signal_sig.o</file>
- <name>Com_rx_signal_sig.o</name>
- </input_file>
- <input_file id="fl-4">
- <path>C:\Users\User\workspace_ccstheia\segment_main\Debug\.\01_sw_components\02_sig\01_src\</path>
- <kind>object</kind>
- <file>Com_tx_signal_sig.o</file>
- <name>Com_tx_signal_sig.o</name>
- </input_file>
- <input_file id="fl-5">
- <path>C:\Users\User\workspace_ccstheia\segment_main\Debug\.\01_sw_components\03_hw\01_src\</path>
- <kind>object</kind>
- <file>Hw_Interface.o</file>
- <name>Hw_Interface.o</name>
- </input_file>
- <input_file id="fl-6">
- <path>C:\Users\User\workspace_ccstheia\segment_main\Debug\.\01_sw_components\04_frs\01_src\</path>
- <kind>object</kind>
- <file>OverLowVoltage_Frs.o</file>
- <name>OverLowVoltage_Frs.o</name>
- </input_file>
- <input_file id="fl-7">
- <path>C:\Users\User\workspace_ccstheia\segment_main\Debug\.\01_sw_components\04_frs\01_src\</path>
- <kind>object</kind>
- <file>OverheatingTemperature_Frs.o</file>
- <name>OverheatingTemperature_Frs.o</name>
- </input_file>
- <input_file id="fl-8">
- <path>C:\Users\User\workspace_ccstheia\segment_main\Debug\.\01_sw_components\06_mem\01_src\</path>
- <kind>object</kind>
- <file>GetDeviceID_Mem.o</file>
- <name>GetDeviceID_Mem.o</name>
- </input_file>
- <input_file id="fl-9">
- <path>C:\Users\User\workspace_ccstheia\segment_main\Debug\.\01_sw_components\06_mem\01_src\</path>
- <kind>object</kind>
- <file>initializeDeviceID.o</file>
- <name>initializeDeviceID.o</name>
- </input_file>
- <input_file id="fl-a">
- <path>C:\Users\User\workspace_ccstheia\segment_main\Debug\.\01_sw_components\07_utils\01_src\</path>
- <kind>object</kind>
- <file>Store_DeviceUID_Unit8_Array_Utils.o</file>
- <name>Store_DeviceUID_Unit8_Array_Utils.o</name>
- </input_file>
- <input_file id="fl-b">
- <path>C:\Users\User\workspace_ccstheia\segment_main\Debug\.\01_sw_components\07_utils\01_src\</path>
- <kind>object</kind>
- <file>parseCanID_utils.o</file>
- <name>parseCanID_utils.o</name>
- </input_file>
- <input_file id="fl-c">
- <path>C:\Users\User\workspace_ccstheia\segment_main\Debug\.\</path>
- <kind>object</kind>
- <file>ti_msp_dl_config.o</file>
- <name>ti_msp_dl_config.o</name>
- </input_file>
- <input_file id="fl-d">
- <path>C:\Users\User\workspace_ccstheia\segment_main\Debug\.\04_config\</path>
- <kind>object</kind>
- <file>startup_mspm0g350x_ticlang.o</file>
- <name>startup_mspm0g350x_ticlang.o</name>
- </input_file>
- <input_file id="fl-1a">
- <path>C:\Users\User\workspace_ccstheia\segment_main\Debug\</path>
- <kind>object</kind>
- <file><internal></file>
- <name><internal></name>
- </input_file>
- <input_file id="fl-1b">
- <path>C:\ti\mspm0_sdk_2_02_00_05\source\ti\driverlib\lib\ticlang\m0p\mspm0g1x0x_g3x0x\</path>
- <kind>archive</kind>
- <file>driverlib.a</file>
- <name>dl_adc12.o</name>
- </input_file>
- <input_file id="fl-1c">
- <path>C:\ti\mspm0_sdk_2_02_00_05\source\ti\driverlib\lib\ticlang\m0p\mspm0g1x0x_g3x0x\</path>
- <kind>archive</kind>
- <file>driverlib.a</file>
- <name>dl_common.o</name>
- </input_file>
- <input_file id="fl-1d">
- <path>C:\ti\mspm0_sdk_2_02_00_05\source\ti\driverlib\lib\ticlang\m0p\mspm0g1x0x_g3x0x\</path>
- <kind>archive</kind>
- <file>driverlib.a</file>
- <name>dl_mcan.o</name>
- </input_file>
- <input_file id="fl-1e">
- <path>C:\ti\mspm0_sdk_2_02_00_05\source\ti\driverlib\lib\ticlang\m0p\mspm0g1x0x_g3x0x\</path>
- <kind>archive</kind>
- <file>driverlib.a</file>
- <name>dl_sysctl_mspm0g1x0x_g3x0x.o</name>
- </input_file>
- <input_file id="fl-33">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
- <kind>archive</kind>
- <file>libc.a</file>
- <name>e_log.c.obj</name>
- </input_file>
- <input_file id="fl-34">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
- <kind>archive</kind>
- <file>libc.a</file>
- <name>aeabi_portable.c.obj</name>
- </input_file>
- <input_file id="fl-35">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
- <kind>archive</kind>
- <file>libc.a</file>
- <name>assert.c.obj</name>
- </input_file>
- <input_file id="fl-36">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
- <kind>archive</kind>
- <file>libc.a</file>
- <name>defs.c.obj</name>
- </input_file>
- <input_file id="fl-37">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
- <kind>archive</kind>
- <file>libc.a</file>
- <name>memory.c.obj</name>
- </input_file>
- <input_file id="fl-38">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
- <kind>archive</kind>
- <file>libc.a</file>
- <name>boot_cortex_m.c.obj</name>
- </input_file>
- <input_file id="fl-39">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
- <kind>archive</kind>
- <file>libc.a</file>
- <name>mathacl_init.c.obj</name>
- </input_file>
- <input_file id="fl-3a">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
- <kind>archive</kind>
- <file>libc.a</file>
- <name>autoinit.c.obj</name>
- </input_file>
- <input_file id="fl-3b">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
- <kind>archive</kind>
- <file>libc.a</file>
- <name>pre_init.c.obj</name>
- </input_file>
- <input_file id="fl-3c">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
- <kind>archive</kind>
- <file>libc.a</file>
- <name>cpy_tbl.c.obj</name>
- </input_file>
- <input_file id="fl-3d">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
- <kind>archive</kind>
- <file>libc.a</file>
- <name>copy_zero_init.c.obj</name>
- </input_file>
- <input_file id="fl-3e">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
- <kind>archive</kind>
- <file>libc.a</file>
- <name>copy_decompress_none.c.obj</name>
- </input_file>
- <input_file id="fl-3f">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
- <kind>archive</kind>
- <file>libc.a</file>
- <name>copy_decompress_lzss.c.obj</name>
- </input_file>
- <input_file id="fl-40">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
- <kind>archive</kind>
- <file>libc.a</file>
- <name>sprintf.c.obj</name>
- </input_file>
- <input_file id="fl-41">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
- <kind>archive</kind>
- <file>libc.a</file>
- <name>fflush.c.obj</name>
- </input_file>
- <input_file id="fl-42">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
- <kind>archive</kind>
- <file>libc.a</file>
- <name>fputs.c.obj</name>
- </input_file>
- <input_file id="fl-43">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
- <kind>archive</kind>
- <file>libc.a</file>
- <name>_io_perm.c.obj</name>
- </input_file>
- <input_file id="fl-44">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
- <kind>archive</kind>
- <file>libc.a</file>
- <name>setvbuf.c.obj</name>
- </input_file>
- <input_file id="fl-45">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
- <kind>archive</kind>
- <file>libc.a</file>
- <name>exit.c.obj</name>
- </input_file>
- <input_file id="fl-46">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
- <kind>archive</kind>
- <file>libc.a</file>
- <name>_lock.c.obj</name>
- </input_file>
- <input_file id="fl-47">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
- <kind>archive</kind>
- <file>libc.a</file>
- <name>args_main.c.obj</name>
- </input_file>
- <input_file id="fl-48">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
- <kind>archive</kind>
- <file>libc.a</file>
- <name>_printfi.c.obj</name>
- </input_file>
- <input_file id="fl-49">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
- <kind>archive</kind>
- <file>libc.a</file>
- <name>fopen.c.obj</name>
- </input_file>
- <input_file id="fl-4a">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
- <kind>archive</kind>
- <file>libc.a</file>
- <name>fseek.c.obj</name>
- </input_file>
- <input_file id="fl-4b">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
- <kind>archive</kind>
- <file>libc.a</file>
- <name>wcslen.c.obj</name>
- </input_file>
- <input_file id="fl-4c">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
- <kind>archive</kind>
- <file>libc.a</file>
- <name>s_frexp.c.obj</name>
- </input_file>
- <input_file id="fl-4d">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
- <kind>archive</kind>
- <file>libc.a</file>
- <name>s_scalbn.c.obj</name>
- </input_file>
- <input_file id="fl-4e">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
- <kind>archive</kind>
- <file>libc.a</file>
- <name>_ltoa.c.obj</name>
- </input_file>
- <input_file id="fl-4f">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
- <kind>archive</kind>
- <file>libc.a</file>
- <name>atoi.c.obj</name>
- </input_file>
- <input_file id="fl-50">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
- <kind>archive</kind>
- <file>libc.a</file>
- <name>memccpy.c.obj</name>
- </input_file>
- <input_file id="fl-51">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
- <kind>archive</kind>
- <file>libc.a</file>
- <name>fclose.c.obj</name>
- </input_file>
- <input_file id="fl-52">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
- <kind>archive</kind>
- <file>libc.a</file>
- <name>aeabi_ctype.S.obj</name>
- </input_file>
- <input_file id="fl-e8">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
- <kind>archive</kind>
- <file>libsysbm.a</file>
- <name>write.c.obj</name>
- </input_file>
- <input_file id="fl-e9">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
- <kind>archive</kind>
- <file>libsysbm.a</file>
- <name>host_device.c.obj</name>
- </input_file>
- <input_file id="fl-ea">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
- <kind>archive</kind>
- <file>libsysbm.a</file>
- <name>remove.c.obj</name>
- </input_file>
- <input_file id="fl-eb">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
- <kind>archive</kind>
- <file>libsysbm.a</file>
- <name>open.c.obj</name>
- </input_file>
- <input_file id="fl-ec">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
- <kind>archive</kind>
- <file>libsysbm.a</file>
- <name>lseek.c.obj</name>
- </input_file>
- <input_file id="fl-ed">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
- <kind>archive</kind>
- <file>libsysbm.a</file>
- <name>close.c.obj</name>
- </input_file>
- <input_file id="fl-ee">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
- <kind>archive</kind>
- <file>libsysbm.a</file>
- <name>unlink.c.obj</name>
- </input_file>
- <input_file id="fl-ef">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
- <kind>archive</kind>
- <file>libsysbm.a</file>
- <name>hostclose.c.obj</name>
- </input_file>
- <input_file id="fl-f0">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
- <kind>archive</kind>
- <file>libsysbm.a</file>
- <name>hostlseek.c.obj</name>
- </input_file>
- <input_file id="fl-f1">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
- <kind>archive</kind>
- <file>libsysbm.a</file>
- <name>hostopen.c.obj</name>
- </input_file>
- <input_file id="fl-f2">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
- <kind>archive</kind>
- <file>libsysbm.a</file>
- <name>hostread.c.obj</name>
- </input_file>
- <input_file id="fl-f3">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
- <kind>archive</kind>
- <file>libsysbm.a</file>
- <name>hostrename.c.obj</name>
- </input_file>
- <input_file id="fl-f4">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
- <kind>archive</kind>
- <file>libsysbm.a</file>
- <name>hostunlink.c.obj</name>
- </input_file>
- <input_file id="fl-f5">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
- <kind>archive</kind>
- <file>libsysbm.a</file>
- <name>hostwrite.c.obj</name>
- </input_file>
- <input_file id="fl-f6">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
- <kind>archive</kind>
- <file>libsysbm.a</file>
- <name>trgmsg.c.obj</name>
- </input_file>
- <input_file id="fl-f7">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\</path>
- <kind>archive</kind>
- <file>libclang_rt.builtins.a</file>
- <name>adddf3.S.obj</name>
- </input_file>
- <input_file id="fl-f8">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\</path>
- <kind>archive</kind>
- <file>libclang_rt.builtins.a</file>
- <name>muldf3.S.obj</name>
- </input_file>
- <input_file id="fl-f9">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\</path>
- <kind>archive</kind>
- <file>libclang_rt.builtins.a</file>
- <name>muldsi3.S.obj</name>
- </input_file>
- <input_file id="fl-fa">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\</path>
- <kind>archive</kind>
- <file>libclang_rt.builtins.a</file>
- <name>mulsf3.S.obj</name>
- </input_file>
- <input_file id="fl-fb">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\</path>
- <kind>archive</kind>
- <file>libclang_rt.builtins.a</file>
- <name>divsf3.S.obj</name>
- </input_file>
- <input_file id="fl-fc">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\</path>
- <kind>archive</kind>
- <file>libclang_rt.builtins.a</file>
- <name>divdf3.S.obj</name>
- </input_file>
- <input_file id="fl-fd">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\</path>
- <kind>archive</kind>
- <file>libclang_rt.builtins.a</file>
- <name>extendsfdf2.S.obj</name>
- </input_file>
- <input_file id="fl-fe">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\</path>
- <kind>archive</kind>
- <file>libclang_rt.builtins.a</file>
- <name>fixdfsi.S.obj</name>
- </input_file>
- <input_file id="fl-ff">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\</path>
- <kind>archive</kind>
- <file>libclang_rt.builtins.a</file>
- <name>fixsfsi.S.obj</name>
- </input_file>
- <input_file id="fl-100">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\</path>
- <kind>archive</kind>
- <file>libclang_rt.builtins.a</file>
- <name>floatsidf.S.obj</name>
- </input_file>
- <input_file id="fl-101">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\</path>
- <kind>archive</kind>
- <file>libclang_rt.builtins.a</file>
- <name>floatsisf.S.obj</name>
- </input_file>
- <input_file id="fl-102">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\</path>
- <kind>archive</kind>
- <file>libclang_rt.builtins.a</file>
- <name>muldi3.S.obj</name>
- </input_file>
- <input_file id="fl-103">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\</path>
- <kind>archive</kind>
- <file>libclang_rt.builtins.a</file>
- <name>aeabi_dcmp.S.obj</name>
- </input_file>
- <input_file id="fl-104">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\</path>
- <kind>archive</kind>
- <file>libclang_rt.builtins.a</file>
- <name>aeabi_idivmod.S.obj</name>
- </input_file>
- <input_file id="fl-105">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\</path>
- <kind>archive</kind>
- <file>libclang_rt.builtins.a</file>
- <name>aeabi_memcpy.S.obj</name>
- </input_file>
- <input_file id="fl-106">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\</path>
- <kind>archive</kind>
- <file>libclang_rt.builtins.a</file>
- <name>aeabi_memset.S.obj</name>
- </input_file>
- <input_file id="fl-107">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\</path>
- <kind>archive</kind>
- <file>libclang_rt.builtins.a</file>
- <name>aeabi_uidivmod.S.obj</name>
- </input_file>
- <input_file id="fl-108">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\</path>
- <kind>archive</kind>
- <file>libclang_rt.builtins.a</file>
- <name>aeabi_uldivmod.S.obj</name>
- </input_file>
- <input_file id="fl-109">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\</path>
- <kind>archive</kind>
- <file>libclang_rt.builtins.a</file>
- <name>udivmoddi4.S.obj</name>
- </input_file>
- <input_file id="fl-10a">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\</path>
- <kind>archive</kind>
- <file>libclang_rt.builtins.a</file>
- <name>ashldi3.S.obj</name>
- </input_file>
- <input_file id="fl-10b">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\</path>
- <kind>archive</kind>
- <file>libclang_rt.builtins.a</file>
- <name>comparedf2.c.obj</name>
- </input_file>
- <input_file id="fl-10c">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\</path>
- <kind>archive</kind>
- <file>libclang_rt.builtins.a</file>
- <name>aeabi_div0.c.obj</name>
- </input_file>
- <input_file id="fl-10d">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
- <kind>archive</kind>
- <file>libc.a</file>
- <name>getdevice.c.obj</name>
- </input_file>
- <input_file id="fl-10e">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
- <kind>archive</kind>
- <file>libc.a</file>
- <name>memcpy16.S.obj</name>
- </input_file>
- <input_file id="fl-10f">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
- <kind>archive</kind>
- <file>libc.a</file>
- <name>memset16.S.obj</name>
- </input_file>
- <input_file id="fl-110">
- <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
- <kind>archive</kind>
- <file>libc.a</file>
- <name>strcmp-armv6m.S.obj</name>
- </input_file>
- </input_file_list>
- <object_component_list>
- <object_component id="oc-18">
- <name>.intvecs</name>
- <load_address>0x0</load_address>
- <readonly>true</readonly>
- <run_address>0x0</run_address>
- <size>0xc0</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-d"/>
- </object_component>
- <object_component id="oc-eb">
- <name>.text.DL_MCAN_msgRAMConfig</name>
- <load_address>0xc0</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0xc0</run_address>
- <size>0x2a8</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-1d"/>
- </object_component>
- <object_component id="oc-e8">
- <name>.text.DL_MCAN_init</name>
- <load_address>0x368</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0x368</run_address>
- <size>0x184</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-1d"/>
- </object_component>
- <object_component id="oc-ea">
- <name>.text.DL_MCAN_setBitTime</name>
- <load_address>0x4ec</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0x4ec</run_address>
- <size>0x144</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-1d"/>
- </object_component>
- <object_component id="oc-e9">
- <name>.text.DL_MCAN_config</name>
- <load_address>0x630</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0x630</run_address>
- <size>0x12c</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-1d"/>
- </object_component>
- <object_component id="oc-cb">
- <name>.text.SYSCFG_DL_MCAN0_init</name>
- <load_address>0x75c</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0x75c</run_address>
- <size>0x11c</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-c"/>
- </object_component>
- <object_component id="oc-df">
- <name>.text.DL_SYSCTL_configSYSPLL</name>
- <load_address>0x878</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0x878</run_address>
- <size>0xec</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-1e"/>
- </object_component>
- <object_component id="oc-87">
- <name>.text:memcpy</name>
- <load_address>0x964</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0x964</run_address>
- <size>0x9a</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-10e"/>
- </object_component>
- <object_component id="oc-33">
- <name>.text.Default_Handler</name>
- <load_address>0x9fe</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0x9fe</run_address>
- <size>0x2</size>
- <alignment>0x2</alignment>
- <input_file_ref idref="fl-d"/>
- </object_component>
- <object_component id="oc-e4">
- <name>.text.DL_MCAN_getRevisionId</name>
- <load_address>0xa00</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0xa00</run_address>
- <size>0x94</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-1d"/>
- </object_component>
- <object_component id="oc-1c">
- <name>.text:decompress:lzss</name>
- <load_address>0xa94</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0xa94</run_address>
- <size>0x7c</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-3f"/>
- </object_component>
- <object_component id="oc-ec">
- <name>.text.DL_MCAN_addStdMsgIDFilter</name>
- <load_address>0xb10</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0xb10</run_address>
- <size>0x74</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-1d"/>
- </object_component>
- <object_component id="oc-ee">
- <name>.text.DL_MCAN_enableIntr</name>
- <load_address>0xb84</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0xb84</run_address>
- <size>0x68</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-1d"/>
- </object_component>
- <object_component id="oc-ef">
- <name>.text.DL_MCAN_selectIntrLine</name>
- <load_address>0xbec</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0xbec</run_address>
- <size>0x64</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-1d"/>
- </object_component>
- <object_component id="oc-ca">
- <name>.text.SYSCFG_DL_ADC12_0_init</name>
- <load_address>0xc50</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0xc50</run_address>
- <size>0x64</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-c"/>
- </object_component>
- <object_component id="oc-f0">
- <name>.text.DL_MCAN_enableIntrLine</name>
- <load_address>0xcb4</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0xcb4</run_address>
- <size>0x58</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-1d"/>
- </object_component>
- <object_component id="oc-e1">
- <name>.text.DL_ADC12_setClockConfig</name>
- <load_address>0xd0c</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0xd0c</run_address>
- <size>0x4c</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-1b"/>
- </object_component>
- <object_component id="oc-ed">
- <name>.text.DL_MCAN_setExtIDAndMask</name>
- <load_address>0xd58</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0xd58</run_address>
- <size>0x4c</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-1d"/>
- </object_component>
- <object_component id="oc-c7">
- <name>.text.SYSCFG_DL_GPIO_init</name>
- <load_address>0xda4</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0xda4</run_address>
- <size>0x4c</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-c"/>
- </object_component>
- <object_component id="oc-8c">
- <name>.text.Init</name>
- <load_address>0xdf0</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0xdf0</run_address>
- <size>0x48</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-1"/>
- </object_component>
- <object_component id="oc-39">
- <name>.text.CANFD0_IRQHandler</name>
- <load_address>0xe38</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0xe38</run_address>
- <size>0x40</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-2"/>
- </object_component>
- <object_component id="oc-e5">
- <name>.text.DL_MCAN_isMemInitDone</name>
- <load_address>0xe78</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0xe78</run_address>
- <size>0x40</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-1d"/>
- </object_component>
- <object_component id="oc-c6">
- <name>.text.SYSCFG_DL_initPower</name>
- <load_address>0xeb8</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0xeb8</run_address>
- <size>0x40</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-c"/>
- </object_component>
- <object_component id="oc-c8">
- <name>.text.SYSCFG_DL_SYSCTL_init</name>
- <load_address>0xef8</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0xef8</run_address>
- <size>0x3c</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-c"/>
- </object_component>
- <object_component id="oc-95">
- <name>.text:__TI_auto_init_nobinit_nopinit</name>
- <load_address>0xf34</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0xf34</run_address>
- <size>0x3c</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-3a"/>
- </object_component>
- <object_component id="oc-61">
- <name>.text.DL_MCAN_clearIntrStatus</name>
- <load_address>0xf70</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0xf70</run_address>
- <size>0x34</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-1d"/>
- </object_component>
- <object_component id="oc-102">
- <name>.text.HW_WR_FIELD32_RAW</name>
- <load_address>0xfa4</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0xfa4</run_address>
- <size>0x32</size>
- <alignment>0x2</alignment>
- <input_file_ref idref="fl-1d"/>
- </object_component>
- <object_component id="oc-e3">
- <name>.text.DL_MCAN_setClockConfig</name>
- <load_address>0xfd8</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0xfd8</run_address>
- <size>0x2c</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-1d"/>
- </object_component>
- <object_component id="oc-ff">
- <name>.text.DL_Common_updateReg</name>
- <load_address>0x1004</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0x1004</run_address>
- <size>0x28</size>
- <alignment>0x2</alignment>
- <input_file_ref idref="fl-1b"/>
- </object_component>
- <object_component id="oc-100">
- <name>.text.DL_Common_updateReg</name>
- <load_address>0x102c</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0x102c</run_address>
- <size>0x28</size>
- <alignment>0x2</alignment>
- <input_file_ref idref="fl-1d"/>
- </object_component>
- <object_component id="oc-fc">
- <name>.text.DL_Common_updateReg</name>
- <load_address>0x1054</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0x1054</run_address>
- <size>0x28</size>
- <alignment>0x2</alignment>
- <input_file_ref idref="fl-1e"/>
- </object_component>
- <object_component id="oc-55">
- <name>.text:_c_int00_noargs</name>
- <load_address>0x107c</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0x107c</run_address>
- <size>0x28</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-38"/>
- </object_component>
- <object_component id="oc-fe">
- <name>.text.DL_CORE_configInstruction</name>
- <load_address>0x10a4</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0x10a4</run_address>
- <size>0x20</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-1e"/>
- </object_component>
- <object_component id="oc-e6">
- <name>.text.DL_MCAN_setOpMode</name>
- <load_address>0x10c4</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0x10c4</run_address>
- <size>0x20</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-1d"/>
- </object_component>
- <object_component id="oc-104">
- <name>.text.DL_MCAN_writeProtectedRegAccessLock</name>
- <load_address>0x10e4</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0x10e4</run_address>
- <size>0x20</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-1d"/>
- </object_component>
- <object_component id="oc-103">
- <name>.text.DL_MCAN_writeProtectedRegAccessUnlock</name>
- <load_address>0x1104</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0x1104</run_address>
- <size>0x20</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-1d"/>
- </object_component>
- <object_component id="oc-101">
- <name>.text.HW_RD_FIELD32_RAW</name>
- <load_address>0x1124</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0x1124</run_address>
- <size>0x20</size>
- <alignment>0x2</alignment>
- <input_file_ref idref="fl-1d"/>
- </object_component>
- <object_component id="oc-34">
- <name>.text.ADC0_IRQHandler</name>
- <load_address>0x1144</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0x1144</run_address>
- <size>0x1c</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-2"/>
- </object_component>
- <object_component id="oc-e7">
- <name>.text.DL_MCAN_getOpMode</name>
- <load_address>0x1160</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0x1160</run_address>
- <size>0x1c</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-1d"/>
- </object_component>
- <object_component id="oc-ce">
- <name>.text.GetDeviceUID</name>
- <load_address>0x117c</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0x117c</run_address>
- <size>0x1c</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-8"/>
- </object_component>
- <object_component id="oc-60">
- <name>.text.DL_MCAN_getIntrStatus</name>
- <load_address>0x1198</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0x1198</run_address>
- <size>0x18</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-1d"/>
- </object_component>
- <object_component id="oc-ae">
- <name>.text.SYSCFG_DL_init</name>
- <load_address>0x11b0</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0x11b0</run_address>
- <size>0x18</size>
- <alignment>0x2</alignment>
- <input_file_ref idref="fl-c"/>
- </object_component>
- <object_component id="oc-b3">
- <name>.text.initializeDeviceID</name>
- <load_address>0x11c8</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0x11c8</run_address>
- <size>0x18</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-9"/>
- </object_component>
- <object_component id="oc-4c">
- <name>.text:decompress:ZI:__TI_zero_init_nomemset</name>
- <load_address>0x11e0</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0x11e0</run_address>
- <size>0x16</size>
- <alignment>0x2</alignment>
- <input_file_ref idref="fl-3d"/>
- </object_component>
- <object_component id="oc-de">
- <name>.text.DL_Common_delayCycles</name>
- <load_address>0x11f6</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0x11f6</run_address>
- <size>0x14</size>
- <alignment>0x2</alignment>
- <input_file_ref idref="fl-1c"/>
- </object_component>
- <object_component id="oc-fa">
- <name>.text.DL_SYSCTL_disableSYSPLL</name>
- <load_address>0x120c</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0x120c</run_address>
- <size>0x14</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-1e"/>
- </object_component>
- <object_component id="oc-20">
- <name>.text:decompress:none</name>
- <load_address>0x1220</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0x1220</run_address>
- <size>0x12</size>
- <alignment>0x2</alignment>
- <input_file_ref idref="fl-3e"/>
- </object_component>
- <object_component id="oc-fd">
- <name>.text.DL_CORE_getInstructionConfig</name>
- <load_address>0x1234</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0x1234</run_address>
- <size>0x10</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-1e"/>
- </object_component>
- <object_component id="oc-80">
- <name>.text.HW_RD_REG32_RAW</name>
- <load_address>0x1244</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0x1244</run_address>
- <size>0x10</size>
- <alignment>0x2</alignment>
- <input_file_ref idref="fl-1d"/>
- </object_component>
- <object_component id="oc-81">
- <name>.text.HW_WR_REG32_RAW</name>
- <load_address>0x1254</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0x1254</run_address>
- <size>0x10</size>
- <alignment>0x2</alignment>
- <input_file_ref idref="fl-1d"/>
- </object_component>
- <object_component id="oc-71">
- <name>.text.main</name>
- <load_address>0x1264</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0x1264</run_address>
- <size>0xe</size>
- <alignment>0x2</alignment>
- <input_file_ref idref="fl-2"/>
- </object_component>
- <object_component id="oc-fb">
- <name>.text.DL_SYSCTL_getClockStatus</name>
- <load_address>0x1274</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0x1274</run_address>
- <size>0xc</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-1e"/>
- </object_component>
- <object_component id="oc-45">
- <name>.text.__aeabi_memcpy</name>
- <load_address>0x1280</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0x1280</run_address>
- <size>0x8</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-105"/>
- </object_component>
- <object_component id="oc-2f">
- <name>.text.Reset_Handler</name>
- <load_address>0x1288</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0x1288</run_address>
- <size>0x4</size>
- <alignment>0x2</alignment>
- <input_file_ref idref="fl-d"/>
- </object_component>
- <object_component id="oc-6d">
- <name>.text._system_pre_init</name>
- <load_address>0x128c</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0x128c</run_address>
- <size>0x4</size>
- <alignment>0x2</alignment>
- <input_file_ref idref="fl-3b"/>
- </object_component>
- <object_component id="oc-8e">
- <name>.text:abort</name>
- <load_address>0x1290</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0x1290</run_address>
- <size>0x4</size>
- <alignment>0x2</alignment>
- <input_file_ref idref="fl-45"/>
- </object_component>
- <object_component id="oc-144">
- <name>__TI_handler_table</name>
- <load_address>0x13c0</load_address>
- <readonly>true</readonly>
- <run_address>0x13c0</run_address>
- <size>0xc</size>
- <alignment>0x4</alignment>
- </object_component>
- <object_component id="oc-147">
- <name>.cinit..bss.load</name>
- <load_address>0x13cc</load_address>
- <readonly>true</readonly>
- <run_address>0x13cc</run_address>
- <size>0x8</size>
- <alignment>0x4</alignment>
- </object_component>
- <object_component id="oc-146">
- <name>.cinit..data.load</name>
- <load_address>0x13d4</load_address>
- <readonly>true</readonly>
- <run_address>0x13d4</run_address>
- <size>0x5</size>
- <alignment>0x1</alignment>
- </object_component>
- <object_component id="oc-145">
- <name>__TI_cinit_table</name>
- <load_address>0x13dc</load_address>
- <readonly>true</readonly>
- <run_address>0x13dc</run_address>
- <size>0x10</size>
- <alignment>0x4</alignment>
- </object_component>
- <object_component id="oc-f5">
- <name>.rodata.gMCAN0MsgRAMConfigParams</name>
- <load_address>0x1298</load_address>
- <readonly>true</readonly>
- <run_address>0x1298</run_address>
- <size>0x60</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-c"/>
- </object_component>
- <object_component id="oc-f2">
- <name>.rodata.gMCAN0InitParams</name>
- <load_address>0x12f8</load_address>
- <readonly>true</readonly>
- <run_address>0x12f8</run_address>
- <size>0x34</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-c"/>
- </object_component>
- <object_component id="oc-f3">
- <name>.rodata.gMCAN0ConfigParams</name>
- <load_address>0x132c</load_address>
- <readonly>true</readonly>
- <run_address>0x132c</run_address>
- <size>0x2c</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-c"/>
- </object_component>
- <object_component id="oc-e0">
- <name>.rodata.gSYSPLLConfig</name>
- <load_address>0x1358</load_address>
- <readonly>true</readonly>
- <run_address>0x1358</run_address>
- <size>0x28</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-c"/>
- </object_component>
- <object_component id="oc-f4">
- <name>.rodata.gMCAN0BitTimes</name>
- <load_address>0x1380</load_address>
- <readonly>true</readonly>
- <run_address>0x1380</run_address>
- <size>0x20</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-c"/>
- </object_component>
- <object_component id="oc-f6">
- <name>.rodata.gMCAN0StdFiltelem</name>
- <load_address>0x13a0</load_address>
- <readonly>true</readonly>
- <run_address>0x13a0</run_address>
- <size>0x10</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-c"/>
- </object_component>
- <object_component id="oc-e2">
- <name>.rodata.gADC12_0ClockConfig</name>
- <load_address>0x13b0</load_address>
- <readonly>true</readonly>
- <run_address>0x13b0</run_address>
- <size>0x8</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-c"/>
- </object_component>
- <object_component id="oc-f1">
- <name>.rodata.gMCAN0ClockConf</name>
- <load_address>0x13b8</load_address>
- <readonly>true</readonly>
- <run_address>0x13b8</run_address>
- <size>0x4</size>
- <alignment>0x2</alignment>
- <input_file_ref idref="fl-c"/>
- </object_component>
- <object_component id="oc-10e">
- <name>.binit</name>
- <load_address>0x0</load_address>
- <readonly>true</readonly>
- <run_address>0x0</run_address>
- <size>0x0</size>
- <alignment>0x4</alignment>
- </object_component>
- <object_component id="oc-d2">
- <name>.data.initialized</name>
- <load_address>0x20200018</load_address>
- <readwrite>true</readwrite>
- <run_address>0x20200018</run_address>
- <size>0x1</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-9"/>
- </object_component>
- <object_component id="oc-5c">
- <name>.common:gCheckADC</name>
- <uninitialized>true</uninitialized>
- <readwrite>true</readwrite>
- <run_address>0x20200013</run_address>
- <size>0x1</size>
- <alignment>0x1</alignment>
- </object_component>
- <object_component id="oc-63">
- <name>.common:gServiceInt</name>
- <uninitialized>true</uninitialized>
- <readwrite>true</readwrite>
- <run_address>0x20200014</run_address>
- <size>0x1</size>
- <alignment>0x1</alignment>
- </object_component>
- <object_component id="oc-62">
- <name>.common:gInterruptLine1Status</name>
- <uninitialized>true</uninitialized>
- <readwrite>true</readwrite>
- <run_address>0x2020000c</run_address>
- <size>0x4</size>
- <alignment>0x4</alignment>
- </object_component>
- <object_component id="oc-b7">
- <name>.common:OverheatingThreshold</name>
- <uninitialized>true</uninitialized>
- <readwrite>true</readwrite>
- <run_address>0x20200010</run_address>
- <size>0x2</size>
- <alignment>0x2</alignment>
- </object_component>
- <object_component id="oc-f7">
- <name>.common:DeviceUID</name>
- <uninitialized>true</uninitialized>
- <readwrite>true</readwrite>
- <run_address>0x20200000</run_address>
- <size>0xc</size>
- <alignment>0x4</alignment>
- </object_component>
- <object_component id="oc-b8">
- <name>.common:CurrentMode</name>
- <uninitialized>true</uninitialized>
- <readwrite>true</readwrite>
- <run_address>0x20200012</run_address>
- <size>0x1</size>
- <alignment>0x1</alignment>
- </object_component>
- <object_component id="oc-1a">
- <name>.stack</name>
- <uninitialized>true</uninitialized>
- <readwrite>true</readwrite>
- <run_address>0x20207e00</run_address>
- <size>0x4</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-38"/>
- </object_component>
- <object_component id="oc-149">
- <name>.stack</name>
- <uninitialized>true</uninitialized>
- <readwrite>true</readwrite>
- <run_address>0x20207e00</run_address>
- <size>0x0</size>
- <alignment>0x8</alignment>
- </object_component>
- <object_component id="oc-7f">
- <name>.debug_loc</name>
- <load_address>0x0</load_address>
- <run_address>0x0</run_address>
- <size>0x13</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-1"/>
- </object_component>
- <object_component id="oc-c9">
- <name>.debug_loc</name>
- <load_address>0x13</load_address>
- <run_address>0x13</run_address>
- <size>0x67</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-c"/>
- </object_component>
- <object_component id="oc-40">
- <name>.debug_loc</name>
- <load_address>0x7a</load_address>
- <run_address>0x7a</run_address>
- <size>0xd8</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-38"/>
- </object_component>
- <object_component id="oc-9a">
- <name>.debug_loc</name>
- <load_address>0x152</load_address>
- <run_address>0x152</run_address>
- <size>0x424</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-3a"/>
- </object_component>
- <object_component id="oc-4d">
- <name>.debug_loc</name>
- <load_address>0x576</load_address>
- <run_address>0x576</run_address>
- <size>0x16c</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-3d"/>
- </object_component>
- <object_component id="oc-4b">
- <name>.debug_loc</name>
- <load_address>0x6e2</load_address>
- <run_address>0x6e2</run_address>
- <size>0x6f</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-3e"/>
- </object_component>
- <object_component id="oc-43">
- <name>.debug_loc</name>
- <load_address>0x751</load_address>
- <run_address>0x751</run_address>
- <size>0x167</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-3f"/>
- </object_component>
- <object_component id="oc-94">
- <name>.debug_loc</name>
- <load_address>0x8b8</load_address>
- <run_address>0x8b8</run_address>
- <size>0x26</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-45"/>
- </object_component>
- <object_component id="oc-7c">
- <name>.debug_abbrev</name>
- <load_address>0x0</load_address>
- <run_address>0x0</run_address>
- <size>0x155</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-1"/>
- </object_component>
- <object_component id="oc-5e">
- <name>.debug_abbrev</name>
- <load_address>0x155</load_address>
- <run_address>0x155</run_address>
- <size>0x191</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-2"/>
- </object_component>
- <object_component id="oc-f8">
- <name>.debug_abbrev</name>
- <load_address>0x2e6</load_address>
- <run_address>0x2e6</run_address>
- <size>0x52</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-8"/>
- </object_component>
- <object_component id="oc-d3">
- <name>.debug_abbrev</name>
- <load_address>0x338</load_address>
- <run_address>0x338</run_address>
- <size>0x8c</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-9"/>
- </object_component>
- <object_component id="oc-cc">
- <name>.debug_abbrev</name>
- <load_address>0x3c4</load_address>
- <run_address>0x3c4</run_address>
- <size>0x206</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-c"/>
- </object_component>
- <object_component id="oc-3a">
- <name>.debug_abbrev</name>
- <load_address>0x5ca</load_address>
- <run_address>0x5ca</run_address>
- <size>0x6d</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-d"/>
- </object_component>
- <object_component id="oc-3c">
- <name>.debug_abbrev</name>
- <load_address>0x637</load_address>
- <run_address>0x637</run_address>
- <size>0xaf</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-38"/>
- </object_component>
- <object_component id="oc-bf">
- <name>.debug_abbrev</name>
- <load_address>0x6e6</load_address>
- <run_address>0x6e6</run_address>
- <size>0x170</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-3a"/>
- </object_component>
- <object_component id="oc-8a">
- <name>.debug_abbrev</name>
- <load_address>0x856</load_address>
- <run_address>0x856</run_address>
- <size>0x39</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-3b"/>
- </object_component>
- <object_component id="oc-66">
- <name>.debug_abbrev</name>
- <load_address>0x88f</load_address>
- <run_address>0x88f</run_address>
- <size>0xc2</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-3d"/>
- </object_component>
- <object_component id="oc-49">
- <name>.debug_abbrev</name>
- <load_address>0x951</load_address>
- <run_address>0x951</run_address>
- <size>0x70</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-3e"/>
- </object_component>
- <object_component id="oc-41">
- <name>.debug_abbrev</name>
- <load_address>0x9c1</load_address>
- <run_address>0x9c1</run_address>
- <size>0x8d</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-3f"/>
- </object_component>
- <object_component id="oc-b9">
- <name>.debug_abbrev</name>
- <load_address>0xa4e</load_address>
- <run_address>0xa4e</run_address>
- <size>0xb3</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-45"/>
- </object_component>
- <object_component id="oc-65">
- <name>.debug_abbrev</name>
- <load_address>0xb01</load_address>
- <run_address>0xb01</run_address>
- <size>0x27</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-105"/>
- </object_component>
- <object_component id="oc-a7">
- <name>.debug_abbrev</name>
- <load_address>0xb28</load_address>
- <run_address>0xb28</run_address>
- <size>0x25</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-10e"/>
- </object_component>
- <object_component id="oc-14b">
- <name>.debug_abbrev</name>
- <load_address>0xb4d</load_address>
- <run_address>0xb4d</run_address>
- <size>0xf</size>
- <alignment>0x0</alignment>
- </object_component>
- <object_component id="oc-5d">
- <name>.debug_info</name>
- <load_address>0x0</load_address>
- <run_address>0x0</run_address>
- <size>0x4a3</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-1"/>
- </object_component>
- <object_component id="oc-37">
- <name>.debug_info</name>
- <load_address>0x4a3</load_address>
- <run_address>0x4a3</run_address>
- <size>0xfbf</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-2"/>
- </object_component>
- <object_component id="oc-d0">
- <name>.debug_info</name>
- <load_address>0x1462</load_address>
- <run_address>0x1462</run_address>
- <size>0x62</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-8"/>
- </object_component>
- <object_component id="oc-b4">
- <name>.debug_info</name>
- <load_address>0x14c4</load_address>
- <run_address>0x14c4</run_address>
- <size>0xbc</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-9"/>
- </object_component>
- <object_component id="oc-b0">
- <name>.debug_info</name>
- <load_address>0x1580</load_address>
- <run_address>0x1580</run_address>
- <size>0x3dfa</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-c"/>
- </object_component>
- <object_component id="oc-19">
- <name>.debug_info</name>
- <load_address>0x537a</load_address>
- <run_address>0x537a</run_address>
- <size>0x80</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-d"/>
- </object_component>
- <object_component id="oc-1b">
- <name>.debug_info</name>
- <load_address>0x53fa</load_address>
- <run_address>0x53fa</run_address>
- <size>0x423</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-38"/>
- </object_component>
- <object_component id="oc-97">
- <name>.debug_info</name>
- <load_address>0x581d</load_address>
- <run_address>0x581d</run_address>
- <size>0x744</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-3a"/>
- </object_component>
- <object_component id="oc-6e">
- <name>.debug_info</name>
- <load_address>0x5f61</load_address>
- <run_address>0x5f61</run_address>
- <size>0x46</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-3b"/>
- </object_component>
- <object_component id="oc-50">
- <name>.debug_info</name>
- <load_address>0x5fa7</load_address>
- <run_address>0x5fa7</run_address>
- <size>0x192</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-3d"/>
- </object_component>
- <object_component id="oc-21">
- <name>.debug_info</name>
- <load_address>0x6139</load_address>
- <run_address>0x6139</run_address>
- <size>0xc6</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-3e"/>
- </object_component>
- <object_component id="oc-1d">
- <name>.debug_info</name>
- <load_address>0x61ff</load_address>
- <run_address>0x61ff</run_address>
- <size>0x17c</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-3f"/>
- </object_component>
- <object_component id="oc-90">
- <name>.debug_info</name>
- <load_address>0x637b</load_address>
- <run_address>0x637b</run_address>
- <size>0xed</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-45"/>
- </object_component>
- <object_component id="oc-46">
- <name>.debug_info</name>
- <load_address>0x6468</load_address>
- <run_address>0x6468</run_address>
- <size>0x199</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-105"/>
- </object_component>
- <object_component id="oc-85">
- <name>.debug_info</name>
- <load_address>0x6601</load_address>
- <run_address>0x6601</run_address>
- <size>0x2fa</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-10e"/>
- </object_component>
- <object_component id="oc-14a">
- <name>.debug_info</name>
- <load_address>0x68fb</load_address>
- <run_address>0x68fb</run_address>
- <size>0xa7</size>
- <alignment>0x0</alignment>
- </object_component>
- <object_component id="oc-7d">
- <name>.debug_str</name>
- <load_address>0x0</load_address>
- <run_address>0x0</run_address>
- <size>0x5c5</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-1"/>
- </object_component>
- <object_component id="oc-5f">
- <name>.debug_str</name>
- <load_address>0x5c5</load_address>
- <run_address>0x5c5</run_address>
- <size>0xd2e</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-2"/>
- </object_component>
- <object_component id="oc-f9">
- <name>.debug_str</name>
- <load_address>0x12f3</load_address>
- <run_address>0x12f3</run_address>
- <size>0x10e</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-8"/>
- </object_component>
- <object_component id="oc-d4">
- <name>.debug_str</name>
- <load_address>0x1401</load_address>
- <run_address>0x1401</run_address>
- <size>0x15c</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-9"/>
- </object_component>
- <object_component id="oc-cd">
- <name>.debug_str</name>
- <load_address>0x155d</load_address>
- <run_address>0x155d</run_address>
- <size>0x2a21</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-c"/>
- </object_component>
- <object_component id="oc-3b">
- <name>.debug_str</name>
- <load_address>0x3f7e</load_address>
- <run_address>0x3f7e</run_address>
- <size>0x15e</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-d"/>
- </object_component>
- <object_component id="oc-3d">
- <name>.debug_str</name>
- <load_address>0x40dc</load_address>
- <run_address>0x40dc</run_address>
- <size>0x225</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-38"/>
- </object_component>
- <object_component id="oc-c0">
- <name>.debug_str</name>
- <load_address>0x4301</load_address>
- <run_address>0x4301</run_address>
- <size>0x32f</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-3a"/>
- </object_component>
- <object_component id="oc-8b">
- <name>.debug_str</name>
- <load_address>0x4630</load_address>
- <run_address>0x4630</run_address>
- <size>0xf5</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-3b"/>
- </object_component>
- <object_component id="oc-67">
- <name>.debug_str</name>
- <load_address>0x4725</load_address>
- <run_address>0x4725</run_address>
- <size>0x19b</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-3d"/>
- </object_component>
- <object_component id="oc-4a">
- <name>.debug_str</name>
- <load_address>0x48c0</load_address>
- <run_address>0x48c0</run_address>
- <size>0x168</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-3e"/>
- </object_component>
- <object_component id="oc-42">
- <name>.debug_str</name>
- <load_address>0x4a28</load_address>
- <run_address>0x4a28</run_address>
- <size>0x1d5</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-3f"/>
- </object_component>
- <object_component id="oc-ba">
- <name>.debug_str</name>
- <load_address>0x4bfd</load_address>
- <run_address>0x4bfd</run_address>
- <size>0x13f</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-45"/>
- </object_component>
- <object_component id="oc-8d">
- <name>.debug_frame</name>
- <load_address>0x0</load_address>
- <run_address>0x0</run_address>
- <size>0x28</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-1"/>
- </object_component>
- <object_component id="oc-35">
- <name>.debug_frame</name>
- <load_address>0x28</load_address>
- <run_address>0x28</run_address>
- <size>0x48</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-2"/>
- </object_component>
- <object_component id="oc-d1">
- <name>.debug_frame</name>
- <load_address>0x70</load_address>
- <run_address>0x70</run_address>
- <size>0x20</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-8"/>
- </object_component>
- <object_component id="oc-b6">
- <name>.debug_frame</name>
- <load_address>0x90</load_address>
- <run_address>0x90</run_address>
- <size>0x28</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-9"/>
- </object_component>
- <object_component id="oc-b1">
- <name>.debug_frame</name>
- <load_address>0xb8</load_address>
- <run_address>0xb8</run_address>
- <size>0xa0</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-c"/>
- </object_component>
- <object_component id="oc-31">
- <name>.debug_frame</name>
- <load_address>0x158</load_address>
- <run_address>0x158</run_address>
- <size>0x30</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-d"/>
- </object_component>
- <object_component id="oc-54">
- <name>.debug_frame</name>
- <load_address>0x188</load_address>
- <run_address>0x188</run_address>
- <size>0x90</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-38"/>
- </object_component>
- <object_component id="oc-96">
- <name>.debug_frame</name>
- <load_address>0x218</load_address>
- <run_address>0x218</run_address>
- <size>0x100</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-3a"/>
- </object_component>
- <object_component id="oc-6f">
- <name>.debug_frame</name>
- <load_address>0x318</load_address>
- <run_address>0x318</run_address>
- <size>0x20</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-3b"/>
- </object_component>
- <object_component id="oc-51">
- <name>.debug_frame</name>
- <load_address>0x338</load_address>
- <run_address>0x338</run_address>
- <size>0x38</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-3d"/>
- </object_component>
- <object_component id="oc-22">
- <name>.debug_frame</name>
- <load_address>0x370</load_address>
- <run_address>0x370</run_address>
- <size>0x28</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-3e"/>
- </object_component>
- <object_component id="oc-1f">
- <name>.debug_frame</name>
- <load_address>0x398</load_address>
- <run_address>0x398</run_address>
- <size>0x30</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-3f"/>
- </object_component>
- <object_component id="oc-8f">
- <name>.debug_frame</name>
- <load_address>0x3c8</load_address>
- <run_address>0x3c8</run_address>
- <size>0x30</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-45"/>
- </object_component>
- <object_component id="oc-7e">
- <name>.debug_line</name>
- <load_address>0x0</load_address>
- <run_address>0x0</run_address>
- <size>0x22b</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-1"/>
- </object_component>
- <object_component id="oc-36">
- <name>.debug_line</name>
- <load_address>0x22b</load_address>
- <run_address>0x22b</run_address>
- <size>0x2c1</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-2"/>
- </object_component>
- <object_component id="oc-cf">
- <name>.debug_line</name>
- <load_address>0x4ec</load_address>
- <run_address>0x4ec</run_address>
- <size>0x138</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-8"/>
- </object_component>
- <object_component id="oc-b5">
- <name>.debug_line</name>
- <load_address>0x624</load_address>
- <run_address>0x624</run_address>
- <size>0xcf</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-9"/>
- </object_component>
- <object_component id="oc-af">
- <name>.debug_line</name>
- <load_address>0x6f3</load_address>
- <run_address>0x6f3</run_address>
- <size>0x545</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-c"/>
- </object_component>
- <object_component id="oc-32">
- <name>.debug_line</name>
- <load_address>0xc38</load_address>
- <run_address>0xc38</run_address>
- <size>0xb8</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-d"/>
- </object_component>
- <object_component id="oc-3e">
- <name>.debug_line</name>
- <load_address>0xcf0</load_address>
- <run_address>0xcf0</run_address>
- <size>0x1dc</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-38"/>
- </object_component>
- <object_component id="oc-98">
- <name>.debug_line</name>
- <load_address>0xecc</load_address>
- <run_address>0xecc</run_address>
- <size>0x51a</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-3a"/>
- </object_component>
- <object_component id="oc-70">
- <name>.debug_line</name>
- <load_address>0x13e6</load_address>
- <run_address>0x13e6</run_address>
- <size>0x3e</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-3b"/>
- </object_component>
- <object_component id="oc-4e">
- <name>.debug_line</name>
- <load_address>0x1424</load_address>
- <run_address>0x1424</run_address>
- <size>0xfe</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-3d"/>
- </object_component>
- <object_component id="oc-23">
- <name>.debug_line</name>
- <load_address>0x1522</load_address>
- <run_address>0x1522</run_address>
- <size>0xc0</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-3e"/>
- </object_component>
- <object_component id="oc-1e">
- <name>.debug_line</name>
- <load_address>0x15e2</load_address>
- <run_address>0x15e2</run_address>
- <size>0x1c8</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-3f"/>
- </object_component>
- <object_component id="oc-92">
- <name>.debug_line</name>
- <load_address>0x17aa</load_address>
- <run_address>0x17aa</run_address>
- <size>0x69</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-45"/>
- </object_component>
- <object_component id="oc-48">
- <name>.debug_line</name>
- <load_address>0x1813</load_address>
- <run_address>0x1813</run_address>
- <size>0xa4</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-105"/>
- </object_component>
- <object_component id="oc-84">
- <name>.debug_line</name>
- <load_address>0x18b7</load_address>
- <run_address>0x18b7</run_address>
- <size>0xa0</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-10e"/>
- </object_component>
- <object_component id="oc-38">
- <name>.debug_ranges</name>
- <load_address>0x0</load_address>
- <run_address>0x0</run_address>
- <size>0x20</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-2"/>
- </object_component>
- <object_component id="oc-b2">
- <name>.debug_ranges</name>
- <load_address>0x20</load_address>
- <run_address>0x20</run_address>
- <size>0x38</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-c"/>
- </object_component>
- <object_component id="oc-30">
- <name>.debug_ranges</name>
- <load_address>0x58</load_address>
- <run_address>0x58</run_address>
- <size>0x18</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-d"/>
- </object_component>
- <object_component id="oc-3f">
- <name>.debug_ranges</name>
- <load_address>0x70</load_address>
- <run_address>0x70</run_address>
- <size>0x48</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-38"/>
- </object_component>
- <object_component id="oc-99">
- <name>.debug_ranges</name>
- <load_address>0xb8</load_address>
- <run_address>0xb8</run_address>
- <size>0x48</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-3a"/>
- </object_component>
- <object_component id="oc-4f">
- <name>.debug_ranges</name>
- <load_address>0x100</load_address>
- <run_address>0x100</run_address>
- <size>0x18</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-3d"/>
- </object_component>
- <object_component id="oc-44">
- <name>.debug_ranges</name>
- <load_address>0x118</load_address>
- <run_address>0x118</run_address>
- <size>0x50</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-3f"/>
- </object_component>
- <object_component id="oc-91">
- <name>.debug_ranges</name>
- <load_address>0x168</load_address>
- <run_address>0x168</run_address>
- <size>0x18</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-45"/>
- </object_component>
- <object_component id="oc-86">
- <name>.debug_ranges</name>
- <load_address>0x180</load_address>
- <run_address>0x180</run_address>
- <size>0x28</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-10e"/>
- </object_component>
- <object_component id="oc-47">
- <name>.debug_aranges</name>
- <load_address>0x0</load_address>
- <run_address>0x0</run_address>
- <size>0x20</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-105"/>
- </object_component>
- <object_component id="oc-83">
- <name>.debug_aranges</name>
- <load_address>0x20</load_address>
- <run_address>0x20</run_address>
- <size>0x28</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-10e"/>
- </object_component>
- </object_component_list>
- <logical_group_list>
- <logical_group id="lg-2" display="no" color="cyan">
- <name>.intvecs</name>
- <load_address>0x0</load_address>
- <run_address>0x0</run_address>
- <size>0xc0</size>
- <contents>
- <object_component_ref idref="oc-18"/>
- </contents>
- </logical_group>
- <logical_group id="lg-3" display="no" color="cyan">
- <name>.text</name>
- <load_address>0xc0</load_address>
- <run_address>0xc0</run_address>
- <size>0x11d8</size>
- <contents>
- <object_component_ref idref="oc-eb"/>
- <object_component_ref idref="oc-e8"/>
- <object_component_ref idref="oc-ea"/>
- <object_component_ref idref="oc-e9"/>
- <object_component_ref idref="oc-cb"/>
- <object_component_ref idref="oc-df"/>
- <object_component_ref idref="oc-87"/>
- <object_component_ref idref="oc-33"/>
- <object_component_ref idref="oc-e4"/>
- <object_component_ref idref="oc-1c"/>
- <object_component_ref idref="oc-ec"/>
- <object_component_ref idref="oc-ee"/>
- <object_component_ref idref="oc-ef"/>
- <object_component_ref idref="oc-ca"/>
- <object_component_ref idref="oc-f0"/>
- <object_component_ref idref="oc-e1"/>
- <object_component_ref idref="oc-ed"/>
- <object_component_ref idref="oc-c7"/>
- <object_component_ref idref="oc-8c"/>
- <object_component_ref idref="oc-39"/>
- <object_component_ref idref="oc-e5"/>
- <object_component_ref idref="oc-c6"/>
- <object_component_ref idref="oc-c8"/>
- <object_component_ref idref="oc-95"/>
- <object_component_ref idref="oc-61"/>
- <object_component_ref idref="oc-102"/>
- <object_component_ref idref="oc-e3"/>
- <object_component_ref idref="oc-ff"/>
- <object_component_ref idref="oc-100"/>
- <object_component_ref idref="oc-fc"/>
- <object_component_ref idref="oc-55"/>
- <object_component_ref idref="oc-fe"/>
- <object_component_ref idref="oc-e6"/>
- <object_component_ref idref="oc-104"/>
- <object_component_ref idref="oc-103"/>
- <object_component_ref idref="oc-101"/>
- <object_component_ref idref="oc-34"/>
- <object_component_ref idref="oc-e7"/>
- <object_component_ref idref="oc-ce"/>
- <object_component_ref idref="oc-60"/>
- <object_component_ref idref="oc-ae"/>
- <object_component_ref idref="oc-b3"/>
- <object_component_ref idref="oc-4c"/>
- <object_component_ref idref="oc-de"/>
- <object_component_ref idref="oc-fa"/>
- <object_component_ref idref="oc-20"/>
- <object_component_ref idref="oc-fd"/>
- <object_component_ref idref="oc-80"/>
- <object_component_ref idref="oc-81"/>
- <object_component_ref idref="oc-71"/>
- <object_component_ref idref="oc-fb"/>
- <object_component_ref idref="oc-45"/>
- <object_component_ref idref="oc-2f"/>
- <object_component_ref idref="oc-6d"/>
- <object_component_ref idref="oc-8e"/>
- </contents>
- </logical_group>
- <logical_group id="lg-4" display="no" color="cyan">
- <name>.const</name>
- <run_address>0x0</run_address>
- <size>0x0</size>
- <contents>
- </contents>
- </logical_group>
- <logical_group id="lg-5" display="no" color="cyan">
- <name>.cinit</name>
- <load_address>0x13c0</load_address>
- <run_address>0x13c0</run_address>
- <size>0x30</size>
- <contents>
- <object_component_ref idref="oc-144"/>
- <object_component_ref idref="oc-147"/>
- <object_component_ref idref="oc-146"/>
- <object_component_ref idref="oc-145"/>
- </contents>
- </logical_group>
- <logical_group id="lg-6" display="no" color="cyan">
- <name>.pinit</name>
- <run_address>0x0</run_address>
- <size>0x0</size>
- <contents>
- </contents>
- </logical_group>
- <logical_group id="lg-7" display="no" color="cyan">
- <name>.rodata</name>
- <load_address>0x1298</load_address>
- <run_address>0x1298</run_address>
- <size>0x128</size>
- <contents>
- <object_component_ref idref="oc-f5"/>
- <object_component_ref idref="oc-f2"/>
- <object_component_ref idref="oc-f3"/>
- <object_component_ref idref="oc-e0"/>
- <object_component_ref idref="oc-f4"/>
- <object_component_ref idref="oc-f6"/>
- <object_component_ref idref="oc-e2"/>
- <object_component_ref idref="oc-f1"/>
- </contents>
- </logical_group>
- <logical_group id="lg-8" display="no" color="cyan">
- <name>.ARM.exidx</name>
- <run_address>0x0</run_address>
- <size>0x0</size>
- <contents>
- </contents>
- </logical_group>
- <logical_group id="lg-9" display="no" color="cyan">
- <name>.init_array</name>
- <run_address>0x0</run_address>
- <size>0x0</size>
- <contents>
- </contents>
- </logical_group>
- <logical_group id="lg-a" display="no" color="cyan">
- <name>.binit</name>
- <load_address>0x0</load_address>
- <run_address>0x0</run_address>
- <size>0x0</size>
- <contents>
- <object_component_ref idref="oc-10e"/>
- </contents>
- </logical_group>
- <logical_group id="lg-b" display="no" color="cyan">
- <name>.TI.ramfunc</name>
- <run_address>0x0</run_address>
- <size>0x0</size>
- <contents>
- </contents>
- </logical_group>
- <logical_group id="lg-c" display="no" color="cyan">
- <name>.vtable</name>
- <run_address>0x0</run_address>
- <size>0x0</size>
- <contents>
- </contents>
- </logical_group>
- <logical_group id="lg-d" display="no" color="cyan">
- <name>.args</name>
- <run_address>0x0</run_address>
- <size>0x0</size>
- <contents>
- </contents>
- </logical_group>
- <logical_group id="lg-e" display="no" color="cyan">
- <name>.data</name>
- <run_address>0x20200018</run_address>
- <size>0x1</size>
- <contents>
- <object_component_ref idref="oc-d2"/>
- </contents>
- </logical_group>
- <logical_group id="lg-f" display="no" color="cyan">
- <name>.bss</name>
- <run_address>0x20200000</run_address>
- <size>0x15</size>
- <contents>
- <object_component_ref idref="oc-5c"/>
- <object_component_ref idref="oc-63"/>
- <object_component_ref idref="oc-62"/>
- <object_component_ref idref="oc-b7"/>
- <object_component_ref idref="oc-f7"/>
- <object_component_ref idref="oc-b8"/>
- </contents>
- </logical_group>
- <logical_group id="lg-10" display="no" color="cyan">
- <name>.sysmem</name>
- <run_address>0x0</run_address>
- <size>0x0</size>
- <contents>
- </contents>
- </logical_group>
- <logical_group id="lg-11" display="no" color="cyan">
- <name>.stack</name>
- <run_address>0x20207e00</run_address>
- <size>0x200</size>
- <contents>
- <object_component_ref idref="oc-1a"/>
- <object_component_ref idref="oc-149"/>
- </contents>
- </logical_group>
- <logical_group id="lg-12" display="no" color="cyan">
- <name>.BCRConfig</name>
- <run_address>0x0</run_address>
- <size>0x0</size>
- <contents>
- </contents>
- </logical_group>
- <logical_group id="lg-13" display="no" color="cyan">
- <name>.BSLConfig</name>
- <run_address>0x0</run_address>
- <size>0x0</size>
- <contents>
- </contents>
- </logical_group>
- <logical_group id="lg-105" display="no" color="cyan">
- <name>.TI.noinit</name>
- <run_address>0x0</run_address>
- <size>0x0</size>
- <contents>
- </contents>
- </logical_group>
- <logical_group id="lg-106" display="no" color="cyan">
- <name>.TI.persistent</name>
- <run_address>0x0</run_address>
- <size>0x0</size>
- <contents>
- </contents>
- </logical_group>
- <logical_group id="lg-107" display="no" color="cyan">
- <name>.TI.local</name>
- <run_address>0x0</run_address>
- <size>0x0</size>
- <contents>
- </contents>
- </logical_group>
- <logical_group id="lg-108" display="no" color="cyan">
- <name>.TI.onchip</name>
- <run_address>0x0</run_address>
- <size>0x0</size>
- <contents>
- </contents>
- </logical_group>
- <logical_group id="lg-109" display="no" color="cyan">
- <name>.TI.offchip</name>
- <run_address>0x0</run_address>
- <size>0x0</size>
- <contents>
- </contents>
- </logical_group>
- <logical_group id="lg-10a" display="no" color="cyan">
- <name>__llvm_prf_cnts</name>
- <run_address>0x20200000</run_address>
- <size>0x0</size>
- <contents>
- </contents>
- </logical_group>
- <logical_group id="lg-10c" display="no" color="cyan">
- <name>__llvm_prf_bits</name>
- <run_address>0x20200000</run_address>
- <size>0x0</size>
- <contents>
- </contents>
- </logical_group>
- <logical_group id="lg-128" display="never" color="cyan">
- <name>.debug_loc</name>
- <load_address>0x0</load_address>
- <run_address>0x0</run_address>
- <size>0x8de</size>
- <contents>
- <object_component_ref idref="oc-7f"/>
- <object_component_ref idref="oc-c9"/>
- <object_component_ref idref="oc-40"/>
- <object_component_ref idref="oc-9a"/>
- <object_component_ref idref="oc-4d"/>
- <object_component_ref idref="oc-4b"/>
- <object_component_ref idref="oc-43"/>
- <object_component_ref idref="oc-94"/>
- </contents>
- </logical_group>
- <logical_group id="lg-12a" display="never" color="cyan">
- <name>.debug_abbrev</name>
- <load_address>0x0</load_address>
- <run_address>0x0</run_address>
- <size>0xb5c</size>
- <contents>
- <object_component_ref idref="oc-7c"/>
- <object_component_ref idref="oc-5e"/>
- <object_component_ref idref="oc-f8"/>
- <object_component_ref idref="oc-d3"/>
- <object_component_ref idref="oc-cc"/>
- <object_component_ref idref="oc-3a"/>
- <object_component_ref idref="oc-3c"/>
- <object_component_ref idref="oc-bf"/>
- <object_component_ref idref="oc-8a"/>
- <object_component_ref idref="oc-66"/>
- <object_component_ref idref="oc-49"/>
- <object_component_ref idref="oc-41"/>
- <object_component_ref idref="oc-b9"/>
- <object_component_ref idref="oc-65"/>
- <object_component_ref idref="oc-a7"/>
- <object_component_ref idref="oc-14b"/>
- </contents>
- </logical_group>
- <logical_group id="lg-12c" display="never" color="cyan">
- <name>.debug_info</name>
- <load_address>0x0</load_address>
- <run_address>0x0</run_address>
- <size>0x69a2</size>
- <contents>
- <object_component_ref idref="oc-5d"/>
- <object_component_ref idref="oc-37"/>
- <object_component_ref idref="oc-d0"/>
- <object_component_ref idref="oc-b4"/>
- <object_component_ref idref="oc-b0"/>
- <object_component_ref idref="oc-19"/>
- <object_component_ref idref="oc-1b"/>
- <object_component_ref idref="oc-97"/>
- <object_component_ref idref="oc-6e"/>
- <object_component_ref idref="oc-50"/>
- <object_component_ref idref="oc-21"/>
- <object_component_ref idref="oc-1d"/>
- <object_component_ref idref="oc-90"/>
- <object_component_ref idref="oc-46"/>
- <object_component_ref idref="oc-85"/>
- <object_component_ref idref="oc-14a"/>
- </contents>
- </logical_group>
- <logical_group id="lg-12e" display="never" color="cyan">
- <name>.debug_str</name>
- <load_address>0x0</load_address>
- <run_address>0x0</run_address>
- <size>0x4d3c</size>
- <contents>
- <object_component_ref idref="oc-7d"/>
- <object_component_ref idref="oc-5f"/>
- <object_component_ref idref="oc-f9"/>
- <object_component_ref idref="oc-d4"/>
- <object_component_ref idref="oc-cd"/>
- <object_component_ref idref="oc-3b"/>
- <object_component_ref idref="oc-3d"/>
- <object_component_ref idref="oc-c0"/>
- <object_component_ref idref="oc-8b"/>
- <object_component_ref idref="oc-67"/>
- <object_component_ref idref="oc-4a"/>
- <object_component_ref idref="oc-42"/>
- <object_component_ref idref="oc-ba"/>
- </contents>
- </logical_group>
- <logical_group id="lg-130" display="never" color="cyan">
- <name>.debug_frame</name>
- <load_address>0x0</load_address>
- <run_address>0x0</run_address>
- <size>0x3f8</size>
- <contents>
- <object_component_ref idref="oc-8d"/>
- <object_component_ref idref="oc-35"/>
- <object_component_ref idref="oc-d1"/>
- <object_component_ref idref="oc-b6"/>
- <object_component_ref idref="oc-b1"/>
- <object_component_ref idref="oc-31"/>
- <object_component_ref idref="oc-54"/>
- <object_component_ref idref="oc-96"/>
- <object_component_ref idref="oc-6f"/>
- <object_component_ref idref="oc-51"/>
- <object_component_ref idref="oc-22"/>
- <object_component_ref idref="oc-1f"/>
- <object_component_ref idref="oc-8f"/>
- </contents>
- </logical_group>
- <logical_group id="lg-132" display="never" color="cyan">
- <name>.debug_line</name>
- <load_address>0x0</load_address>
- <run_address>0x0</run_address>
- <size>0x1957</size>
- <contents>
- <object_component_ref idref="oc-7e"/>
- <object_component_ref idref="oc-36"/>
- <object_component_ref idref="oc-cf"/>
- <object_component_ref idref="oc-b5"/>
- <object_component_ref idref="oc-af"/>
- <object_component_ref idref="oc-32"/>
- <object_component_ref idref="oc-3e"/>
- <object_component_ref idref="oc-98"/>
- <object_component_ref idref="oc-70"/>
- <object_component_ref idref="oc-4e"/>
- <object_component_ref idref="oc-23"/>
- <object_component_ref idref="oc-1e"/>
- <object_component_ref idref="oc-92"/>
- <object_component_ref idref="oc-48"/>
- <object_component_ref idref="oc-84"/>
- </contents>
- </logical_group>
- <logical_group id="lg-134" display="never" color="cyan">
- <name>.debug_ranges</name>
- <load_address>0x0</load_address>
- <run_address>0x0</run_address>
- <size>0x1a8</size>
- <contents>
- <object_component_ref idref="oc-38"/>
- <object_component_ref idref="oc-b2"/>
- <object_component_ref idref="oc-30"/>
- <object_component_ref idref="oc-3f"/>
- <object_component_ref idref="oc-99"/>
- <object_component_ref idref="oc-4f"/>
- <object_component_ref idref="oc-44"/>
- <object_component_ref idref="oc-91"/>
- <object_component_ref idref="oc-86"/>
- </contents>
- </logical_group>
- <logical_group id="lg-13e" display="never" color="cyan">
- <name>.debug_aranges</name>
- <load_address>0x0</load_address>
- <run_address>0x0</run_address>
- <size>0x48</size>
- <contents>
- <object_component_ref idref="oc-47"/>
- <object_component_ref idref="oc-83"/>
- </contents>
- </logical_group>
- <logical_group id="lg-148" display="no" color="cyan">
- <name>Veneer$$CMSE</name>
- <run_address>0x0</run_address>
- <size>0x0</size>
- <contents>
- </contents>
- </logical_group>
- <load_segment id="lg-154" display="no" color="cyan">
- <name>SEGMENT_0</name>
- <load_address>0x0</load_address>
- <run_address>0x0</run_address>
- <size>0x13f0</size>
- <flags>0x5</flags>
- <contents>
- <logical_group_ref idref="lg-2"/>
- <logical_group_ref idref="lg-3"/>
- <logical_group_ref idref="lg-7"/>
- <logical_group_ref idref="lg-5"/>
- </contents>
- </load_segment>
- <load_segment id="lg-155" display="no" color="cyan">
- <name>SEGMENT_1</name>
- <run_address>0x20200000</run_address>
- <size>0x19</size>
- <flags>0x6</flags>
- <contents>
- <logical_group_ref idref="lg-f"/>
- <logical_group_ref idref="lg-e"/>
- </contents>
- </load_segment>
- <load_segment id="lg-156" display="no" color="cyan">
- <name>SEGMENT_2</name>
- <run_address>0x20207e00</run_address>
- <size>0x200</size>
- <flags>0x6</flags>
- <contents>
- <logical_group_ref idref="lg-11"/>
- </contents>
- </load_segment>
- </logical_group_list>
- <placement_map>
- <memory_area display="yes" color="green">
- <name>FLASH</name>
- <page_id>0x0</page_id>
- <origin>0x0</origin>
- <length>0x20000</length>
- <used_space>0x13f0</used_space>
- <unused_space>0x1ec10</unused_space>
- <attributes>RX</attributes>
- <usage_details>
- <allocated_space>
- <start_address>0x0</start_address>
- <size>0x0</size>
- <logical_group_ref idref="lg-a"/>
- </allocated_space>
- <allocated_space>
- <start_address>0x0</start_address>
- <size>0xc0</size>
- <logical_group_ref idref="lg-2"/>
- </allocated_space>
- <allocated_space>
- <start_address>0xc0</start_address>
- <size>0x11d8</size>
- <logical_group_ref idref="lg-3"/>
- </allocated_space>
- <allocated_space>
- <start_address>0x1298</start_address>
- <size>0x128</size>
- <logical_group_ref idref="lg-7"/>
- </allocated_space>
- <allocated_space>
- <start_address>0x13c0</start_address>
- <size>0x30</size>
- <logical_group_ref idref="lg-5"/>
- </allocated_space>
- <available_space>
- <start_address>0x13f0</start_address>
- <size>0x1ec10</size>
- </available_space>
- </usage_details>
- </memory_area>
- <memory_area display="yes" color="green">
- <name>SRAM</name>
- <page_id>0x0</page_id>
- <origin>0x20200000</origin>
- <length>0x8000</length>
- <used_space>0x216</used_space>
- <unused_space>0x7dea</unused_space>
- <attributes>RWX</attributes>
- <usage_details>
- <allocated_space>
- <start_address>0x20200000</start_address>
- <size>0x0</size>
- <logical_group_ref idref="lg-10a"/>
- </allocated_space>
- <allocated_space>
- <start_address>0x20200000</start_address>
- <size>0x0</size>
- <logical_group_ref idref="lg-10c"/>
- </allocated_space>
- <allocated_space>
- <start_address>0x20200000</start_address>
- <size>0x15</size>
- <logical_group_ref idref="lg-f"/>
- </allocated_space>
- <available_space>
- <start_address>0x20200015</start_address>
- <size>0x3</size>
- </available_space>
- <allocated_space>
- <start_address>0x20200018</start_address>
- <size>0x1</size>
- <logical_group_ref idref="lg-e"/>
- </allocated_space>
- <available_space>
- <start_address>0x20200019</start_address>
- <size>0x7de7</size>
- </available_space>
- <allocated_space>
- <start_address>0x20207e00</start_address>
- <size>0x200</size>
- <logical_group_ref idref="lg-11"/>
- </allocated_space>
- </usage_details>
- </memory_area>
- <memory_area display="yes" color="green">
- <name>BCR_CONFIG</name>
- <page_id>0x0</page_id>
- <origin>0x41c00000</origin>
- <length>0x80</length>
- <used_space>0x0</used_space>
- <unused_space>0x80</unused_space>
- <attributes>R</attributes>
- <usage_details>
- </usage_details>
- </memory_area>
- <memory_area display="yes" color="green">
- <name>BSL_CONFIG</name>
- <page_id>0x0</page_id>
- <origin>0x41c00100</origin>
- <length>0x80</length>
- <used_space>0x0</used_space>
- <unused_space>0x80</unused_space>
- <attributes>R</attributes>
- <usage_details>
- </usage_details>
- </memory_area>
- </placement_map>
- <cptbl_list>
- <cptbl>
- <name>__TI_cinit_table</name>
- <cprec>
- <name>.bss</name>
- <load_address>0x13cc</load_address>
- <load_size>0x8</load_size>
- <run_address>0x20200000</run_address>
- <run_size>0x15</run_size>
- <compression>zero_init</compression>
- </cprec>
- <cprec>
- <name>.data</name>
- <load_address>0x13d4</load_address>
- <load_size>0x5</load_size>
- <run_address>0x20200018</run_address>
- <run_size>0x1</run_size>
- <compression>lzss</compression>
- </cprec>
- </cptbl>
- </cptbl_list>
- <handler_table>
- <handler_table_name>__TI_handler_table</handler_table_name>
- <handler>
- <index>0x0</index>
- <name>__TI_decompress_lzss</name>
- </handler>
- <handler>
- <index>0x1</index>
- <name>__TI_decompress_none</name>
- </handler>
- <handler>
- <index>0x2</index>
- <name>__TI_zero_init</name>
- </handler>
- </handler_table>
- <symbol_table>
- <symbol id="sm-1">
- <name>__start___llvm_prf_cnts</name>
- <value>0x20200000</value>
- </symbol>
- <symbol id="sm-2">
- <name>__stop___llvm_prf_cnts</name>
- <value>0x20200000</value>
- </symbol>
- <symbol id="sm-3">
- <name>__start___llvm_prf_bits</name>
- <value>0x20200000</value>
- </symbol>
- <symbol id="sm-4">
- <name>__stop___llvm_prf_bits</name>
- <value>0x20200000</value>
- </symbol>
- <symbol id="sm-5">
- <name>__TI_CINIT_Base</name>
- <value>0x13dc</value>
- </symbol>
- <symbol id="sm-6">
- <name>__TI_CINIT_Limit</name>
- <value>0x13ec</value>
- </symbol>
- <symbol id="sm-7">
- <name>__TI_CINIT_Warm</name>
- <value>0x13ec</value>
- </symbol>
- <symbol id="sm-8">
- <name>__TI_Handler_Table_Base</name>
- <value>0x13c0</value>
- </symbol>
- <symbol id="sm-9">
- <name>__TI_Handler_Table_Limit</name>
- <value>0x13cc</value>
- </symbol>
- <symbol id="sm-a">
- <name>binit</name>
- <value>0xffffffff</value>
- </symbol>
- <symbol id="sm-b">
- <name>__binit__</name>
- <value>0xffffffff</value>
- </symbol>
- <symbol id="sm-c">
- <name>__STACK_SIZE</name>
- <value>0x200</value>
- </symbol>
- <symbol id="sm-d">
- <name>__STACK_END</name>
- <value>0x20208000</value>
- </symbol>
- <symbol id="sm-e">
- <name>__TI_pprof_out_hndl</name>
- <value>0xffffffff</value>
- </symbol>
- <symbol id="sm-f">
- <name>__TI_prof_data_start</name>
- <value>0xffffffff</value>
- </symbol>
- <symbol id="sm-10">
- <name>__TI_prof_data_size</name>
- <value>0xffffffff</value>
- </symbol>
- <symbol id="sm-3c">
- <name>Init</name>
- <value>0xdf1</value>
- <object_component_ref idref="oc-8c"/>
- </symbol>
- <symbol id="sm-3d">
- <name>gCheckADC</name>
- <value>0x20200013</value>
- </symbol>
- <symbol id="sm-3e">
- <name>gServiceInt</name>
- <value>0x20200014</value>
- </symbol>
- <symbol id="sm-3f">
- <name>gInterruptLine1Status</name>
- <value>0x2020000c</value>
- </symbol>
- <symbol id="sm-40">
- <name>OverheatingThreshold</name>
- <value>0x20200010</value>
- </symbol>
- <symbol id="sm-41">
- <name>DeviceUID</name>
- <value>0x20200000</value>
- </symbol>
- <symbol id="sm-50">
- <name>main</name>
- <value>0x1265</value>
- <object_component_ref idref="oc-71"/>
- </symbol>
- <symbol id="sm-51">
- <name>ADC0_IRQHandler</name>
- <value>0x1145</value>
- <object_component_ref idref="oc-34"/>
- </symbol>
- <symbol id="sm-52">
- <name>CANFD0_IRQHandler</name>
- <value>0xe39</value>
- <object_component_ref idref="oc-39"/>
- </symbol>
- <symbol id="sm-53">
- <name>CurrentMode</name>
- <value>0x20200012</value>
- </symbol>
- <symbol id="sm-61">
- <name>GetDeviceUID</name>
- <value>0x117d</value>
- <object_component_ref idref="oc-ce"/>
- </symbol>
- <symbol id="sm-6c">
- <name>initializeDeviceID</name>
- <value>0x11c9</value>
- <object_component_ref idref="oc-b3"/>
- </symbol>
- <symbol id="sm-97">
- <name>SYSCFG_DL_init</name>
- <value>0x11b1</value>
- <object_component_ref idref="oc-ae"/>
- </symbol>
- <symbol id="sm-98">
- <name>SYSCFG_DL_initPower</name>
- <value>0xeb9</value>
- <object_component_ref idref="oc-c6"/>
- </symbol>
- <symbol id="sm-99">
- <name>SYSCFG_DL_GPIO_init</name>
- <value>0xda5</value>
- <object_component_ref idref="oc-c7"/>
- </symbol>
- <symbol id="sm-9a">
- <name>SYSCFG_DL_SYSCTL_init</name>
- <value>0xef9</value>
- <object_component_ref idref="oc-c8"/>
- </symbol>
- <symbol id="sm-9b">
- <name>SYSCFG_DL_ADC12_0_init</name>
- <value>0xc51</value>
- <object_component_ref idref="oc-ca"/>
- </symbol>
- <symbol id="sm-9c">
- <name>SYSCFG_DL_MCAN0_init</name>
- <value>0x75d</value>
- <object_component_ref idref="oc-cb"/>
- </symbol>
- <symbol id="sm-a7">
- <name>Default_Handler</name>
- <value>0x9ff</value>
- <object_component_ref idref="oc-33"/>
- </symbol>
- <symbol id="sm-a8">
- <name>Reset_Handler</name>
- <value>0x1289</value>
- <object_component_ref idref="oc-2f"/>
- </symbol>
- <symbol id="sm-a9">
- <name>interruptVectors</name>
- <value>0x0</value>
- <object_component_ref idref="oc-18"/>
- </symbol>
- <symbol id="sm-aa">
- <name>NMI_Handler</name>
- <value>0x9ff</value>
- <object_component_ref idref="oc-33"/>
- </symbol>
- <symbol id="sm-ab">
- <name>HardFault_Handler</name>
- <value>0x9ff</value>
- <object_component_ref idref="oc-33"/>
- </symbol>
- <symbol id="sm-ac">
- <name>SVC_Handler</name>
- <value>0x9ff</value>
- <object_component_ref idref="oc-33"/>
- </symbol>
- <symbol id="sm-ad">
- <name>PendSV_Handler</name>
- <value>0x9ff</value>
- <object_component_ref idref="oc-33"/>
- </symbol>
- <symbol id="sm-ae">
- <name>SysTick_Handler</name>
- <value>0x9ff</value>
- <object_component_ref idref="oc-33"/>
- </symbol>
- <symbol id="sm-af">
- <name>GROUP0_IRQHandler</name>
- <value>0x9ff</value>
- <object_component_ref idref="oc-33"/>
- </symbol>
- <symbol id="sm-b0">
- <name>GROUP1_IRQHandler</name>
- <value>0x9ff</value>
- <object_component_ref idref="oc-33"/>
- </symbol>
- <symbol id="sm-b1">
- <name>TIMG8_IRQHandler</name>
- <value>0x9ff</value>
- <object_component_ref idref="oc-33"/>
- </symbol>
- <symbol id="sm-b2">
- <name>UART3_IRQHandler</name>
- <value>0x9ff</value>
- <object_component_ref idref="oc-33"/>
- </symbol>
- <symbol id="sm-b3">
- <name>ADC1_IRQHandler</name>
- <value>0x9ff</value>
- <object_component_ref idref="oc-33"/>
- </symbol>
- <symbol id="sm-b4">
- <name>DAC0_IRQHandler</name>
- <value>0x9ff</value>
- <object_component_ref idref="oc-33"/>
- </symbol>
- <symbol id="sm-b5">
- <name>SPI0_IRQHandler</name>
- <value>0x9ff</value>
- <object_component_ref idref="oc-33"/>
- </symbol>
- <symbol id="sm-b6">
- <name>SPI1_IRQHandler</name>
- <value>0x9ff</value>
- <object_component_ref idref="oc-33"/>
- </symbol>
- <symbol id="sm-b7">
- <name>UART1_IRQHandler</name>
- <value>0x9ff</value>
- <object_component_ref idref="oc-33"/>
- </symbol>
- <symbol id="sm-b8">
- <name>UART2_IRQHandler</name>
- <value>0x9ff</value>
- <object_component_ref idref="oc-33"/>
- </symbol>
- <symbol id="sm-b9">
- <name>UART0_IRQHandler</name>
- <value>0x9ff</value>
- <object_component_ref idref="oc-33"/>
- </symbol>
- <symbol id="sm-ba">
- <name>TIMG0_IRQHandler</name>
- <value>0x9ff</value>
- <object_component_ref idref="oc-33"/>
- </symbol>
- <symbol id="sm-bb">
- <name>TIMG6_IRQHandler</name>
- <value>0x9ff</value>
- <object_component_ref idref="oc-33"/>
- </symbol>
- <symbol id="sm-bc">
- <name>TIMA0_IRQHandler</name>
- <value>0x9ff</value>
- <object_component_ref idref="oc-33"/>
- </symbol>
- <symbol id="sm-bd">
- <name>TIMA1_IRQHandler</name>
- <value>0x9ff</value>
- <object_component_ref idref="oc-33"/>
- </symbol>
- <symbol id="sm-be">
- <name>TIMG7_IRQHandler</name>
- <value>0x9ff</value>
- <object_component_ref idref="oc-33"/>
- </symbol>
- <symbol id="sm-bf">
- <name>TIMG12_IRQHandler</name>
- <value>0x9ff</value>
- <object_component_ref idref="oc-33"/>
- </symbol>
- <symbol id="sm-c0">
- <name>I2C0_IRQHandler</name>
- <value>0x9ff</value>
- <object_component_ref idref="oc-33"/>
- </symbol>
- <symbol id="sm-c1">
- <name>I2C1_IRQHandler</name>
- <value>0x9ff</value>
- <object_component_ref idref="oc-33"/>
- </symbol>
- <symbol id="sm-c2">
- <name>AES_IRQHandler</name>
- <value>0x9ff</value>
- <object_component_ref idref="oc-33"/>
- </symbol>
- <symbol id="sm-c3">
- <name>RTC_IRQHandler</name>
- <value>0x9ff</value>
- <object_component_ref idref="oc-33"/>
- </symbol>
- <symbol id="sm-c4">
- <name>DMA_IRQHandler</name>
- <value>0x9ff</value>
- <object_component_ref idref="oc-33"/>
- </symbol>
- <symbol id="sm-c5">
- <name>__TI_ATRegion0_src_addr</name>
- <value>0x0</value>
- </symbol>
- <symbol id="sm-c6">
- <name>__TI_ATRegion0_trg_addr</name>
- <value>0x0</value>
- </symbol>
- <symbol id="sm-c7">
- <name>__TI_ATRegion0_region_sz</name>
- <value>0x0</value>
- </symbol>
- <symbol id="sm-c8">
- <name>__TI_ATRegion1_src_addr</name>
- <value>0x0</value>
- </symbol>
- <symbol id="sm-c9">
- <name>__TI_ATRegion1_trg_addr</name>
- <value>0x0</value>
- </symbol>
- <symbol id="sm-ca">
- <name>__TI_ATRegion1_region_sz</name>
- <value>0x0</value>
- </symbol>
- <symbol id="sm-cb">
- <name>__TI_ATRegion2_src_addr</name>
- <value>0x0</value>
- </symbol>
- <symbol id="sm-cc">
- <name>__TI_ATRegion2_trg_addr</name>
- <value>0x0</value>
- </symbol>
- <symbol id="sm-cd">
- <name>__TI_ATRegion2_region_sz</name>
- <value>0x0</value>
- </symbol>
- <symbol id="sm-d3">
- <name>DL_ADC12_setClockConfig</name>
- <value>0xd0d</value>
- <object_component_ref idref="oc-e1"/>
- </symbol>
- <symbol id="sm-d6">
- <name>DL_Common_delayCycles</name>
- <value>0x11f7</value>
- <object_component_ref idref="oc-de"/>
- </symbol>
- <symbol id="sm-108">
- <name>DL_MCAN_setClockConfig</name>
- <value>0xfd9</value>
- <object_component_ref idref="oc-e3"/>
- </symbol>
- <symbol id="sm-109">
- <name>DL_MCAN_isMemInitDone</name>
- <value>0xe79</value>
- <object_component_ref idref="oc-e5"/>
- </symbol>
- <symbol id="sm-10a">
- <name>DL_MCAN_setOpMode</name>
- <value>0x10c5</value>
- <object_component_ref idref="oc-e6"/>
- </symbol>
- <symbol id="sm-10b">
- <name>DL_MCAN_getOpMode</name>
- <value>0x1161</value>
- <object_component_ref idref="oc-e7"/>
- </symbol>
- <symbol id="sm-10c">
- <name>DL_MCAN_init</name>
- <value>0x369</value>
- <object_component_ref idref="oc-e8"/>
- </symbol>
- <symbol id="sm-10d">
- <name>DL_MCAN_config</name>
- <value>0x631</value>
- <object_component_ref idref="oc-e9"/>
- </symbol>
- <symbol id="sm-10e">
- <name>DL_MCAN_setBitTime</name>
- <value>0x4ed</value>
- <object_component_ref idref="oc-ea"/>
- </symbol>
- <symbol id="sm-10f">
- <name>DL_MCAN_msgRAMConfig</name>
- <value>0xc1</value>
- <object_component_ref idref="oc-eb"/>
- </symbol>
- <symbol id="sm-110">
- <name>DL_MCAN_setExtIDAndMask</name>
- <value>0xd59</value>
- <object_component_ref idref="oc-ed"/>
- </symbol>
- <symbol id="sm-111">
- <name>DL_MCAN_addStdMsgIDFilter</name>
- <value>0xb11</value>
- <object_component_ref idref="oc-ec"/>
- </symbol>
- <symbol id="sm-112">
- <name>DL_MCAN_enableIntr</name>
- <value>0xb85</value>
- <object_component_ref idref="oc-ee"/>
- </symbol>
- <symbol id="sm-113">
- <name>DL_MCAN_selectIntrLine</name>
- <value>0xbed</value>
- <object_component_ref idref="oc-ef"/>
- </symbol>
- <symbol id="sm-114">
- <name>DL_MCAN_enableIntrLine</name>
- <value>0xcb5</value>
- <object_component_ref idref="oc-f0"/>
- </symbol>
- <symbol id="sm-115">
- <name>DL_MCAN_getIntrStatus</name>
- <value>0x1199</value>
- <object_component_ref idref="oc-60"/>
- </symbol>
- <symbol id="sm-116">
- <name>DL_MCAN_clearIntrStatus</name>
- <value>0xf71</value>
- <object_component_ref idref="oc-61"/>
- </symbol>
- <symbol id="sm-117">
- <name>DL_MCAN_getRevisionId</name>
- <value>0xa01</value>
- <object_component_ref idref="oc-e4"/>
- </symbol>
- <symbol id="sm-129">
- <name>DL_SYSCTL_configSYSPLL</name>
- <value>0x879</value>
- <object_component_ref idref="oc-df"/>
- </symbol>
- <symbol id="sm-139">
- <name>_c_int00_noargs</name>
- <value>0x107d</value>
- <object_component_ref idref="oc-55"/>
- </symbol>
- <symbol id="sm-13a">
- <name>__stack</name>
- <value>0x20207e00</value>
- <object_component_ref idref="oc-1a"/>
- </symbol>
- <symbol id="sm-146">
- <name>__TI_auto_init_nobinit_nopinit</name>
- <value>0xf35</value>
- <object_component_ref idref="oc-95"/>
- </symbol>
- <symbol id="sm-14e">
- <name>_system_pre_init</name>
- <value>0x128d</value>
- <object_component_ref idref="oc-6d"/>
- </symbol>
- <symbol id="sm-159">
- <name>__TI_zero_init_nomemset</name>
- <value>0x11e1</value>
- <object_component_ref idref="oc-4c"/>
- </symbol>
- <symbol id="sm-162">
- <name>__TI_decompress_none</name>
- <value>0x1221</value>
- <object_component_ref idref="oc-20"/>
- </symbol>
- <symbol id="sm-16d">
- <name>__TI_decompress_lzss</name>
- <value>0xa95</value>
- <object_component_ref idref="oc-1c"/>
- </symbol>
- <symbol id="sm-17c">
- <name>abort</name>
- <value>0x1291</value>
- <object_component_ref idref="oc-8e"/>
- </symbol>
- <symbol id="sm-17d">
- <name>C$$EXIT</name>
- <value>0x1290</value>
- <object_component_ref idref="oc-8e"/>
- </symbol>
- <symbol id="sm-19e">
- <name>__aeabi_memcpy</name>
- <value>0x1281</value>
- <object_component_ref idref="oc-45"/>
- </symbol>
- <symbol id="sm-19f">
- <name>__aeabi_memcpy4</name>
- <value>0x1281</value>
- <object_component_ref idref="oc-45"/>
- </symbol>
- <symbol id="sm-1a0">
- <name>__aeabi_memcpy8</name>
- <value>0x1281</value>
- <object_component_ref idref="oc-45"/>
- </symbol>
- <symbol id="sm-1bc">
- <name>memcpy</name>
- <value>0x965</value>
- <object_component_ref idref="oc-87"/>
- </symbol>
- <symbol id="sm-1bd">
- <name>__TI_static_base__</name>
- <value>0x0</value>
- </symbol>
- <symbol id="sm-1c0">
- <name>__mpu_init</name>
- <value>0x0</value>
- </symbol>
- <symbol id="sm-1c1">
- <name>_system_post_cinit</name>
- <value>0x0</value>
- </symbol>
- </symbol_table>
- <title>Link successful</title>
- </link_info>
|