SampleApp.dep 309 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project>
  3. <fileVersion>2</fileVersion>
  4. <fileChecksum>3178424647</fileChecksum>
  5. <configuration>
  6. <name>CoordinatorEB</name>
  7. <outputs>
  8. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_led.c</file>
  9. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\include\hal_lcd.h</file>
  10. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_flash.c</file>
  11. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_aes.h</file>
  12. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\high_level\mac_pib.h</file>
  13. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_adc.c</file>
  14. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\include\mac_api.h</file>
  15. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_board_cfg.h</file>
  16. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_dma.c</file>
  17. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_uart.c</file>
  18. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\include\hal_key.h</file>
  19. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\include\hal_board.h</file>
  20. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\include\hal_defs.h</file>
  21. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\include\hal_sleep.h</file>
  22. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_timer.c</file>
  23. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\include\hal_drivers.h</file>
  24. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_sleep.c</file>
  25. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\include\hal_uart.h</file>
  26. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_lcd.c</file>
  27. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_startup.c</file>
  28. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\include\hal_flash.h</file>
  29. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\include\hal_timer.h</file>
  30. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_dma.h</file>
  31. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_key.c</file>
  32. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_types.h</file>
  33. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\high_level\mac_cfg.c</file>
  34. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_mcu.h</file>
  35. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\high_level\mac_high_level.h</file>
  36. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\high_level\mac_pib.c</file>
  37. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\high_level\mac_spec.h</file>
  38. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\include\hal_led.h</file>
  39. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\common\hal_drivers.c</file>
  40. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\include\hal_adc.h</file>
  41. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\include\hal_assert.h</file>
  42. <file>$PROJ_DIR$\..\Source\OSAL_SampleApp.c</file>
  43. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\common\hal_assert.c</file>
  44. <file>$PROJ_DIR$\..\Source\dht11.c</file>
  45. <file>$PROJ_DIR$\..\Source\SampleApp.c</file>
  46. <file>$PROJ_DIR$\..\Source\SampleApp.h</file>
  47. <file>$PROJ_DIR$\Source\SampleAppHw.c</file>
  48. <file>$PROJ_DIR$\..\Source\SampleAppHw.h</file>
  49. <file>$PROJ_DIR$\CoordinatorEB\Obj\ZDProfile.r51</file>
  50. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\OSAL_Timers.lst</file>
  51. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\OSAL_Timers.__cstat.et</file>
  52. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\MT_VERSION.lst</file>
  53. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\hal_adc.s51</file>
  54. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\OSAL_SampleApp.lst</file>
  55. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\mac_tx.s51</file>
  56. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\MT_TASK.__cstat.et</file>
  57. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\mac_autopend.r51</file>
  58. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\DebugTrace.__cstat.et</file>
  59. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\OnBoard.s51</file>
  60. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\MT_SAPI.__cstat.et</file>
  61. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\MT_SYS.lst</file>
  62. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\zmac_cb.s51</file>
  63. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\ZMain.lst</file>
  64. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\zmac.lst</file>
  65. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\_hal_uart_dma.c</file>
  66. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\saddr.pbi</file>
  67. <file>$PROJ_DIR$\CoordinatorEB\Obj\mac_rx_onoff.r51</file>
  68. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\mac_rx_onoff.__cstat.et</file>
  69. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\DebugTrace.s51</file>
  70. <file>$PROJ_DIR$\CoordinatorEB\Obj\mac_radio_defs.r51</file>
  71. <file>$PROJ_DIR$\CoordinatorEB\Obj\ZDApp.r51</file>
  72. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\mac_mcu.r51</file>
  73. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\saddr.r51</file>
  74. <file>$PROJ_DIR$\CoordinatorEB\Obj\MT_AF.r51</file>
  75. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\mac_low_level.lst</file>
  76. <file>D:\Zigbee\CoordinatorEB\Obj\stub_aps.r51</file>
  77. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\AF.__cstat.et</file>
  78. <file>$PROJ_DIR$\CoordinatorEB\Obj\zmac.r51</file>
  79. <file>D:\Zigbee\CoordinatorEB\Obj\MT_VERSION.r51</file>
  80. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\MT_UTIL.lst</file>
  81. <file>$PROJ_DIR$\CoordinatorEB\Obj\BindingTable.r51</file>
  82. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\zmac_cb.r51</file>
  83. <file>$PROJ_DIR$\CoordinatorEB\Obj\stub_aps.r51</file>
  84. <file>D:\Zigbee\CoordinatorEB\Obj\hal_sleep.r51</file>
  85. <file>$PROJ_DIR$\CoordinatorEB\Obj\AF.r51</file>
  86. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\hal_uart.s51</file>
  87. <file>$PROJ_DIR$\CoordinatorEB\Obj\dht11.r51</file>
  88. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\mac_cfg.__cstat.et</file>
  89. <file>D:\Zigbee\CoordinatorEB\Obj\BindingTable.r51</file>
  90. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\hal_uart.lst</file>
  91. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\SampleApp.pbi</file>
  92. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\zmac.s51</file>
  93. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\mac_low_level.pbi</file>
  94. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\mac_tx.pbi</file>
  95. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\ZDProfile.lst</file>
  96. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\hal_key.pbi</file>
  97. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\OSAL_PwrMgr.r51</file>
  98. <file>D:\Zigbee\CoordinatorEB\Obj\mac_cfg.r51</file>
  99. <file>$TOOLKIT_DIR$\inc\iar_common.h</file>
  100. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\nwk_globals.__cstat.et</file>
  101. <file>$PROJ_DIR$\CoordinatorEB\Obj\OSAL_PwrMgr.r51</file>
  102. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\OSAL_Clock.pbi</file>
  103. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\hal_adc.__cstat.et</file>
  104. <file>D:\Zigbee\CoordinatorEB\Obj\ZDConfig.r51</file>
  105. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\SampleApp.r51</file>
  106. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\hal_dma.r51</file>
  107. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\mac_cfg.s51</file>
  108. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\MT_TASK.r51</file>
  109. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\OSAL.__cstat.et</file>
  110. <file>$PROJ_DIR$\..\..\..\Libraries\TIMAC\bin\TIMAC-CC2530.lib</file>
  111. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\OSAL_Clock.s51</file>
  112. <file>D:\Zigbee\CoordinatorEB\Obj\ZDProfile.r51</file>
  113. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\MT_APP.s51</file>
  114. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\MT_UART.lst</file>
  115. <file>D:\Zigbee\CoordinatorEB\Obj\mac_mem.r51</file>
  116. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\ZDNwkMgr.s51</file>
  117. <file>D:\Zigbee\CoordinatorEB\Obj\hal_flash.r51</file>
  118. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\ZMain.s51</file>
  119. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\hal_assert.lst</file>
  120. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\mac_mem.r51</file>
  121. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\OSAL.s51</file>
  122. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\OnBoard.r51</file>
  123. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\AF.pbi</file>
  124. <file>$PROJ_DIR$\CoordinatorEB\Obj\OSAL_Timers.r51</file>
  125. <file>$PROJ_DIR$\CoordinatorEB\Obj\OnBoard.r51</file>
  126. <file>$PROJ_DIR$\CoordinatorEB\Obj\ZMain.r51</file>
  127. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\ZDConfig.s51</file>
  128. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\OSAL_Math.r51</file>
  129. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\hal_led.__cstat.et</file>
  130. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\mac_mem.lst</file>
  131. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\saddr.s51</file>
  132. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\hal_led.lst</file>
  133. <file>$PROJ_DIR$\CoordinatorEB\Obj\hal_lcd.r51</file>
  134. <file>$PROJ_DIR$\CoordinatorEB\Obj\SampleApp.r51</file>
  135. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\zmac.__cstat.et</file>
  136. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\nwk_globals.lst</file>
  137. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\ZDObject.r51</file>
  138. <file>$PROJ_DIR$\..\..\..\Libraries\TI2530DB\bin\Router-Pro.lib</file>
  139. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\MT_ZDO.__cstat.et</file>
  140. <file>$TOOLKIT_DIR$\inc\ioCC2530.h</file>
  141. <file>D:\Zigbee\CoordinatorEB\Obj\MT_SYS.r51</file>
  142. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\mac_sleep.lst</file>
  143. <file>$PROJ_DIR$\..\..\..\Libraries\TI2530DB\bin\Security.lib</file>
  144. <file>$TOOLKIT_DIR$\inc\iar_cfi.h</file>
  145. <file>$PROJ_DIR$\CoordinatorEB\Obj\mac_csp_tx.r51</file>
  146. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\ZDProfile.__cstat.et</file>
  147. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\hal_sleep.__cstat.et</file>
  148. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\OSAL_PwrMgr.s51</file>
  149. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\ZDNwkMgr.__cstat.et</file>
  150. <file>D:\Zigbee\CoordinatorEB\Obj\OSAL_Math.r51</file>
  151. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\mac_radio.lst</file>
  152. <file>D:\Zigbee\CoordinatorEB\Obj\mac_rffrontend.r51</file>
  153. <file>D:\Zigbee\CoordinatorEB\Obj\ZDNwkMgr.r51</file>
  154. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\hal_flash.s51</file>
  155. <file>$PROJ_DIR$\CoordinatorEB\Obj\MT_ZDO.r51</file>
  156. <file>$PROJ_DIR$\CoordinatorEB\Obj\hal_drivers.r51</file>
  157. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\hal_startup.pbi</file>
  158. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\mac_tx.r51</file>
  159. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\hal_led.pbi</file>
  160. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\ZDObject.__cstat.et</file>
  161. <file>D:\Zigbee\CoordinatorEB\Obj\ZMain.r51</file>
  162. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\hal_sleep.pbi</file>
  163. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\mac_radio.s51</file>
  164. <file>D:\Zigbee\CoordinatorEB\Obj\MT_SAPI.r51</file>
  165. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\mac_pib.r51</file>
  166. <file>D:\Zigbee\CoordinatorEB\Obj\hal_dma.r51</file>
  167. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\OSAL_Memory.lst</file>
  168. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\MT.r51</file>
  169. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\MT_UART.pbi</file>
  170. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\hal_dma.s51</file>
  171. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\mac_backoff_timer.r51</file>
  172. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\OSAL_Memory.r51</file>
  173. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\MT_TASK.s51</file>
  174. <file>$PROJ_DIR$\CoordinatorEB\Obj\hal_assert.r51</file>
  175. <file>$PROJ_DIR$\CoordinatorEB\Obj\OSAL_SampleApp.r51</file>
  176. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\hal_startup.lst</file>
  177. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\saddr.lst</file>
  178. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\hal_flash.lst</file>
  179. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\ZDApp.lst</file>
  180. <file>$PROJ_DIR$\CoordinatorEB\Obj\MT_VERSION.r51</file>
  181. <file>D:\ZigbeeBuildFile\CoordinatorEB\Exe\SampleApp.d51</file>
  182. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\ZDSecMgr.pbi</file>
  183. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\mac_backoff_timer.s51</file>
  184. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\ZDApp.r51</file>
  185. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\hal_lcd.lst</file>
  186. <file>$TOOLKIT_DIR$\inc\iar_check_symbols.h</file>
  187. <file>$PROJ_DIR$\CoordinatorEB\Obj\ZDSecMgr.r51</file>
  188. <file>$TOOLKIT_DIR$\inc\clib\stdio.h</file>
  189. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\mac_radio.__cstat.et</file>
  190. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\ZGlobals.lst</file>
  191. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\hal_timer.r51</file>
  192. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\MT_AF.pbi</file>
  193. <file>D:\Zigbee\CoordinatorEB\Obj\mac_autopend.r51</file>
  194. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\mac_backoff_timer.pbi</file>
  195. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\SampleApp.s51</file>
  196. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\ZDProfile.pbi</file>
  197. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\hal_adc.r51</file>
  198. <file>D:\Zigbee\CoordinatorEB\Obj\OSAL_Clock.r51</file>
  199. <file>$TOOLKIT_DIR$\lib\clib\cl-pli-blxd-1e16x01.r51</file>
  200. <file>$PROJ_DIR$\CoordinatorEB\Obj\mac_low_level.r51</file>
  201. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\hal_uart.r51</file>
  202. <file>$PROJ_DIR$\CoordinatorEB\Obj\hal_flash.r51</file>
  203. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\ZDSecMgr.r51</file>
  204. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\mac_radio_defs.s51</file>
  205. <file>$PROJ_DIR$\CoordinatorEB\Obj\OSAL.r51</file>
  206. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\zmac_cb.__cstat.et</file>
  207. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\mac_pib.pbi</file>
  208. <file>D:\Zigbee\CoordinatorEB\Obj\mac_sleep.r51</file>
  209. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\ZDSecMgr.__cstat.et</file>
  210. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\MT.pbi</file>
  211. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\SampleAppHw.r51</file>
  212. <file>$PROJ_DIR$\CoordinatorEB\Obj\chipcon_cstartup.r51</file>
  213. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\MT_DEBUG.lst</file>
  214. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\mac_sleep.__cstat.et</file>
  215. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\MT_AF.r51</file>
  216. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\hal_timer.pbi</file>
  217. <file>$PROJ_DIR$\CoordinatorEB\Obj\DebugTrace.r51</file>
  218. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\OSAL_SampleApp.__cstat.et</file>
  219. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\MT_ZDO.lst</file>
  220. <file>$PROJ_DIR$\CoordinatorEB\Obj\hal_timer.r51</file>
  221. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\ZDNwkMgr.r51</file>
  222. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\ZDProfile.r51</file>
  223. <file>D:\Zigbee\CoordinatorEB\Obj\SampleApp.r51</file>
  224. <file>D:\Zigbee\CoordinatorEB\Obj\hal_led.r51</file>
  225. <file>$PROJ_DIR$\CoordinatorEB\Obj\OSAL_Nv.r51</file>
  226. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\MT_DEBUG.r51</file>
  227. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\hal_sleep.r51</file>
  228. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\MT_UART.__cstat.et</file>
  229. <file>$PROJ_DIR$\CoordinatorEB\Obj\hal_adc.r51</file>
  230. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\hal_startup.__cstat.et</file>
  231. <file>D:\Zigbee\CoordinatorEB\Obj\OSAL_Timers.r51</file>
  232. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\ZDApp.__cstat.et</file>
  233. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\mac_rx_onoff.r51</file>
  234. <file>D:\Zigbee\CoordinatorEB\Exe\SampleApp.d51</file>
  235. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\hal_flash.r51</file>
  236. <file>$PROJ_DIR$\..\Source\dht11.h</file>
  237. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\OSAL_Clock.lst</file>
  238. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\high_level\mac_security.h</file>
  239. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\MT_NWK.r51</file>
  240. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\hal_key.r51</file>
  241. <file>D:\Zigbee\CoordinatorEB\Obj\MT_UTIL.r51</file>
  242. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\BindingTable.__cstat.et</file>
  243. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\mac_mcu.__cstat.et</file>
  244. <file>$PROJ_DIR$\CoordinatorEB\Obj\zmac_cb.r51</file>
  245. <file>$PROJ_DIR$\CoordinatorEB\Obj\mac_mem.r51</file>
  246. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\SampleAppHw.s51</file>
  247. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\mac_cfg.r51</file>
  248. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\hal_dma.lst</file>
  249. <file>$TOOLKIT_DIR$\inc\clib\stddef.h</file>
  250. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\sapi\sapi.h</file>
  251. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\mac_cfg.lst</file>
  252. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\mac_sleep.s51</file>
  253. <file>D:\Zigbee\CoordinatorEB\Obj\mac_backoff_timer.r51</file>
  254. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\mac_autopend.__cstat.et</file>
  255. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\ZDObject.pbi</file>
  256. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\OSAL_Nv.r51</file>
  257. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\SampleApp.map</file>
  258. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\MT_UART.s51</file>
  259. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\OSAL_Nv.s51</file>
  260. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\mac_backoff_timer.__cstat.et</file>
  261. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\mac_pib.lst</file>
  262. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\BindingTable.lst</file>
  263. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\MT_AF.lst</file>
  264. <file>$PROJ_DIR$\CoordinatorEB\Obj\mac_pib.r51</file>
  265. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\hal_drivers.s51</file>
  266. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\ZDConfig.r51</file>
  267. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\hal_timer.__cstat.et</file>
  268. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\AF.s51</file>
  269. <file>D:\ZigbeeBuildFile\CoordinatorEB\Exe\Coord.hex</file>
  270. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\hal_lcd.s51</file>
  271. <file>$PROJ_DIR$\CoordinatorEB\Obj\OSAL_Memory.r51</file>
  272. <file>D:\Zigbee\CoordinatorEB\Obj\hal_lcd.r51</file>
  273. <file>D:\Zigbee\CoordinatorEB\Obj\OSAL.r51</file>
  274. <file>$PROJ_DIR$\CoordinatorEB\Obj\MT_UTIL.r51</file>
  275. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\mac_autopend.s51</file>
  276. <file>$PROJ_DIR$\CoordinatorEB\Obj\MT_SAPI.r51</file>
  277. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\MT_NWK.__cstat.et</file>
  278. <file>$PROJ_DIR$\CoordinatorEB\Obj\mac_radio.r51</file>
  279. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\mac_rx.r51</file>
  280. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\SampleApp.lst</file>
  281. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\ZGlobals.r51</file>
  282. <file>D:\Zigbee\CoordinatorEB\Obj\hal_assert.r51</file>
  283. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\high_level\mac_data.h</file>
  284. <file>D:\Zigbee\CoordinatorEB\Obj\hal_adc.r51</file>
  285. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\BindingTable.s51</file>
  286. <file>$PROJ_DIR$\CoordinatorEB\Obj\mac_rffrontend.r51</file>
  287. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\ZDProfile.s51</file>
  288. <file>D:\Zigbee\CoordinatorEB\Obj\mac_tx.r51</file>
  289. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\ZDConfig.pbi</file>
  290. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\ZDApp.s51</file>
  291. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\hal_key.lst</file>
  292. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\OSAL_Memory.pbi</file>
  293. <file>D:\Zigbee\CoordinatorEB\Obj\mac_mcu.r51</file>
  294. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\MT_NWK.pbi</file>
  295. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\hal_timer.s51</file>
  296. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\MT_SAPI.lst</file>
  297. <file>$PROJ_DIR$\CoordinatorEB\Obj\hal_startup.r51</file>
  298. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\hal_uart.pbi</file>
  299. <file>D:\Zigbee\CoordinatorEB\Obj\hal_timer.r51</file>
  300. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\nwk_globals.s51</file>
  301. <file>$PROJ_DIR$\CoordinatorEB\Obj\SampleAppHw.r51</file>
  302. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\MT_APP.lst</file>
  303. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\MT_UART.r51</file>
  304. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\MT_TASK.lst</file>
  305. <file>$PROJ_DIR$\CoordinatorEB\Obj\hal_dma.r51</file>
  306. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\mac_rffrontend.pbi</file>
  307. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\hal_dma.__cstat.et</file>
  308. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\MT.s51</file>
  309. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\hal_adc.lst</file>
  310. <file>$PROJ_DIR$\CoordinatorEB\Obj\ZDConfig.r51</file>
  311. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\mac_radio_defs.__cstat.et</file>
  312. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\OSAL_Clock.r51</file>
  313. <file>D:\Zigbee\CoordinatorEB\Obj\mac_rx.r51</file>
  314. <file>D:\Zigbee\CoordinatorEB\Obj\zmac.r51</file>
  315. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\MT.lst</file>
  316. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\zmac_cb.lst</file>
  317. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\ZGlobals.pbi</file>
  318. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\SampleAppHw.pbi</file>
  319. <file>D:\Zigbee\CoordinatorEB\Obj\saddr.r51</file>
  320. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\stub_aps.__cstat.et</file>
  321. <file>D:\Zigbee\CoordinatorEB\Obj\OSAL_SampleApp.r51</file>
  322. <file>$PROJ_DIR$\CoordinatorEB\Obj\MT_SYS.r51</file>
  323. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\hal_key.s51</file>
  324. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\stub_aps.pbi</file>
  325. <file>D:\Zigbee\CoordinatorEB\Obj\chipcon_cstartup.r51</file>
  326. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\ZDObject.lst</file>
  327. <file>D:\Zigbee\CoordinatorEB\Obj\OSAL_Nv.r51</file>
  328. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\MT_SYS.__cstat.et</file>
  329. <file>D:\Zigbee\CoordinatorEB\Obj\mac_radio_defs.r51</file>
  330. <file>D:\Zigbee\CoordinatorEB\Obj\ZDApp.r51</file>
  331. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\OSAL_SampleApp.r51</file>
  332. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\hal_timer.lst</file>
  333. <file>$PROJ_DIR$\CoordinatorEB\Obj\MT_UART.r51</file>
  334. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\OSAL_PwrMgr.lst</file>
  335. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\mac_rffrontend.s51</file>
  336. <file>$PROJ_DIR$\CoordinatorEB\Obj\mac_tx.r51</file>
  337. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\OSAL_SampleApp.s51</file>
  338. <file>$PROJ_DIR$\CoordinatorEB\Obj\ZGlobals.r51</file>
  339. <file>D:\Zigbee\CoordinatorEB\Obj\ZGlobals.r51</file>
  340. <file>D:\Zigbee\CoordinatorEB\Obj\hal_uart.r51</file>
  341. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_MAC.h</file>
  342. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\mac_csp_tx.pbi</file>
  343. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\hal_led.s51</file>
  344. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\MT_VERSION.__cstat.et</file>
  345. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\hal_lcd.__cstat.et</file>
  346. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\MT_SAPI.pbi</file>
  347. <file>$PROJ_DIR$\CoordinatorEB\Obj\OSAL_Math.r51</file>
  348. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\ZDApp.pbi</file>
  349. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\mac_rx_onoff.s51</file>
  350. <file>D:\Zigbee\CoordinatorEB\Obj\MT_DEBUG.r51</file>
  351. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\mac_mem.__cstat.et</file>
  352. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\hal_sleep.s51</file>
  353. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\hal_drivers.pbi</file>
  354. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\ZGlobals.__cstat.et</file>
  355. <file>$PROJ_DIR$\CoordinatorEB\Obj\mac_mcu.r51</file>
  356. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\hal_sleep.lst</file>
  357. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\saddr.__cstat.et</file>
  358. <file>D:\Zigbee\CoordinatorEB\Obj\hal_drivers.r51</file>
  359. <file>$PROJ_DIR$\CoordinatorEB\Obj\mac_sleep.r51</file>
  360. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\ZGlobals.s51</file>
  361. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\mac_pib.__cstat.et</file>
  362. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\mac_rffrontend.r51</file>
  363. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\hal_drivers.__cstat.et</file>
  364. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\high_level\mac_main.h</file>
  365. <file>$PROJ_DIR$\CoordinatorEB\Obj\hal_key.r51</file>
  366. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\ZDObject.s51</file>
  367. <file>$PROJ_DIR$\CoordinatorEB\Exe\SampleApp.d51</file>
  368. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\mac_low_level.s51</file>
  369. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\MT_SAPI.s51</file>
  370. <file>$PROJ_DIR$\CoordinatorEB\Obj\MT_DEBUG.r51</file>
  371. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\hal_uart.__cstat.et</file>
  372. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_mac_cfg.h</file>
  373. <file>D:\Zigbee\CoordinatorEB\Obj\ZDSecMgr.r51</file>
  374. <file>$PROJ_DIR$\CoordinatorEB\Obj\MT_NWK.r51</file>
  375. <file>D:\Zigbee\CoordinatorEB\Obj\OSAL_Memory.r51</file>
  376. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\MT_VERSION.r51</file>
  377. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\nwk_globals.r51</file>
  378. <file>D:\Zigbee\CoordinatorEB\Obj\MT.r51</file>
  379. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\hal_dma.pbi</file>
  380. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\OSAL.lst</file>
  381. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\MT_SYS.s51</file>
  382. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\mac_tx.__cstat.et</file>
  383. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\mac_rffrontend.lst</file>
  384. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\MT_APP.r51</file>
  385. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\mac_mem.pbi</file>
  386. <file>D:\Zigbee\CoordinatorEB\Obj\mac_low_level.r51</file>
  387. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\MT_UTIL.s51</file>
  388. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\hal_startup.s51</file>
  389. <file>$PROJ_DIR$\CoordinatorEB\Obj\MT.r51</file>
  390. <file>D:\Zigbee\CoordinatorEB\Obj\mac_radio.r51</file>
  391. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\mac_mem.s51</file>
  392. <file>D:\Zigbee\CoordinatorEB\Obj\DebugTrace.r51</file>
  393. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\MT_VERSION.pbi</file>
  394. <file>$PROJ_DIR$\CoordinatorEB\Obj\saddr.r51</file>
  395. <file>$PROJ_DIR$\CoordinatorEB\Obj\ZDObject.r51</file>
  396. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\hal_assert.s51</file>
  397. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\OSAL_Clock.__cstat.et</file>
  398. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\MT_SYS.r51</file>
  399. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\mac_rx.__cstat.et</file>
  400. <file>$PROJ_DIR$\CoordinatorEB\Obj\ZDNwkMgr.r51</file>
  401. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\DebugTrace.r51</file>
  402. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\OSAL_Timers.r51</file>
  403. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\hal_key.__cstat.et</file>
  404. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\BindingTable.pbi</file>
  405. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\hal_lcd.r51</file>
  406. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\mac_radio_defs.pbi</file>
  407. <file>D:\Zigbee\CoordinatorEB\Obj\mac_csp_tx.r51</file>
  408. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\SampleApp.__cstat.et</file>
  409. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\mac_mcu.lst</file>
  410. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\DebugTrace.pbi</file>
  411. <file>D:\Zigbee\CoordinatorEB\Obj\MT_TASK.r51</file>
  412. <file>$PROJ_DIR$\CoordinatorEB\Obj\nwk_globals.r51</file>
  413. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\mac_rx_onoff.lst</file>
  414. <file>D:\Zigbee\CoordinatorEB\Obj\mac_pib.r51</file>
  415. <file>D:\Zigbee\CoordinatorEB\Obj\MT_ZDO.r51</file>
  416. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\mac_rx.pbi</file>
  417. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\MT_UTIL.pbi</file>
  418. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\MT_UTIL.r51</file>
  419. <file>$PROJ_DIR$\CoordinatorEB\Obj\hal_led.r51</file>
  420. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\MT_ZDO.r51</file>
  421. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\mac_sleep.pbi</file>
  422. <file>$TOOLKIT_DIR$\inc\clib\math.h</file>
  423. <file>$TOOLKIT_DIR$\inc\clib\stdarg.h</file>
  424. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\MT_DEBUG.pbi</file>
  425. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\ZDConfig.lst</file>
  426. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\MT_AF.__cstat.et</file>
  427. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\hal_flash.__cstat.et</file>
  428. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\SampleAppHw.__cstat.et</file>
  429. <file>$PROJ_DIR$\CoordinatorEB\Obj\mac_backoff_timer.r51</file>
  430. <file>D:\Zigbee\CoordinatorEB\Obj\MT_UART.r51</file>
  431. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\hal_led.r51</file>
  432. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\mac_autopend.lst</file>
  433. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\OSAL_Timers.s51</file>
  434. <file>$PROJ_DIR$\CoordinatorEB\Obj\hal_sleep.r51</file>
  435. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\OSAL_SampleApp.pbi</file>
  436. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\hal_assert.pbi</file>
  437. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\mac_csp_tx.r51</file>
  438. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\OnBoard.pbi</file>
  439. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\OSAL_Memory.__cstat.et</file>
  440. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\MT_SAPI.r51</file>
  441. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\MT_UTIL.__cstat.et</file>
  442. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\ZDConfig.__cstat.et</file>
  443. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\hal_flash.pbi</file>
  444. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\MT_TASK.pbi</file>
  445. <file>$PROJ_DIR$\..\..\..\..\..\Components\services\sdata\sdata.h</file>
  446. <file>$PROJ_DIR$\CoordinatorEB\Obj\OSAL_Clock.r51</file>
  447. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\MT_DEBUG.__cstat.et</file>
  448. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\SampleAppHw.lst</file>
  449. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\MT_AF.s51</file>
  450. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\MT_SYS.pbi</file>
  451. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\OnBoard.lst</file>
  452. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\mac_backoff_timer.lst</file>
  453. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\zmac_cb.pbi</file>
  454. <file>$TOOLKIT_DIR$\inc\clib\string.h</file>
  455. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\hal_assert.r51</file>
  456. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\ZDNwkMgr.pbi</file>
  457. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\MT_VERSION.s51</file>
  458. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\mac_sleep.r51</file>
  459. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\hal_drivers.lst</file>
  460. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\ZDNwkMgr.lst</file>
  461. <file>$TOOLKIT_DIR$\inc\clib\sysmac.h</file>
  462. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\mac_radio.r51</file>
  463. <file>D:\Zigbee\CoordinatorEB\Obj\OnBoard.r51</file>
  464. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\MT_DEBUG.s51</file>
  465. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\mac_radio.pbi</file>
  466. <file>D:\Zigbee\CoordinatorEB\Obj\MT_NWK.r51</file>
  467. <file>D:\Zigbee\CoordinatorEB\Obj\zmac_cb.r51</file>
  468. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\mac_low_level.r51</file>
  469. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\MT.__cstat.et</file>
  470. <file>D:\Zigbee\CoordinatorEB\Obj\SampleAppHw.r51</file>
  471. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\mac_tx.lst</file>
  472. <file>D:\Zigbee\CoordinatorEB\Obj\hal_startup.r51</file>
  473. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\hal_startup.r51</file>
  474. <file>$PROJ_DIR$\CoordinatorEB\Obj\MT_TASK.r51</file>
  475. <file>D:\Zigbee\CoordinatorEB\Obj\AF.r51</file>
  476. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\zmac.r51</file>
  477. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\MT_APP.__cstat.et</file>
  478. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\OnBoard.__cstat.et</file>
  479. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\BindingTable.r51</file>
  480. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\OSAL_PwrMgr.pbi</file>
  481. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\stub_aps.s51</file>
  482. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\OSAL_Timers.pbi</file>
  483. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\chipcon_cstartup.r51</file>
  484. <file>D:\Zigbee\CoordinatorEB\Obj\mac_rx_onoff.r51</file>
  485. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\mac_mcu.s51</file>
  486. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\AF.r51</file>
  487. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\OSAL_Nv.__cstat.et</file>
  488. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\mac_csp_tx.s51</file>
  489. <file>$PROJ_DIR$\CoordinatorEB\Obj\mac_cfg.r51</file>
  490. <file>$TOOLKIT_DIR$\inc\clib\stdlib.h</file>
  491. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\mac_csp_tx.lst</file>
  492. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\ZDSecMgr.lst</file>
  493. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\hal_drivers.r51</file>
  494. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\mac_rx_onoff.pbi</file>
  495. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\MT_ZDO.pbi</file>
  496. <file>D:\Zigbee\CoordinatorEB\Obj\OSAL_PwrMgr.r51</file>
  497. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\OSAL_Memory.s51</file>
  498. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\ZMain.pbi</file>
  499. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\mac_radio_defs.lst</file>
  500. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\mac_autopend.pbi</file>
  501. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\mac_mcu.pbi</file>
  502. <file>D:\Zigbee\CoordinatorEB\Obj\MT_AF.r51</file>
  503. <file>D:\Zigbee\CoordinatorEB\Obj\nwk_globals.r51</file>
  504. <file>$PROJ_DIR$\CoordinatorEB\Obj\hal_uart.r51</file>
  505. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\mac_csp_tx.__cstat.et</file>
  506. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\hal_adc.pbi</file>
  507. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\DebugTrace.lst</file>
  508. <file>D:\Zigbee\CoordinatorEB\Obj\MT_APP.r51</file>
  509. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\MT_ZDO.s51</file>
  510. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\OSAL_Nv.pbi</file>
  511. <file>$PROJ_DIR$\CoordinatorEB\Obj\mac_autopend.r51</file>
  512. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\stub_aps.lst</file>
  513. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\OSAL_PwrMgr.__cstat.et</file>
  514. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\ZMain.r51</file>
  515. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\mac_cfg.pbi</file>
  516. <file>$PROJ_DIR$\CoordinatorEB\Obj\mac_rx.r51</file>
  517. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\MT_APP.pbi</file>
  518. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\MT_NWK.s51</file>
  519. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\OSAL.r51</file>
  520. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\mac_low_level.__cstat.et</file>
  521. <file>D:\Zigbee\CoordinatorEB\Obj\ZDObject.r51</file>
  522. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\mac_pib.s51</file>
  523. <file>D:\Zigbee\CoordinatorEB\Obj\hal_key.r51</file>
  524. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\hal_lcd.pbi</file>
  525. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\zmac.pbi</file>
  526. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\stub_aps.r51</file>
  527. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\mac_rx.s51</file>
  528. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\mac_rffrontend.__cstat.et</file>
  529. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\MT_NWK.lst</file>
  530. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\AF.lst</file>
  531. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\OSAL.pbi</file>
  532. <file>$PROJ_DIR$\CoordinatorEB\Obj\MT_APP.r51</file>
  533. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\ZDSecMgr.s51</file>
  534. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\nwk_globals.pbi</file>
  535. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\mac_rx.lst</file>
  536. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_UART.c</file>
  537. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_ZDO.c</file>
  538. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\APSMEDE.h</file>
  539. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_DEBUG.h</file>
  540. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\aps_groups.h</file>
  541. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_APP.c</file>
  542. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_UTIL.h</file>
  543. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\AssocList.h</file>
  544. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\BindingTable.c</file>
  545. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\NLMEDE.h</file>
  546. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_TASK.c</file>
  547. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_NWK.c</file>
  548. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_SYS.c</file>
  549. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_DEBUG.c</file>
  550. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_SAPI.h</file>
  551. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_ZDO.h</file>
  552. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_NWK.h</file>
  553. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_AF.h</file>
  554. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_RPC.h</file>
  555. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_TASK.h</file>
  556. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_APP.h</file>
  557. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\APS.h</file>
  558. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_SAPI.c</file>
  559. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\aps_frag.h</file>
  560. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_VERSION.h</file>
  561. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\BindingTable.h</file>
  562. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_SYS.h</file>
  563. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_UART.h</file>
  564. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_UTIL.c</file>
  565. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_VERSION.c</file>
  566. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\AddrMgr.h</file>
  567. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_assert.h</file>
  568. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_low_level.h</file>
  569. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_low_level.c</file>
  570. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_rx.h</file>
  571. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\single_chip\mac_csp_tx.h</file>
  572. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_rx.c</file>
  573. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\single_chip\mac_radio_defs.h</file>
  574. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\DebugTrace.c</file>
  575. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT.c</file>
  576. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\single_chip\mac_radio_defs.c</file>
  577. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\single_chip\mac_mcu.c</file>
  578. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_backoff_timer.h</file>
  579. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\single_chip\mac_mcu.h</file>
  580. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\single_chip\mac_mem.h</file>
  581. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\single_chip\mac_rffrontend.c</file>
  582. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_radio.c</file>
  583. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_rx_onoff.c</file>
  584. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_sleep.c</file>
  585. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_sleep.h</file>
  586. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_tx.c</file>
  587. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_autopend.c</file>
  588. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_tx.h</file>
  589. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_radio.h</file>
  590. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\single_chip\mac_csp_tx.c</file>
  591. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\single_chip\mac_mem.c</file>
  592. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\DebugTrace.h</file>
  593. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT.h</file>
  594. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_autopend.h</file>
  595. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_rx_onoff.h</file>
  596. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_AF.c</file>
  597. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_backoff_timer.c</file>
  598. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\stub_aps.c</file>
  599. <file>$PROJ_DIR$\..\..\..\..\..\Components\osal\include\comdef.h</file>
  600. <file>$PROJ_DIR$\..\..\..\..\..\Components\osal\common\OSAL.c</file>
  601. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\af\AF.h</file>
  602. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\rtg.h</file>
  603. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\nwk_bufs.h</file>
  604. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\nwk_globals.c</file>
  605. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\nwk_util.h</file>
  606. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\reflecttrack.h</file>
  607. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\stub_aps.h</file>
  608. <file>$PROJ_DIR$\..\..\..\..\..\Components\osal\include\OSAL_Clock.h</file>
  609. <file>$PROJ_DIR$\..\..\..\..\..\Components\osal\include\OSAL.h</file>
  610. <file>$PROJ_DIR$\..\..\..\..\..\Components\osal\common\OSAL_Memory.c</file>
  611. <file>$PROJ_DIR$\..\..\..\..\..\Components\osal\include\OSAL_Nv.h</file>
  612. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\sys\ZGlobals.c</file>
  613. <file>$PROJ_DIR$\..\..\..\..\..\Components\osal\mcu\cc2530\OSAL_Math.s51</file>
  614. <file>$PROJ_DIR$\..\..\..\..\..\Components\osal\mcu\cc2530\OSAL_Nv.c</file>
  615. <file>$PROJ_DIR$\..\..\..\..\..\Components\osal\common\OSAL_Clock.c</file>
  616. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\sys\ZGlobals.h</file>
  617. <file>$PROJ_DIR$\..\..\..\..\..\Components\osal\include\OSAL_Memory.h</file>
  618. <file>$PROJ_DIR$\..\..\..\..\..\Components\osal\include\OSAL_Tasks.h</file>
  619. <file>$PROJ_DIR$\..\..\..\..\..\Components\osal\include\ZComDef.h</file>
  620. <file>$PROJ_DIR$\..\..\..\..\..\Components\osal\include\OSAL_PwrMgr.h</file>
  621. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\nwk_globals.h</file>
  622. <file>$PROJ_DIR$\..\..\..\..\..\Components\osal\common\OSAL_PwrMgr.c</file>
  623. <file>$PROJ_DIR$\..\..\..\..\..\Components\osal\common\OSAL_Timers.c</file>
  624. <file>$PROJ_DIR$\..\..\..\..\..\Components\osal\include\OSAL_Timers.h</file>
  625. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\nwk.h</file>
  626. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\af\AF.c</file>
  627. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\sec\ssp.h</file>
  628. <file>$PROJ_DIR$\..\..\..\..\..\Components\services\saddr\saddr.c</file>
  629. <file>$PROJ_DIR$\..\..\..\..\..\Components\zmac\f8w\zmac_cb.c</file>
  630. <file>$PROJ_DIR$\..\..\..\ZMain\TI2530DB\chipcon_cstartup.s51</file>
  631. <file>$PROJ_DIR$\..\..\..\ZMain\TI2530DB\OnBoard.h</file>
  632. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\zdo\ZDSecMgr.h</file>
  633. <file>$PROJ_DIR$\..\..\..\Tools\CC2530DB\f8wCoord.cfg</file>
  634. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\zdo\ZDApp.h</file>
  635. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\zdo\ZDApp.c</file>
  636. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\zdo\ZDObject.h</file>
  637. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\zdo\ZDProfile.c</file>
  638. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\zdo\ZDObject.c</file>
  639. <file>$PROJ_DIR$\..\..\..\ZMain\TI2530DB\OnBoard.c</file>
  640. <file>$PROJ_DIR$\..\..\..\..\..\Components\services\saddr\saddr.h</file>
  641. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\zdo\ZDProfile.h</file>
  642. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\zdo\ZDSecMgr.c</file>
  643. <file>$PROJ_DIR$\..\..\..\ZMain\TI2530DB\ZMain.c</file>
  644. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\ZMain.__cstat.et</file>
  645. <file>$PROJ_DIR$\..\..\..\..\..\Components\zmac\f8w\zmac_internal.h</file>
  646. <file>$PROJ_DIR$\..\..\..\Tools\CC2530DB\f8w2530.xcl</file>
  647. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\mac_radio_defs.r51</file>
  648. <file>D:\ZigbeeBuildFile\CoordinatorEB\List\OSAL_Nv.lst</file>
  649. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\zdo\ZDConfig.c</file>
  650. <file>D:\ZigbeeBuildFile\CoordinatorEB\Obj\hal_assert.__cstat.et</file>
  651. <file>$PROJ_DIR$\..\..\..\Tools\CC2530DB\f8wConfig.cfg</file>
  652. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\zdo\ZDNwkMgr.c</file>
  653. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\zdo\ZDNwkMgr.h</file>
  654. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\zdo\ZDConfig.h</file>
  655. <file>$PROJ_DIR$\..\..\..\..\..\Components\zmac\f8w\zmac.c</file>
  656. <file>$PROJ_DIR$\..\..\..\..\..\Components\zmac\ZMAC.h</file>
  657. </outputs>
  658. <file>
  659. <name>[ROOT_NODE]</name>
  660. <outputs>
  661. <tool>
  662. <name>XLINK</name>
  663. <file> 173 249 261</file>
  664. </tool>
  665. </outputs>
  666. </file>
  667. <file>
  668. <name>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_led.c</name>
  669. <outputs>
  670. <tool>
  671. <name>ICC8051</name>
  672. <file> 335 124 423</file>
  673. </tool>
  674. <tool>
  675. <name>BICOMP</name>
  676. <file> 151</file>
  677. </tool>
  678. <tool>
  679. <name>__cstat</name>
  680. <file> 121</file>
  681. </tool>
  682. </outputs>
  683. <inputs>
  684. <tool>
  685. <name>ICC8051</name>
  686. <file> 625 643 26 12 24 132 15 30 11 7 601 591 609 616</file>
  687. </tool>
  688. <tool>
  689. <name>BICOMP</name>
  690. <file> 24 132 30 12 7 591 11 15 601 26 616 609</file>
  691. </tool>
  692. </inputs>
  693. </file>
  694. <file>
  695. <name>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_flash.c</name>
  696. <outputs>
  697. <tool>
  698. <name>ICC8051</name>
  699. <file> 146 170 227</file>
  700. </tool>
  701. <tool>
  702. <name>BICOMP</name>
  703. <file> 435</file>
  704. </tool>
  705. <tool>
  706. <name>__cstat</name>
  707. <file> 419</file>
  708. </tool>
  709. </outputs>
  710. <inputs>
  711. <tool>
  712. <name>ICC8051</name>
  713. <file> 625 643 7 26 12 24 132 22 11 20</file>
  714. </tool>
  715. <tool>
  716. <name>BICOMP</name>
  717. <file> 26 24 20 12 132 7 22 11</file>
  718. </tool>
  719. </inputs>
  720. </file>
  721. <file>
  722. <name>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_adc.c</name>
  723. <outputs>
  724. <tool>
  725. <name>ICC8051</name>
  726. <file> 45 301 189</file>
  727. </tool>
  728. <tool>
  729. <name>BICOMP</name>
  730. <file> 498</file>
  731. </tool>
  732. <tool>
  733. <name>__cstat</name>
  734. <file> 95</file>
  735. </tool>
  736. </outputs>
  737. <inputs>
  738. <tool>
  739. <name>ICC8051</name>
  740. <file> 625 643 32 11 7 26 12 24 132</file>
  741. </tool>
  742. <tool>
  743. <name>BICOMP</name>
  744. <file> 24 26 11 12 7 132 32</file>
  745. </tool>
  746. </inputs>
  747. </file>
  748. <file>
  749. <name>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_dma.c</name>
  750. <outputs>
  751. <tool>
  752. <name>ICC8051</name>
  753. <file> 162 240 98</file>
  754. </tool>
  755. <tool>
  756. <name>BICOMP</name>
  757. <file> 371</file>
  758. </tool>
  759. <tool>
  760. <name>__cstat</name>
  761. <file> 299</file>
  762. </tool>
  763. </outputs>
  764. <inputs>
  765. <tool>
  766. <name>ICC8051</name>
  767. <file> 625 643 24 12 22 11 7 26 132 17</file>
  768. </tool>
  769. <tool>
  770. <name>BICOMP</name>
  771. <file> 26 17 11 22 7 24 12 132</file>
  772. </tool>
  773. </inputs>
  774. </file>
  775. <file>
  776. <name>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_uart.c</name>
  777. <outputs>
  778. <tool>
  779. <name>ICC8051</name>
  780. <file> 78 82 193</file>
  781. </tool>
  782. <tool>
  783. <name>BICOMP</name>
  784. <file> 290</file>
  785. </tool>
  786. <tool>
  787. <name>__cstat</name>
  788. <file> 363</file>
  789. </tool>
  790. </outputs>
  791. <inputs>
  792. <tool>
  793. <name>ICC8051</name>
  794. <file> 625 643 7 26 12 24 132 17 11 57 33 22 555 623 13 601 591 609 616</file>
  795. </tool>
  796. <tool>
  797. <name>BICOMP</name>
  798. <file> 623 24 11 17 26 12 132 616 57 22 555 601 591 7 33 13 609</file>
  799. </tool>
  800. </inputs>
  801. </file>
  802. <file>
  803. <name>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_timer.c</name>
  804. <outputs>
  805. <tool>
  806. <name>ICC8051</name>
  807. <file> 287 324 183</file>
  808. </tool>
  809. <tool>
  810. <name>BICOMP</name>
  811. <file> 208</file>
  812. </tool>
  813. <tool>
  814. <name>__cstat</name>
  815. <file> 259</file>
  816. </tool>
  817. </outputs>
  818. <inputs>
  819. <tool>
  820. <name>ICC8051</name>
  821. <file> 625 643</file>
  822. </tool>
  823. </inputs>
  824. </file>
  825. <file>
  826. <name>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_sleep.c</name>
  827. <outputs>
  828. <tool>
  829. <name>ICC8051</name>
  830. <file> 344 348 219</file>
  831. </tool>
  832. <tool>
  833. <name>BICOMP</name>
  834. <file> 154</file>
  835. </tool>
  836. <tool>
  837. <name>__cstat</name>
  838. <file> 139</file>
  839. </tool>
  840. </outputs>
  841. <inputs>
  842. <tool>
  843. <name>ICC8051</name>
  844. <file> 625 643 24 26 12 132 11 7 13 30 10 6 632 437 601 591 609 616 610 612 623 17 15 33 571 27</file>
  845. </tool>
  846. <tool>
  847. <name>BICOMP</name>
  848. <file> 24 616 12 30 15 132 26 11 6 612 571 7 632 601 13 10 610 623 33 437 591 17 27 609</file>
  849. </tool>
  850. </inputs>
  851. </file>
  852. <file>
  853. <name>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_lcd.c</name>
  854. <outputs>
  855. <tool>
  856. <name>ICC8051</name>
  857. <file> 262 177 397</file>
  858. </tool>
  859. <tool>
  860. <name>BICOMP</name>
  861. <file> 516</file>
  862. </tool>
  863. <tool>
  864. <name>__cstat</name>
  865. <file> 337</file>
  866. </tool>
  867. </outputs>
  868. <inputs>
  869. <tool>
  870. <name>ICC8051</name>
  871. <file> 625 643</file>
  872. </tool>
  873. </inputs>
  874. </file>
  875. <file>
  876. <name>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_startup.c</name>
  877. <outputs>
  878. <tool>
  879. <name>ICC8051</name>
  880. <file> 380 168 465</file>
  881. </tool>
  882. <tool>
  883. <name>BICOMP</name>
  884. <file> 149</file>
  885. </tool>
  886. <tool>
  887. <name>__cstat</name>
  888. <file> 222</file>
  889. </tool>
  890. </outputs>
  891. <inputs>
  892. <tool>
  893. <name>ICC8051</name>
  894. <file> 625 643 11 7 26 12 24 132</file>
  895. </tool>
  896. <tool>
  897. <name>BICOMP</name>
  898. <file> 12 132 7 26 24 11</file>
  899. </tool>
  900. </inputs>
  901. </file>
  902. <file>
  903. <name>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_key.c</name>
  904. <outputs>
  905. <tool>
  906. <name>ICC8051</name>
  907. <file> 315 283 232</file>
  908. </tool>
  909. <tool>
  910. <name>BICOMP</name>
  911. <file> 88</file>
  912. </tool>
  913. <tool>
  914. <name>__cstat</name>
  915. <file> 395</file>
  916. </tool>
  917. </outputs>
  918. <inputs>
  919. <tool>
  920. <name>ICC8051</name>
  921. <file> 625 643 26 12 24 132 11 7 15 32 10 601 591 609 616</file>
  922. </tool>
  923. <tool>
  924. <name>BICOMP</name>
  925. <file> 24 15 591 10 26 12 11 32 601 132 7 616 609</file>
  926. </tool>
  927. </inputs>
  928. </file>
  929. <file>
  930. <name>$PROJ_DIR$\..\..\..\..\..\Components\mac\high_level\mac_cfg.c</name>
  931. <outputs>
  932. <tool>
  933. <name>ICC8051</name>
  934. <file> 99 243 239</file>
  935. </tool>
  936. <tool>
  937. <name>BICOMP</name>
  938. <file> 507</file>
  939. </tool>
  940. <tool>
  941. <name>__cstat</name>
  942. <file> 80</file>
  943. </tool>
  944. </outputs>
  945. <inputs>
  946. <tool>
  947. <name>ICC8051</name>
  948. <file> 625 643 6 24 632 437</file>
  949. </tool>
  950. <tool>
  951. <name>BICOMP</name>
  952. <file> 24 437 632 6</file>
  953. </tool>
  954. </inputs>
  955. </file>
  956. <file>
  957. <name>$PROJ_DIR$\..\..\..\..\..\Components\mac\high_level\mac_pib.c</name>
  958. <outputs>
  959. <tool>
  960. <name>ICC8051</name>
  961. <file> 514 253 157</file>
  962. </tool>
  963. <tool>
  964. <name>BICOMP</name>
  965. <file> 199</file>
  966. </tool>
  967. <tool>
  968. <name>__cstat</name>
  969. <file> 353</file>
  970. </tool>
  971. </outputs>
  972. <inputs>
  973. <tool>
  974. <name>ICC8051</name>
  975. <file> 625 643 26 12 24 132 11 7 6 632 437 29 560 27 565 364 571 572 563 559 33 13 356 4 601 591 609 616 241 453</file>
  976. </tool>
  977. <tool>
  978. <name>BICOMP</name>
  979. <file> 601 24 563 560 26 437 12 571 6 356 364 11 29 565 4 241 132 7 27 609 453 632 572 559 13 33 591 616</file>
  980. </tool>
  981. </inputs>
  982. </file>
  983. <file>
  984. <name>$PROJ_DIR$\..\..\..\..\..\Components\hal\common\hal_drivers.c</name>
  985. <outputs>
  986. <tool>
  987. <name>ICC8051</name>
  988. <file> 257 451 485</file>
  989. </tool>
  990. <tool>
  991. <name>BICOMP</name>
  992. <file> 345</file>
  993. </tool>
  994. <tool>
  995. <name>__cstat</name>
  996. <file> 355</file>
  997. </tool>
  998. </outputs>
  999. <inputs>
  1000. <tool>
  1001. <name>ICC8051</name>
  1002. <file> 625 643 24 601 591 12 609 616 15 32 11 7 26 132 22 10 1 30 21 17 13 3 611 632</file>
  1003. </tool>
  1004. <tool>
  1005. <name>BICOMP</name>
  1006. <file> 10 24 17 15 30 609 11 632 601 32 22 1 21 13 3 12 591 616 7 26 132 611</file>
  1007. </tool>
  1008. </inputs>
  1009. </file>
  1010. <file>
  1011. <name>$PROJ_DIR$\..\Source\OSAL_SampleApp.c</name>
  1012. <outputs>
  1013. <tool>
  1014. <name>ICC8051</name>
  1015. <file> 329 46 323</file>
  1016. </tool>
  1017. <tool>
  1018. <name>BICOMP</name>
  1019. <file> 427</file>
  1020. </tool>
  1021. <tool>
  1022. <name>__cstat</name>
  1023. <file> 210</file>
  1024. </tool>
  1025. </outputs>
  1026. <inputs>
  1027. <tool>
  1028. <name>ICC8051</name>
  1029. <file> 625 643 611 591 24 12 632 15 601 609 616 610 585 546 547 617 648 637 6 437 595 537 535 619 549 530 613 553 608 598 626 593 633 646 645 597 551 38</file>
  1030. </tool>
  1031. <tool>
  1032. <name>BICOMP</name>
  1033. <file> 609 6 24 611 549 645 546 648 608 617 537 593 597 601 547 551 632 12 553 595 535 15 610 585 626 38 591 616 637 437 613 619 633 646 530 598</file>
  1034. </tool>
  1035. </inputs>
  1036. </file>
  1037. <file>
  1038. <name>$PROJ_DIR$\..\..\..\..\..\Components\hal\common\hal_assert.c</name>
  1039. <outputs>
  1040. <tool>
  1041. <name>ICC8051</name>
  1042. <file> 388 111 447</file>
  1043. </tool>
  1044. <tool>
  1045. <name>BICOMP</name>
  1046. <file> 428</file>
  1047. </tool>
  1048. <tool>
  1049. <name>__cstat</name>
  1050. <file> 642</file>
  1051. </tool>
  1052. </outputs>
  1053. <inputs>
  1054. <tool>
  1055. <name>ICC8051</name>
  1056. <file> 625 643 33 24 11 7 26 12 132 562 27 6 632 437 580</file>
  1057. </tool>
  1058. <tool>
  1059. <name>BICOMP</name>
  1060. <file> 6 26 11 562 12 27 24 580 7 132 632 33 437</file>
  1061. </tool>
  1062. </inputs>
  1063. </file>
  1064. <file>
  1065. <name>$PROJ_DIR$\..\Source\dht11.c</name>
  1066. <inputs>
  1067. <tool>
  1068. <name>ICC8051</name>
  1069. <file> 625 643 228 132</file>
  1070. </tool>
  1071. <tool>
  1072. <name>BICOMP</name>
  1073. <file> 132 228</file>
  1074. </tool>
  1075. </inputs>
  1076. </file>
  1077. <file>
  1078. <name>$PROJ_DIR$\..\Source\SampleApp.c</name>
  1079. <outputs>
  1080. <tool>
  1081. <name>ICC8051</name>
  1082. <file> 187 272 97</file>
  1083. </tool>
  1084. <tool>
  1085. <name>BICOMP</name>
  1086. <file> 83</file>
  1087. </tool>
  1088. <tool>
  1089. <name>__cstat</name>
  1090. <file> 400</file>
  1091. </tool>
  1092. </outputs>
  1093. <inputs>
  1094. <tool>
  1095. <name>ICC8051</name>
  1096. <file> 625 643 601 591 24 12 609 616 608 611 632 593 617 648 637 6 437 595 537 535 619 530 613 553 532 626 549 598 633 646 38 40 623 26 132 17 11 7 13 414 453 30 10 555 548 585 546 32 180 415 446 482</file>
  1097. </tool>
  1098. <tool>
  1099. <name>BICOMP</name>
  1100. <file> 617 11 180 648 535 611 598 13 414 6 24 619 593 132 12 546 626 548 609 613 601 537 40 10 17 482 591 632 637 437 595 608 530 646 26 532 38 623 30 555 585 32 446 616 553 549 633 453 7 415</file>
  1101. </tool>
  1102. </inputs>
  1103. </file>
  1104. <file>
  1105. <name>$PROJ_DIR$\Source\SampleAppHw.c</name>
  1106. <outputs>
  1107. <tool>
  1108. <name>ICC8051</name>
  1109. <file> 238 440 203</file>
  1110. </tool>
  1111. <tool>
  1112. <name>BICOMP</name>
  1113. <file> 310</file>
  1114. </tool>
  1115. <tool>
  1116. <name>__cstat</name>
  1117. <file> 420</file>
  1118. </tool>
  1119. </outputs>
  1120. <inputs>
  1121. <tool>
  1122. <name>ICC8051</name>
  1123. <file> 625 643 611 591 24 12 632 26 132 40</file>
  1124. </tool>
  1125. <tool>
  1126. <name>BICOMP</name>
  1127. <file> 12 591 24 26 40 632 132 611</file>
  1128. </tool>
  1129. </inputs>
  1130. </file>
  1131. <file>
  1132. <name>D:\ZigbeeBuildFile\CoordinatorEB\Exe\SampleApp.d51</name>
  1133. <outputs>
  1134. <tool>
  1135. <name>XLINK</name>
  1136. <file> 249 261</file>
  1137. </tool>
  1138. </outputs>
  1139. <inputs>
  1140. <tool>
  1141. <name>XLINK</name>
  1142. <file> 638 478 471 475 393 189 447 98 485 227 232 397 423 219 465 183 193 49 163 239 429 460 64 112 157 454 639 354 271 225 450 150 160 207 376 218 231 432 390 100 295 410 368 412 369 114 511 304 120 164 248 89 323 394 65 97 203 518 176 258 213 129 214 195 273 468 74 506 191 130 135 102</file>
  1143. </tool>
  1144. </inputs>
  1145. </file>
  1146. <file>
  1147. <name>D:\Zigbee\CoordinatorEB\Exe\SampleApp.d51</name>
  1148. <inputs>
  1149. <tool>
  1150. <name>XLINK</name>
  1151. <file> 638 467 81 317 384 276 274 158 350 109 515 264 216 76 464 291 332 185 245 90 399 378 285 107 406 382 321 144 305 476 200 280 370 494 500 342 458 156 133 403 422 233 71 407 495 455 265 190 142 367 319 488 313 223 311 215 462 68 322 96 145 513 104 365 331 306 459 153 191 130 135 102</file>
  1152. </tool>
  1153. </inputs>
  1154. </file>
  1155. <file>
  1156. <name>$PROJ_DIR$\CoordinatorEB\Exe\SampleApp.d51</name>
  1157. <inputs>
  1158. <tool>
  1159. <name>XLINK</name>
  1160. <file> 638 77 73 204 209 79 221 166 297 148 194 357 125 411 426 289 212 496 503 421 481 137 192 347 237 256 270 62 278 508 59 351 328 381 66 524 362 366 268 314 466 325 266 172 147 404 117 197 438 339 263 217 93 167 116 386 126 293 75 63 302 392 387 41 179 330 70 236 118 191 130 135 102</file>
  1161. </tool>
  1162. </inputs>
  1163. </file>
  1164. <file>
  1165. <name>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_UART.c</name>
  1166. <outputs>
  1167. <tool>
  1168. <name>ICC8051</name>
  1169. <file> 250 106 295</file>
  1170. </tool>
  1171. <tool>
  1172. <name>BICOMP</name>
  1173. <file> 161</file>
  1174. </tool>
  1175. <tool>
  1176. <name>__cstat</name>
  1177. <file> 220</file>
  1178. </tool>
  1179. </outputs>
  1180. <inputs>
  1181. <tool>
  1182. <name>ICC8051</name>
  1183. <file> 625 643 611 591 24 12 632 601 609 616 17 11 7 26 132 585 546 555 623 13</file>
  1184. </tool>
  1185. <tool>
  1186. <name>BICOMP</name>
  1187. <file> 591 24 555 609 11 611 17 12 601 585 632 616 7 26 132 546 623 13</file>
  1188. </tool>
  1189. </inputs>
  1190. </file>
  1191. <file>
  1192. <name>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_ZDO.c</name>
  1193. <outputs>
  1194. <tool>
  1195. <name>ICC8051</name>
  1196. <file> 501 211 412</file>
  1197. </tool>
  1198. <tool>
  1199. <name>BICOMP</name>
  1200. <file> 487</file>
  1201. </tool>
  1202. <tool>
  1203. <name>__cstat</name>
  1204. <file> 131</file>
  1205. </tool>
  1206. </outputs>
  1207. <inputs>
  1208. <tool>
  1209. <name>ICC8051</name>
  1210. <file> 625 643 611 591 24 12 632 601 609 616 603 585 546 543 530 613 595 648 637 6 437 535 553 617 537 619 608 593 633 646 628 626 549 598 623 26 132 17 11 7 13 597</file>
  1211. </tool>
  1212. <tool>
  1213. <name>BICOMP</name>
  1214. <file> 530 632 601 546 595 591 619 593 633 623 611 585 597 24 608 549 626 12 616 628 613 535 648 26 603 543 646 609 553 637 6 437 617 537 598 17 7 13 132 11</file>
  1215. </tool>
  1216. </inputs>
  1217. </file>
  1218. <file>
  1219. <name>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_APP.c</name>
  1220. <outputs>
  1221. <tool>
  1222. <name>ICC8051</name>
  1223. <file> 105 294 376</file>
  1224. </tool>
  1225. <tool>
  1226. <name>BICOMP</name>
  1227. <file> 509</file>
  1228. </tool>
  1229. <tool>
  1230. <name>__cstat</name>
  1231. <file> 469</file>
  1232. </tool>
  1233. </outputs>
  1234. <inputs>
  1235. <tool>
  1236. <name>ICC8051</name>
  1237. <file> 625 643 611 591 24 12 632 585 546 548 601 609 616 545 593 617 648 637 6 437 595 537 535 619 530 613 553 608 623 26 132 17 11 7 13</file>
  1238. </tool>
  1239. <tool>
  1240. <name>BICOMP</name>
  1241. <file> 535 7 611 648 609 530 595 546 637 548 591 24 593 619 437 608 13 585 545 632 12 601 616 623 617 537 6 613 26 553 17 132 11</file>
  1242. </tool>
  1243. </inputs>
  1244. </file>
  1245. <file>
  1246. <name>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\BindingTable.c</name>
  1247. <outputs>
  1248. <tool>
  1249. <name>ICC8051</name>
  1250. <file> 277 254 471</file>
  1251. </tool>
  1252. <tool>
  1253. <name>BICOMP</name>
  1254. <file> 396</file>
  1255. </tool>
  1256. <tool>
  1257. <name>__cstat</name>
  1258. <file> 234</file>
  1259. </tool>
  1260. </outputs>
  1261. <inputs>
  1262. <tool>
  1263. <name>ICC8051</name>
  1264. <file> 625 643 611 591 24 12 632 601 609 616 603 613 595 648 637 6 437 535 553 617 537 619 608 558</file>
  1265. </tool>
  1266. <tool>
  1267. <name>BICOMP</name>
  1268. <file> 611 601 591 632 619 558 608 603 12 616 535 648 595 613 553 24 609 637 6 437 617 537</file>
  1269. </tool>
  1270. </inputs>
  1271. </file>
  1272. <file>
  1273. <name>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_TASK.c</name>
  1274. <outputs>
  1275. <tool>
  1276. <name>ICC8051</name>
  1277. <file> 165 296 100</file>
  1278. </tool>
  1279. <tool>
  1280. <name>BICOMP</name>
  1281. <file> 436</file>
  1282. </tool>
  1283. <tool>
  1284. <name>__cstat</name>
  1285. <file> 48</file>
  1286. </tool>
  1287. </outputs>
  1288. <inputs>
  1289. <tool>
  1290. <name>ICC8051</name>
  1291. <file> 625 643 611 591 24 12 632 547 585 546 531 601 609 616 555 623 26 132 17 11 7 13 534 554 543 530 613 595 648 637 6 437 535 553 617 537 619 608 593 633 646 628 626 549 598 545</file>
  1292. </tool>
  1293. <tool>
  1294. <name>BICOMP</name>
  1295. <file> 530 632 595 546 619 593 545 628 611 601 555 12 24 591 26 585 608 598 554 609 616 13 132 11 623 613 535 648 626 547 531 534 543 17 7 633 553 637 6 437 617 537 646 549</file>
  1296. </tool>
  1297. </inputs>
  1298. </file>
  1299. <file>
  1300. <name>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_NWK.c</name>
  1301. <outputs>
  1302. <tool>
  1303. <name>ICC8051</name>
  1304. <file> 510 521 231</file>
  1305. </tool>
  1306. <tool>
  1307. <name>BICOMP</name>
  1308. <file> 286</file>
  1309. </tool>
  1310. <tool>
  1311. <name>__cstat</name>
  1312. <file> 269</file>
  1313. </tool>
  1314. </outputs>
  1315. <inputs>
  1316. <tool>
  1317. <name>ICC8051</name>
  1318. <file> 625 643 611 591 24 12 632 585 546 544 537 648 637 6 437 535 595 617 619 613 553 601 609 616 608 597 626 549 530 598 593 633 646 623 26 132 17 11 7 13</file>
  1319. </tool>
  1320. <tool>
  1321. <name>BICOMP</name>
  1322. <file> 537 593 7 632 595 553 617 13 626 648 549 611 12 535 544 597 546 24 619 609 633 613 646 26 585 601 623 591 637 6 437 608 616 530 598 17 132 11</file>
  1323. </tool>
  1324. </inputs>
  1325. </file>
  1326. <file>
  1327. <name>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_SYS.c</name>
  1328. <outputs>
  1329. <tool>
  1330. <name>ICC8051</name>
  1331. <file> 373 53 390</file>
  1332. </tool>
  1333. <tool>
  1334. <name>BICOMP</name>
  1335. <file> 442</file>
  1336. </tool>
  1337. <tool>
  1338. <name>__cstat</name>
  1339. <file> 320</file>
  1340. </tool>
  1341. </outputs>
  1342. <inputs>
  1343. <tool>
  1344. <name>ICC8051</name>
  1345. <file> 625 643 611 591 24 12 632 585 546 554 552 597 537 648 637 6 437 535 595 617 619 601 609 616 603 623 26 132 17 11 7 13 32 608 600 560 27</file>
  1346. </tool>
  1347. <tool>
  1348. <name>BICOMP</name>
  1349. <file> 26 32 611 597 24 27 554 603 600 591 619 601 585 552 623 608 560 632 537 535 648 595 609 17 7 11 12 546 617 637 6 437 616 13 132</file>
  1350. </tool>
  1351. </inputs>
  1352. </file>
  1353. <file>
  1354. <name>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_DEBUG.c</name>
  1355. <outputs>
  1356. <tool>
  1357. <name>ICC8051</name>
  1358. <file> 456 205 218</file>
  1359. </tool>
  1360. <tool>
  1361. <name>BICOMP</name>
  1362. <file> 416</file>
  1363. </tool>
  1364. <tool>
  1365. <name>__cstat</name>
  1366. <file> 439</file>
  1367. </tool>
  1368. </outputs>
  1369. <inputs>
  1370. <tool>
  1371. <name>ICC8051</name>
  1372. <file> 625 643 611 591 24 12 632 585 546 531 601 609 616 555 623 26 132 17 11 7 13 356 27 6 437 275 562 580 613 595 648 637 535 553 617 537 619 608</file>
  1373. </tool>
  1374. <tool>
  1375. <name>BICOMP</name>
  1376. <file> 132 616 7 608 648 613 632 12 601 13 11 611 356 591 595 531 562 546 24 26 27 619 585 555 275 580 609 623 17 535 617 6 437 553 637 537</file>
  1377. </tool>
  1378. </inputs>
  1379. </file>
  1380. <file>
  1381. <name>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_SAPI.c</name>
  1382. <outputs>
  1383. <tool>
  1384. <name>ICC8051</name>
  1385. <file> 361 288 432</file>
  1386. </tool>
  1387. <tool>
  1388. <name>BICOMP</name>
  1389. <file> 338</file>
  1390. </tool>
  1391. <tool>
  1392. <name>__cstat</name>
  1393. <file> 52</file>
  1394. </tool>
  1395. </outputs>
  1396. <inputs>
  1397. <tool>
  1398. <name>ICC8051</name>
  1399. <file> 625 643 611 591 24 12 632 558 601 609 616 603 623 26 132 17 11 7 13 585 546 542 242 593 617 648 637 6 437 595 537 535 619 530 613 553 608 555</file>
  1400. </tool>
  1401. <tool>
  1402. <name>BICOMP</name>
  1403. <file> 601 611 648 535 623 24 12 637 595 542 632 609 17 585 537 437 608 558 603 555 591 616 26 13 132 11 617 6 613 619 7 546 242 593 530 553</file>
  1404. </tool>
  1405. </inputs>
  1406. </file>
  1407. <file>
  1408. <name>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_UTIL.c</name>
  1409. <outputs>
  1410. <tool>
  1411. <name>ICC8051</name>
  1412. <file> 379 72 410</file>
  1413. </tool>
  1414. <tool>
  1415. <name>BICOMP</name>
  1416. <file> 409</file>
  1417. </tool>
  1418. <tool>
  1419. <name>__cstat</name>
  1420. <file> 433</file>
  1421. </tool>
  1422. </outputs>
  1423. <inputs>
  1424. <tool>
  1425. <name>ICC8051</name>
  1426. <file> 625 643 611 591 24 12 632 558 623 26 132 17 11 7 13 601 609 616 10 30 603 537 648 637 6 437 535 595 585 546 534 333 619 543 530 613 553 617 608 593 633 646 628 626 549 598 542 242 544 545 624</file>
  1427. </tool>
  1428. <tool>
  1429. <name>BICOMP</name>
  1430. <file> 553 648 535 601 24 585 616 530 646 611 30 543 26 591 546 626 617 623 333 544 624 632 12 17 7 11 633 595 537 593 598 558 10 603 534 619 542 545 13 132 609 637 6 437 628 613 608 549 242</file>
  1431. </tool>
  1432. </inputs>
  1433. </file>
  1434. <file>
  1435. <name>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_VERSION.c</name>
  1436. <outputs>
  1437. <tool>
  1438. <name>ICC8051</name>
  1439. <file> 449 44 368</file>
  1440. </tool>
  1441. <tool>
  1442. <name>BICOMP</name>
  1443. <file> 385</file>
  1444. </tool>
  1445. <tool>
  1446. <name>__cstat</name>
  1447. <file> 336</file>
  1448. </tool>
  1449. </outputs>
  1450. <inputs>
  1451. <tool>
  1452. <name>ICC8051</name>
  1453. <file> 625 643 611 591 24 12 632 552</file>
  1454. </tool>
  1455. <tool>
  1456. <name>BICOMP</name>
  1457. <file> 591 632 12 611 24 552</file>
  1458. </tool>
  1459. </inputs>
  1460. </file>
  1461. <file>
  1462. <name>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_low_level.c</name>
  1463. <outputs>
  1464. <tool>
  1465. <name>ICC8051</name>
  1466. <file> 360 67 460</file>
  1467. </tool>
  1468. <tool>
  1469. <name>BICOMP</name>
  1470. <file> 85</file>
  1471. </tool>
  1472. <tool>
  1473. <name>__cstat</name>
  1474. <file> 512</file>
  1475. </tool>
  1476. </outputs>
  1477. <inputs>
  1478. <tool>
  1479. <name>ICC8051</name>
  1480. <file> 625 643 24 26 12 132 560 27 6 632 437 581 562 580 587 570 577 565 7 364 29 571 11 572 563 559 33 13</file>
  1481. </tool>
  1482. <tool>
  1483. <name>BICOMP</name>
  1484. <file> 27 577 132 563 562 12 437 560 587 559 24 364 11 33 26 581 580 570 565 6 632 571 7 29 572 13</file>
  1485. </tool>
  1486. </inputs>
  1487. </file>
  1488. <file>
  1489. <name>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_rx.c</name>
  1490. <outputs>
  1491. <tool>
  1492. <name>ICC8051</name>
  1493. <file> 519 527 271</file>
  1494. </tool>
  1495. <tool>
  1496. <name>BICOMP</name>
  1497. <file> 408</file>
  1498. </tool>
  1499. <tool>
  1500. <name>__cstat</name>
  1501. <file> 391</file>
  1502. </tool>
  1503. </outputs>
  1504. <inputs>
  1505. <tool>
  1506. <name>ICC8051</name>
  1507. <file> 625 643 12 24 601 591 609 616 27 6 632 437 29 230 560 562 580 587 581 565 7 26 132 364 571 11 572 563 559 33 13 586</file>
  1508. </tool>
  1509. <tool>
  1510. <name>BICOMP</name>
  1511. <file> 632 580 27 29 12 586 609 601 560 581 6 559 24 230 562 587 565 591 616 437 7 572 13 26 364 571 563 132 11 33</file>
  1512. </tool>
  1513. </inputs>
  1514. </file>
  1515. <file>
  1516. <name>$PROJ_DIR$\..\..\..\..\..\Components\mt\DebugTrace.c</name>
  1517. <outputs>
  1518. <tool>
  1519. <name>ICC8051</name>
  1520. <file> 61 499 393</file>
  1521. </tool>
  1522. <tool>
  1523. <name>BICOMP</name>
  1524. <file> 402</file>
  1525. </tool>
  1526. <tool>
  1527. <name>__cstat</name>
  1528. <file> 50</file>
  1529. </tool>
  1530. </outputs>
  1531. <inputs>
  1532. <tool>
  1533. <name>ICC8051</name>
  1534. <file> 625 643 611 591 24 12 632 601 609 616 585 546 547 531 584</file>
  1535. </tool>
  1536. <tool>
  1537. <name>BICOMP</name>
  1538. <file> 547 601 584 591 24 609 546 611 585 531 632 12 616</file>
  1539. </tool>
  1540. </inputs>
  1541. </file>
  1542. <file>
  1543. <name>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT.c</name>
  1544. <outputs>
  1545. <tool>
  1546. <name>ICC8051</name>
  1547. <file> 300 307 160</file>
  1548. </tool>
  1549. <tool>
  1550. <name>BICOMP</name>
  1551. <file> 202</file>
  1552. </tool>
  1553. <tool>
  1554. <name>__cstat</name>
  1555. <file> 461</file>
  1556. </tool>
  1557. </outputs>
  1558. <inputs>
  1559. <tool>
  1560. <name>ICC8051</name>
  1561. <file> 625 643 611 591 24 12 632 585 546 548 601 609 616 531 534 554 623 26 132 17 11 7 13 603 584 648 637 6 437 537 535 595 628 626 549 530 613 553 617 619 608 598 593 633 646 597 542 242 543 30 10 555</file>
  1562. </tool>
  1563. <tool>
  1564. <name>BICOMP</name>
  1565. <file> 546 597 616 598 553 611 609 555 26 12 6 24 537 593 595 646 628 534 543 591 585 548 623 584 542 30 632 601 13 132 11 637 437 535 648 530 531 554 603 619 17 10 7 626 549 633 613 608 617 242</file>
  1566. </tool>
  1567. </inputs>
  1568. </file>
  1569. <file>
  1570. <name>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\single_chip\mac_radio_defs.c</name>
  1571. <outputs>
  1572. <tool>
  1573. <name>ICC8051</name>
  1574. <file> 196 491 639</file>
  1575. </tool>
  1576. <tool>
  1577. <name>BICOMP</name>
  1578. <file> 398</file>
  1579. </tool>
  1580. <tool>
  1581. <name>__cstat</name>
  1582. <file> 303</file>
  1583. </tool>
  1584. </outputs>
  1585. <inputs>
  1586. <tool>
  1587. <name>ICC8051</name>
  1588. <file> 625 643 565 12 7 26 24 132 364 29 571 11 27 6 632 437 572 563 559 33 13 4</file>
  1589. </tool>
  1590. <tool>
  1591. <name>BICOMP</name>
  1592. <file> 13 7 24 132 33 4 572 12 11 6 29 559 26 632 364 571 563 27 437 565</file>
  1593. </tool>
  1594. </inputs>
  1595. </file>
  1596. <file>
  1597. <name>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\single_chip\mac_mcu.c</name>
  1598. <outputs>
  1599. <tool>
  1600. <name>ICC8051</name>
  1601. <file> 477 401 64</file>
  1602. </tool>
  1603. <tool>
  1604. <name>BICOMP</name>
  1605. <file> 493</file>
  1606. </tool>
  1607. <tool>
  1608. <name>__cstat</name>
  1609. <file> 235</file>
  1610. </tool>
  1611. </outputs>
  1612. <inputs>
  1613. <tool>
  1614. <name>ICC8051</name>
  1615. <file> 625 643 12 26 24 132 562 27 6 632 437 580 570 563 571 11 7 587 560 565 364 29 572 559 33 13</file>
  1616. </tool>
  1617. <tool>
  1618. <name>BICOMP</name>
  1619. <file> 12 571 6 570 24 563 562 587 559 27 632 364 33 26 580 560 565 132 437 11 7 29 572 13</file>
  1620. </tool>
  1621. </inputs>
  1622. </file>
  1623. <file>
  1624. <name>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\single_chip\mac_rffrontend.c</name>
  1625. <outputs>
  1626. <tool>
  1627. <name>ICC8051</name>
  1628. <file> 327 375 354</file>
  1629. </tool>
  1630. <tool>
  1631. <name>BICOMP</name>
  1632. <file> 298</file>
  1633. </tool>
  1634. <tool>
  1635. <name>__cstat</name>
  1636. <file> 520</file>
  1637. </tool>
  1638. </outputs>
  1639. <inputs>
  1640. <tool>
  1641. <name>ICC8051</name>
  1642. <file> 625 643 24 7 26 12 132 33 6 632 437 565 364 29 571 11 27 572 563 559 13</file>
  1643. </tool>
  1644. <tool>
  1645. <name>BICOMP</name>
  1646. <file> 24 29 565 437 559 33 12 7 572 13 571 6 26 132 632 364 563 27 11</file>
  1647. </tool>
  1648. </inputs>
  1649. </file>
  1650. <file>
  1651. <name>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_radio.c</name>
  1652. <outputs>
  1653. <tool>
  1654. <name>ICC8051</name>
  1655. <file> 155 143 454</file>
  1656. </tool>
  1657. <tool>
  1658. <name>BICOMP</name>
  1659. <file> 457</file>
  1660. </tool>
  1661. <tool>
  1662. <name>__cstat</name>
  1663. <file> 181</file>
  1664. </tool>
  1665. </outputs>
  1666. <inputs>
  1667. <tool>
  1668. <name>ICC8051</name>
  1669. <file> 625 643 24 4 6 632 437 27 560 581 580 562 587 12 577 570 565 7 26 132 364 29 571 11 572 563 559 33 13</file>
  1670. </tool>
  1671. <tool>
  1672. <name>BICOMP</name>
  1673. <file> 24 572 570 6 580 437 27 12 7 13 560 587 559 29 11 33 4 581 562 577 565 632 364 571 563 26 132</file>
  1674. </tool>
  1675. </inputs>
  1676. </file>
  1677. <file>
  1678. <name>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_rx_onoff.c</name>
  1679. <outputs>
  1680. <tool>
  1681. <name>ICC8051</name>
  1682. <file> 341 405 225</file>
  1683. </tool>
  1684. <tool>
  1685. <name>BICOMP</name>
  1686. <file> 486</file>
  1687. </tool>
  1688. <tool>
  1689. <name>__cstat</name>
  1690. <file> 60</file>
  1691. </tool>
  1692. </outputs>
  1693. <inputs>
  1694. <tool>
  1695. <name>ICC8051</name>
  1696. <file> 625 643 12 24 560 27 6 632 437 587 562 580 565 7 26 132 364 29 571 11 572 563 559 33 13</file>
  1697. </tool>
  1698. <tool>
  1699. <name>BICOMP</name>
  1700. <file> 24 132 27 364 12 562 437 563 560 565 571 26 11 33 587 580 559 6 632 7 29 572 13</file>
  1701. </tool>
  1702. </inputs>
  1703. </file>
  1704. <file>
  1705. <name>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_sleep.c</name>
  1706. <outputs>
  1707. <tool>
  1708. <name>ICC8051</name>
  1709. <file> 244 134 450</file>
  1710. </tool>
  1711. <tool>
  1712. <name>BICOMP</name>
  1713. <file> 413</file>
  1714. </tool>
  1715. <tool>
  1716. <name>__cstat</name>
  1717. <file> 206</file>
  1718. </tool>
  1719. </outputs>
  1720. <inputs>
  1721. <tool>
  1722. <name>ICC8051</name>
  1723. <file> 625 643 24 4 6 632 437 27 560 577 581 580 562 587 12 565 7 26 132 364 29 571 11 572 563 559 33 13</file>
  1724. </tool>
  1725. <tool>
  1726. <name>BICOMP</name>
  1727. <file> 565 24 27 364 132 581 563 12 560 562 632 571 26 11 33 4 577 580 587 559 6 437 7 29 572 13</file>
  1728. </tool>
  1729. </inputs>
  1730. </file>
  1731. <file>
  1732. <name>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_tx.c</name>
  1733. <outputs>
  1734. <tool>
  1735. <name>ICC8051</name>
  1736. <file> 47 463 150</file>
  1737. </tool>
  1738. <tool>
  1739. <name>BICOMP</name>
  1740. <file> 86</file>
  1741. </tool>
  1742. <tool>
  1743. <name>__cstat</name>
  1744. <file> 374</file>
  1745. </tool>
  1746. </outputs>
  1747. <inputs>
  1748. <tool>
  1749. <name>ICC8051</name>
  1750. <file> 625 643 24 12 26 132 364 29 4 6 632 437 27 560 580 570 562 587 581 577 565 7 571 11 572 563 559 33 13</file>
  1751. </tool>
  1752. <tool>
  1753. <name>BICOMP</name>
  1754. <file> 24 12 570 27 29 577 132 572 26 560 587 559 632 7 13 11 33 364 4 580 562 581 565 6 437 571 563</file>
  1755. </tool>
  1756. </inputs>
  1757. </file>
  1758. <file>
  1759. <name>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_autopend.c</name>
  1760. <outputs>
  1761. <tool>
  1762. <name>ICC8051</name>
  1763. <file> 267 424 49</file>
  1764. </tool>
  1765. <tool>
  1766. <name>BICOMP</name>
  1767. <file> 492</file>
  1768. </tool>
  1769. <tool>
  1770. <name>__cstat</name>
  1771. <file> 246</file>
  1772. </tool>
  1773. </outputs>
  1774. <inputs>
  1775. <tool>
  1776. <name>ICC8051</name>
  1777. <file> 625 643 6 24 632 437 565 12 7 26 132 364 29 571 11 27 572 563 559 33 13 601 591 609 616 611 586</file>
  1778. </tool>
  1779. <tool>
  1780. <name>BICOMP</name>
  1781. <file> 7 13 12 611 24 572 11 27 601 437 29 559 132 565 632 586 364 571 563 26 609 591 6 33 616</file>
  1782. </tool>
  1783. </inputs>
  1784. </file>
  1785. <file>
  1786. <name>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\single_chip\mac_csp_tx.c</name>
  1787. <outputs>
  1788. <tool>
  1789. <name>ICC8051</name>
  1790. <file> 480 483 429</file>
  1791. </tool>
  1792. <tool>
  1793. <name>BICOMP</name>
  1794. <file> 334</file>
  1795. </tool>
  1796. <tool>
  1797. <name>__cstat</name>
  1798. <file> 497</file>
  1799. </tool>
  1800. </outputs>
  1801. <inputs>
  1802. <tool>
  1803. <name>ICC8051</name>
  1804. <file> 625 643 24 26 12 132 29 4 6 632 437 27 560 563 571 11 7 580 562 587 565 364 572 559 33 13</file>
  1805. </tool>
  1806. <tool>
  1807. <name>BICOMP</name>
  1808. <file> 559 587 632 6 560 27 29 580 24 571 12 33 26 4 563 562 565 132 437 7 572 13 11 364</file>
  1809. </tool>
  1810. </inputs>
  1811. </file>
  1812. <file>
  1813. <name>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\single_chip\mac_mem.c</name>
  1814. <outputs>
  1815. <tool>
  1816. <name>ICC8051</name>
  1817. <file> 383 122 112</file>
  1818. </tool>
  1819. <tool>
  1820. <name>BICOMP</name>
  1821. <file> 377</file>
  1822. </tool>
  1823. <tool>
  1824. <name>__cstat</name>
  1825. <file> 343</file>
  1826. </tool>
  1827. </outputs>
  1828. <inputs>
  1829. <tool>
  1830. <name>ICC8051</name>
  1831. <file> 625 643 24 572 27 6 632 437 26 12 132 559 33</file>
  1832. </tool>
  1833. <tool>
  1834. <name>BICOMP</name>
  1835. <file> 27 6 26 632 572 559 24 437 12 132 33</file>
  1836. </tool>
  1837. </inputs>
  1838. </file>
  1839. <file>
  1840. <name>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_AF.c</name>
  1841. <outputs>
  1842. <tool>
  1843. <name>ICC8051</name>
  1844. <file> 441 255 207</file>
  1845. </tool>
  1846. <tool>
  1847. <name>BICOMP</name>
  1848. <file> 184</file>
  1849. </tool>
  1850. <tool>
  1851. <name>__cstat</name>
  1852. <file> 418</file>
  1853. </tool>
  1854. </outputs>
  1855. <inputs>
  1856. <tool>
  1857. <name>ICC8051</name>
  1858. <file> 625 643 611 591 24 12 632 601 609 616 585 546 545 593 617 648 637 6 437 595 537 535 619 530 613 553 608 623 26 132 17 11 7 13 543 633 646 628 626 549 598 555</file>
  1859. </tool>
  1860. <tool>
  1861. <name>BICOMP</name>
  1862. <file> 6 24 611 619 617 648 535 26 12 543 613 601 633 593 585 623 591 609 546 537 637 437 595 608 13 132 11 530 626 545 555 632 616 553 17 7 628 646 549 598</file>
  1863. </tool>
  1864. </inputs>
  1865. </file>
  1866. <file>
  1867. <name>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_backoff_timer.c</name>
  1868. <outputs>
  1869. <tool>
  1870. <name>ICC8051</name>
  1871. <file> 175 444 163</file>
  1872. </tool>
  1873. <tool>
  1874. <name>BICOMP</name>
  1875. <file> 186</file>
  1876. </tool>
  1877. <tool>
  1878. <name>__cstat</name>
  1879. <file> 252</file>
  1880. </tool>
  1881. </outputs>
  1882. <inputs>
  1883. <tool>
  1884. <name>ICC8051</name>
  1885. <file> 625 643 24 26 12 132 29 560 27 6 632 437 570 580 565 7 364 571 11 572 563 559 33 13</file>
  1886. </tool>
  1887. <tool>
  1888. <name>BICOMP</name>
  1889. <file> 24 570 559 29 565 27 437 11 33 26 560 580 12 132 6 632 7 572 13 571 364 563</file>
  1890. </tool>
  1891. </inputs>
  1892. </file>
  1893. <file>
  1894. <name>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\stub_aps.c</name>
  1895. <outputs>
  1896. <tool>
  1897. <name>ICC8051</name>
  1898. <file> 473 504 518</file>
  1899. </tool>
  1900. <tool>
  1901. <name>BICOMP</name>
  1902. <file> 316</file>
  1903. </tool>
  1904. <tool>
  1905. <name>__cstat</name>
  1906. <file> 312</file>
  1907. </tool>
  1908. </outputs>
  1909. <inputs>
  1910. <tool>
  1911. <name>ICC8051</name>
  1912. <file> 625 643 601 591 24 12 609 616 29 597 537 648 611 632 637 6 437 535 595 617 619 593 530 613 553 608 599</file>
  1913. </tool>
  1914. <tool>
  1915. <name>BICOMP</name>
  1916. <file> 632 553 12 595 617 599 591 648 597 609 537 535 611 29 593 616 24 637 6 619 601 437 530 613 608</file>
  1917. </tool>
  1918. </inputs>
  1919. </file>
  1920. <file>
  1921. <name>$PROJ_DIR$\..\..\..\..\..\Components\osal\common\OSAL.c</name>
  1922. <outputs>
  1923. <tool>
  1924. <name>ICC8051</name>
  1925. <file> 113 372 511</file>
  1926. </tool>
  1927. <tool>
  1928. <name>BICOMP</name>
  1929. <file> 523</file>
  1930. </tool>
  1931. <tool>
  1932. <name>__cstat</name>
  1933. <file> 101</file>
  1934. </tool>
  1935. </outputs>
  1936. <inputs>
  1937. <tool>
  1938. <name>ICC8051</name>
  1939. <file> 625 643 446 453 591 24 12 601 609 616 610 612 600 623 26 132 17 11 7 13 15</file>
  1940. </tool>
  1941. <tool>
  1942. <name>BICOMP</name>
  1943. <file> 12 132 15 13 11 609 591 601 600 616 26 610 612 623 453 24 17 7 446</file>
  1944. </tool>
  1945. </inputs>
  1946. </file>
  1947. <file>
  1948. <name>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\nwk_globals.c</name>
  1949. <outputs>
  1950. <tool>
  1951. <name>ICC8051</name>
  1952. <file> 292 128 369</file>
  1953. </tool>
  1954. <tool>
  1955. <name>BICOMP</name>
  1956. <file> 526</file>
  1957. </tool>
  1958. <tool>
  1959. <name>__cstat</name>
  1960. <file> 92</file>
  1961. </tool>
  1962. </outputs>
  1963. <inputs>
  1964. <tool>
  1965. <name>ICC8051</name>
  1966. <file> 625 643 611 591 24 12 632 601 609 616 603 558 535 553 617 648 637 6 437 595 537 619 597 613 608 549 530 598 594 646 593 623 26 132 17 11 7 13 1</file>
  1967. </tool>
  1968. <tool>
  1969. <name>BICOMP</name>
  1970. <file> 7 648 537 549 591 535 608 6 24 611 530 603 597 594 623 632 12 616 617 595 593 13 601 558 553 613 619 646 1 609 637 437 598 26 17 132 11</file>
  1971. </tool>
  1972. </inputs>
  1973. </file>
  1974. <file>
  1975. <name>$PROJ_DIR$\..\..\..\..\..\Components\osal\common\OSAL_Memory.c</name>
  1976. <outputs>
  1977. <tool>
  1978. <name>ICC8051</name>
  1979. <file> 489 159 164</file>
  1980. </tool>
  1981. <tool>
  1982. <name>BICOMP</name>
  1983. <file> 284</file>
  1984. </tool>
  1985. <tool>
  1986. <name>__cstat</name>
  1987. <file> 431</file>
  1988. </tool>
  1989. </outputs>
  1990. <inputs>
  1991. <tool>
  1992. <name>ICC8051</name>
  1993. <file> 625 643 591 24 12 601 609 616 623 26 132 17 11 7 13 33</file>
  1994. </tool>
  1995. <tool>
  1996. <name>BICOMP</name>
  1997. <file> 26 24 609 33 13 601 623 12 591 616 17 132 7 11</file>
  1998. </tool>
  1999. </inputs>
  2000. </file>
  2001. <file>
  2002. <name>$PROJ_DIR$\..\..\..\..\..\Components\stack\sys\ZGlobals.c</name>
  2003. <outputs>
  2004. <tool>
  2005. <name>ICC8051</name>
  2006. <file> 352 182 273</file>
  2007. </tool>
  2008. <tool>
  2009. <name>BICOMP</name>
  2010. <file> 309</file>
  2011. </tool>
  2012. <tool>
  2013. <name>__cstat</name>
  2014. <file> 346</file>
  2015. </tool>
  2016. </outputs>
  2017. <inputs>
  2018. <tool>
  2019. <name>ICC8051</name>
  2020. <file> 625 643 611 591 24 12 632 603 628 537 648 637 6 437 535 595 626 549 530 613 553 601 609 616 617 619 608 598 593 633 646 645 597 623 26 132 17 11 7 13 624</file>
  2021. </tool>
  2022. <tool>
  2023. <name>BICOMP</name>
  2024. <file> 619 648 24 633 535 591 611 645 537 6 613 601 646 26 628 624 595 637 437 549 553 608 616 617 593 597 17 603 623 632 12 626 530 598 609 13 7 132 11</file>
  2025. </tool>
  2026. </inputs>
  2027. </file>
  2028. <file>
  2029. <name>$PROJ_DIR$\..\..\..\..\..\Components\osal\mcu\cc2530\OSAL_Math.s51</name>
  2030. <outputs>
  2031. <tool>
  2032. <name>A8051</name>
  2033. <file> 120</file>
  2034. </tool>
  2035. </outputs>
  2036. </file>
  2037. <file>
  2038. <name>$PROJ_DIR$\..\..\..\..\..\Components\osal\mcu\cc2530\OSAL_Nv.c</name>
  2039. <outputs>
  2040. <tool>
  2041. <name>ICC8051</name>
  2042. <file> 251 640 248</file>
  2043. </tool>
  2044. <tool>
  2045. <name>BICOMP</name>
  2046. <file> 502</file>
  2047. </tool>
  2048. <tool>
  2049. <name>__cstat</name>
  2050. <file> 479</file>
  2051. </tool>
  2052. </outputs>
  2053. <inputs>
  2054. <tool>
  2055. <name>ICC8051</name>
  2056. <file> 625 643 32 11 7 26 12 24 132 20 603 611 591 632</file>
  2057. </tool>
  2058. <tool>
  2059. <name>BICOMP</name>
  2060. <file> 11 611 12 24 20 603 632 32 7 26 132 591</file>
  2061. </tool>
  2062. </inputs>
  2063. </file>
  2064. <file>
  2065. <name>$PROJ_DIR$\..\..\..\..\..\Components\osal\common\OSAL_Clock.c</name>
  2066. <outputs>
  2067. <tool>
  2068. <name>ICC8051</name>
  2069. <file> 103 229 304</file>
  2070. </tool>
  2071. <tool>
  2072. <name>BICOMP</name>
  2073. <file> 94</file>
  2074. </tool>
  2075. <tool>
  2076. <name>__cstat</name>
  2077. <file> 389</file>
  2078. </tool>
  2079. </outputs>
  2080. <inputs>
  2081. <tool>
  2082. <name>ICC8051</name>
  2083. <file> 625 643 591 24 12 623 26 132 17 11 7 13 601 609 616 600</file>
  2084. </tool>
  2085. <tool>
  2086. <name>BICOMP</name>
  2087. <file> 13 616 601 12 26 24 591 623 600 17 132 7 11 609</file>
  2088. </tool>
  2089. </inputs>
  2090. </file>
  2091. <file>
  2092. <name>$PROJ_DIR$\..\..\..\..\..\Components\osal\common\OSAL_PwrMgr.c</name>
  2093. <outputs>
  2094. <tool>
  2095. <name>ICC8051</name>
  2096. <file> 140 326 89</file>
  2097. </tool>
  2098. <tool>
  2099. <name>BICOMP</name>
  2100. <file> 472</file>
  2101. </tool>
  2102. <tool>
  2103. <name>__cstat</name>
  2104. <file> 505</file>
  2105. </tool>
  2106. </outputs>
  2107. <inputs>
  2108. <tool>
  2109. <name>ICC8051</name>
  2110. <file> 625 643 591 24 12 623 26 132 17 11 7 13 601 609 616 610 612</file>
  2111. </tool>
  2112. <tool>
  2113. <name>BICOMP</name>
  2114. <file> 24 26 12 616 601 13 623 610 612 17 132 11 609 591 7</file>
  2115. </tool>
  2116. </inputs>
  2117. </file>
  2118. <file>
  2119. <name>$PROJ_DIR$\..\..\..\..\..\Components\osal\common\OSAL_Timers.c</name>
  2120. <outputs>
  2121. <tool>
  2122. <name>ICC8051</name>
  2123. <file> 425 42 394</file>
  2124. </tool>
  2125. <tool>
  2126. <name>BICOMP</name>
  2127. <file> 474</file>
  2128. </tool>
  2129. <tool>
  2130. <name>__cstat</name>
  2131. <file> 43</file>
  2132. </tool>
  2133. </outputs>
  2134. <inputs>
  2135. <tool>
  2136. <name>ICC8051</name>
  2137. <file> 625 643 591 24 12 623 26 132 17 11 7 13 601 609 616 21</file>
  2138. </tool>
  2139. <tool>
  2140. <name>BICOMP</name>
  2141. <file> 17 21 601 24 12 623 616 26 13 132 11 609 591 7</file>
  2142. </tool>
  2143. </inputs>
  2144. </file>
  2145. <file>
  2146. <name>$PROJ_DIR$\..\..\..\..\..\Components\stack\af\AF.c</name>
  2147. <outputs>
  2148. <tool>
  2149. <name>ICC8051</name>
  2150. <file> 260 522 478</file>
  2151. </tool>
  2152. <tool>
  2153. <name>BICOMP</name>
  2154. <file> 115</file>
  2155. </tool>
  2156. <tool>
  2157. <name>__cstat</name>
  2158. <file> 69</file>
  2159. </tool>
  2160. </outputs>
  2161. <inputs>
  2162. <tool>
  2163. <name>ICC8051</name>
  2164. <file> 625 643 601 591 24 12 609 616 593 611 632 617 648 637 6 437 595 537 535 619 530 613 553 608 597 532 633 646 551 594</file>
  2165. </tool>
  2166. <tool>
  2167. <name>BICOMP</name>
  2168. <file> 593 611 595 532 591 530 553 608 613 551 616 24 619 597 633 594 609 12 617 632 535 601 648 537 637 6 437 646</file>
  2169. </tool>
  2170. </inputs>
  2171. </file>
  2172. <file>
  2173. <name>$PROJ_DIR$\..\..\..\..\..\Components\services\saddr\saddr.c</name>
  2174. <outputs>
  2175. <tool>
  2176. <name>ICC8051</name>
  2177. <file> 123 169 65</file>
  2178. </tool>
  2179. <tool>
  2180. <name>BICOMP</name>
  2181. <file> 58</file>
  2182. </tool>
  2183. <tool>
  2184. <name>__cstat</name>
  2185. <file> 349</file>
  2186. </tool>
  2187. </outputs>
  2188. <inputs>
  2189. <tool>
  2190. <name>ICC8051</name>
  2191. <file> 625 643 24 601 591 12 609 616 632</file>
  2192. </tool>
  2193. <tool>
  2194. <name>BICOMP</name>
  2195. <file> 591 632 12 601 609 24 616</file>
  2196. </tool>
  2197. </inputs>
  2198. </file>
  2199. <file>
  2200. <name>$PROJ_DIR$\..\..\..\..\..\Components\zmac\f8w\zmac_cb.c</name>
  2201. <outputs>
  2202. <tool>
  2203. <name>ICC8051</name>
  2204. <file> 54 308 74</file>
  2205. </tool>
  2206. <tool>
  2207. <name>BICOMP</name>
  2208. <file> 445</file>
  2209. </tool>
  2210. <tool>
  2211. <name>__cstat</name>
  2212. <file> 198</file>
  2213. </tool>
  2214. </outputs>
  2215. <inputs>
  2216. <tool>
  2217. <name>ICC8051</name>
  2218. <file> 625 643 611 591 24 12 632 601 609 616 648 637 6 437 333 26 132 617 595 537 535 619 608 230 27 356</file>
  2219. </tool>
  2220. <tool>
  2221. <name>BICOMP</name>
  2222. <file> 6 24 27 230 595 26 591 611 535 648 632 12 616 637 437 132 619 601 333 617 608 356 609 537</file>
  2223. </tool>
  2224. </inputs>
  2225. </file>
  2226. <file>
  2227. <name>$PROJ_DIR$\..\..\..\ZMain\TI2530DB\chipcon_cstartup.s51</name>
  2228. <outputs>
  2229. <tool>
  2230. <name>A8051</name>
  2231. <file> 475</file>
  2232. </tool>
  2233. </outputs>
  2234. <inputs>
  2235. <tool>
  2236. <name>A8051</name>
  2237. <file> 91 178 136</file>
  2238. </tool>
  2239. </inputs>
  2240. </file>
  2241. <file>
  2242. <name>$PROJ_DIR$\..\..\..\..\..\Components\stack\zdo\ZDApp.c</name>
  2243. <outputs>
  2244. <tool>
  2245. <name>ICC8051</name>
  2246. <file> 282 171 176</file>
  2247. </tool>
  2248. <tool>
  2249. <name>BICOMP</name>
  2250. <file> 340</file>
  2251. </tool>
  2252. <tool>
  2253. <name>__cstat</name>
  2254. <file> 224</file>
  2255. </tool>
  2256. </outputs>
  2257. <inputs>
  2258. <tool>
  2259. <name>ICC8051</name>
  2260. <file> 625 643 611 591 24 12 632 648 637 6 437 601 609 616 610 612 603 593 617 595 537 535 619 530 613 553 608 558 633 646 628 626 549 598 624 584 597 623 26 132 17 11 7 13 645 594 30 1 10</file>
  2261. </tool>
  2262. <tool>
  2263. <name>BICOMP</name>
  2264. <file> 611 535 597 632 12 7 537 10 591 617 612 646 594 616 530 595 553 626 601 593 633 608 30 619 17 24 648 610 603 558 628 624 584 623 645 1 637 6 437 609 613 598 26 11 549 13 132</file>
  2265. </tool>
  2266. </inputs>
  2267. </file>
  2268. <file>
  2269. <name>$PROJ_DIR$\..\..\..\..\..\Components\stack\zdo\ZDProfile.c</name>
  2270. <outputs>
  2271. <tool>
  2272. <name>ICC8051</name>
  2273. <file> 279 87 214</file>
  2274. </tool>
  2275. <tool>
  2276. <name>BICOMP</name>
  2277. <file> 188</file>
  2278. </tool>
  2279. <tool>
  2280. <name>__cstat</name>
  2281. <file> 138</file>
  2282. </tool>
  2283. </outputs>
  2284. <inputs>
  2285. <tool>
  2286. <name>ICC8051</name>
  2287. <file> 625 643 611 591 24 12 632 601 609 616 593 617 648 637 6 437 595 537 535 619 530 613 553 608 597 549 598 558 646 633 628 626 645 623 26 132 17 11 7 13 543 585 546</file>
  2288. </tool>
  2289. <tool>
  2290. <name>BICOMP</name>
  2291. <file> 537 608 646 633 437 601 132 530 597 623 591 637 648 595 611 535 13 11 546 593 558 645 632 12 616 617 6 24 613 619 553 626 549 628 543 609 598 26 17 7 585</file>
  2292. </tool>
  2293. </inputs>
  2294. </file>
  2295. <file>
  2296. <name>$PROJ_DIR$\..\..\..\..\..\Components\stack\zdo\ZDObject.c</name>
  2297. <outputs>
  2298. <tool>
  2299. <name>ICC8051</name>
  2300. <file> 358 318 129</file>
  2301. </tool>
  2302. <tool>
  2303. <name>BICOMP</name>
  2304. <file> 247</file>
  2305. </tool>
  2306. <tool>
  2307. <name>__cstat</name>
  2308. <file> 152</file>
  2309. </tool>
  2310. </outputs>
  2311. <inputs>
  2312. <tool>
  2313. <name>ICC8051</name>
  2314. <file> 625 643 611 591 24 12 632 601 609 616 603 594 597 537 648 637 6 437 535 595 617 619 608 613 553 549 530 598 558 593 628 626 633 646 624 623 26 132 17 11 7 13 1</file>
  2315. </tool>
  2316. <tool>
  2317. <name>BICOMP</name>
  2318. <file> 626 617 437 535 591 24 537 530 611 549 628 623 593 26 12 603 558 646 608 609 597 595 637 601 594 613 553 633 624 1 648 6 598 13 132 11 632 616 619 17 7</file>
  2319. </tool>
  2320. </inputs>
  2321. </file>
  2322. <file>
  2323. <name>$PROJ_DIR$\..\..\..\ZMain\TI2530DB\OnBoard.c</name>
  2324. <outputs>
  2325. <tool>
  2326. <name>ICC8051</name>
  2327. <file> 51 443 114</file>
  2328. </tool>
  2329. <tool>
  2330. <name>BICOMP</name>
  2331. <file> 430</file>
  2332. </tool>
  2333. <tool>
  2334. <name>__cstat</name>
  2335. <file> 470</file>
  2336. </tool>
  2337. </outputs>
  2338. <inputs>
  2339. <tool>
  2340. <name>ICC8051</name>
  2341. <file> 625 643 611 591 24 12 632 608 623 26 132 17 11 7 13 601 609 616 585 546 554 584 1 21 10 30 565 364 29 571 27 6 437 572 563 559 33</file>
  2342. </tool>
  2343. <tool>
  2344. <name>BICOMP</name>
  2345. <file> 24 26 632 591 364 437 585 565 11 27 623 584 10 601 616 611 563 608 554 1 21 30 17 7 12 571 13 132 609 546 29 572 559 6 33</file>
  2346. </tool>
  2347. </inputs>
  2348. </file>
  2349. <file>
  2350. <name>$PROJ_DIR$\..\..\..\..\..\Components\stack\zdo\ZDSecMgr.c</name>
  2351. <outputs>
  2352. <tool>
  2353. <name>ICC8051</name>
  2354. <file> 525 484 195</file>
  2355. </tool>
  2356. <tool>
  2357. <name>BICOMP</name>
  2358. <file> 174</file>
  2359. </tool>
  2360. <tool>
  2361. <name>__cstat</name>
  2362. <file> 201</file>
  2363. </tool>
  2364. </outputs>
  2365. <inputs>
  2366. <tool>
  2367. <name>ICC8051</name>
  2368. <file> 625 643 611 591 24 12 632 601 609 616 603 608 619 613 595 648 637 6 437 535 553 617 537 558 530 646 593 624 626 549 598 633</file>
  2369. </tool>
  2370. <tool>
  2371. <name>BICOMP</name>
  2372. <file> 595 611 609 617 558 626 619 624 24 648 535 603 530 591 549 553 601 608 613 537 646 632 633 593 12 616 637 6 437 598</file>
  2373. </tool>
  2374. </inputs>
  2375. </file>
  2376. <file>
  2377. <name>$PROJ_DIR$\..\..\..\ZMain\TI2530DB\ZMain.c</name>
  2378. <outputs>
  2379. <tool>
  2380. <name>ICC8051</name>
  2381. <file> 110 55 506</file>
  2382. </tool>
  2383. <tool>
  2384. <name>BICOMP</name>
  2385. <file> 490</file>
  2386. </tool>
  2387. <tool>
  2388. <name>__cstat</name>
  2389. <file> 636</file>
  2390. </tool>
  2391. </outputs>
  2392. <inputs>
  2393. <tool>
  2394. <name>ICC8051</name>
  2395. <file> 625 643 593 611 591 24 12 632 617 648 637 6 437 595 537 535 619 530 613 553 601 609 616 608 32 11 7 26 132 20 1 30 15 623 17 13 603</file>
  2396. </tool>
  2397. <tool>
  2398. <name>BICOMP</name>
  2399. <file> 637 603 530 608 616 30 537 437 20 623 648 611 591 24 6 595 535 26 11 17 32 1 15 601 617 632 12 619 613 7 132 593 553 609 13</file>
  2400. </tool>
  2401. </inputs>
  2402. </file>
  2403. <file>
  2404. <name>$PROJ_DIR$\..\..\..\..\..\Components\stack\zdo\ZDConfig.c</name>
  2405. <outputs>
  2406. <tool>
  2407. <name>ICC8051</name>
  2408. <file> 119 417 258</file>
  2409. </tool>
  2410. <tool>
  2411. <name>BICOMP</name>
  2412. <file> 281</file>
  2413. </tool>
  2414. <tool>
  2415. <name>__cstat</name>
  2416. <file> 434</file>
  2417. </tool>
  2418. </outputs>
  2419. <inputs>
  2420. <tool>
  2421. <name>ICC8051</name>
  2422. <file> 625 643 611 591 24 12 632 593 617 648 637 6 437 595 537 535 619 530 613 553 601 609 616 608 628 626 549 598 633 646</file>
  2423. </tool>
  2424. <tool>
  2425. <name>BICOMP</name>
  2426. <file> 616 608 637 537 437 626 633 628 591 24 617 648 595 611 535 601 593 646 632 12 530 619 6 613 549 553 609 598</file>
  2427. </tool>
  2428. </inputs>
  2429. </file>
  2430. <file>
  2431. <name>$PROJ_DIR$\..\..\..\..\..\Components\stack\zdo\ZDNwkMgr.c</name>
  2432. <outputs>
  2433. <tool>
  2434. <name>ICC8051</name>
  2435. <file> 108 452 213</file>
  2436. </tool>
  2437. <tool>
  2438. <name>BICOMP</name>
  2439. <file> 448</file>
  2440. </tool>
  2441. <tool>
  2442. <name>__cstat</name>
  2443. <file> 141</file>
  2444. </tool>
  2445. </outputs>
  2446. <inputs>
  2447. <tool>
  2448. <name>ICC8051</name>
  2449. <file> 625 643 611 591 24 12 632 597 537 648 637 6 437 535 595 617 619 626 549 530 613 553 601 609 616 608 598 593 633 646 628 645 543 585 546 623 26 132 17 11 7 13 1</file>
  2450. </tool>
  2451. <tool>
  2452. <name>BICOMP</name>
  2453. <file> 617 437 7 537 530 535 608 591 24 595 637 553 609 611 593 626 1 648 6 598 646 613 633 26 597 628 645 543 623 632 12 619 549 601 616 546 13 585 17 132 11</file>
  2454. </tool>
  2455. </inputs>
  2456. </file>
  2457. <file>
  2458. <name>$PROJ_DIR$\..\..\..\..\..\Components\zmac\f8w\zmac.c</name>
  2459. <outputs>
  2460. <tool>
  2461. <name>ICC8051</name>
  2462. <file> 84 56 468</file>
  2463. </tool>
  2464. <tool>
  2465. <name>BICOMP</name>
  2466. <file> 517</file>
  2467. </tool>
  2468. <tool>
  2469. <name>__cstat</name>
  2470. <file> 127</file>
  2471. </tool>
  2472. </outputs>
  2473. <inputs>
  2474. <tool>
  2475. <name>ICC8051</name>
  2476. <file> 625 643 611 591 24 12 632 601 609 616 648 637 6 437 356 27 619 608</file>
  2477. </tool>
  2478. <tool>
  2479. <name>BICOMP</name>
  2480. <file> 609 611 619 591 24 632 648 27 601 356 608 12 616 637 6 437</file>
  2481. </tool>
  2482. </inputs>
  2483. </file>
  2484. <forcedrebuild>
  2485. <name>[MULTI_TOOL]</name>
  2486. <tool>XLINK</tool>
  2487. </forcedrebuild>
  2488. </configuration>
  2489. <configuration>
  2490. <name>EndDeviceEB</name>
  2491. <outputs>
  2492. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_led.c</file>
  2493. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\include\hal_lcd.h</file>
  2494. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_flash.c</file>
  2495. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_aes.h</file>
  2496. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\high_level\mac_pib.h</file>
  2497. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_adc.c</file>
  2498. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\include\mac_api.h</file>
  2499. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_board_cfg.h</file>
  2500. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_dma.c</file>
  2501. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_uart.c</file>
  2502. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\include\hal_ccm.h</file>
  2503. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\include\hal_key.h</file>
  2504. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\include\hal_board.h</file>
  2505. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\include\hal_defs.h</file>
  2506. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\include\hal_sleep.h</file>
  2507. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_timer.c</file>
  2508. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\include\hal_drivers.h</file>
  2509. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_sleep.c</file>
  2510. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\include\hal_uart.h</file>
  2511. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_lcd.c</file>
  2512. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_startup.c</file>
  2513. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\include\hal_flash.h</file>
  2514. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\include\hal_timer.h</file>
  2515. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_dma.h</file>
  2516. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_key.c</file>
  2517. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_types.h</file>
  2518. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\high_level\mac_cfg.c</file>
  2519. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_mcu.h</file>
  2520. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\high_level\mac_high_level.h</file>
  2521. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\high_level\mac_pib.c</file>
  2522. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\high_level\mac_spec.h</file>
  2523. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\include\hal_led.h</file>
  2524. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\common\hal_drivers.c</file>
  2525. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\include\hal_adc.h</file>
  2526. <file>$PROJ_DIR$\..\..\..\Public\sk9822.c</file>
  2527. <file>$PROJ_DIR$\..\Source\adc_sensor.c</file>
  2528. <file>$PROJ_DIR$\..\..\..\Public\rc522.c</file>
  2529. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\include\hal_assert.h</file>
  2530. <file>$PROJ_DIR$\..\Source\OSAL_SampleApp.c</file>
  2531. <file>$PROJ_DIR$\..\Source\mpu6050.c</file>
  2532. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\common\hal_assert.c</file>
  2533. <file>$PROJ_DIR$\..\Source\bh1750.c</file>
  2534. <file>$PROJ_DIR$\..\Source\ds18b20.c</file>
  2535. <file>$PROJ_DIR$\..\Source\dht11.c</file>
  2536. <file>$PROJ_DIR$\..\Source\SampleApp.c</file>
  2537. <file>$PROJ_DIR$\..\Source\SampleApp.h</file>
  2538. <file>$PROJ_DIR$\Source\SampleAppHw.c</file>
  2539. <file>$PROJ_DIR$\..\Source\hx711.c</file>
  2540. <file>$PROJ_DIR$\..\Source\SampleAppHw.h</file>
  2541. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\_hal_uart_dma.c</file>
  2542. <file>$TOOLKIT_DIR$\inc\iar_common.h</file>
  2543. <file>$PROJ_DIR$\..\..\..\Libraries\TIMAC\bin\TIMAC-CC2530.lib</file>
  2544. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\hal_uart.pbi</file>
  2545. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\ZDConfig.s51</file>
  2546. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\mac_rffrontend.s51</file>
  2547. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\MT_DEBUG.s51</file>
  2548. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\BindingTable.s51</file>
  2549. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\MT_SYS.pbi</file>
  2550. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\dht11.pbi</file>
  2551. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\hal_dma.pbi</file>
  2552. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\zmac_cb.r51</file>
  2553. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\adc_sensor.s51</file>
  2554. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\ZDProfile.s51</file>
  2555. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\OSAL_Math.r51</file>
  2556. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\mac_radio.pbi</file>
  2557. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\ZMain.r51</file>
  2558. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\OSAL.pbi</file>
  2559. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\mac_pib.s51</file>
  2560. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\sk9822.pbi</file>
  2561. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\ZGlobals.pbi</file>
  2562. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\adc_sensor.lst</file>
  2563. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\SampleApp.map</file>
  2564. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\OSAL_Memory.s51</file>
  2565. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\mac_mcu.pbi</file>
  2566. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\OSAL_Clock.s51</file>
  2567. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\nwk_globals.r51</file>
  2568. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\saddr.lst</file>
  2569. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\ZGlobals.r51</file>
  2570. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\rc522.r51</file>
  2571. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\OSAL.r51</file>
  2572. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\ZDNwkMgr.r51</file>
  2573. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\saddr.r51</file>
  2574. <file>D:\ZigbeeBuildFile\EndDeviceEB\Exe\SampleApp.d51</file>
  2575. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\hal_dma.s51</file>
  2576. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\mac_radio_defs.s51</file>
  2577. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\MT_UTIL.r51</file>
  2578. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\mac_tx.lst</file>
  2579. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\MT_VERSION.lst</file>
  2580. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\hal_startup.pbi</file>
  2581. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\MT_VERSION.s51</file>
  2582. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\hal_adc.s51</file>
  2583. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\hal_sleep.pbi</file>
  2584. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\OnBoard.s51</file>
  2585. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\hal_timer.lst</file>
  2586. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\hx711.lst</file>
  2587. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\ZDProfile.lst</file>
  2588. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\OSAL_Memory.pbi</file>
  2589. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\AF.lst</file>
  2590. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\MT_SAPI.lst</file>
  2591. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\ZDNwkMgr.lst</file>
  2592. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\hal_flash.r51</file>
  2593. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\adc_sensor.r51</file>
  2594. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\OSAL_Nv.lst</file>
  2595. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\ZDNwkMgr.s51</file>
  2596. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\OSAL.lst</file>
  2597. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\mac_backoff_timer.lst</file>
  2598. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\mac_rx_onoff.lst</file>
  2599. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\hal_adc.lst</file>
  2600. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\zmac_cb.pbi</file>
  2601. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\MT_TASK.r51</file>
  2602. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\ZDConfig.lst</file>
  2603. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\OSAL.s51</file>
  2604. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\MT_SYS.s51</file>
  2605. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\OSAL_Clock.r51</file>
  2606. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\mac_tx.s51</file>
  2607. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\rc522.s51</file>
  2608. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\hx711.r51</file>
  2609. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\MT_DEBUG.pbi</file>
  2610. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\mac_sleep.pbi</file>
  2611. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\hal_key.pbi</file>
  2612. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\mac_rx_onoff.s51</file>
  2613. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\MT.s51</file>
  2614. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\hal_led.lst</file>
  2615. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\mac_backoff_timer.s51</file>
  2616. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\mac_radio_defs.pbi</file>
  2617. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\mac_rx_onoff.r51</file>
  2618. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\AF.pbi</file>
  2619. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\hal_key.r51</file>
  2620. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\bh1750.pbi</file>
  2621. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\DebugTrace.r51</file>
  2622. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\mac_csp_tx.r51</file>
  2623. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\mac_autopend.pbi</file>
  2624. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\adc_sensor.pbi</file>
  2625. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\hal_startup.r51</file>
  2626. <file>$PROJ_DIR$\..\Source\bh1750.h</file>
  2627. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\sk9822.s51</file>
  2628. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\rc522.pbi</file>
  2629. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\BindingTable.r51</file>
  2630. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\mac_pib.r51</file>
  2631. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\mpu6050.r51</file>
  2632. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\ZDApp.r51</file>
  2633. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\MT_AF.lst</file>
  2634. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\OSAL_PwrMgr.lst</file>
  2635. <file>$PROJ_DIR$\..\..\..\Public\sk9822.h</file>
  2636. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\bh1750.r51</file>
  2637. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\SampleApp.lst</file>
  2638. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\mac_csp_tx.lst</file>
  2639. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\mac_low_level.lst</file>
  2640. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\MT_NWK.pbi</file>
  2641. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\mac_rx.r51</file>
  2642. <file>$PROJ_DIR$\..\..\..\Libraries\TI2530DB\bin\EndDevice-Pro.lib</file>
  2643. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\mac_backoff_timer.r51</file>
  2644. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\DebugTrace.pbi</file>
  2645. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\mac_autopend.r51</file>
  2646. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\hal_assert.lst</file>
  2647. <file>D:\ZigbeeBuildFile\EndDeviceEB\Exe\ED.hex</file>
  2648. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\mac_rx.pbi</file>
  2649. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\hal_lcd.pbi</file>
  2650. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\ZDProfile.r51</file>
  2651. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\ZDApp.pbi</file>
  2652. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\SampleAppHw.r51</file>
  2653. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\MT_ZDO.r51</file>
  2654. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\mac_pib.pbi</file>
  2655. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\OSAL_Nv.pbi</file>
  2656. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\OnBoard.lst</file>
  2657. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\mac_radio.r51</file>
  2658. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\MT_NWK.r51</file>
  2659. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\MT_UART.s51</file>
  2660. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\mac_rffrontend.r51</file>
  2661. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\mac_backoff_timer.pbi</file>
  2662. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\hal_lcd.r51</file>
  2663. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\SampleApp.pbd</file>
  2664. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\nwk_globals.pbi</file>
  2665. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\saddr.s51</file>
  2666. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\OSAL_Timers.pbi</file>
  2667. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\sk9822.r51</file>
  2668. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\MT_DEBUG.r51</file>
  2669. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\hal_adc.pbi</file>
  2670. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\mac_rffrontend.pbi</file>
  2671. <file>$TOOLKIT_DIR$\inc\ioCC2530.h</file>
  2672. <file>$PROJ_DIR$\..\..\..\Libraries\TI2530DB\bin\Security.lib</file>
  2673. <file>$TOOLKIT_DIR$\inc\iar_cfi.h</file>
  2674. <file>$TOOLKIT_DIR$\inc\iar_check_symbols.h</file>
  2675. <file>$TOOLKIT_DIR$\inc\clib\stdio.h</file>
  2676. <file>$TOOLKIT_DIR$\lib\clib\cl-pli-blxd-1e16x01.r51</file>
  2677. <file>$PROJ_DIR$\..\Source\dht11.h</file>
  2678. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\high_level\mac_security.h</file>
  2679. <file>$TOOLKIT_DIR$\inc\clib\stddef.h</file>
  2680. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\sapi\sapi.h</file>
  2681. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\high_level\mac_data.h</file>
  2682. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_MAC.h</file>
  2683. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\high_level\mac_main.h</file>
  2684. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_mac_cfg.h</file>
  2685. <file>$TOOLKIT_DIR$\inc\clib\math.h</file>
  2686. <file>$TOOLKIT_DIR$\inc\clib\stdarg.h</file>
  2687. <file>$PROJ_DIR$\..\..\..\..\..\Components\services\sdata\sdata.h</file>
  2688. <file>$TOOLKIT_DIR$\inc\clib\string.h</file>
  2689. <file>$TOOLKIT_DIR$\inc\clib\sysmac.h</file>
  2690. <file>$TOOLKIT_DIR$\inc\clib\stdlib.h</file>
  2691. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\zmac.r51</file>
  2692. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\MT_NWK.lst</file>
  2693. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\ZDObject.pbi</file>
  2694. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\nwk_globals.s51</file>
  2695. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\MT_VERSION.r51</file>
  2696. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\ZDConfig.r51</file>
  2697. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\mac_mcu.r51</file>
  2698. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\hal_timer.r51</file>
  2699. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\ZDObject.s51</file>
  2700. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\OSAL_SampleApp.lst</file>
  2701. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\mac_rx.s51</file>
  2702. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\stub_aps.pbi</file>
  2703. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\hal_timer.pbi</file>
  2704. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\hal_led.r51</file>
  2705. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\OnBoard.r51</file>
  2706. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\hal_dma.r51</file>
  2707. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\stub_aps.s51</file>
  2708. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\mac_mcu.s51</file>
  2709. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\hal_flash.pbi</file>
  2710. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\mac_tx.r51</file>
  2711. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\mac_sleep.s51</file>
  2712. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\mac_autopend.s51</file>
  2713. <file>$PROJ_DIR$\..\Source\mpu6050.h</file>
  2714. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\MT_UART.r51</file>
  2715. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\hal_drivers.s51</file>
  2716. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\OSAL_SampleApp.s51</file>
  2717. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\MT_ZDO.lst</file>
  2718. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\mac_sleep.r51</file>
  2719. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\hal_lcd.s51</file>
  2720. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\zmac.lst</file>
  2721. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\mpu6050.pbi</file>
  2722. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\public.pbi</file>
  2723. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\SampleApp.r51</file>
  2724. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\ZGlobals.s51</file>
  2725. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\OSAL_Memory.r51</file>
  2726. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\hal_startup.lst</file>
  2727. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\hal_sleep.r51</file>
  2728. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\hal_startup.s51</file>
  2729. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\SampleApp.s51</file>
  2730. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\AF.r51</file>
  2731. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\OSAL_Clock.lst</file>
  2732. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\ZGlobals.lst</file>
  2733. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\mac_mem.pbi</file>
  2734. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\ZDSecMgr.r51</file>
  2735. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\mac_mcu.lst</file>
  2736. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\public.r51</file>
  2737. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\zmac.pbi</file>
  2738. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\ZDObject.r51</file>
  2739. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\ZDSecMgr.lst</file>
  2740. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\OSAL_SampleApp.pbi</file>
  2741. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\ds18b20.pbi</file>
  2742. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\hal_drivers.pbi</file>
  2743. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\MT_UART.lst</file>
  2744. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\ZMain.lst</file>
  2745. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\hal_sleep.s51</file>
  2746. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\hal_key.s51</file>
  2747. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\mac_autopend.lst</file>
  2748. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\MT_NWK.s51</file>
  2749. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\MT_SAPI.s51</file>
  2750. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\ZDSecMgr.s51</file>
  2751. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\ds18b20.lst</file>
  2752. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\hal_flash.s51</file>
  2753. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\mac_radio.s51</file>
  2754. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\MT_APP.s51</file>
  2755. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\DebugTrace.lst</file>
  2756. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\hal_dma.lst</file>
  2757. <file>$PROJ_DIR$\..\..\..\Public\rc522.h</file>
  2758. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\hal_lcd.lst</file>
  2759. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\ds18b20.s51</file>
  2760. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\OSAL_Nv.s51</file>
  2761. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\mac_sleep.lst</file>
  2762. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\ZDApp.lst</file>
  2763. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\public.lst</file>
  2764. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\hal_sleep.lst</file>
  2765. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\SampleAppHw.lst</file>
  2766. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\MT_APP.lst</file>
  2767. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\mac_rffrontend.lst</file>
  2768. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\mac_radio_defs.lst</file>
  2769. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\OSAL_PwrMgr.s51</file>
  2770. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\hal_led.s51</file>
  2771. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\sk9822.lst</file>
  2772. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\mac_radio.lst</file>
  2773. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\AF.s51</file>
  2774. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\ZMain.pbi</file>
  2775. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\bh1750.lst</file>
  2776. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\OSAL_Nv.r51</file>
  2777. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\hal_uart.r51</file>
  2778. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\MT_SAPI.pbi</file>
  2779. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\ZMain.s51</file>
  2780. <file>$PROJ_DIR$\..\Source\adc_sensor.h</file>
  2781. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\mac_mem.lst</file>
  2782. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\hal_assert.s51</file>
  2783. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\hal_led.pbi</file>
  2784. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\ZDApp.s51</file>
  2785. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\ds18b20.r51</file>
  2786. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\mac_rx_onoff.pbi</file>
  2787. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\mpu6050.lst</file>
  2788. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\dht11.lst</file>
  2789. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\mpu6050.s51</file>
  2790. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\BindingTable.pbi</file>
  2791. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\OSAL_PwrMgr.r51</file>
  2792. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\MT_ZDO.s51</file>
  2793. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\mac_csp_tx.s51</file>
  2794. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\OSAL_Clock.pbi</file>
  2795. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\hx711.pbi</file>
  2796. <file>$PROJ_DIR$\..\Source\hx711.h</file>
  2797. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\hal_assert.r51</file>
  2798. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\BindingTable.lst</file>
  2799. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\hal_assert.pbi</file>
  2800. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\OSAL_SampleApp.r51</file>
  2801. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\MT_TASK.lst</file>
  2802. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\MT_UART.pbi</file>
  2803. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\mac_mem.r51</file>
  2804. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\bh1750.s51</file>
  2805. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\MT_TASK.s51</file>
  2806. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\MT_SAPI.r51</file>
  2807. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\ZDNwkMgr.pbi</file>
  2808. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\hx711.s51</file>
  2809. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\hal_drivers.r51</file>
  2810. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\MT_DEBUG.lst</file>
  2811. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\OSAL_Timers.lst</file>
  2812. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\MT_APP.r51</file>
  2813. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\MT_AF.pbi</file>
  2814. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\public.s51</file>
  2815. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\ZDSecMgr.pbi</file>
  2816. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\zmac.s51</file>
  2817. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\hal_key.lst</file>
  2818. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\mac_pib.lst</file>
  2819. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\stub_aps.r51</file>
  2820. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\MT_SYS.lst</file>
  2821. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\ZDConfig.pbi</file>
  2822. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\hal_flash.lst</file>
  2823. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\stub_aps.lst</file>
  2824. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\ZDProfile.pbi</file>
  2825. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\OSAL_PwrMgr.pbi</file>
  2826. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\MT_UTIL.s51</file>
  2827. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\mac_cfg.r51</file>
  2828. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\nwk_globals.lst</file>
  2829. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\MT_VERSION.pbi</file>
  2830. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\mac_mem.s51</file>
  2831. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\mac_low_level.r51</file>
  2832. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\MT_UTIL.lst</file>
  2833. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\mac_cfg.s51</file>
  2834. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\SampleAppHw.pbi</file>
  2835. <file>$PROJ_DIR$\..\Source\ds18b20.h</file>
  2836. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\DebugTrace.s51</file>
  2837. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\OSAL_Timers.s51</file>
  2838. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\hal_drivers.lst</file>
  2839. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\hal_timer.s51</file>
  2840. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\MT_TASK.pbi</file>
  2841. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\MT_ZDO.pbi</file>
  2842. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\hal_uart.s51</file>
  2843. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\zmac_cb.lst</file>
  2844. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\hal_adc.r51</file>
  2845. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\mac_low_level.s51</file>
  2846. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\MT.pbi</file>
  2847. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\ZDObject.lst</file>
  2848. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\SampleAppHw.s51</file>
  2849. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\mac_radio_defs.r51</file>
  2850. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\hal_uart.lst</file>
  2851. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\MT_AF.r51</file>
  2852. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\chipcon_cstartup.r51</file>
  2853. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\mac_cfg.pbi</file>
  2854. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\MT_APP.pbi</file>
  2855. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\OSAL_Memory.lst</file>
  2856. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\mac_tx.pbi</file>
  2857. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\dht11.r51</file>
  2858. <file>$PROJ_DIR$\..\..\..\Public\public.h</file>
  2859. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\MT.r51</file>
  2860. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\SampleApp.pbi</file>
  2861. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\OnBoard.pbi</file>
  2862. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\OSAL_Timers.r51</file>
  2863. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\MT_AF.s51</file>
  2864. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\MT_SYS.r51</file>
  2865. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\saddr.pbi</file>
  2866. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\mac_cfg.lst</file>
  2867. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\dht11.s51</file>
  2868. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\MT.lst</file>
  2869. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\rc522.lst</file>
  2870. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\mac_rx.lst</file>
  2871. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\mac_csp_tx.pbi</file>
  2872. <file>D:\ZigbeeBuildFile\EndDeviceEB\List\zmac_cb.s51</file>
  2873. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\mac_low_level.pbi</file>
  2874. <file>D:\ZigbeeBuildFile\EndDeviceEB\Obj\MT_UTIL.pbi</file>
  2875. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_UART.c</file>
  2876. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_ZDO.c</file>
  2877. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\APSMEDE.h</file>
  2878. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_DEBUG.h</file>
  2879. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\aps_groups.h</file>
  2880. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_APP.c</file>
  2881. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_UTIL.h</file>
  2882. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\AssocList.h</file>
  2883. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\BindingTable.c</file>
  2884. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\NLMEDE.h</file>
  2885. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_TASK.c</file>
  2886. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_NWK.c</file>
  2887. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_SYS.c</file>
  2888. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_DEBUG.c</file>
  2889. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_SAPI.h</file>
  2890. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_ZDO.h</file>
  2891. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_NWK.h</file>
  2892. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_AF.h</file>
  2893. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_RPC.h</file>
  2894. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_TASK.h</file>
  2895. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_APP.h</file>
  2896. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\APS.h</file>
  2897. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_SAPI.c</file>
  2898. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\aps_frag.h</file>
  2899. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_VERSION.h</file>
  2900. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\BindingTable.h</file>
  2901. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_SYS.h</file>
  2902. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_UART.h</file>
  2903. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_UTIL.c</file>
  2904. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_VERSION.c</file>
  2905. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\AddrMgr.h</file>
  2906. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_assert.h</file>
  2907. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_low_level.h</file>
  2908. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_low_level.c</file>
  2909. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_rx.h</file>
  2910. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\single_chip\mac_csp_tx.h</file>
  2911. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_rx.c</file>
  2912. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\single_chip\mac_radio_defs.h</file>
  2913. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\DebugTrace.c</file>
  2914. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT.c</file>
  2915. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\single_chip\mac_radio_defs.c</file>
  2916. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\single_chip\mac_mcu.c</file>
  2917. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_backoff_timer.h</file>
  2918. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\single_chip\mac_mcu.h</file>
  2919. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\single_chip\mac_mem.h</file>
  2920. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\single_chip\mac_rffrontend.c</file>
  2921. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_radio.c</file>
  2922. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_rx_onoff.c</file>
  2923. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_sleep.c</file>
  2924. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_sleep.h</file>
  2925. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_tx.c</file>
  2926. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_autopend.c</file>
  2927. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_tx.h</file>
  2928. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_radio.h</file>
  2929. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\single_chip\mac_csp_tx.c</file>
  2930. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\single_chip\mac_mem.c</file>
  2931. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\DebugTrace.h</file>
  2932. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT.h</file>
  2933. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_autopend.h</file>
  2934. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_rx_onoff.h</file>
  2935. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_AF.c</file>
  2936. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_backoff_timer.c</file>
  2937. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\stub_aps.c</file>
  2938. <file>$PROJ_DIR$\..\..\..\..\..\Components\osal\include\comdef.h</file>
  2939. <file>$PROJ_DIR$\..\..\..\..\..\Components\osal\common\OSAL.c</file>
  2940. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\af\AF.h</file>
  2941. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\rtg.h</file>
  2942. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\nwk_bufs.h</file>
  2943. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\nwk_globals.c</file>
  2944. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\nwk_util.h</file>
  2945. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\reflecttrack.h</file>
  2946. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\stub_aps.h</file>
  2947. <file>$PROJ_DIR$\..\..\..\..\..\Components\osal\include\OSAL_Clock.h</file>
  2948. <file>$PROJ_DIR$\..\..\..\..\..\Components\osal\include\OSAL.h</file>
  2949. <file>$PROJ_DIR$\..\..\..\..\..\Components\osal\common\OSAL_Memory.c</file>
  2950. <file>$PROJ_DIR$\..\..\..\..\..\Components\osal\include\OSAL_Nv.h</file>
  2951. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\sys\ZGlobals.c</file>
  2952. <file>$PROJ_DIR$\..\..\..\..\..\Components\osal\mcu\cc2530\OSAL_Math.s51</file>
  2953. <file>$PROJ_DIR$\..\..\..\..\..\Components\osal\mcu\cc2530\OSAL_Nv.c</file>
  2954. <file>$PROJ_DIR$\..\..\..\..\..\Components\osal\common\OSAL_Clock.c</file>
  2955. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\sys\ZGlobals.h</file>
  2956. <file>$PROJ_DIR$\..\..\..\..\..\Components\osal\include\OSAL_Memory.h</file>
  2957. <file>$PROJ_DIR$\..\..\..\..\..\Components\osal\include\OSAL_Tasks.h</file>
  2958. <file>$PROJ_DIR$\..\..\..\..\..\Components\osal\include\ZComDef.h</file>
  2959. <file>$PROJ_DIR$\..\..\..\..\..\Components\osal\include\OSAL_PwrMgr.h</file>
  2960. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\nwk_globals.h</file>
  2961. <file>$PROJ_DIR$\..\..\..\..\..\Components\osal\common\OSAL_PwrMgr.c</file>
  2962. <file>$PROJ_DIR$\..\..\..\..\..\Components\osal\common\OSAL_Timers.c</file>
  2963. <file>$PROJ_DIR$\..\..\..\..\..\Components\osal\include\OSAL_Timers.h</file>
  2964. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\nwk.h</file>
  2965. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\af\AF.c</file>
  2966. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\sec\ssp.h</file>
  2967. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\sec\ssp_hash.h</file>
  2968. <file>$PROJ_DIR$\..\..\..\..\..\Components\services\saddr\saddr.c</file>
  2969. <file>$PROJ_DIR$\..\..\..\..\..\Components\zmac\f8w\zmac_cb.c</file>
  2970. <file>$PROJ_DIR$\..\..\..\ZMain\TI2530DB\chipcon_cstartup.s51</file>
  2971. <file>$PROJ_DIR$\..\..\..\ZMain\TI2530DB\OnBoard.h</file>
  2972. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\zdo\ZDSecMgr.h</file>
  2973. <file>$PROJ_DIR$\..\..\..\Tools\CC2530DB\f8wCoord.cfg</file>
  2974. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\zdo\ZDApp.h</file>
  2975. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\zdo\ZDApp.c</file>
  2976. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\zdo\ZDObject.h</file>
  2977. <file>$PROJ_DIR$\..\..\..\Public\public.c</file>
  2978. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\zdo\ZDProfile.c</file>
  2979. <file>$PROJ_DIR$\..\..\..\Tools\CC2530DB\f8wRouter.cfg</file>
  2980. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\zdo\ZDObject.c</file>
  2981. <file>$PROJ_DIR$\..\..\..\ZMain\TI2530DB\OnBoard.c</file>
  2982. <file>$PROJ_DIR$\..\..\..\..\..\Components\services\saddr\saddr.h</file>
  2983. <file>$PROJ_DIR$\..\..\..\Tools\CC2530DB\f8wEndev.cfg</file>
  2984. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\zdo\ZDProfile.h</file>
  2985. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\zdo\ZDSecMgr.c</file>
  2986. <file>$PROJ_DIR$\..\..\..\ZMain\TI2530DB\ZMain.c</file>
  2987. <file>$PROJ_DIR$\..\..\..\..\..\Components\zmac\f8w\zmac_internal.h</file>
  2988. <file>$PROJ_DIR$\..\..\..\Tools\CC2530DB\f8w2530.xcl</file>
  2989. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\zdo\ZDConfig.c</file>
  2990. <file>$PROJ_DIR$\..\..\..\Tools\CC2530DB\f8wConfig.cfg</file>
  2991. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\zdo\ZDNwkMgr.c</file>
  2992. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\zdo\ZDNwkMgr.h</file>
  2993. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\zdo\ZDConfig.h</file>
  2994. <file>$PROJ_DIR$\..\..\..\..\..\Components\zmac\f8w\zmac.c</file>
  2995. <file>$PROJ_DIR$\..\..\..\..\..\Components\zmac\ZMAC.h</file>
  2996. </outputs>
  2997. <file>
  2998. <name>[ROOT_NODE]</name>
  2999. <outputs>
  3000. <tool>
  3001. <name>XLINK</name>
  3002. <file> 71 155 82</file>
  3003. </tool>
  3004. </outputs>
  3005. </file>
  3006. <file>
  3007. <name>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_led.c</name>
  3008. <outputs>
  3009. <tool>
  3010. <name>ICC8051</name>
  3011. <file> 278 122 212</file>
  3012. </tool>
  3013. <tool>
  3014. <name>BICOMP</name>
  3015. <file> 291</file>
  3016. </tool>
  3017. </outputs>
  3018. <inputs>
  3019. <tool>
  3020. <name>ICC8051</name>
  3021. <file> 491 498</file>
  3022. </tool>
  3023. </inputs>
  3024. </file>
  3025. <file>
  3026. <name>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_flash.c</name>
  3027. <outputs>
  3028. <tool>
  3029. <name>ICC8051</name>
  3030. <file> 260 330 100</file>
  3031. </tool>
  3032. <tool>
  3033. <name>BICOMP</name>
  3034. <file> 217</file>
  3035. </tool>
  3036. </outputs>
  3037. <inputs>
  3038. <tool>
  3039. <name>ICC8051</name>
  3040. <file> 491 498 7 27 13 25 179 23 12 21</file>
  3041. </tool>
  3042. <tool>
  3043. <name>BICOMP</name>
  3044. <file> 27 25 21 13 179 7 23 12</file>
  3045. </tool>
  3046. </inputs>
  3047. </file>
  3048. <file>
  3049. <name>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_adc.c</name>
  3050. <outputs>
  3051. <tool>
  3052. <name>ICC8051</name>
  3053. <file> 90 107 352</file>
  3054. </tool>
  3055. <tool>
  3056. <name>BICOMP</name>
  3057. <file> 177</file>
  3058. </tool>
  3059. </outputs>
  3060. <inputs>
  3061. <tool>
  3062. <name>ICC8051</name>
  3063. <file> 491 498 33 12 7 27 13 25 179</file>
  3064. </tool>
  3065. <tool>
  3066. <name>BICOMP</name>
  3067. <file> 25 27 12 13 7 179 33</file>
  3068. </tool>
  3069. </inputs>
  3070. </file>
  3071. <file>
  3072. <name>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_dma.c</name>
  3073. <outputs>
  3074. <tool>
  3075. <name>ICC8051</name>
  3076. <file> 83 264 214</file>
  3077. </tool>
  3078. <tool>
  3079. <name>BICOMP</name>
  3080. <file> 59</file>
  3081. </tool>
  3082. </outputs>
  3083. <inputs>
  3084. <tool>
  3085. <name>ICC8051</name>
  3086. <file> 491 498 25 13 23 12 7 27 179 18</file>
  3087. </tool>
  3088. <tool>
  3089. <name>BICOMP</name>
  3090. <file> 27 18 12 23 7 25 13 179</file>
  3091. </tool>
  3092. </inputs>
  3093. </file>
  3094. <file>
  3095. <name>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_uart.c</name>
  3096. <outputs>
  3097. <tool>
  3098. <name>ICC8051</name>
  3099. <file> 350 358 285</file>
  3100. </tool>
  3101. <tool>
  3102. <name>BICOMP</name>
  3103. <file> 52</file>
  3104. </tool>
  3105. </outputs>
  3106. <inputs>
  3107. <tool>
  3108. <name>ICC8051</name>
  3109. <file> 491 498 7 27 13 25 179 18 12 49 37 23 410 479 14 456 446 464 471</file>
  3110. </tool>
  3111. <tool>
  3112. <name>BICOMP</name>
  3113. <file> 25 37 27 456 13 179 471 18 49 7 12 14 446 23 410 479 464</file>
  3114. </tool>
  3115. </inputs>
  3116. </file>
  3117. <file>
  3118. <name>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_timer.c</name>
  3119. <outputs>
  3120. <tool>
  3121. <name>ICC8051</name>
  3122. <file> 347 93 206</file>
  3123. </tool>
  3124. <tool>
  3125. <name>BICOMP</name>
  3126. <file> 211</file>
  3127. </tool>
  3128. </outputs>
  3129. <inputs>
  3130. <tool>
  3131. <name>ICC8051</name>
  3132. <file> 491 498</file>
  3133. </tool>
  3134. </inputs>
  3135. </file>
  3136. <file>
  3137. <name>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_sleep.c</name>
  3138. <outputs>
  3139. <tool>
  3140. <name>ICC8051</name>
  3141. <file> 253 272 235</file>
  3142. </tool>
  3143. <tool>
  3144. <name>BICOMP</name>
  3145. <file> 91</file>
  3146. </tool>
  3147. </outputs>
  3148. <inputs>
  3149. <tool>
  3150. <name>ICC8051</name>
  3151. <file> 491 498 25 27 13 179 12 7 14 31 11 6 490 195 456 446 464 471 465 467 479 18 16 37 426 28</file>
  3152. </tool>
  3153. <tool>
  3154. <name>BICOMP</name>
  3155. <file> 12 471 25 31 16 7 490 6 467 426 13 179 27 464 14 11 456 465 479 37 195 28 446 18</file>
  3156. </tool>
  3157. </inputs>
  3158. </file>
  3159. <file>
  3160. <name>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_lcd.c</name>
  3161. <outputs>
  3162. <tool>
  3163. <name>ICC8051</name>
  3164. <file> 227 266 170</file>
  3165. </tool>
  3166. <tool>
  3167. <name>BICOMP</name>
  3168. <file> 157</file>
  3169. </tool>
  3170. </outputs>
  3171. <inputs>
  3172. <tool>
  3173. <name>ICC8051</name>
  3174. <file> 491 498</file>
  3175. </tool>
  3176. </inputs>
  3177. </file>
  3178. <file>
  3179. <name>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_startup.c</name>
  3180. <outputs>
  3181. <tool>
  3182. <name>ICC8051</name>
  3183. <file> 236 234 133</file>
  3184. </tool>
  3185. <tool>
  3186. <name>BICOMP</name>
  3187. <file> 88</file>
  3188. </tool>
  3189. </outputs>
  3190. <inputs>
  3191. <tool>
  3192. <name>ICC8051</name>
  3193. <file> 491 498 12 7 27 13 25 179</file>
  3194. </tool>
  3195. <tool>
  3196. <name>BICOMP</name>
  3197. <file> 13 179 7 27 25 12</file>
  3198. </tool>
  3199. </inputs>
  3200. </file>
  3201. <file>
  3202. <name>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_key.c</name>
  3203. <outputs>
  3204. <tool>
  3205. <name>ICC8051</name>
  3206. <file> 254 325 127</file>
  3207. </tool>
  3208. <tool>
  3209. <name>BICOMP</name>
  3210. <file> 119</file>
  3211. </tool>
  3212. </outputs>
  3213. <inputs>
  3214. <tool>
  3215. <name>ICC8051</name>
  3216. <file> 491 498</file>
  3217. </tool>
  3218. </inputs>
  3219. </file>
  3220. <file>
  3221. <name>$PROJ_DIR$\..\..\..\..\..\Components\mac\high_level\mac_cfg.c</name>
  3222. <outputs>
  3223. <tool>
  3224. <name>ICC8051</name>
  3225. <file> 341 374 335</file>
  3226. </tool>
  3227. <tool>
  3228. <name>BICOMP</name>
  3229. <file> 361</file>
  3230. </tool>
  3231. </outputs>
  3232. <inputs>
  3233. <tool>
  3234. <name>ICC8051</name>
  3235. <file> 491 498 6 25 490 195</file>
  3236. </tool>
  3237. <tool>
  3238. <name>BICOMP</name>
  3239. <file> 25 195 490 6</file>
  3240. </tool>
  3241. </inputs>
  3242. </file>
  3243. <file>
  3244. <name>$PROJ_DIR$\..\..\..\..\..\Components\mac\high_level\mac_pib.c</name>
  3245. <outputs>
  3246. <tool>
  3247. <name>ICC8051</name>
  3248. <file> 67 326 138</file>
  3249. </tool>
  3250. <tool>
  3251. <name>BICOMP</name>
  3252. <file> 162</file>
  3253. </tool>
  3254. </outputs>
  3255. <inputs>
  3256. <tool>
  3257. <name>ICC8051</name>
  3258. <file> 491 498 27 13 25 179 12 7 6 490 195 30 415 28 420 192 426 427 418 414 37 14 191 4 456 446 464 471 187 197</file>
  3259. </tool>
  3260. <tool>
  3261. <name>BICOMP</name>
  3262. <file> 456 25 418 415 27 195 13 426 6 191 192 12 30 420 4 187 179 7 28 464 197 490 427 414 14 37 446 471</file>
  3263. </tool>
  3264. </inputs>
  3265. </file>
  3266. <file>
  3267. <name>$PROJ_DIR$\..\..\..\..\..\Components\hal\common\hal_drivers.c</name>
  3268. <outputs>
  3269. <tool>
  3270. <name>ICC8051</name>
  3271. <file> 223 346 317</file>
  3272. </tool>
  3273. <tool>
  3274. <name>BICOMP</name>
  3275. <file> 250</file>
  3276. </tool>
  3277. </outputs>
  3278. <inputs>
  3279. <tool>
  3280. <name>ICC8051</name>
  3281. <file> 491 498 25 456 446 13 464 471 16 33 12 7 27 179 23 11 1 31 22 18 14 3 466 490</file>
  3282. </tool>
  3283. <tool>
  3284. <name>BICOMP</name>
  3285. <file> 11 18 464 25 16 31 12 490 456 33 23 1 22 14 3 446 471 13 7 27 179 466</file>
  3286. </tool>
  3287. </inputs>
  3288. </file>
  3289. <file>
  3290. <name>$PROJ_DIR$\..\..\..\Public\sk9822.c</name>
  3291. <outputs>
  3292. <tool>
  3293. <name>ICC8051</name>
  3294. <file> 135 279 175</file>
  3295. </tool>
  3296. <tool>
  3297. <name>BICOMP</name>
  3298. <file> 68</file>
  3299. </tool>
  3300. </outputs>
  3301. <inputs>
  3302. <tool>
  3303. <name>ICC8051</name>
  3304. <file> 491 498 143 179 479 27 13 25 18 12 7 14 456 446 464 471 366 33 183 194 197 196 198 193</file>
  3305. </tool>
  3306. <tool>
  3307. <name>BICOMP</name>
  3308. <file> 197 13 183 479 14 179 12 366 27 464 18 198 194 143 456 25 7 446 471 33 196 193</file>
  3309. </tool>
  3310. </inputs>
  3311. </file>
  3312. <file>
  3313. <name>$PROJ_DIR$\..\Source\adc_sensor.c</name>
  3314. <outputs>
  3315. <tool>
  3316. <name>ICC8051</name>
  3317. <file> 61 70 101</file>
  3318. </tool>
  3319. <tool>
  3320. <name>BICOMP</name>
  3321. <file> 132</file>
  3322. </tool>
  3323. </outputs>
  3324. <inputs>
  3325. <tool>
  3326. <name>ICC8051</name>
  3327. <file> 491 498 288 366 179 479 27 13 25 18 12 7 14 456 446 464 471 33 183 194 197 196 198 193</file>
  3328. </tool>
  3329. <tool>
  3330. <name>BICOMP</name>
  3331. <file> 197 13 33 193 479 196 14 179 12 366 18 183 198 27 464 194 288 456 25 7 446 471</file>
  3332. </tool>
  3333. </inputs>
  3334. </file>
  3335. <file>
  3336. <name>$PROJ_DIR$\..\..\..\Public\rc522.c</name>
  3337. <outputs>
  3338. <tool>
  3339. <name>ICC8051</name>
  3340. <file> 115 377 78</file>
  3341. </tool>
  3342. <tool>
  3343. <name>BICOMP</name>
  3344. <file> 136</file>
  3345. </tool>
  3346. </outputs>
  3347. <inputs>
  3348. <tool>
  3349. <name>ICC8051</name>
  3350. <file> 491 498 265 179 366 479 27 13 25 18 12 7 14 456 446 464 471 33 183 194 197 196 198 193</file>
  3351. </tool>
  3352. <tool>
  3353. <name>BICOMP</name>
  3354. <file> 446 479 14 25 194 196 7 179 33 193 27 471 13 12 197 366 18 183 198 456 464 265</file>
  3355. </tool>
  3356. </inputs>
  3357. </file>
  3358. <file>
  3359. <name>$PROJ_DIR$\..\Source\OSAL_SampleApp.c</name>
  3360. <outputs>
  3361. <tool>
  3362. <name>ICC8051</name>
  3363. <file> 224 208 308</file>
  3364. </tool>
  3365. <tool>
  3366. <name>BICOMP</name>
  3367. <file> 248</file>
  3368. </tool>
  3369. </outputs>
  3370. <inputs>
  3371. <tool>
  3372. <name>ICC8051</name>
  3373. <file> 491 498 466 446 25 13 490 16 456 464 471 465 440 401 402 472 503 495 6 195 450 392 390 474 404 385 468 408 463 453 482 448 492 501 406 45</file>
  3374. </tool>
  3375. <tool>
  3376. <name>BICOMP</name>
  3377. <file> 404 446 466 450 456 45 392 390 453 408 402 25 471 503 490 448 16 465 440 472 482 406 13 464 401 474 385 495 6 195 468 463 492 501</file>
  3378. </tool>
  3379. </inputs>
  3380. </file>
  3381. <file>
  3382. <name>$PROJ_DIR$\..\Source\mpu6050.c</name>
  3383. <outputs>
  3384. <tool>
  3385. <name>ICC8051</name>
  3386. <file> 297 295 139</file>
  3387. </tool>
  3388. <tool>
  3389. <name>BICOMP</name>
  3390. <file> 229</file>
  3391. </tool>
  3392. </outputs>
  3393. <inputs>
  3394. <tool>
  3395. <name>ICC8051</name>
  3396. <file> 491 498 179 221 456 446 25 13 464 471 479 27 18 12 7 14 366 33 183 194 197 196 198 193</file>
  3397. </tool>
  3398. <tool>
  3399. <name>BICOMP</name>
  3400. <file> 471 197 179 183 25 27 479 446 14 13 12 221 456 366 464 18 198 194 7 33 196 193</file>
  3401. </tool>
  3402. </inputs>
  3403. </file>
  3404. <file>
  3405. <name>$PROJ_DIR$\..\..\..\..\..\Components\hal\common\hal_assert.c</name>
  3406. <outputs>
  3407. <tool>
  3408. <name>ICC8051</name>
  3409. <file> 290 154 305</file>
  3410. </tool>
  3411. <tool>
  3412. <name>BICOMP</name>
  3413. <file> 307</file>
  3414. </tool>
  3415. </outputs>
  3416. <inputs>
  3417. <tool>
  3418. <name>ICC8051</name>
  3419. <file> 491 498 37 25 12 7 27 13 179 417 28 6 490 195 435</file>
  3420. </tool>
  3421. <tool>
  3422. <name>BICOMP</name>
  3423. <file> 6 27 12 417 13 28 25 435 7 179 490 37 195</file>
  3424. </tool>
  3425. </inputs>
  3426. </file>
  3427. <file>
  3428. <name>$PROJ_DIR$\..\Source\bh1750.c</name>
  3429. <outputs>
  3430. <tool>
  3431. <name>ICC8051</name>
  3432. <file> 312 283 144</file>
  3433. </tool>
  3434. <tool>
  3435. <name>BICOMP</name>
  3436. <file> 128</file>
  3437. </tool>
  3438. </outputs>
  3439. <inputs>
  3440. <tool>
  3441. <name>ICC8051</name>
  3442. <file> 491 498 134 179 366 479 27 13 25 18 12 7 14 456 446 464 471 33 183 194 197 196 198 193</file>
  3443. </tool>
  3444. <tool>
  3445. <name>BICOMP</name>
  3446. <file> 197 13 179 198 18 14 12 366 183 27 464 194 134 479 33 196 193 456 25 7 446 471</file>
  3447. </tool>
  3448. </inputs>
  3449. </file>
  3450. <file>
  3451. <name>$PROJ_DIR$\..\Source\ds18b20.c</name>
  3452. <outputs>
  3453. <tool>
  3454. <name>ICC8051</name>
  3455. <file> 267 259 293</file>
  3456. </tool>
  3457. <tool>
  3458. <name>BICOMP</name>
  3459. <file> 249</file>
  3460. </tool>
  3461. </outputs>
  3462. <inputs>
  3463. <tool>
  3464. <name>ICC8051</name>
  3465. <file> 491 498 179 343 479 27 13 25 18 12 7 14 456 446 464 471 366 33 183 194 197 196 198 193</file>
  3466. </tool>
  3467. <tool>
  3468. <name>BICOMP</name>
  3469. <file> 197 13 183 366 14 179 12 343 27 464 18 198 194 479 456 25 7 446 471 33 196 193</file>
  3470. </tool>
  3471. </inputs>
  3472. </file>
  3473. <file>
  3474. <name>$PROJ_DIR$\..\Source\dht11.c</name>
  3475. <outputs>
  3476. <tool>
  3477. <name>ICC8051</name>
  3478. <file> 375 296 365</file>
  3479. </tool>
  3480. <tool>
  3481. <name>BICOMP</name>
  3482. <file> 58</file>
  3483. </tool>
  3484. </outputs>
  3485. <inputs>
  3486. <tool>
  3487. <name>ICC8051</name>
  3488. <file> 491 498 185 179 479 27 13 25 18 12 7 14 456 446 464 471 366 33 183 194 197 196 198 193</file>
  3489. </tool>
  3490. <tool>
  3491. <name>BICOMP</name>
  3492. <file> 197 13 183 179 14 12 366 479 27 464 18 198 194 185 456 25 7 446 471 33 196 193</file>
  3493. </tool>
  3494. </inputs>
  3495. </file>
  3496. <file>
  3497. <name>$PROJ_DIR$\..\Source\SampleApp.c</name>
  3498. <outputs>
  3499. <tool>
  3500. <name>ICC8051</name>
  3501. <file> 237 145 231</file>
  3502. </tool>
  3503. <tool>
  3504. <name>BICOMP</name>
  3505. <file> 368</file>
  3506. </tool>
  3507. </outputs>
  3508. <inputs>
  3509. <tool>
  3510. <name>ICC8051</name>
  3511. <file> 491 498 456 446 25 13 464 471 463 466 490 448 472 503 495 6 195 450 392 390 474 385 468 408 387 482 404 453 492 501 45 48 479 27 179 18 12 7 14 193 197 410 403 440 401 33 183 194 196 198 366</file>
  3512. </tool>
  3513. <tool>
  3514. <name>BICOMP</name>
  3515. <file> 385 392 448 198 13 446 450 408 466 25 401 193 490 456 27 482 18 390 453 14 48 403 183 464 474 501 7 197 33 463 387 45 479 410 440 196 366 471 472 503 495 6 195 468 404 492 179 12 194</file>
  3516. </tool>
  3517. </inputs>
  3518. </file>
  3519. <file>
  3520. <name>$PROJ_DIR$\Source\SampleAppHw.c</name>
  3521. <outputs>
  3522. <tool>
  3523. <name>ICC8051</name>
  3524. <file> 356 273 160</file>
  3525. </tool>
  3526. <tool>
  3527. <name>BICOMP</name>
  3528. <file> 342</file>
  3529. </tool>
  3530. </outputs>
  3531. <inputs>
  3532. <tool>
  3533. <name>ICC8051</name>
  3534. <file> 491 498 466 446 25 13 490 27 179 48</file>
  3535. </tool>
  3536. <tool>
  3537. <name>BICOMP</name>
  3538. <file> 13 446 25 27 48 490 179 466</file>
  3539. </tool>
  3540. </inputs>
  3541. </file>
  3542. <file>
  3543. <name>$PROJ_DIR$\..\Source\hx711.c</name>
  3544. <outputs>
  3545. <tool>
  3546. <name>ICC8051</name>
  3547. <file> 316 94 116</file>
  3548. </tool>
  3549. <tool>
  3550. <name>BICOMP</name>
  3551. <file> 303</file>
  3552. </tool>
  3553. </outputs>
  3554. <inputs>
  3555. <tool>
  3556. <name>ICC8051</name>
  3557. <file> 491 498 304 179 479 27 13 25 18 12 7 14 456 446 464 471 366 33 183 194 197 196 198 193</file>
  3558. </tool>
  3559. <tool>
  3560. <name>BICOMP</name>
  3561. <file> 197 13 183 479 14 179 12 366 27 464 18 198 194 304 456 25 7 446 471 33 196 193</file>
  3562. </tool>
  3563. </inputs>
  3564. </file>
  3565. <file>
  3566. <name>D:\ZigbeeBuildFile\EndDeviceEB\Exe\SampleApp.d51</name>
  3567. <outputs>
  3568. <tool>
  3569. <name>XLINK</name>
  3570. <file> 71 155</file>
  3571. </tool>
  3572. </outputs>
  3573. <inputs>
  3574. <tool>
  3575. <name>XLINK</name>
  3576. <file> 496 101 238 144 137 360 129 365 293 352 305 214 317 100 127 170 212 235 133 206 285 116 153 151 335 130 339 205 311 138 165 357 168 149 125 226 218 139 367 359 320 176 166 314 372 109 222 85 203 161 75 213 79 113 63 233 284 299 308 370 244 78 81 231 160 175 327 140 204 80 246 158 242 77 199 60 65 184 150 180 51</file>
  3577. </tool>
  3578. </inputs>
  3579. </file>
  3580. <file>
  3581. <name>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_UART.c</name>
  3582. <outputs>
  3583. <tool>
  3584. <name>ICC8051</name>
  3585. <file> 167 251 222</file>
  3586. </tool>
  3587. <tool>
  3588. <name>BICOMP</name>
  3589. <file> 310</file>
  3590. </tool>
  3591. </outputs>
  3592. <inputs>
  3593. <tool>
  3594. <name>ICC8051</name>
  3595. <file> 491 498 466 446 25 13 490 456 464 471 18 12 7 27 179 440 401 410 479 14</file>
  3596. </tool>
  3597. <tool>
  3598. <name>BICOMP</name>
  3599. <file> 446 25 410 464 12 466 18 13 456 14 440 490 471 7 27 179 401 479</file>
  3600. </tool>
  3601. </inputs>
  3602. </file>
  3603. <file>
  3604. <name>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_ZDO.c</name>
  3605. <outputs>
  3606. <tool>
  3607. <name>ICC8051</name>
  3608. <file> 300 225 161</file>
  3609. </tool>
  3610. <tool>
  3611. <name>BICOMP</name>
  3612. <file> 349</file>
  3613. </tool>
  3614. </outputs>
  3615. <inputs>
  3616. <tool>
  3617. <name>ICC8051</name>
  3618. <file> 491 498 466 446 25 13 490 456 464 471 458 440 401 398 385 468 450 503 495 6 195 390 408 472 392 474 463 448 492 501 484 482 404 453 479 27 179 18 12 7 14 452</file>
  3619. </tool>
  3620. <tool>
  3621. <name>BICOMP</name>
  3622. <file> 390 14 401 450 446 466 492 479 503 440 452 25 448 463 6 392 482 456 385 490 13 471 484 468 474 495 195 472 404 27 458 398 501 464 408 7 453 18 179 12</file>
  3623. </tool>
  3624. </inputs>
  3625. </file>
  3626. <file>
  3627. <name>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_APP.c</name>
  3628. <outputs>
  3629. <tool>
  3630. <name>ICC8051</name>
  3631. <file> 262 274 320</file>
  3632. </tool>
  3633. <tool>
  3634. <name>BICOMP</name>
  3635. <file> 362</file>
  3636. </tool>
  3637. </outputs>
  3638. <inputs>
  3639. <tool>
  3640. <name>ICC8051</name>
  3641. <file> 491 498 466 446 25 13 490 440 401 403 456 464 471 400 448 472 503 495 6 195 450 392 390 474 385 468 408 463 479 27 179 18 12 7 14</file>
  3642. </tool>
  3643. <tool>
  3644. <name>BICOMP</name>
  3645. <file> 390 7 466 464 385 450 401 403 446 25 448 474 408 18 440 400 490 13 456 471 479 472 503 392 27 495 6 195 468 463 14 179 12</file>
  3646. </tool>
  3647. </inputs>
  3648. </file>
  3649. <file>
  3650. <name>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\BindingTable.c</name>
  3651. <outputs>
  3652. <tool>
  3653. <name>ICC8051</name>
  3654. <file> 56 306 137</file>
  3655. </tool>
  3656. <tool>
  3657. <name>BICOMP</name>
  3658. <file> 298</file>
  3659. </tool>
  3660. </outputs>
  3661. <inputs>
  3662. <tool>
  3663. <name>ICC8051</name>
  3664. <file> 491 498 466 446 25 13 490 456 464 471 458 468 450 503 495 6 195 390 408 472 392 474 463 413</file>
  3665. </tool>
  3666. <tool>
  3667. <name>BICOMP</name>
  3668. <file> 466 446 413 463 6 25 392 458 490 13 471 390 495 195 472 503 456 468 408 464 450 474</file>
  3669. </tool>
  3670. </inputs>
  3671. </file>
  3672. <file>
  3673. <name>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_TASK.c</name>
  3674. <outputs>
  3675. <tool>
  3676. <name>ICC8051</name>
  3677. <file> 313 309 109</file>
  3678. </tool>
  3679. <tool>
  3680. <name>BICOMP</name>
  3681. <file> 348</file>
  3682. </tool>
  3683. </outputs>
  3684. <inputs>
  3685. <tool>
  3686. <name>ICC8051</name>
  3687. <file> 491 498 466 446 25 13 490 402 440 401 386 456 464 471 410 479 27 179 18 12 7 14 389 409 398 385 468 450 503 495 6 195 390 408 472 392 474 463 448 492 501 484 482 404 453 400</file>
  3688. </tool>
  3689. <tool>
  3690. <name>BICOMP</name>
  3691. <file> 450 408 401 466 400 7 482 448 410 490 13 25 446 27 385 456 474 472 392 453 440 409 464 471 14 492 390 503 501 402 386 389 398 18 479 179 12 484 468 463 495 6 195 404</file>
  3692. </tool>
  3693. </inputs>
  3694. </file>
  3695. <file>
  3696. <name>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_NWK.c</name>
  3697. <outputs>
  3698. <tool>
  3699. <name>ICC8051</name>
  3700. <file> 256 200 166</file>
  3701. </tool>
  3702. <tool>
  3703. <name>BICOMP</name>
  3704. <file> 148</file>
  3705. </tool>
  3706. </outputs>
  3707. <inputs>
  3708. <tool>
  3709. <name>ICC8051</name>
  3710. <file> 491 498 466 446 25 13 490 440 401 399 392 503 495 6 195 390 450 472 474 468 408 456 464 471 463 452 482 404 385 453 448 492 501 479 27 179 18 12 7 14</file>
  3711. </tool>
  3712. <tool>
  3713. <name>BICOMP</name>
  3714. <file> 501 7 392 490 450 471 474 482 503 492 472 13 390 466 446 468 27 399 452 401 25 408 456 404 448 14 179 440 479 495 6 195 463 464 385 453 18 12</file>
  3715. </tool>
  3716. </inputs>
  3717. </file>
  3718. <file>
  3719. <name>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_SYS.c</name>
  3720. <outputs>
  3721. <tool>
  3722. <name>ICC8051</name>
  3723. <file> 112 328 372</file>
  3724. </tool>
  3725. <tool>
  3726. <name>BICOMP</name>
  3727. <file> 57</file>
  3728. </tool>
  3729. </outputs>
  3730. <inputs>
  3731. <tool>
  3732. <name>ICC8051</name>
  3733. <file> 491 498 466 446 25 13 490 440 401 409 407 452 392 503 495 6 195 390 450 472 474 456 464 471 458 479 27 179 18 12 7 14 33 463 455 415 28</file>
  3734. </tool>
  3735. <tool>
  3736. <name>BICOMP</name>
  3737. <file> 13 33 466 452 28 409 458 455 446 25 474 456 440 407 479 463 415 490 392 390 503 450 464 18 179 12 401 472 495 6 195 471 27 14 7</file>
  3738. </tool>
  3739. </inputs>
  3740. </file>
  3741. <file>
  3742. <name>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_DEBUG.c</name>
  3743. <outputs>
  3744. <tool>
  3745. <name>ICC8051</name>
  3746. <file> 55 318 176</file>
  3747. </tool>
  3748. <tool>
  3749. <name>BICOMP</name>
  3750. <file> 117</file>
  3751. </tool>
  3752. </outputs>
  3753. <inputs>
  3754. <tool>
  3755. <name>ICC8051</name>
  3756. <file> 491 498 466 446 25 13 490 440 401 386 456 464 471 410 479 27 179 18 12 7 14 191 28 6 195 189 417 435 468 450 503 495 390 408 472 392 474 463</file>
  3757. </tool>
  3758. <tool>
  3759. <name>BICOMP</name>
  3760. <file> 471 390 468 490 13 456 14 503 191 446 25 6 466 386 417 401 27 28 440 410 189 435 464 479 18 179 12 7 463 495 392 195 450 408 472 474</file>
  3761. </tool>
  3762. </inputs>
  3763. </file>
  3764. <file>
  3765. <name>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_SAPI.c</name>
  3766. <outputs>
  3767. <tool>
  3768. <name>ICC8051</name>
  3769. <file> 257 98 314</file>
  3770. </tool>
  3771. <tool>
  3772. <name>BICOMP</name>
  3773. <file> 286</file>
  3774. </tool>
  3775. </outputs>
  3776. <inputs>
  3777. <tool>
  3778. <name>ICC8051</name>
  3779. <file> 491 498 466 446 25 13 490 413 456 464 471 458 479 27 179 18 12 7 14 440 401 397 188 448 472 503 495 6 195 450 392 390 474 385 468 408 463 410</file>
  3780. </tool>
  3781. <tool>
  3782. <name>BICOMP</name>
  3783. <file> 456 479 466 503 468 397 490 13 464 25 18 179 12 472 6 474 390 413 458 440 410 446 471 27 14 392 495 195 450 463 7 401 188 448 385 408</file>
  3784. </tool>
  3785. </inputs>
  3786. </file>
  3787. <file>
  3788. <name>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_UTIL.c</name>
  3789. <outputs>
  3790. <tool>
  3791. <name>ICC8051</name>
  3792. <file> 334 340 85</file>
  3793. </tool>
  3794. <tool>
  3795. <name>BICOMP</name>
  3796. <file> 382</file>
  3797. </tool>
  3798. </outputs>
  3799. <inputs>
  3800. <tool>
  3801. <name>ICC8051</name>
  3802. <file> 491 498 466 446 25 13 490 413 479 27 179 18 12 7 14 456 464 471 11 31 458 392 503 495 6 195 390 450 440 401 389 190 474 398 385 468 408 472 463 448 492 501 484 482 404 453 397 188 399 400 480</file>
  3803. </tool>
  3804. <tool>
  3805. <name>BICOMP</name>
  3806. <file> 390 456 448 472 440 503 463 466 31 398 13 6 25 479 450 385 190 399 480 490 18 179 12 464 495 195 484 468 474 392 453 413 11 458 389 397 400 482 446 27 14 7 471 401 492 408 501 404 188</file>
  3807. </tool>
  3808. </inputs>
  3809. </file>
  3810. <file>
  3811. <name>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_VERSION.c</name>
  3812. <outputs>
  3813. <tool>
  3814. <name>ICC8051</name>
  3815. <file> 89 87 203</file>
  3816. </tool>
  3817. <tool>
  3818. <name>BICOMP</name>
  3819. <file> 337</file>
  3820. </tool>
  3821. </outputs>
  3822. <inputs>
  3823. <tool>
  3824. <name>ICC8051</name>
  3825. <file> 491 498 466 446 25 13 490 407</file>
  3826. </tool>
  3827. <tool>
  3828. <name>BICOMP</name>
  3829. <file> 446 490 13 466 25 407</file>
  3830. </tool>
  3831. </inputs>
  3832. </file>
  3833. <file>
  3834. <name>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_low_level.c</name>
  3835. <outputs>
  3836. <tool>
  3837. <name>ICC8051</name>
  3838. <file> 353 147 339</file>
  3839. </tool>
  3840. <tool>
  3841. <name>BICOMP</name>
  3842. <file> 381</file>
  3843. </tool>
  3844. </outputs>
  3845. <inputs>
  3846. <tool>
  3847. <name>ICC8051</name>
  3848. <file> 491 498 25 27 13 179 415 28 6 490 195 436 417 435 442 425 432 420 7 192 30 426 12 427 418 414 37 14</file>
  3849. </tool>
  3850. <tool>
  3851. <name>BICOMP</name>
  3852. <file> 28 432 179 418 417 13 195 415 442 414 25 192 12 37 27 436 435 425 420 6 490 426 7 30 427 14</file>
  3853. </tool>
  3854. </inputs>
  3855. </file>
  3856. <file>
  3857. <name>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_rx.c</name>
  3858. <outputs>
  3859. <tool>
  3860. <name>ICC8051</name>
  3861. <file> 209 378 149</file>
  3862. </tool>
  3863. <tool>
  3864. <name>BICOMP</name>
  3865. <file> 156</file>
  3866. </tool>
  3867. </outputs>
  3868. <inputs>
  3869. <tool>
  3870. <name>ICC8051</name>
  3871. <file> 491 498 13 25 456 446 464 471 28 6 490 195 30 186 415 417 435 442 436 420 7 27 179 192 426 12 427 418 414 37 14 441</file>
  3872. </tool>
  3873. <tool>
  3874. <name>BICOMP</name>
  3875. <file> 490 435 28 30 13 441 464 456 415 436 6 414 25 186 417 442 420 446 471 195 7 427 14 27 192 426 418 179 12 37</file>
  3876. </tool>
  3877. </inputs>
  3878. </file>
  3879. <file>
  3880. <name>$PROJ_DIR$\..\..\..\..\..\Components\mt\DebugTrace.c</name>
  3881. <outputs>
  3882. <tool>
  3883. <name>ICC8051</name>
  3884. <file> 344 263 129</file>
  3885. </tool>
  3886. <tool>
  3887. <name>BICOMP</name>
  3888. <file> 152</file>
  3889. </tool>
  3890. </outputs>
  3891. <inputs>
  3892. <tool>
  3893. <name>ICC8051</name>
  3894. <file> 491 498 466 446 25 13 490 456 464 471 440 401 402 386 439</file>
  3895. </tool>
  3896. <tool>
  3897. <name>BICOMP</name>
  3898. <file> 402 456 439 446 25 464 401 466 440 386 490 13 471</file>
  3899. </tool>
  3900. </inputs>
  3901. </file>
  3902. <file>
  3903. <name>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT.c</name>
  3904. <outputs>
  3905. <tool>
  3906. <name>ICC8051</name>
  3907. <file> 121 376 367</file>
  3908. </tool>
  3909. <tool>
  3910. <name>BICOMP</name>
  3911. <file> 354</file>
  3912. </tool>
  3913. </outputs>
  3914. <inputs>
  3915. <tool>
  3916. <name>ICC8051</name>
  3917. <file> 491 498 466 446 25 13 490 440 401 403 456 464 471 386 389 409 479 27 179 18 12 7 14 458 439 503 495 6 195 392 390 450 484 482 404 385 468 408 472 474 463 453 448 492 501 452 397 188 398 31 11 410</file>
  3918. </tool>
  3919. <tool>
  3920. <name>BICOMP</name>
  3921. <file> 401 466 440 25 452 471 474 464 410 27 490 482 492 390 389 392 398 446 7 503 468 501 484 403 479 439 397 31 13 456 14 450 404 408 463 472 386 409 458 448 18 11 179 12 495 6 195 385 453 188</file>
  3922. </tool>
  3923. </inputs>
  3924. </file>
  3925. <file>
  3926. <name>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\single_chip\mac_radio_defs.c</name>
  3927. <outputs>
  3928. <tool>
  3929. <name>ICC8051</name>
  3930. <file> 84 276 357</file>
  3931. </tool>
  3932. <tool>
  3933. <name>BICOMP</name>
  3934. <file> 124</file>
  3935. </tool>
  3936. </outputs>
  3937. <inputs>
  3938. <tool>
  3939. <name>ICC8051</name>
  3940. <file> 491 498 420 13 7 27 25 179 192 30 426 12 28 6 490 195 427 418 414 37 14 4</file>
  3941. </tool>
  3942. <tool>
  3943. <name>BICOMP</name>
  3944. <file> 14 7 25 179 37 4 427 13 12 6 30 414 27 490 192 426 418 28 195 420</file>
  3945. </tool>
  3946. </inputs>
  3947. </file>
  3948. <file>
  3949. <name>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\single_chip\mac_mcu.c</name>
  3950. <outputs>
  3951. <tool>
  3952. <name>ICC8051</name>
  3953. <file> 216 243 205</file>
  3954. </tool>
  3955. <tool>
  3956. <name>BICOMP</name>
  3957. <file> 73</file>
  3958. </tool>
  3959. </outputs>
  3960. <inputs>
  3961. <tool>
  3962. <name>ICC8051</name>
  3963. <file> 491 498 13 27 25 179 417 28 6 490 195 435 425 418 426 12 7 442 415 420 192 30 427 414 37 14</file>
  3964. </tool>
  3965. <tool>
  3966. <name>BICOMP</name>
  3967. <file> 13 426 6 425 25 418 417 442 414 28 490 192 37 27 435 415 420 179 195 12 7 30 427 14</file>
  3968. </tool>
  3969. </inputs>
  3970. </file>
  3971. <file>
  3972. <name>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\single_chip\mac_rffrontend.c</name>
  3973. <outputs>
  3974. <tool>
  3975. <name>ICC8051</name>
  3976. <file> 54 275 168</file>
  3977. </tool>
  3978. <tool>
  3979. <name>BICOMP</name>
  3980. <file> 178</file>
  3981. </tool>
  3982. </outputs>
  3983. <inputs>
  3984. <tool>
  3985. <name>ICC8051</name>
  3986. <file> 491 498 25 7 27 13 179 37 6 490 195 420 192 30 426 12 28 427 418 414 14</file>
  3987. </tool>
  3988. <tool>
  3989. <name>BICOMP</name>
  3990. <file> 25 30 420 195 414 37 13 7 427 14 426 6 27 179 490 192 418 28 12</file>
  3991. </tool>
  3992. </inputs>
  3993. </file>
  3994. <file>
  3995. <name>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_radio.c</name>
  3996. <outputs>
  3997. <tool>
  3998. <name>ICC8051</name>
  3999. <file> 261 280 165</file>
  4000. </tool>
  4001. <tool>
  4002. <name>BICOMP</name>
  4003. <file> 64</file>
  4004. </tool>
  4005. </outputs>
  4006. <inputs>
  4007. <tool>
  4008. <name>ICC8051</name>
  4009. <file> 491 498 25 4 6 490 195 28 415 436 435 417 442 13 432 425 420 7 27 179 192 30 426 12 427 418 414 37 14</file>
  4010. </tool>
  4011. <tool>
  4012. <name>BICOMP</name>
  4013. <file> 25 427 425 6 435 195 28 13 7 14 415 442 414 30 12 37 4 436 417 432 420 490 192 426 418 27 179</file>
  4014. </tool>
  4015. </inputs>
  4016. </file>
  4017. <file>
  4018. <name>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_rx_onoff.c</name>
  4019. <outputs>
  4020. <tool>
  4021. <name>ICC8051</name>
  4022. <file> 120 106 125</file>
  4023. </tool>
  4024. <tool>
  4025. <name>BICOMP</name>
  4026. <file> 294</file>
  4027. </tool>
  4028. </outputs>
  4029. <inputs>
  4030. <tool>
  4031. <name>ICC8051</name>
  4032. <file> 491 498 13 25 415 28 6 490 195 442 417 435 420 7 27 179 192 30 426 12 427 418 414 37 14</file>
  4033. </tool>
  4034. <tool>
  4035. <name>BICOMP</name>
  4036. <file> 25 179 28 192 13 417 195 418 415 420 426 27 12 37 442 435 414 6 490 7 30 427 14</file>
  4037. </tool>
  4038. </inputs>
  4039. </file>
  4040. <file>
  4041. <name>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_sleep.c</name>
  4042. <outputs>
  4043. <tool>
  4044. <name>ICC8051</name>
  4045. <file> 219 269 226</file>
  4046. </tool>
  4047. <tool>
  4048. <name>BICOMP</name>
  4049. <file> 118</file>
  4050. </tool>
  4051. </outputs>
  4052. <inputs>
  4053. <tool>
  4054. <name>ICC8051</name>
  4055. <file> 491 498 25 4 6 490 195 28 415 432 436 435 417 442 13 420 7 27 179 192 30 426 12 427 418 414 37 14</file>
  4056. </tool>
  4057. <tool>
  4058. <name>BICOMP</name>
  4059. <file> 420 25 28 192 179 436 418 13 415 417 490 426 27 12 37 4 432 435 442 414 6 195 7 30 427 14</file>
  4060. </tool>
  4061. </inputs>
  4062. </file>
  4063. <file>
  4064. <name>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_tx.c</name>
  4065. <outputs>
  4066. <tool>
  4067. <name>ICC8051</name>
  4068. <file> 114 86 218</file>
  4069. </tool>
  4070. <tool>
  4071. <name>BICOMP</name>
  4072. <file> 364</file>
  4073. </tool>
  4074. </outputs>
  4075. <inputs>
  4076. <tool>
  4077. <name>ICC8051</name>
  4078. <file> 491 498 25 13 27 179 192 30 4 6 490 195 28 415 435 425 417 442 436 432 420 7 426 12 427 418 414 37 14</file>
  4079. </tool>
  4080. <tool>
  4081. <name>BICOMP</name>
  4082. <file> 25 13 425 28 30 432 179 427 27 415 442 414 490 7 14 12 37 192 4 435 417 436 420 6 195 426 418</file>
  4083. </tool>
  4084. </inputs>
  4085. </file>
  4086. <file>
  4087. <name>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_autopend.c</name>
  4088. <outputs>
  4089. <tool>
  4090. <name>ICC8051</name>
  4091. <file> 220 255 153</file>
  4092. </tool>
  4093. <tool>
  4094. <name>BICOMP</name>
  4095. <file> 131</file>
  4096. </tool>
  4097. </outputs>
  4098. <inputs>
  4099. <tool>
  4100. <name>ICC8051</name>
  4101. <file> 491 498 6 25 490 195 420 13 7 27 179 192 30 426 12 28 427 418 414 37 14 456 446 464 471 466 441</file>
  4102. </tool>
  4103. <tool>
  4104. <name>BICOMP</name>
  4105. <file> 7 14 13 466 25 427 12 28 456 195 30 414 179 420 490 441 192 426 418 27 464 446 6 37 471</file>
  4106. </tool>
  4107. </inputs>
  4108. </file>
  4109. <file>
  4110. <name>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\single_chip\mac_csp_tx.c</name>
  4111. <outputs>
  4112. <tool>
  4113. <name>ICC8051</name>
  4114. <file> 301 146 130</file>
  4115. </tool>
  4116. <tool>
  4117. <name>BICOMP</name>
  4118. <file> 379</file>
  4119. </tool>
  4120. </outputs>
  4121. <inputs>
  4122. <tool>
  4123. <name>ICC8051</name>
  4124. <file> 491 498 25 27 13 179 30 4 6 490 195 28 415 418 426 12 7 435 417 442 420 192 427 414 37 14</file>
  4125. </tool>
  4126. <tool>
  4127. <name>BICOMP</name>
  4128. <file> 414 442 490 6 415 28 30 435 25 426 13 37 27 4 418 417 420 179 195 7 427 14 12 192</file>
  4129. </tool>
  4130. </inputs>
  4131. </file>
  4132. <file>
  4133. <name>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\single_chip\mac_mem.c</name>
  4134. <outputs>
  4135. <tool>
  4136. <name>ICC8051</name>
  4137. <file> 338 289 311</file>
  4138. </tool>
  4139. <tool>
  4140. <name>BICOMP</name>
  4141. <file> 241</file>
  4142. </tool>
  4143. </outputs>
  4144. <inputs>
  4145. <tool>
  4146. <name>ICC8051</name>
  4147. <file> 491 498 25 427 28 6 490 195 27 13 179 414 37</file>
  4148. </tool>
  4149. <tool>
  4150. <name>BICOMP</name>
  4151. <file> 28 6 27 490 427 414 25 195 13 179 37</file>
  4152. </tool>
  4153. </inputs>
  4154. </file>
  4155. <file>
  4156. <name>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_AF.c</name>
  4157. <outputs>
  4158. <tool>
  4159. <name>ICC8051</name>
  4160. <file> 371 141 359</file>
  4161. </tool>
  4162. <tool>
  4163. <name>BICOMP</name>
  4164. <file> 321</file>
  4165. </tool>
  4166. </outputs>
  4167. <inputs>
  4168. <tool>
  4169. <name>ICC8051</name>
  4170. <file> 491 498 466 446 25 13 490 456 464 471 440 401 400 448 472 503 495 6 195 450 392 390 474 385 468 408 463 479 27 179 18 12 7 14 398 492 501 484 482 404 453 410</file>
  4171. </tool>
  4172. <tool>
  4173. <name>BICOMP</name>
  4174. <file> 6 25 466 448 474 472 503 390 14 392 398 468 27 479 492 440 446 464 401 495 195 450 463 7 484 501 456 400 410 490 13 471 385 408 18 179 12 482 404 453</file>
  4175. </tool>
  4176. </inputs>
  4177. </file>
  4178. <file>
  4179. <name>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_backoff_timer.c</name>
  4180. <outputs>
  4181. <tool>
  4182. <name>ICC8051</name>
  4183. <file> 123 105 151</file>
  4184. </tool>
  4185. <tool>
  4186. <name>BICOMP</name>
  4187. <file> 169</file>
  4188. </tool>
  4189. </outputs>
  4190. <inputs>
  4191. <tool>
  4192. <name>ICC8051</name>
  4193. <file> 491 498 25 27 13 179 30 415 28 6 490 195 425 435 420 7 192 426 12 427 418 414 37 14</file>
  4194. </tool>
  4195. <tool>
  4196. <name>BICOMP</name>
  4197. <file> 25 425 414 30 420 28 195 12 37 27 415 435 13 179 6 490 7 427 14 426 192 418</file>
  4198. </tool>
  4199. </inputs>
  4200. </file>
  4201. <file>
  4202. <name>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\stub_aps.c</name>
  4203. <outputs>
  4204. <tool>
  4205. <name>ICC8051</name>
  4206. <file> 215 331 327</file>
  4207. </tool>
  4208. <tool>
  4209. <name>BICOMP</name>
  4210. <file> 210</file>
  4211. </tool>
  4212. </outputs>
  4213. <inputs>
  4214. <tool>
  4215. <name>ICC8051</name>
  4216. <file> 491 498 456 446 25 13 464 471 30 452 392 503 466 490 495 6 195 390 450 472 474 448 385 468 408 463 454</file>
  4217. </tool>
  4218. <tool>
  4219. <name>BICOMP</name>
  4220. <file> 450 13 466 454 446 408 452 464 392 390 490 474 30 448 471 25 472 503 495 6 456 195 385 468 463</file>
  4221. </tool>
  4222. </inputs>
  4223. </file>
  4224. <file>
  4225. <name>$PROJ_DIR$\..\..\..\..\..\Components\osal\common\OSAL.c</name>
  4226. <outputs>
  4227. <tool>
  4228. <name>ICC8051</name>
  4229. <file> 111 104 79</file>
  4230. </tool>
  4231. <tool>
  4232. <name>BICOMP</name>
  4233. <file> 66</file>
  4234. </tool>
  4235. </outputs>
  4236. <inputs>
  4237. <tool>
  4238. <name>ICC8051</name>
  4239. <file> 491 498 196 197 446 25 13 456 464 471 465 467 455 479 27 179 18 12 7 14 16</file>
  4240. </tool>
  4241. <tool>
  4242. <name>BICOMP</name>
  4243. <file> 13 16 14 464 446 25 456 455 471 27 465 467 479 197 18 179 12 7 196</file>
  4244. </tool>
  4245. </inputs>
  4246. </file>
  4247. <file>
  4248. <name>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\nwk_globals.c</name>
  4249. <outputs>
  4250. <tool>
  4251. <name>ICC8051</name>
  4252. <file> 202 336 75</file>
  4253. </tool>
  4254. <tool>
  4255. <name>BICOMP</name>
  4256. <file> 172</file>
  4257. </tool>
  4258. </outputs>
  4259. <inputs>
  4260. <tool>
  4261. <name>ICC8051</name>
  4262. <file> 491 498 466 446 25 13 490 456 464 471 458 413 390 408 472 503 495 6 195 450 392 474 452 468 463 404 385 453 449 501 448 479 27 179 18 12 7 14 1</file>
  4263. </tool>
  4264. <tool>
  4265. <name>BICOMP</name>
  4266. <file> 466 390 7 404 463 446 468 458 452 449 479 490 13 471 450 472 474 18 25 456 413 408 501 1 464 27 503 392 495 6 195 385 453 448 14 179 12</file>
  4267. </tool>
  4268. </inputs>
  4269. </file>
  4270. <file>
  4271. <name>$PROJ_DIR$\..\..\..\..\..\Components\osal\common\OSAL_Memory.c</name>
  4272. <outputs>
  4273. <tool>
  4274. <name>ICC8051</name>
  4275. <file> 72 363 233</file>
  4276. </tool>
  4277. <tool>
  4278. <name>BICOMP</name>
  4279. <file> 96</file>
  4280. </tool>
  4281. </outputs>
  4282. <inputs>
  4283. <tool>
  4284. <name>ICC8051</name>
  4285. <file> 491 498 446 25 13 456 464 471 479 27 179 18 12 7 14 37</file>
  4286. </tool>
  4287. <tool>
  4288. <name>BICOMP</name>
  4289. <file> 27 464 37 25 14 13 179 456 479 446 471 18 7 12</file>
  4290. </tool>
  4291. </inputs>
  4292. </file>
  4293. <file>
  4294. <name>$PROJ_DIR$\..\..\..\..\..\Components\stack\sys\ZGlobals.c</name>
  4295. <outputs>
  4296. <tool>
  4297. <name>ICC8051</name>
  4298. <file> 232 240 77</file>
  4299. </tool>
  4300. <tool>
  4301. <name>BICOMP</name>
  4302. <file> 69</file>
  4303. </tool>
  4304. </outputs>
  4305. <inputs>
  4306. <tool>
  4307. <name>ICC8051</name>
  4308. <file> 491 498 466 446 25 13 490 458 484 392 503 495 6 195 390 450 482 404 385 468 408 456 464 471 472 474 463 453 448 492 501 500 452 479 27 179 18 12 7 14 480</file>
  4309. </tool>
  4310. <tool>
  4311. <name>BICOMP</name>
  4312. <file> 474 466 18 503 450 25 492 390 472 392 448 452 500 6 468 27 484 480 446 495 195 404 408 463 464 501 456 458 479 490 13 482 385 453 471 14 7 179 12</file>
  4313. </tool>
  4314. </inputs>
  4315. </file>
  4316. <file>
  4317. <name>$PROJ_DIR$\..\..\..\..\..\Components\osal\mcu\cc2530\OSAL_Math.s51</name>
  4318. <outputs>
  4319. <tool>
  4320. <name>A8051</name>
  4321. <file> 63</file>
  4322. </tool>
  4323. </outputs>
  4324. </file>
  4325. <file>
  4326. <name>$PROJ_DIR$\..\..\..\..\..\Components\osal\mcu\cc2530\OSAL_Nv.c</name>
  4327. <outputs>
  4328. <tool>
  4329. <name>ICC8051</name>
  4330. <file> 268 102 284</file>
  4331. </tool>
  4332. <tool>
  4333. <name>BICOMP</name>
  4334. <file> 163</file>
  4335. </tool>
  4336. </outputs>
  4337. <inputs>
  4338. <tool>
  4339. <name>ICC8051</name>
  4340. <file> 491 498 33 12 7 27 13 25 179 21 458 466 446 490</file>
  4341. </tool>
  4342. <tool>
  4343. <name>BICOMP</name>
  4344. <file> 12 466 13 25 21 458 490 33 7 27 179 446</file>
  4345. </tool>
  4346. </inputs>
  4347. </file>
  4348. <file>
  4349. <name>$PROJ_DIR$\..\..\..\..\..\Components\osal\common\OSAL_Clock.c</name>
  4350. <outputs>
  4351. <tool>
  4352. <name>ICC8051</name>
  4353. <file> 74 239 113</file>
  4354. </tool>
  4355. <tool>
  4356. <name>BICOMP</name>
  4357. <file> 302</file>
  4358. </tool>
  4359. </outputs>
  4360. <inputs>
  4361. <tool>
  4362. <name>ICC8051</name>
  4363. <file> 491 498 446 25 13 479 27 179 18 12 7 14 456 464 471 455</file>
  4364. </tool>
  4365. <tool>
  4366. <name>BICOMP</name>
  4367. <file> 14 179 471 13 456 27 446 479 455 25 18 7 12 464</file>
  4368. </tool>
  4369. </inputs>
  4370. </file>
  4371. <file>
  4372. <name>$PROJ_DIR$\..\..\..\..\..\Components\osal\common\OSAL_PwrMgr.c</name>
  4373. <outputs>
  4374. <tool>
  4375. <name>ICC8051</name>
  4376. <file> 277 142 299</file>
  4377. </tool>
  4378. <tool>
  4379. <name>BICOMP</name>
  4380. <file> 333</file>
  4381. </tool>
  4382. </outputs>
  4383. <inputs>
  4384. <tool>
  4385. <name>ICC8051</name>
  4386. <file> 491 498 446 25 13 479 27 179 18 12 7 14 456 464 471 465 467</file>
  4387. </tool>
  4388. <tool>
  4389. <name>BICOMP</name>
  4390. <file> 27 13 471 456 14 179 479 465 467 25 18 12 464 446 7</file>
  4391. </tool>
  4392. </inputs>
  4393. </file>
  4394. <file>
  4395. <name>$PROJ_DIR$\..\..\..\..\..\Components\osal\common\OSAL_Timers.c</name>
  4396. <outputs>
  4397. <tool>
  4398. <name>ICC8051</name>
  4399. <file> 345 319 370</file>
  4400. </tool>
  4401. <tool>
  4402. <name>BICOMP</name>
  4403. <file> 174</file>
  4404. </tool>
  4405. </outputs>
  4406. <inputs>
  4407. <tool>
  4408. <name>ICC8051</name>
  4409. <file> 491 498 446 25 13 479 27 179 18 12 7 14 456 464 471 22</file>
  4410. </tool>
  4411. <tool>
  4412. <name>BICOMP</name>
  4413. <file> 18 179 22 13 456 25 479 471 27 14 12 464 446 7</file>
  4414. </tool>
  4415. </inputs>
  4416. </file>
  4417. <file>
  4418. <name>$PROJ_DIR$\..\..\..\..\..\Components\stack\af\AF.c</name>
  4419. <outputs>
  4420. <tool>
  4421. <name>ICC8051</name>
  4422. <file> 281 97 238</file>
  4423. </tool>
  4424. <tool>
  4425. <name>BICOMP</name>
  4426. <file> 126</file>
  4427. </tool>
  4428. </outputs>
  4429. <inputs>
  4430. <tool>
  4431. <name>ICC8051</name>
  4432. <file> 491 498 456 446 25 13 464 471 448 466 490 472 503 495 6 195 450 392 390 474 385 468 408 463 452 387 492 501 406 449</file>
  4433. </tool>
  4434. <tool>
  4435. <name>BICOMP</name>
  4436. <file> 448 466 387 446 385 390 463 468 406 471 25 450 490 408 456 452 492 449 464 13 472 474 503 392 495 6 195 501</file>
  4437. </tool>
  4438. </inputs>
  4439. </file>
  4440. <file>
  4441. <name>$PROJ_DIR$\..\..\..\..\..\Components\services\saddr\saddr.c</name>
  4442. <outputs>
  4443. <tool>
  4444. <name>ICC8051</name>
  4445. <file> 173 76 81</file>
  4446. </tool>
  4447. <tool>
  4448. <name>BICOMP</name>
  4449. <file> 373</file>
  4450. </tool>
  4451. </outputs>
  4452. <inputs>
  4453. <tool>
  4454. <name>ICC8051</name>
  4455. <file> 491 498 25 456 446 13 464 471 490</file>
  4456. </tool>
  4457. <tool>
  4458. <name>BICOMP</name>
  4459. <file> 446 490 13 456 464 25 471</file>
  4460. </tool>
  4461. </inputs>
  4462. </file>
  4463. <file>
  4464. <name>$PROJ_DIR$\..\..\..\..\..\Components\zmac\f8w\zmac_cb.c</name>
  4465. <outputs>
  4466. <tool>
  4467. <name>ICC8051</name>
  4468. <file> 380 351 60</file>
  4469. </tool>
  4470. <tool>
  4471. <name>BICOMP</name>
  4472. <file> 108</file>
  4473. </tool>
  4474. </outputs>
  4475. <inputs>
  4476. <tool>
  4477. <name>ICC8051</name>
  4478. <file> 491 498 466 446 25 13 490 456 464 471 503 495 6 195 190 27 179 472 450 392 390 474 463 186 28 191</file>
  4479. </tool>
  4480. <tool>
  4481. <name>BICOMP</name>
  4482. <file> 6 25 466 28 186 450 27 446 390 503 490 13 471 495 195 179 474 456 190 472 463 191 464 392</file>
  4483. </tool>
  4484. </inputs>
  4485. </file>
  4486. <file>
  4487. <name>$PROJ_DIR$\..\..\..\ZMain\TI2530DB\chipcon_cstartup.s51</name>
  4488. <outputs>
  4489. <tool>
  4490. <name>A8051</name>
  4491. <file> 360</file>
  4492. </tool>
  4493. </outputs>
  4494. <inputs>
  4495. <tool>
  4496. <name>A8051</name>
  4497. <file> 50 182 181</file>
  4498. </tool>
  4499. </inputs>
  4500. </file>
  4501. <file>
  4502. <name>$PROJ_DIR$\..\..\..\..\..\Components\stack\zdo\ZDApp.c</name>
  4503. <outputs>
  4504. <tool>
  4505. <name>ICC8051</name>
  4506. <file> 292 270 140</file>
  4507. </tool>
  4508. <tool>
  4509. <name>BICOMP</name>
  4510. <file> 159</file>
  4511. </tool>
  4512. </outputs>
  4513. <inputs>
  4514. <tool>
  4515. <name>ICC8051</name>
  4516. <file> 491 498 466 446 25 13 490 503 495 6 195 456 464 471 465 467 458 448 472 450 392 390 474 385 468 408 463 413 492 501 484 482 404 453 480 439 452 479 27 179 18 12 7 14 500 449 31 1 11</file>
  4517. </tool>
  4518. <tool>
  4519. <name>BICOMP</name>
  4520. <file> 468 452 446 25 503 392 11 195 467 501 449 495 464 472 466 474 390 448 492 7 456 482 463 31 6 450 27 465 458 385 413 484 480 439 479 500 1 490 13 471 408 404 14 12 453 18 179</file>
  4521. </tool>
  4522. </inputs>
  4523. </file>
  4524. <file>
  4525. <name>$PROJ_DIR$\..\..\..\Public\public.c</name>
  4526. <outputs>
  4527. <tool>
  4528. <name>ICC8051</name>
  4529. <file> 322 271 244</file>
  4530. </tool>
  4531. <tool>
  4532. <name>BICOMP</name>
  4533. <file> 230</file>
  4534. </tool>
  4535. </outputs>
  4536. <inputs>
  4537. <tool>
  4538. <name>ICC8051</name>
  4539. <file> 491 498 366 179 479 27 13 25 18 12 7 14 456 446 464 471 33 183 194 197 196 198 193</file>
  4540. </tool>
  4541. <tool>
  4542. <name>BICOMP</name>
  4543. <file> 197 13 33 193 479 196 14 179 12 18 183 198 27 464 194 366 456 25 7 446 471</file>
  4544. </tool>
  4545. </inputs>
  4546. </file>
  4547. <file>
  4548. <name>$PROJ_DIR$\..\..\..\..\..\Components\stack\zdo\ZDProfile.c</name>
  4549. <outputs>
  4550. <tool>
  4551. <name>ICC8051</name>
  4552. <file> 62 95 158</file>
  4553. </tool>
  4554. <tool>
  4555. <name>BICOMP</name>
  4556. <file> 332</file>
  4557. </tool>
  4558. </outputs>
  4559. <inputs>
  4560. <tool>
  4561. <name>ICC8051</name>
  4562. <file> 491 498 466 446 25 13 490 456 464 471 448 472 503 495 6 195 450 392 390 474 385 468 408 463 452 404 453 413 501 492 484 482 500 479 27 179 18 12 7 14 398 440 401</file>
  4563. </tool>
  4564. <tool>
  4565. <name>BICOMP</name>
  4566. <file> 446 468 490 13 503 492 179 385 452 479 471 472 6 25 466 474 390 456 501 18 12 401 448 413 500 392 495 195 450 463 408 482 404 484 398 464 453 27 14 7 440</file>
  4567. </tool>
  4568. </inputs>
  4569. </file>
  4570. <file>
  4571. <name>$PROJ_DIR$\..\..\..\..\..\Components\stack\zdo\ZDObject.c</name>
  4572. <outputs>
  4573. <tool>
  4574. <name>ICC8051</name>
  4575. <file> 207 355 246</file>
  4576. </tool>
  4577. <tool>
  4578. <name>BICOMP</name>
  4579. <file> 201</file>
  4580. </tool>
  4581. </outputs>
  4582. <inputs>
  4583. <tool>
  4584. <name>ICC8051</name>
  4585. <file> 491 498 466 446 25 13 490 456 464 471 458 449 452 392 503 495 6 195 390 450 472 474 463 468 408 404 385 453 413 448 484 482 492 501 480 479 27 179 18 12 7 14 1</file>
  4586. </tool>
  4587. <tool>
  4588. <name>BICOMP</name>
  4589. <file> 482 390 466 468 392 484 479 471 450 13 458 404 413 501 463 490 446 474 385 456 449 408 448 492 480 452 1 503 472 18 179 12 25 464 495 6 195 453 27 14 7</file>
  4590. </tool>
  4591. </inputs>
  4592. </file>
  4593. <file>
  4594. <name>$PROJ_DIR$\..\..\..\ZMain\TI2530DB\OnBoard.c</name>
  4595. <outputs>
  4596. <tool>
  4597. <name>ICC8051</name>
  4598. <file> 92 164 213</file>
  4599. </tool>
  4600. <tool>
  4601. <name>BICOMP</name>
  4602. <file> 369</file>
  4603. </tool>
  4604. </outputs>
  4605. <inputs>
  4606. <tool>
  4607. <name>ICC8051</name>
  4608. <file> 491 498 466 446 25 13 490 463 479 27 179 18 12 7 14 456 464 471 440 401 409 439 1 22 11 31 420 192 30 426 28 6 195 427 418 414 37</file>
  4609. </tool>
  4610. <tool>
  4611. <name>BICOMP</name>
  4612. <file> 27 12 192 195 440 420 446 25 28 479 439 11 14 471 466 418 463 456 409 1 22 31 490 7 13 426 18 179 464 401 30 427 414 6 37</file>
  4613. </tool>
  4614. </inputs>
  4615. </file>
  4616. <file>
  4617. <name>$PROJ_DIR$\..\..\..\..\..\Components\stack\zdo\ZDSecMgr.c</name>
  4618. <outputs>
  4619. <tool>
  4620. <name>ICC8051</name>
  4621. <file> 258 247 242</file>
  4622. </tool>
  4623. <tool>
  4624. <name>BICOMP</name>
  4625. <file> 323</file>
  4626. </tool>
  4627. </outputs>
  4628. <inputs>
  4629. <tool>
  4630. <name>ICC8051</name>
  4631. <file> 491 498 466 446 25 13 490 456 464 471 458 463 474 468 450 503 495 6 195 390 408 472 392 413 385 501 448 480 482 404 453 492</file>
  4632. </tool>
  4633. <tool>
  4634. <name>BICOMP</name>
  4635. <file> 450 466 408 472 413 482 474 480 503 390 458 385 404 456 463 468 392 501 446 25 464 490 492 448 13 471 495 6 195 453</file>
  4636. </tool>
  4637. </inputs>
  4638. </file>
  4639. <file>
  4640. <name>$PROJ_DIR$\..\..\..\ZMain\TI2530DB\ZMain.c</name>
  4641. <outputs>
  4642. <tool>
  4643. <name>ICC8051</name>
  4644. <file> 287 252 65</file>
  4645. </tool>
  4646. <tool>
  4647. <name>BICOMP</name>
  4648. <file> 282</file>
  4649. </tool>
  4650. </outputs>
  4651. <inputs>
  4652. <tool>
  4653. <name>ICC8051</name>
  4654. <file> 491 498 448 466 446 25 13 490 472 503 495 6 195 450 392 390 474 385 468 408 456 464 471 463 33 12 7 27 179 21 1 31 16 479 18 14 458</file>
  4655. </tool>
  4656. <tool>
  4657. <name>BICOMP</name>
  4658. <file> 466 458 472 490 13 446 31 450 390 21 479 503 474 408 456 27 33 1 16 385 25 392 495 6 195 471 12 14 448 468 463 464 7 179 18</file>
  4659. </tool>
  4660. </inputs>
  4661. </file>
  4662. <file>
  4663. <name>$PROJ_DIR$\..\..\..\..\..\Components\stack\zdo\ZDConfig.c</name>
  4664. <outputs>
  4665. <tool>
  4666. <name>ICC8051</name>
  4667. <file> 53 110 204</file>
  4668. </tool>
  4669. <tool>
  4670. <name>BICOMP</name>
  4671. <file> 329</file>
  4672. </tool>
  4673. </outputs>
  4674. <inputs>
  4675. <tool>
  4676. <name>ICC8051</name>
  4677. <file> 491 498 466 446 25 13 490 448 472 503 495 6 195 450 392 390 474 385 468 408 456 464 471 463 484 482 404 453 492 501</file>
  4678. </tool>
  4679. <tool>
  4680. <name>BICOMP</name>
  4681. <file> 390 495 392 6 25 466 474 482 492 484 446 472 503 468 456 448 501 490 13 385 450 195 463 464 404 408 471 453</file>
  4682. </tool>
  4683. </inputs>
  4684. </file>
  4685. <file>
  4686. <name>$PROJ_DIR$\..\..\..\..\..\Components\stack\zdo\ZDNwkMgr.c</name>
  4687. <outputs>
  4688. <tool>
  4689. <name>ICC8051</name>
  4690. <file> 103 99 80</file>
  4691. </tool>
  4692. <tool>
  4693. <name>BICOMP</name>
  4694. <file> 315</file>
  4695. </tool>
  4696. </outputs>
  4697. <inputs>
  4698. <tool>
  4699. <name>ICC8051</name>
  4700. <file> 491 498 466 446 25 13 490 452 392 503 495 6 195 390 450 472 474 482 404 385 468 408 456 464 471 463 453 448 492 501 484 500 398 440 401 479 27 179 18 12 7 14 1</file>
  4701. </tool>
  4702. <tool>
  4703. <name>BICOMP</name>
  4704. <file> 472 195 7 392 446 479 385 390 463 25 450 495 408 456 501 482 1 503 6 466 448 453 471 452 484 500 398 490 13 474 404 492 468 464 440 18 27 401 14 179 12</file>
  4705. </tool>
  4706. </inputs>
  4707. </file>
  4708. <file>
  4709. <name>$PROJ_DIR$\..\..\..\..\..\Components\zmac\f8w\zmac.c</name>
  4710. <outputs>
  4711. <tool>
  4712. <name>ICC8051</name>
  4713. <file> 324 228 199</file>
  4714. </tool>
  4715. <tool>
  4716. <name>BICOMP</name>
  4717. <file> 245</file>
  4718. </tool>
  4719. </outputs>
  4720. <inputs>
  4721. <tool>
  4722. <name>ICC8051</name>
  4723. <file> 491 498 466 446 25 13 490 456 464 471 503 495 6 195 191 28 474 463</file>
  4724. </tool>
  4725. <tool>
  4726. <name>BICOMP</name>
  4727. <file> 464 466 474 446 25 490 503 456 191 463 13 471 495 6 195 28</file>
  4728. </tool>
  4729. </inputs>
  4730. </file>
  4731. </configuration>
  4732. <configuration>
  4733. <name>RouterEB</name>
  4734. <outputs>
  4735. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_led.c</file>
  4736. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\include\hal_lcd.h</file>
  4737. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_flash.c</file>
  4738. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_aes.h</file>
  4739. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\high_level\mac_pib.h</file>
  4740. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_adc.c</file>
  4741. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\include\mac_api.h</file>
  4742. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_board_cfg.h</file>
  4743. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_dma.c</file>
  4744. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_uart.c</file>
  4745. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\include\hal_key.h</file>
  4746. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\include\hal_board.h</file>
  4747. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\include\hal_defs.h</file>
  4748. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\include\hal_sleep.h</file>
  4749. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_timer.c</file>
  4750. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\include\hal_drivers.h</file>
  4751. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_sleep.c</file>
  4752. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\include\hal_uart.h</file>
  4753. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_lcd.c</file>
  4754. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_startup.c</file>
  4755. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\include\hal_flash.h</file>
  4756. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\include\hal_timer.h</file>
  4757. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_dma.h</file>
  4758. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_key.c</file>
  4759. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_types.h</file>
  4760. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\high_level\mac_cfg.c</file>
  4761. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_mcu.h</file>
  4762. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\high_level\mac_high_level.h</file>
  4763. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\high_level\mac_pib.c</file>
  4764. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\high_level\mac_spec.h</file>
  4765. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\include\hal_led.h</file>
  4766. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\common\hal_drivers.c</file>
  4767. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\include\hal_adc.h</file>
  4768. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\include\hal_assert.h</file>
  4769. <file>$PROJ_DIR$\..\Source\OSAL_SampleApp.c</file>
  4770. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\common\hal_assert.c</file>
  4771. <file>$PROJ_DIR$\..\Source\dht11.c</file>
  4772. <file>$PROJ_DIR$\..\Source\SampleApp.c</file>
  4773. <file>$PROJ_DIR$\..\Source\SampleApp.h</file>
  4774. <file>$PROJ_DIR$\Source\SampleAppHw.c</file>
  4775. <file>$PROJ_DIR$\..\Source\SampleAppHw.h</file>
  4776. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\_hal_uart_dma.c</file>
  4777. <file>$TOOLKIT_DIR$\inc\iar_common.h</file>
  4778. <file>$PROJ_DIR$\..\..\..\Libraries\TIMAC\bin\TIMAC-CC2530.lib</file>
  4779. <file>$PROJ_DIR$\..\..\..\Libraries\TI2530DB\bin\Router-Pro.lib</file>
  4780. <file>$TOOLKIT_DIR$\inc\ioCC2530.h</file>
  4781. <file>$PROJ_DIR$\..\..\..\Libraries\TI2530DB\bin\Security.lib</file>
  4782. <file>$TOOLKIT_DIR$\inc\iar_cfi.h</file>
  4783. <file>$TOOLKIT_DIR$\inc\iar_check_symbols.h</file>
  4784. <file>$TOOLKIT_DIR$\inc\clib\stdio.h</file>
  4785. <file>$TOOLKIT_DIR$\lib\clib\cl-pli-blxd-1e16x01.r51</file>
  4786. <file>$PROJ_DIR$\..\Source\dht11.h</file>
  4787. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\high_level\mac_security.h</file>
  4788. <file>$TOOLKIT_DIR$\inc\clib\stddef.h</file>
  4789. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\sapi\sapi.h</file>
  4790. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\high_level\mac_data.h</file>
  4791. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_MAC.h</file>
  4792. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\high_level\mac_main.h</file>
  4793. <file>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_mac_cfg.h</file>
  4794. <file>$TOOLKIT_DIR$\inc\clib\stdarg.h</file>
  4795. <file>$PROJ_DIR$\..\..\..\..\..\Components\services\sdata\sdata.h</file>
  4796. <file>$TOOLKIT_DIR$\inc\clib\string.h</file>
  4797. <file>$TOOLKIT_DIR$\inc\clib\sysmac.h</file>
  4798. <file>$PROJ_DIR$\RouterEB\Obj\mac_mem.pbi</file>
  4799. <file>$PROJ_DIR$\RouterEB\List\hal_key.lst</file>
  4800. <file>$PROJ_DIR$\RouterEB\Obj\AF.r51</file>
  4801. <file>$PROJ_DIR$\RouterEB\List\zmac.lst</file>
  4802. <file>$PROJ_DIR$\RouterEB\Obj\MT_ZDO.pbi</file>
  4803. <file>$PROJ_DIR$\RouterEB\Obj\hal_startup.r51</file>
  4804. <file>$PROJ_DIR$\RouterEB\List\ZDProfile.lst</file>
  4805. <file>$PROJ_DIR$\RouterEB\Obj\hal_dma.pbi</file>
  4806. <file>$PROJ_DIR$\RouterEB\List\MT_TASK.s51</file>
  4807. <file>$PROJ_DIR$\RouterEB\Obj\hal_lcd.r51</file>
  4808. <file>$PROJ_DIR$\RouterEB\List\AF.lst</file>
  4809. <file>$PROJ_DIR$\RouterEB\Obj\zmac.r51</file>
  4810. <file>$PROJ_DIR$\RouterEB\Obj\ZDObject.r51</file>
  4811. <file>$PROJ_DIR$\RouterEB\List\hal_sleep.lst</file>
  4812. <file>$PROJ_DIR$\RouterEB\Obj\MT_NWK.r51</file>
  4813. <file>$PROJ_DIR$\RouterEB\List\hal_key.s51</file>
  4814. <file>$PROJ_DIR$\RouterEB\List\mac_sleep.lst</file>
  4815. <file>$PROJ_DIR$\RouterEB\List\SampleAppHw.s51</file>
  4816. <file>$PROJ_DIR$\RouterEB\List\ZDApp.lst</file>
  4817. <file>$PROJ_DIR$\RouterEB\List\mac_radio_defs.s51</file>
  4818. <file>$PROJ_DIR$\RouterEB\List\hal_lcd.lst</file>
  4819. <file>$PROJ_DIR$\RouterEB\Obj\dht11.pbi</file>
  4820. <file>$PROJ_DIR$\RouterEB\Obj\SampleAppHw.r51</file>
  4821. <file>$PROJ_DIR$\RouterEB\List\MT_UART.s51</file>
  4822. <file>$PROJ_DIR$\RouterEB\Obj\OSAL_SampleApp.pbi</file>
  4823. <file>$PROJ_DIR$\RouterEB\Obj\mac_mcu.r51</file>
  4824. <file>$PROJ_DIR$\RouterEB\List\hal_startup.s51</file>
  4825. <file>$PROJ_DIR$\RouterEB\Obj\AF.pbi</file>
  4826. <file>$PROJ_DIR$\RouterEB\List\mac_cfg.s51</file>
  4827. <file>$PROJ_DIR$\RouterEB\Obj\SampleAppHw.pbi</file>
  4828. <file>$PROJ_DIR$\RouterEB\List\mac_rx_onoff.s51</file>
  4829. <file>$PROJ_DIR$\RouterEB\List\hal_assert.lst</file>
  4830. <file>$PROJ_DIR$\RouterEB\Obj\MT_UTIL.pbi</file>
  4831. <file>$PROJ_DIR$\RouterEB\Obj\mac_csp_tx.pbi</file>
  4832. <file>$PROJ_DIR$\RouterEB\List\OSAL_Timers.s51</file>
  4833. <file>$PROJ_DIR$\RouterEB\Obj\mac_csp_tx.r51</file>
  4834. <file>$PROJ_DIR$\RouterEB\Obj\ZGlobals.pbi</file>
  4835. <file>$PROJ_DIR$\RouterEB\List\MT_APP.s51</file>
  4836. <file>$PROJ_DIR$\RouterEB\Obj\hal_timer.r51</file>
  4837. <file>$PROJ_DIR$\RouterEB\Obj\OSAL_Timers.pbi</file>
  4838. <file>$PROJ_DIR$\RouterEB\Obj\hal_drivers.pbi</file>
  4839. <file>$PROJ_DIR$\RouterEB\List\OnBoard.lst</file>
  4840. <file>$PROJ_DIR$\RouterEB\Obj\OSAL.pbi</file>
  4841. <file>$PROJ_DIR$\RouterEB\List\ZGlobals.lst</file>
  4842. <file>$PROJ_DIR$\RouterEB\List\hal_led.s51</file>
  4843. <file>$PROJ_DIR$\RouterEB\List\SampleApp.map</file>
  4844. <file>$PROJ_DIR$\RouterEB\List\mac_radio.lst</file>
  4845. <file>$PROJ_DIR$\RouterEB\List\ZDNwkMgr.s51</file>
  4846. <file>$PROJ_DIR$\RouterEB\List\mac_low_level.lst</file>
  4847. <file>$PROJ_DIR$\RouterEB\List\hal_drivers.lst</file>
  4848. <file>$PROJ_DIR$\RouterEB\Obj\chipcon_cstartup.r51</file>
  4849. <file>$PROJ_DIR$\RouterEB\Obj\mac_tx.r51</file>
  4850. <file>$PROJ_DIR$\RouterEB\List\dht11.s51</file>
  4851. <file>$PROJ_DIR$\RouterEB\Obj\OSAL.r51</file>
  4852. <file>$PROJ_DIR$\RouterEB\Obj\DebugTrace.r51</file>
  4853. <file>$PROJ_DIR$\RouterEB\Obj\hal_lcd.pbi</file>
  4854. <file>$PROJ_DIR$\RouterEB\List\OSAL_Nv.s51</file>
  4855. <file>$PROJ_DIR$\RouterEB\Exe\SampleApp.d51</file>
  4856. <file>$PROJ_DIR$\RouterEB\Obj\MT_TASK.pbi</file>
  4857. <file>$PROJ_DIR$\RouterEB\Obj\ZDProfile.pbi</file>
  4858. <file>$PROJ_DIR$\RouterEB\Obj\MT_TASK.r51</file>
  4859. <file>$PROJ_DIR$\RouterEB\Obj\hal_led.pbi</file>
  4860. <file>$PROJ_DIR$\RouterEB\List\mac_rffrontend.lst</file>
  4861. <file>$PROJ_DIR$\RouterEB\Obj\hal_uart.pbi</file>
  4862. <file>$PROJ_DIR$\RouterEB\List\hal_startup.lst</file>
  4863. <file>$PROJ_DIR$\RouterEB\List\OSAL_Clock.s51</file>
  4864. <file>$PROJ_DIR$\RouterEB\Obj\hal_uart.r51</file>
  4865. <file>$PROJ_DIR$\RouterEB\List\mac_tx.lst</file>
  4866. <file>$PROJ_DIR$\RouterEB\List\mac_rx_onoff.lst</file>
  4867. <file>$PROJ_DIR$\RouterEB\Obj\MT_APP.pbi</file>
  4868. <file>$PROJ_DIR$\RouterEB\List\ZDApp.s51</file>
  4869. <file>$PROJ_DIR$\RouterEB\Obj\ZDApp.r51</file>
  4870. <file>$PROJ_DIR$\RouterEB\Obj\stub_aps.r51</file>
  4871. <file>$PROJ_DIR$\RouterEB\Obj\hal_sleep.r51</file>
  4872. <file>$PROJ_DIR$\RouterEB\List\OSAL_Memory.lst</file>
  4873. <file>$PROJ_DIR$\RouterEB\Obj\mac_mcu.pbi</file>
  4874. <file>$PROJ_DIR$\RouterEB\List\zmac_cb.lst</file>
  4875. <file>$PROJ_DIR$\RouterEB\List\MT_UTIL.s51</file>
  4876. <file>$PROJ_DIR$\RouterEB\Obj\ZDProfile.r51</file>
  4877. <file>$PROJ_DIR$\RouterEB\List\mac_rx.s51</file>
  4878. <file>$PROJ_DIR$\RouterEB\Obj\hal_adc.pbi</file>
  4879. <file>$PROJ_DIR$\RouterEB\List\MT_VERSION.lst</file>
  4880. <file>$PROJ_DIR$\RouterEB\List\stub_aps.s51</file>
  4881. <file>$PROJ_DIR$\RouterEB\List\OSAL_Timers.lst</file>
  4882. <file>$PROJ_DIR$\RouterEB\List\hal_timer.lst</file>
  4883. <file>$PROJ_DIR$\RouterEB\List\mac_autopend.lst</file>
  4884. <file>$PROJ_DIR$\RouterEB\Obj\ZMain.pbi</file>
  4885. <file>$PROJ_DIR$\RouterEB\Obj\mac_backoff_timer.pbi</file>
  4886. <file>$PROJ_DIR$\RouterEB\Obj\mac_radio_defs.pbi</file>
  4887. <file>$PROJ_DIR$\RouterEB\Obj\hal_flash.pbi</file>
  4888. <file>$PROJ_DIR$\RouterEB\List\SampleAppHw.lst</file>
  4889. <file>$PROJ_DIR$\RouterEB\Obj\nwk_globals.r51</file>
  4890. <file>$PROJ_DIR$\RouterEB\List\mac_csp_tx.s51</file>
  4891. <file>$PROJ_DIR$\RouterEB\Obj\mac_rx_onoff.r51</file>
  4892. <file>$PROJ_DIR$\RouterEB\Obj\MT_DEBUG.r51</file>
  4893. <file>$PROJ_DIR$\RouterEB\Obj\MT.r51</file>
  4894. <file>$PROJ_DIR$\RouterEB\List\hal_sleep.s51</file>
  4895. <file>$PROJ_DIR$\RouterEB\Obj\dht11.r51</file>
  4896. <file>$PROJ_DIR$\RouterEB\Obj\OSAL_Timers.r51</file>
  4897. <file>$PROJ_DIR$\RouterEB\Obj\stub_aps.pbi</file>
  4898. <file>$PROJ_DIR$\RouterEB\List\mac_tx.s51</file>
  4899. <file>$PROJ_DIR$\RouterEB\Obj\MT_DEBUG.pbi</file>
  4900. <file>$PROJ_DIR$\RouterEB\List\OSAL_Memory.s51</file>
  4901. <file>$PROJ_DIR$\RouterEB\Obj\OSAL_Clock.pbi</file>
  4902. <file>$PROJ_DIR$\RouterEB\Obj\DebugTrace.pbi</file>
  4903. <file>$PROJ_DIR$\RouterEB\List\mac_low_level.s51</file>
  4904. <file>$PROJ_DIR$\RouterEB\Obj\mac_rx.r51</file>
  4905. <file>$PROJ_DIR$\RouterEB\List\MT_SYS.s51</file>
  4906. <file>$PROJ_DIR$\RouterEB\List\SampleApp.lst</file>
  4907. <file>$PROJ_DIR$\RouterEB\Obj\nwk_globals.pbi</file>
  4908. <file>$PROJ_DIR$\RouterEB\List\MT_UART.lst</file>
  4909. <file>$PROJ_DIR$\RouterEB\List\OSAL.s51</file>
  4910. <file>$PROJ_DIR$\RouterEB\Obj\mac_radio_defs.r51</file>
  4911. <file>$PROJ_DIR$\RouterEB\List\mac_mcu.s51</file>
  4912. <file>$PROJ_DIR$\RouterEB\List\MT_TASK.lst</file>
  4913. <file>$PROJ_DIR$\RouterEB\List\SampleApp.s51</file>
  4914. <file>$PROJ_DIR$\RouterEB\Obj\OnBoard.r51</file>
  4915. <file>$PROJ_DIR$\RouterEB\List\hal_assert.s51</file>
  4916. <file>$PROJ_DIR$\RouterEB\Obj\OSAL_Nv.r51</file>
  4917. <file>$PROJ_DIR$\RouterEB\List\MT_UTIL.lst</file>
  4918. <file>$PROJ_DIR$\RouterEB\List\MT_SYS.lst</file>
  4919. <file>$PROJ_DIR$\RouterEB\List\MT.lst</file>
  4920. <file>$PROJ_DIR$\RouterEB\List\BindingTable.lst</file>
  4921. <file>$PROJ_DIR$\RouterEB\Obj\OSAL_PwrMgr.pbi</file>
  4922. <file>$PROJ_DIR$\RouterEB\List\stub_aps.lst</file>
  4923. <file>$PROJ_DIR$\RouterEB\List\hal_led.lst</file>
  4924. <file>$PROJ_DIR$\RouterEB\Obj\mac_tx.pbi</file>
  4925. <file>$PROJ_DIR$\RouterEB\Obj\zmac_cb.r51</file>
  4926. <file>$PROJ_DIR$\RouterEB\List\OSAL_Nv.lst</file>
  4927. <file>$PROJ_DIR$\RouterEB\List\zmac.s51</file>
  4928. <file>$PROJ_DIR$\RouterEB\List\dht11.lst</file>
  4929. <file>$PROJ_DIR$\RouterEB\List\ZDConfig.s51</file>
  4930. <file>$PROJ_DIR$\RouterEB\Obj\hal_dma.r51</file>
  4931. <file>$PROJ_DIR$\RouterEB\List\MT_NWK.lst</file>
  4932. <file>$PROJ_DIR$\RouterEB\Obj\ZDSecMgr.r51</file>
  4933. <file>$PROJ_DIR$\RouterEB\Obj\mac_radio.pbi</file>
  4934. <file>$PROJ_DIR$\RouterEB\Obj\hal_drivers.r51</file>
  4935. <file>$PROJ_DIR$\RouterEB\List\ZDObject.lst</file>
  4936. <file>$PROJ_DIR$\RouterEB\List\hal_adc.lst</file>
  4937. <file>$PROJ_DIR$\RouterEB\Obj\MT_UTIL.r51</file>
  4938. <file>$PROJ_DIR$\RouterEB\List\hal_flash.s51</file>
  4939. <file>$PROJ_DIR$\RouterEB\List\MT_SAPI.lst</file>
  4940. <file>$PROJ_DIR$\RouterEB\List\MT_AF.s51</file>
  4941. <file>$PROJ_DIR$\RouterEB\Obj\MT_SAPI.r51</file>
  4942. <file>$PROJ_DIR$\RouterEB\Obj\mac_pib.r51</file>
  4943. <file>$PROJ_DIR$\RouterEB\Obj\hal_adc.r51</file>
  4944. <file>$PROJ_DIR$\RouterEB\Obj\saddr.r51</file>
  4945. <file>$PROJ_DIR$\RouterEB\Obj\mac_cfg.r51</file>
  4946. <file>$PROJ_DIR$\RouterEB\Obj\OSAL_Math.r51</file>
  4947. <file>$PROJ_DIR$\RouterEB\Obj\MT_UART.r51</file>
  4948. <file>$PROJ_DIR$\RouterEB\Obj\zmac.pbi</file>
  4949. <file>$PROJ_DIR$\RouterEB\Obj\MT_VERSION.pbi</file>
  4950. <file>$PROJ_DIR$\RouterEB\Obj\MT.pbi</file>
  4951. <file>$PROJ_DIR$\RouterEB\Obj\BindingTable.r51</file>
  4952. <file>$PROJ_DIR$\RouterEB\Obj\OnBoard.pbi</file>
  4953. <file>$PROJ_DIR$\RouterEB\Obj\SampleApp.r51</file>
  4954. <file>$PROJ_DIR$\RouterEB\List\MT_VERSION.s51</file>
  4955. <file>$PROJ_DIR$\RouterEB\List\mac_rffrontend.s51</file>
  4956. <file>$PROJ_DIR$\RouterEB\List\ZMain.lst</file>
  4957. <file>$PROJ_DIR$\RouterEB\Obj\ZDNwkMgr.pbi</file>
  4958. <file>$PROJ_DIR$\RouterEB\List\hal_flash.lst</file>
  4959. <file>$PROJ_DIR$\RouterEB\Obj\OSAL_Clock.r51</file>
  4960. <file>$PROJ_DIR$\RouterEB\List\hal_adc.s51</file>
  4961. <file>$PROJ_DIR$\RouterEB\Obj\MT_ZDO.r51</file>
  4962. <file>$PROJ_DIR$\RouterEB\List\mac_csp_tx.lst</file>
  4963. <file>$PROJ_DIR$\RouterEB\Obj\MT_AF.r51</file>
  4964. <file>$PROJ_DIR$\RouterEB\Obj\mac_sleep.r51</file>
  4965. <file>$PROJ_DIR$\RouterEB\Obj\MT_VERSION.r51</file>
  4966. <file>$PROJ_DIR$\RouterEB\Obj\ZDConfig.pbi</file>
  4967. <file>$PROJ_DIR$\RouterEB\List\MT_NWK.s51</file>
  4968. <file>$PROJ_DIR$\RouterEB\List\zmac_cb.s51</file>
  4969. <file>$PROJ_DIR$\RouterEB\List\mac_autopend.s51</file>
  4970. <file>$PROJ_DIR$\RouterEB\List\mac_mcu.lst</file>
  4971. <file>$PROJ_DIR$\RouterEB\List\MT_ZDO.s51</file>
  4972. <file>$PROJ_DIR$\RouterEB\Obj\mac_low_level.r51</file>
  4973. <file>$PROJ_DIR$\RouterEB\List\MT_DEBUG.lst</file>
  4974. <file>$PROJ_DIR$\RouterEB\Obj\hal_assert.pbi</file>
  4975. <file>$PROJ_DIR$\RouterEB\Obj\MT_SYS.pbi</file>
  4976. <file>$PROJ_DIR$\RouterEB\List\mac_radio_defs.lst</file>
  4977. <file>$PROJ_DIR$\RouterEB\Obj\OSAL_Memory.pbi</file>
  4978. <file>$PROJ_DIR$\RouterEB\List\nwk_globals.s51</file>
  4979. <file>$PROJ_DIR$\RouterEB\List\OSAL_SampleApp.s51</file>
  4980. <file>$PROJ_DIR$\RouterEB\Obj\ZDConfig.r51</file>
  4981. <file>$PROJ_DIR$\RouterEB\Obj\MT_UART.pbi</file>
  4982. <file>$PROJ_DIR$\RouterEB\Obj\hal_timer.pbi</file>
  4983. <file>$PROJ_DIR$\RouterEB\List\hal_dma.lst</file>
  4984. <file>$PROJ_DIR$\RouterEB\Obj\ZGlobals.r51</file>
  4985. <file>$PROJ_DIR$\RouterEB\List\OSAL_PwrMgr.s51</file>
  4986. <file>$PROJ_DIR$\RouterEB\Obj\MT_AF.pbi</file>
  4987. <file>$PROJ_DIR$\RouterEB\List\mac_pib.lst</file>
  4988. <file>$PROJ_DIR$\RouterEB\List\MT_SAPI.s51</file>
  4989. <file>$PROJ_DIR$\RouterEB\List\hal_uart.s51</file>
  4990. <file>$PROJ_DIR$\RouterEB\Obj\mac_autopend.pbi</file>
  4991. <file>$PROJ_DIR$\RouterEB\Obj\OSAL_PwrMgr.r51</file>
  4992. <file>$PROJ_DIR$\RouterEB\List\OSAL.lst</file>
  4993. <file>$PROJ_DIR$\RouterEB\List\mac_radio.s51</file>
  4994. <file>$PROJ_DIR$\RouterEB\Obj\MT_SYS.r51</file>
  4995. <file>$PROJ_DIR$\RouterEB\List\ZDProfile.s51</file>
  4996. <file>$PROJ_DIR$\RouterEB\List\mac_sleep.s51</file>
  4997. <file>$PROJ_DIR$\RouterEB\List\nwk_globals.lst</file>
  4998. <file>$PROJ_DIR$\RouterEB\List\mac_backoff_timer.s51</file>
  4999. <file>$PROJ_DIR$\RouterEB\List\OnBoard.s51</file>
  5000. <file>$PROJ_DIR$\RouterEB\Obj\hal_led.r51</file>
  5001. <file>$PROJ_DIR$\RouterEB\Obj\mac_mem.r51</file>
  5002. <file>$PROJ_DIR$\RouterEB\List\mac_rx.lst</file>
  5003. <file>$PROJ_DIR$\RouterEB\List\MT_APP.lst</file>
  5004. <file>$PROJ_DIR$\RouterEB\Obj\mac_sleep.pbi</file>
  5005. <file>$PROJ_DIR$\RouterEB\List\OSAL_PwrMgr.lst</file>
  5006. <file>$PROJ_DIR$\RouterEB\Obj\mac_low_level.pbi</file>
  5007. <file>$PROJ_DIR$\RouterEB\List\MT.s51</file>
  5008. <file>$PROJ_DIR$\RouterEB\Obj\ZDSecMgr.pbi</file>
  5009. <file>$PROJ_DIR$\RouterEB\List\DebugTrace.s51</file>
  5010. <file>$PROJ_DIR$\RouterEB\Obj\hal_assert.r51</file>
  5011. <file>$PROJ_DIR$\RouterEB\List\mac_mem.s51</file>
  5012. <file>$PROJ_DIR$\RouterEB\List\OSAL_SampleApp.lst</file>
  5013. <file>$PROJ_DIR$\RouterEB\List\ZDConfig.lst</file>
  5014. <file>$PROJ_DIR$\RouterEB\List\hal_lcd.s51</file>
  5015. <file>$PROJ_DIR$\RouterEB\Obj\zmac_cb.pbi</file>
  5016. <file>$PROJ_DIR$\RouterEB\List\MT_DEBUG.s51</file>
  5017. <file>$PROJ_DIR$\RouterEB\Obj\hal_startup.pbi</file>
  5018. <file>$PROJ_DIR$\RouterEB\List\OSAL_Clock.lst</file>
  5019. <file>$PROJ_DIR$\RouterEB\List\ZMain.s51</file>
  5020. <file>$PROJ_DIR$\RouterEB\List\mac_cfg.lst</file>
  5021. <file>$PROJ_DIR$\RouterEB\List\BindingTable.s51</file>
  5022. <file>$PROJ_DIR$\RouterEB\Obj\MT_SAPI.pbi</file>
  5023. <file>$PROJ_DIR$\RouterEB\List\AF.s51</file>
  5024. <file>$PROJ_DIR$\RouterEB\List\MT_ZDO.lst</file>
  5025. <file>$PROJ_DIR$\RouterEB\List\ZGlobals.s51</file>
  5026. <file>$PROJ_DIR$\RouterEB\List\mac_backoff_timer.lst</file>
  5027. <file>$PROJ_DIR$\RouterEB\Obj\OSAL_Nv.pbi</file>
  5028. <file>$PROJ_DIR$\RouterEB\Obj\BindingTable.pbi</file>
  5029. <file>$PROJ_DIR$\RouterEB\List\ZDObject.s51</file>
  5030. <file>$PROJ_DIR$\RouterEB\Obj\OSAL_SampleApp.r51</file>
  5031. <file>$PROJ_DIR$\RouterEB\List\hal_timer.s51</file>
  5032. <file>$PROJ_DIR$\RouterEB\Obj\saddr.pbi</file>
  5033. <file>$PROJ_DIR$\RouterEB\Obj\hal_flash.r51</file>
  5034. <file>$PROJ_DIR$\RouterEB\List\hal_uart.lst</file>
  5035. <file>$PROJ_DIR$\RouterEB\Obj\ZMain.r51</file>
  5036. <file>$PROJ_DIR$\RouterEB\Obj\hal_key.r51</file>
  5037. <file>$PROJ_DIR$\RouterEB\Obj\mac_rffrontend.pbi</file>
  5038. <file>$PROJ_DIR$\RouterEB\List\MT_AF.lst</file>
  5039. <file>$PROJ_DIR$\RouterEB\Obj\mac_cfg.pbi</file>
  5040. <file>$PROJ_DIR$\RouterEB\List\ZDNwkMgr.lst</file>
  5041. <file>$PROJ_DIR$\RouterEB\List\hal_drivers.s51</file>
  5042. <file>$PROJ_DIR$\RouterEB\List\ZDSecMgr.s51</file>
  5043. <file>$PROJ_DIR$\RouterEB\Obj\MT_NWK.pbi</file>
  5044. <file>$PROJ_DIR$\RouterEB\List\saddr.lst</file>
  5045. <file>$PROJ_DIR$\RouterEB\List\mac_mem.lst</file>
  5046. <file>$PROJ_DIR$\RouterEB\Obj\mac_pib.pbi</file>
  5047. <file>$PROJ_DIR$\RouterEB\Obj\mac_rx_onoff.pbi</file>
  5048. <file>$PROJ_DIR$\RouterEB\List\ZDSecMgr.lst</file>
  5049. <file>$PROJ_DIR$\RouterEB\Obj\ZDObject.pbi</file>
  5050. <file>$PROJ_DIR$\RouterEB\List\hal_dma.s51</file>
  5051. <file>$PROJ_DIR$\RouterEB\Obj\SampleApp.pbi</file>
  5052. <file>$PROJ_DIR$\RouterEB\Obj\ZDNwkMgr.r51</file>
  5053. <file>$PROJ_DIR$\RouterEB\Obj\mac_radio.r51</file>
  5054. <file>$PROJ_DIR$\RouterEB\Obj\hal_key.pbi</file>
  5055. <file>$PROJ_DIR$\RouterEB\Obj\ZDApp.pbi</file>
  5056. <file>$PROJ_DIR$\RouterEB\List\saddr.s51</file>
  5057. <file>$PROJ_DIR$\RouterEB\Obj\hal_sleep.pbi</file>
  5058. <file>$PROJ_DIR$\RouterEB\Obj\MT_APP.r51</file>
  5059. <file>$PROJ_DIR$\RouterEB\List\DebugTrace.lst</file>
  5060. <file>$PROJ_DIR$\RouterEB\Obj\mac_rx.pbi</file>
  5061. <file>$PROJ_DIR$\RouterEB\Obj\mac_backoff_timer.r51</file>
  5062. <file>$PROJ_DIR$\RouterEB\Obj\mac_rffrontend.r51</file>
  5063. <file>$PROJ_DIR$\RouterEB\Obj\mac_autopend.r51</file>
  5064. <file>$PROJ_DIR$\RouterEB\List\mac_pib.s51</file>
  5065. <file>$PROJ_DIR$\RouterEB\Obj\OSAL_Memory.r51</file>
  5066. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_UART.c</file>
  5067. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_ZDO.c</file>
  5068. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\APSMEDE.h</file>
  5069. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_DEBUG.h</file>
  5070. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\aps_groups.h</file>
  5071. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_APP.c</file>
  5072. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_UTIL.h</file>
  5073. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\AssocList.h</file>
  5074. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\BindingTable.c</file>
  5075. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\NLMEDE.h</file>
  5076. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_TASK.c</file>
  5077. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_NWK.c</file>
  5078. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_SYS.c</file>
  5079. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_DEBUG.c</file>
  5080. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_SAPI.h</file>
  5081. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_ZDO.h</file>
  5082. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_NWK.h</file>
  5083. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_AF.h</file>
  5084. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_RPC.h</file>
  5085. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_TASK.h</file>
  5086. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_APP.h</file>
  5087. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\APS.h</file>
  5088. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_SAPI.c</file>
  5089. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\aps_frag.h</file>
  5090. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_VERSION.h</file>
  5091. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\BindingTable.h</file>
  5092. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_SYS.h</file>
  5093. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_UART.h</file>
  5094. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_UTIL.c</file>
  5095. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_VERSION.c</file>
  5096. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\AddrMgr.h</file>
  5097. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_assert.h</file>
  5098. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_low_level.h</file>
  5099. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_low_level.c</file>
  5100. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_rx.h</file>
  5101. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\single_chip\mac_csp_tx.h</file>
  5102. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_rx.c</file>
  5103. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\single_chip\mac_radio_defs.h</file>
  5104. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\DebugTrace.c</file>
  5105. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT.c</file>
  5106. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\single_chip\mac_radio_defs.c</file>
  5107. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\single_chip\mac_mcu.c</file>
  5108. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_backoff_timer.h</file>
  5109. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\single_chip\mac_mcu.h</file>
  5110. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\single_chip\mac_mem.h</file>
  5111. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\single_chip\mac_rffrontend.c</file>
  5112. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_radio.c</file>
  5113. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_rx_onoff.c</file>
  5114. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_sleep.c</file>
  5115. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_sleep.h</file>
  5116. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_tx.c</file>
  5117. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_autopend.c</file>
  5118. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_tx.h</file>
  5119. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_radio.h</file>
  5120. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\single_chip\mac_csp_tx.c</file>
  5121. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\single_chip\mac_mem.c</file>
  5122. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\DebugTrace.h</file>
  5123. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT.h</file>
  5124. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_autopend.h</file>
  5125. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_rx_onoff.h</file>
  5126. <file>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_AF.c</file>
  5127. <file>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_backoff_timer.c</file>
  5128. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\stub_aps.c</file>
  5129. <file>$PROJ_DIR$\..\..\..\..\..\Components\osal\include\comdef.h</file>
  5130. <file>$PROJ_DIR$\..\..\..\..\..\Components\osal\common\OSAL.c</file>
  5131. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\af\AF.h</file>
  5132. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\rtg.h</file>
  5133. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\nwk_bufs.h</file>
  5134. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\nwk_globals.c</file>
  5135. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\nwk_util.h</file>
  5136. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\reflecttrack.h</file>
  5137. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\stub_aps.h</file>
  5138. <file>$PROJ_DIR$\..\..\..\..\..\Components\osal\include\OSAL_Clock.h</file>
  5139. <file>$PROJ_DIR$\..\..\..\..\..\Components\osal\include\OSAL.h</file>
  5140. <file>$PROJ_DIR$\..\..\..\..\..\Components\osal\common\OSAL_Memory.c</file>
  5141. <file>$PROJ_DIR$\..\..\..\..\..\Components\osal\include\OSAL_Nv.h</file>
  5142. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\sys\ZGlobals.c</file>
  5143. <file>$PROJ_DIR$\..\..\..\..\..\Components\osal\mcu\cc2530\OSAL_Math.s51</file>
  5144. <file>$PROJ_DIR$\..\..\..\..\..\Components\osal\mcu\cc2530\OSAL_Nv.c</file>
  5145. <file>$PROJ_DIR$\..\..\..\..\..\Components\osal\common\OSAL_Clock.c</file>
  5146. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\sys\ZGlobals.h</file>
  5147. <file>$PROJ_DIR$\..\..\..\..\..\Components\osal\include\OSAL_Memory.h</file>
  5148. <file>$PROJ_DIR$\..\..\..\..\..\Components\osal\include\OSAL_Tasks.h</file>
  5149. <file>$PROJ_DIR$\..\..\..\..\..\Components\osal\include\ZComDef.h</file>
  5150. <file>$PROJ_DIR$\..\..\..\..\..\Components\osal\include\OSAL_PwrMgr.h</file>
  5151. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\nwk_globals.h</file>
  5152. <file>$PROJ_DIR$\..\..\..\..\..\Components\osal\common\OSAL_PwrMgr.c</file>
  5153. <file>$PROJ_DIR$\..\..\..\..\..\Components\osal\common\OSAL_Timers.c</file>
  5154. <file>$PROJ_DIR$\..\..\..\..\..\Components\osal\include\OSAL_Timers.h</file>
  5155. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\nwk.h</file>
  5156. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\af\AF.c</file>
  5157. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\sec\ssp.h</file>
  5158. <file>$PROJ_DIR$\..\..\..\..\..\Components\services\saddr\saddr.c</file>
  5159. <file>$PROJ_DIR$\..\..\..\..\..\Components\zmac\f8w\zmac_cb.c</file>
  5160. <file>$PROJ_DIR$\..\..\..\ZMain\TI2530DB\chipcon_cstartup.s51</file>
  5161. <file>$PROJ_DIR$\..\..\..\ZMain\TI2530DB\OnBoard.h</file>
  5162. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\zdo\ZDSecMgr.h</file>
  5163. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\zdo\ZDApp.h</file>
  5164. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\zdo\ZDApp.c</file>
  5165. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\zdo\ZDObject.h</file>
  5166. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\zdo\ZDProfile.c</file>
  5167. <file>$PROJ_DIR$\..\..\..\Tools\CC2530DB\f8wRouter.cfg</file>
  5168. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\zdo\ZDObject.c</file>
  5169. <file>$PROJ_DIR$\..\..\..\ZMain\TI2530DB\OnBoard.c</file>
  5170. <file>$PROJ_DIR$\..\..\..\..\..\Components\services\saddr\saddr.h</file>
  5171. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\zdo\ZDProfile.h</file>
  5172. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\zdo\ZDSecMgr.c</file>
  5173. <file>$PROJ_DIR$\..\..\..\ZMain\TI2530DB\ZMain.c</file>
  5174. <file>$PROJ_DIR$\..\..\..\..\..\Components\zmac\f8w\zmac_internal.h</file>
  5175. <file>$PROJ_DIR$\..\..\..\Tools\CC2530DB\f8w2530.xcl</file>
  5176. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\zdo\ZDConfig.c</file>
  5177. <file>$PROJ_DIR$\..\..\..\Tools\CC2530DB\f8wConfig.cfg</file>
  5178. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\zdo\ZDNwkMgr.c</file>
  5179. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\zdo\ZDNwkMgr.h</file>
  5180. <file>$PROJ_DIR$\..\..\..\..\..\Components\stack\zdo\ZDConfig.h</file>
  5181. <file>$PROJ_DIR$\..\..\..\..\..\Components\zmac\f8w\zmac.c</file>
  5182. <file>$PROJ_DIR$\..\..\..\..\..\Components\zmac\ZMAC.h</file>
  5183. </outputs>
  5184. <file>
  5185. <name>[ROOT_NODE]</name>
  5186. <outputs>
  5187. <tool>
  5188. <name>XLINK</name>
  5189. <file> 120 108</file>
  5190. </tool>
  5191. </outputs>
  5192. </file>
  5193. <file>
  5194. <name>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_led.c</name>
  5195. <outputs>
  5196. <tool>
  5197. <name>ICC8051</name>
  5198. <file> 107 188 265</file>
  5199. </tool>
  5200. <tool>
  5201. <name>BICOMP</name>
  5202. <file> 124</file>
  5203. </tool>
  5204. </outputs>
  5205. <inputs>
  5206. <tool>
  5207. <name>ICC8051</name>
  5208. <file> 432 442 26 12 24 45 15 30 11 7 404 394 412 419</file>
  5209. </tool>
  5210. <tool>
  5211. <name>BICOMP</name>
  5212. <file> 24 45 30 12 7 394 11 15 404 26 419 412</file>
  5213. </tool>
  5214. </inputs>
  5215. </file>
  5216. <file>
  5217. <name>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_flash.c</name>
  5218. <outputs>
  5219. <tool>
  5220. <name>ICC8051</name>
  5221. <file> 203 223 298</file>
  5222. </tool>
  5223. <tool>
  5224. <name>BICOMP</name>
  5225. <file> 152</file>
  5226. </tool>
  5227. </outputs>
  5228. <inputs>
  5229. <tool>
  5230. <name>ICC8051</name>
  5231. <file> 432 442 7 26 12 24 45 22 11 20</file>
  5232. </tool>
  5233. <tool>
  5234. <name>BICOMP</name>
  5235. <file> 26 24 20 12 45 7 22 11</file>
  5236. </tool>
  5237. </inputs>
  5238. </file>
  5239. <file>
  5240. <name>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_adc.c</name>
  5241. <outputs>
  5242. <tool>
  5243. <name>ICC8051</name>
  5244. <file> 225 201 208</file>
  5245. </tool>
  5246. <tool>
  5247. <name>BICOMP</name>
  5248. <file> 143</file>
  5249. </tool>
  5250. </outputs>
  5251. <inputs>
  5252. <tool>
  5253. <name>ICC8051</name>
  5254. <file> 432 442 32 11 7 26 12 24 45</file>
  5255. </tool>
  5256. <tool>
  5257. <name>BICOMP</name>
  5258. <file> 24 26 11 12 7 45 32</file>
  5259. </tool>
  5260. </inputs>
  5261. </file>
  5262. <file>
  5263. <name>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_dma.c</name>
  5264. <outputs>
  5265. <tool>
  5266. <name>ICC8051</name>
  5267. <file> 315 248 195</file>
  5268. </tool>
  5269. <tool>
  5270. <name>BICOMP</name>
  5271. <file> 70</file>
  5272. </tool>
  5273. </outputs>
  5274. <inputs>
  5275. <tool>
  5276. <name>ICC8051</name>
  5277. <file> 432 442 24 12 22 11 7 26 45 17</file>
  5278. </tool>
  5279. <tool>
  5280. <name>BICOMP</name>
  5281. <file> 26 17 11 22 7 24 12 45</file>
  5282. </tool>
  5283. </inputs>
  5284. </file>
  5285. <file>
  5286. <name>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_uart.c</name>
  5287. <outputs>
  5288. <tool>
  5289. <name>ICC8051</name>
  5290. <file> 254 299 129</file>
  5291. </tool>
  5292. <tool>
  5293. <name>BICOMP</name>
  5294. <file> 126</file>
  5295. </tool>
  5296. </outputs>
  5297. <inputs>
  5298. <tool>
  5299. <name>ICC8051</name>
  5300. <file> 432 442 7 26 12 24 45 17 11 41 33 22 358 426 13 404 394 412 419</file>
  5301. </tool>
  5302. <tool>
  5303. <name>BICOMP</name>
  5304. <file> 426 24 11 17 26 12 45 419 41 22 358 404 394 7 33 13 412</file>
  5305. </tool>
  5306. </inputs>
  5307. </file>
  5308. <file>
  5309. <name>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_timer.c</name>
  5310. <outputs>
  5311. <tool>
  5312. <name>ICC8051</name>
  5313. <file> 296 147 101</file>
  5314. </tool>
  5315. <tool>
  5316. <name>BICOMP</name>
  5317. <file> 247</file>
  5318. </tool>
  5319. </outputs>
  5320. <inputs>
  5321. <tool>
  5322. <name>ICC8051</name>
  5323. <file> 432 442</file>
  5324. </tool>
  5325. </inputs>
  5326. </file>
  5327. <file>
  5328. <name>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_sleep.c</name>
  5329. <outputs>
  5330. <tool>
  5331. <name>ICC8051</name>
  5332. <file> 159 76 136</file>
  5333. </tool>
  5334. <tool>
  5335. <name>BICOMP</name>
  5336. <file> 322</file>
  5337. </tool>
  5338. </outputs>
  5339. <inputs>
  5340. <tool>
  5341. <name>ICC8051</name>
  5342. <file> 432 442 24 26 12 45 11 7 13 30 10 6 435 60 404 394 412 419 413 415 426 17 15 33 374 27</file>
  5343. </tool>
  5344. <tool>
  5345. <name>BICOMP</name>
  5346. <file> 24 419 12 30 15 45 26 11 6 415 374 7 435 404 13 10 413 426 33 60 394 17 27 412</file>
  5347. </tool>
  5348. </inputs>
  5349. </file>
  5350. <file>
  5351. <name>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_lcd.c</name>
  5352. <outputs>
  5353. <tool>
  5354. <name>ICC8051</name>
  5355. <file> 279 83 72</file>
  5356. </tool>
  5357. <tool>
  5358. <name>BICOMP</name>
  5359. <file> 118</file>
  5360. </tool>
  5361. </outputs>
  5362. <inputs>
  5363. <tool>
  5364. <name>ICC8051</name>
  5365. <file> 432 442 24 1 11 7 26 12 45 404 394 412 419 426 17 13 33 61 62 387</file>
  5366. </tool>
  5367. <tool>
  5368. <name>BICOMP</name>
  5369. <file> 7 12 11 62 33 404 24 45 412 13 1 426 61 387 26 394 419 17</file>
  5370. </tool>
  5371. </inputs>
  5372. </file>
  5373. <file>
  5374. <name>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_startup.c</name>
  5375. <outputs>
  5376. <tool>
  5377. <name>ICC8051</name>
  5378. <file> 89 127 68</file>
  5379. </tool>
  5380. <tool>
  5381. <name>BICOMP</name>
  5382. <file> 282</file>
  5383. </tool>
  5384. </outputs>
  5385. <inputs>
  5386. <tool>
  5387. <name>ICC8051</name>
  5388. <file> 432 442 11 7 26 12 24 45</file>
  5389. </tool>
  5390. <tool>
  5391. <name>BICOMP</name>
  5392. <file> 12 45 7 26 24 11</file>
  5393. </tool>
  5394. </inputs>
  5395. </file>
  5396. <file>
  5397. <name>$PROJ_DIR$\..\..\..\..\..\Components\hal\target\CC2530EB\hal_key.c</name>
  5398. <outputs>
  5399. <tool>
  5400. <name>ICC8051</name>
  5401. <file> 78 64 301</file>
  5402. </tool>
  5403. <tool>
  5404. <name>BICOMP</name>
  5405. <file> 319</file>
  5406. </tool>
  5407. </outputs>
  5408. <inputs>
  5409. <tool>
  5410. <name>ICC8051</name>
  5411. <file> 432 442 26 12 24 45 11 7 15 32 10 404 394 412 419</file>
  5412. </tool>
  5413. <tool>
  5414. <name>BICOMP</name>
  5415. <file> 24 15 394 10 26 12 11 32 404 45 7 419 412</file>
  5416. </tool>
  5417. </inputs>
  5418. </file>
  5419. <file>
  5420. <name>$PROJ_DIR$\..\..\..\..\..\Components\mac\high_level\mac_cfg.c</name>
  5421. <outputs>
  5422. <tool>
  5423. <name>ICC8051</name>
  5424. <file> 91 285 210</file>
  5425. </tool>
  5426. <tool>
  5427. <name>BICOMP</name>
  5428. <file> 304</file>
  5429. </tool>
  5430. </outputs>
  5431. <inputs>
  5432. <tool>
  5433. <name>ICC8051</name>
  5434. <file> 432 442 6 24 435 60</file>
  5435. </tool>
  5436. <tool>
  5437. <name>BICOMP</name>
  5438. <file> 24 60 435 6</file>
  5439. </tool>
  5440. </inputs>
  5441. </file>
  5442. <file>
  5443. <name>$PROJ_DIR$\..\..\..\..\..\Components\mac\high_level\mac_pib.c</name>
  5444. <outputs>
  5445. <tool>
  5446. <name>ICC8051</name>
  5447. <file> 329 252 207</file>
  5448. </tool>
  5449. <tool>
  5450. <name>BICOMP</name>
  5451. <file> 311</file>
  5452. </tool>
  5453. </outputs>
  5454. <inputs>
  5455. <tool>
  5456. <name>ICC8051</name>
  5457. <file> 432 442 26 12 24 45 11 7 6 435 60 29 363 27 368 58 374 375 366 362 33 13 57 4 404 394 412 419 53 62</file>
  5458. </tool>
  5459. <tool>
  5460. <name>BICOMP</name>
  5461. <file> 404 24 366 363 26 60 12 374 6 57 58 11 29 368 4 53 45 7 27 412 62 435 375 362 13 33 394 419</file>
  5462. </tool>
  5463. </inputs>
  5464. </file>
  5465. <file>
  5466. <name>$PROJ_DIR$\..\..\..\..\..\Components\hal\common\hal_drivers.c</name>
  5467. <outputs>
  5468. <tool>
  5469. <name>ICC8051</name>
  5470. <file> 306 112 199</file>
  5471. </tool>
  5472. <tool>
  5473. <name>BICOMP</name>
  5474. <file> 103</file>
  5475. </tool>
  5476. </outputs>
  5477. <inputs>
  5478. <tool>
  5479. <name>ICC8051</name>
  5480. <file> 432 442 24 404 394 12 412 419 15 32 11 7 26 45 22 10 1 30 21 17 13 3 414 435</file>
  5481. </tool>
  5482. <tool>
  5483. <name>BICOMP</name>
  5484. <file> 7 12 10 17 394 24 45 11 15 30 419 26 435 404 32 22 1 21 13 3 412 414</file>
  5485. </tool>
  5486. </inputs>
  5487. </file>
  5488. <file>
  5489. <name>$PROJ_DIR$\..\Source\OSAL_SampleApp.c</name>
  5490. <outputs>
  5491. <tool>
  5492. <name>ICC8051</name>
  5493. <file> 244 277 295</file>
  5494. </tool>
  5495. <tool>
  5496. <name>BICOMP</name>
  5497. <file> 87</file>
  5498. </tool>
  5499. </outputs>
  5500. <inputs>
  5501. <tool>
  5502. <name>ICC8051</name>
  5503. <file> 432 442 414 394 24 12 435 15 404 412 419 413 388 349 350 420 447 439 6 60 398 340 338 422 352 333 416 356 411 401 428 396 436 445 444 400 354 38</file>
  5504. </tool>
  5505. <tool>
  5506. <name>BICOMP</name>
  5507. <file> 412 435 352 414 444 349 398 420 340 396 400 404 350 354 12 338 401 356 15 413 388 428 38 394 24 419 422 333 447 436 445 439 6 60 416 411</file>
  5508. </tool>
  5509. </inputs>
  5510. </file>
  5511. <file>
  5512. <name>$PROJ_DIR$\..\..\..\..\..\Components\hal\common\hal_assert.c</name>
  5513. <outputs>
  5514. <tool>
  5515. <name>ICC8051</name>
  5516. <file> 180 94 275</file>
  5517. </tool>
  5518. <tool>
  5519. <name>BICOMP</name>
  5520. <file> 239</file>
  5521. </tool>
  5522. </outputs>
  5523. <inputs>
  5524. <tool>
  5525. <name>ICC8051</name>
  5526. <file> 432 442 33 24 11 7 26 12 45 365 27 6 435 60 383</file>
  5527. </tool>
  5528. <tool>
  5529. <name>BICOMP</name>
  5530. <file> 6 26 11 365 12 27 24 383 7 45 435 33 60</file>
  5531. </tool>
  5532. </inputs>
  5533. </file>
  5534. <file>
  5535. <name>$PROJ_DIR$\..\Source\dht11.c</name>
  5536. <outputs>
  5537. <tool>
  5538. <name>ICC8051</name>
  5539. <file> 115 193 160</file>
  5540. </tool>
  5541. <tool>
  5542. <name>BICOMP</name>
  5543. <file> 84</file>
  5544. </tool>
  5545. </outputs>
  5546. <inputs>
  5547. <tool>
  5548. <name>ICC8051</name>
  5549. <file> 432 442 51 45</file>
  5550. </tool>
  5551. <tool>
  5552. <name>BICOMP</name>
  5553. <file> 45 51</file>
  5554. </tool>
  5555. </inputs>
  5556. </file>
  5557. <file>
  5558. <name>$PROJ_DIR$\..\Source\SampleApp.c</name>
  5559. <outputs>
  5560. <tool>
  5561. <name>ICC8051</name>
  5562. <file> 178 171 218</file>
  5563. </tool>
  5564. <tool>
  5565. <name>BICOMP</name>
  5566. <file> 316</file>
  5567. </tool>
  5568. </outputs>
  5569. <inputs>
  5570. <tool>
  5571. <name>ICC8051</name>
  5572. <file> 432 442 404 394 24 12 412 419 411 414 435 396 420 447 439 6 60 398 340 338 422 333 416 356 335 428 352 401 436 445 38 40 426 26 45 17 11 7 13 30 10 358 351 388 349 51 49 59 62 61</file>
  5573. </tool>
  5574. <tool>
  5575. <name>BICOMP</name>
  5576. <file> 447 414 12 61 419 416 340 396 30 404 428 388 24 420 6 422 338 401 13 45 11 40 358 51 394 435 439 60 398 411 333 445 26 426 62 335 38 10 351 17 49 412 356 352 436 7 349 59</file>
  5577. </tool>
  5578. </inputs>
  5579. </file>
  5580. <file>
  5581. <name>$PROJ_DIR$\Source\SampleAppHw.c</name>
  5582. <outputs>
  5583. <tool>
  5584. <name>ICC8051</name>
  5585. <file> 80 153 85</file>
  5586. </tool>
  5587. <tool>
  5588. <name>BICOMP</name>
  5589. <file> 92</file>
  5590. </tool>
  5591. </outputs>
  5592. <inputs>
  5593. <tool>
  5594. <name>ICC8051</name>
  5595. <file> 432 442 414 394 24 12 435 26 45 40</file>
  5596. </tool>
  5597. <tool>
  5598. <name>BICOMP</name>
  5599. <file> 12 394 24 26 40 435 45 414</file>
  5600. </tool>
  5601. </inputs>
  5602. </file>
  5603. <file>
  5604. <name>$PROJ_DIR$\RouterEB\Exe\SampleApp.d51</name>
  5605. <outputs>
  5606. <tool>
  5607. <name>XLINK</name>
  5608. <file> 108</file>
  5609. </tool>
  5610. </outputs>
  5611. <inputs>
  5612. <tool>
  5613. <name>XLINK</name>
  5614. <file> 440 65 216 113 117 160 208 275 195 199 298 301 72 265 136 68 101 129 328 326 210 98 237 88 266 207 318 175 327 169 156 229 114 158 228 323 157 77 206 259 123 212 202 230 226 154 179 116 224 211 330 181 256 295 161 209 218 85 135 134 245 317 75 141 197 249 74 190 300 50 44 46 43</file>
  5615. </tool>
  5616. </inputs>
  5617. </file>
  5618. <file>
  5619. <name>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_UART.c</name>
  5620. <outputs>
  5621. <tool>
  5622. <name>ICC8051</name>
  5623. <file> 86 173 212</file>
  5624. </tool>
  5625. <tool>
  5626. <name>BICOMP</name>
  5627. <file> 246</file>
  5628. </tool>
  5629. </outputs>
  5630. <inputs>
  5631. <tool>
  5632. <name>ICC8051</name>
  5633. <file> 432 442 414 394 24 12 435 404 412 419 17 11 7 26 45 388 349 358 426 13</file>
  5634. </tool>
  5635. <tool>
  5636. <name>BICOMP</name>
  5637. <file> 394 24 358 412 11 414 17 12 404 388 435 419 7 26 45 349 426 13</file>
  5638. </tool>
  5639. </inputs>
  5640. </file>
  5641. <file>
  5642. <name>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_ZDO.c</name>
  5643. <outputs>
  5644. <tool>
  5645. <name>ICC8051</name>
  5646. <file> 236 289 226</file>
  5647. </tool>
  5648. <tool>
  5649. <name>BICOMP</name>
  5650. <file> 67</file>
  5651. </tool>
  5652. </outputs>
  5653. <inputs>
  5654. <tool>
  5655. <name>ICC8051</name>
  5656. <file> 432 442 414 394 24 12 435 404 412 419 406 388 349 346 333 416 398 447 439 6 60 338 356 420 340 422 411 396 436 445 430 428 352 401 426 26 45 17 11 7 13 400</file>
  5657. </tool>
  5658. <tool>
  5659. <name>BICOMP</name>
  5660. <file> 420 435 404 349 398 394 422 340 396 436 426 414 388 400 24 411 333 428 12 419 430 416 338 447 445 26 406 346 412 356 439 6 60 352 401 17 7 13 45 11</file>
  5661. </tool>
  5662. </inputs>
  5663. </file>
  5664. <file>
  5665. <name>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_APP.c</name>
  5666. <outputs>
  5667. <tool>
  5668. <name>ICC8051</name>
  5669. <file> 100 268 323</file>
  5670. </tool>
  5671. <tool>
  5672. <name>BICOMP</name>
  5673. <file> 132</file>
  5674. </tool>
  5675. </outputs>
  5676. <inputs>
  5677. <tool>
  5678. <name>ICC8051</name>
  5679. <file> 432 442 414 394 24 12 435 388 349 351 404 412 419 348 396 420 447 439 6 60 398 340 338 422 333 416 356 411 426 26 45 17 11 7 13</file>
  5680. </tool>
  5681. <tool>
  5682. <name>BICOMP</name>
  5683. <file> 7 414 398 412 333 349 356 351 394 24 396 422 13 388 348 435 12 404 419 426 420 447 340 338 26 439 6 60 416 411 17 45 11</file>
  5684. </tool>
  5685. </inputs>
  5686. </file>
  5687. <file>
  5688. <name>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\BindingTable.c</name>
  5689. <outputs>
  5690. <tool>
  5691. <name>ICC8051</name>
  5692. <file> 286 185 216</file>
  5693. </tool>
  5694. <tool>
  5695. <name>BICOMP</name>
  5696. <file> 293</file>
  5697. </tool>
  5698. </outputs>
  5699. <inputs>
  5700. <tool>
  5701. <name>ICC8051</name>
  5702. <file> 432 442 414 394 24 12 435 404 412 419 406 416 398 447 439 6 60 338 356 420 340 422 411 361</file>
  5703. </tool>
  5704. <tool>
  5705. <name>BICOMP</name>
  5706. <file> 414 404 394 435 422 361 411 406 12 419 338 447 398 416 356 24 412 439 6 60 420 340</file>
  5707. </tool>
  5708. </inputs>
  5709. </file>
  5710. <file>
  5711. <name>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_TASK.c</name>
  5712. <outputs>
  5713. <tool>
  5714. <name>ICC8051</name>
  5715. <file> 71 177 123</file>
  5716. </tool>
  5717. <tool>
  5718. <name>BICOMP</name>
  5719. <file> 121</file>
  5720. </tool>
  5721. </outputs>
  5722. <inputs>
  5723. <tool>
  5724. <name>ICC8051</name>
  5725. <file> 432 442 414 394 24 12 435 350 388 349 334 404 412 419 358 426 26 45 17 11 7 13 337 357 346 333 416 398 447 439 6 60 338 356 420 340 422 411 396 436 445 430 428 352 401 348</file>
  5726. </tool>
  5727. <tool>
  5728. <name>BICOMP</name>
  5729. <file> 420 435 398 349 422 340 396 348 430 414 404 358 12 24 394 26 388 411 401 357 412 419 13 45 11 426 416 338 447 445 350 334 337 346 17 7 333 436 428 356 439 6 60 352</file>
  5730. </tool>
  5731. </inputs>
  5732. </file>
  5733. <file>
  5734. <name>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_NWK.c</name>
  5735. <outputs>
  5736. <tool>
  5737. <name>ICC8051</name>
  5738. <file> 232 196 77</file>
  5739. </tool>
  5740. <tool>
  5741. <name>BICOMP</name>
  5742. <file> 308</file>
  5743. </tool>
  5744. </outputs>
  5745. <inputs>
  5746. <tool>
  5747. <name>ICC8051</name>
  5748. <file> 432 442 414 394 24 12 435 388 349 347 340 447 439 6 60 338 398 420 422 416 356 404 412 419 411 400 428 352 333 401 396 436 445 426 26 45 17 11 7 13</file>
  5749. </tool>
  5750. <tool>
  5751. <name>BICOMP</name>
  5752. <file> 414 7 340 435 398 333 338 17 428 447 420 12 347 400 349 24 422 356 412 396 401 404 45 388 416 426 394 439 6 60 411 419 352 436 445 26 13 11</file>
  5753. </tool>
  5754. </inputs>
  5755. </file>
  5756. <file>
  5757. <name>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_SYS.c</name>
  5758. <outputs>
  5759. <tool>
  5760. <name>ICC8051</name>
  5761. <file> 170 183 259</file>
  5762. </tool>
  5763. <tool>
  5764. <name>BICOMP</name>
  5765. <file> 240</file>
  5766. </tool>
  5767. </outputs>
  5768. <inputs>
  5769. <tool>
  5770. <name>ICC8051</name>
  5771. <file> 432 442 414 394 24 12 435 388 349 357 355 400 340 447 439 6 60 338 398 420 422 404 412 419 406 426 26 45 17 11 7 13 32 411 403 363 27</file>
  5772. </tool>
  5773. <tool>
  5774. <name>BICOMP</name>
  5775. <file> 12 6 24 26 32 447 394 400 414 27 357 406 403 388 355 404 426 411 363 435 349 420 398 439 60 340 419 13 45 11 338 422 412 17 7</file>
  5776. </tool>
  5777. </inputs>
  5778. </file>
  5779. <file>
  5780. <name>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_DEBUG.c</name>
  5781. <outputs>
  5782. <tool>
  5783. <name>ICC8051</name>
  5784. <file> 281 238 157</file>
  5785. </tool>
  5786. <tool>
  5787. <name>BICOMP</name>
  5788. <file> 164</file>
  5789. </tool>
  5790. </outputs>
  5791. <inputs>
  5792. <tool>
  5793. <name>ICC8051</name>
  5794. <file> 432 442 414 394 24 12 435 388 349 334 404 412 419 358 426 26 45 17 11 7 13 57 27 6 60 55 365 383 416 398 447 439 338 356 420 340 422 411</file>
  5795. </tool>
  5796. <tool>
  5797. <name>BICOMP</name>
  5798. <file> 45 419 416 435 12 404 13 11 24 447 57 394 6 414 334 365 349 26 398 388 358 55 383 412 426 17 60 27 356 439 338 340 7 411 420 422</file>
  5799. </tool>
  5800. </inputs>
  5801. </file>
  5802. <file>
  5803. <name>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_SAPI.c</name>
  5804. <outputs>
  5805. <tool>
  5806. <name>ICC8051</name>
  5807. <file> 253 204 206</file>
  5808. </tool>
  5809. <tool>
  5810. <name>BICOMP</name>
  5811. <file> 287</file>
  5812. </tool>
  5813. </outputs>
  5814. <inputs>
  5815. <tool>
  5816. <name>ICC8051</name>
  5817. <file> 432 442 414 394 24 12 435 361 404 412 419 406 426 26 45 17 11 7 13 388 349 345 54 396 420 447 439 6 60 398 340 338 422 333 416 356 411 358</file>
  5818. </tool>
  5819. <tool>
  5820. <name>BICOMP</name>
  5821. <file> 349 404 414 396 398 426 24 356 345 435 12 412 17 7 54 422 361 406 388 358 394 419 26 13 45 333 338 420 11 447 340 439 6 60 416 411</file>
  5822. </tool>
  5823. </inputs>
  5824. </file>
  5825. <file>
  5826. <name>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_UTIL.c</name>
  5827. <outputs>
  5828. <tool>
  5829. <name>ICC8051</name>
  5830. <file> 140 182 202</file>
  5831. </tool>
  5832. <tool>
  5833. <name>BICOMP</name>
  5834. <file> 95</file>
  5835. </tool>
  5836. </outputs>
  5837. <inputs>
  5838. <tool>
  5839. <name>ICC8051</name>
  5840. <file> 432 442 414 394 24 12 435 361 426 26 45 17 11 7 13 404 412 419 10 30 406 340 447 439 6 60 338 398 388 349 337 56 422 346 333 416 356 420 411 396 436 445 430 428 352 401 345 54 347 348 427</file>
  5841. </tool>
  5842. <tool>
  5843. <name>BICOMP</name>
  5844. <file> 356 447 338 404 24 388 419 333 396 414 30 346 26 394 349 428 420 426 56 347 427 435 12 17 7 11 436 398 340 401 361 10 406 337 422 345 348 13 45 412 439 6 60 430 416 411 445 352 54</file>
  5845. </tool>
  5846. </inputs>
  5847. </file>
  5848. <file>
  5849. <name>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_VERSION.c</name>
  5850. <outputs>
  5851. <tool>
  5852. <name>ICC8051</name>
  5853. <file> 219 144 230</file>
  5854. </tool>
  5855. <tool>
  5856. <name>BICOMP</name>
  5857. <file> 214</file>
  5858. </tool>
  5859. </outputs>
  5860. <inputs>
  5861. <tool>
  5862. <name>ICC8051</name>
  5863. <file> 432 442 414 394 24 12 435 355</file>
  5864. </tool>
  5865. <tool>
  5866. <name>BICOMP</name>
  5867. <file> 394 435 12 414 24 355</file>
  5868. </tool>
  5869. </inputs>
  5870. </file>
  5871. <file>
  5872. <name>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_low_level.c</name>
  5873. <outputs>
  5874. <tool>
  5875. <name>ICC8051</name>
  5876. <file> 168 111 237</file>
  5877. </tool>
  5878. <tool>
  5879. <name>BICOMP</name>
  5880. <file> 271</file>
  5881. </tool>
  5882. </outputs>
  5883. <inputs>
  5884. <tool>
  5885. <name>ICC8051</name>
  5886. <file> 432 442 24 26 12 45 363 27 6 435 60 384 365 383 390 373 380 368 7 58 29 374 11 375 366 362 33 13</file>
  5887. </tool>
  5888. <tool>
  5889. <name>BICOMP</name>
  5890. <file> 27 380 45 366 365 12 60 363 390 362 24 58 11 33 26 384 383 373 368 6 435 374 7 29 375 13</file>
  5891. </tool>
  5892. </inputs>
  5893. </file>
  5894. <file>
  5895. <name>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_rx.c</name>
  5896. <outputs>
  5897. <tool>
  5898. <name>ICC8051</name>
  5899. <file> 142 267 169</file>
  5900. </tool>
  5901. <tool>
  5902. <name>BICOMP</name>
  5903. <file> 325</file>
  5904. </tool>
  5905. </outputs>
  5906. <inputs>
  5907. <tool>
  5908. <name>ICC8051</name>
  5909. <file> 432 442 12 24 404 394 412 419 27 6 435 60 29 52 363 365 383 390 384 368 7 26 45 58 374 11 375 366 362 33 13 389</file>
  5910. </tool>
  5911. <tool>
  5912. <name>BICOMP</name>
  5913. <file> 435 383 27 29 12 389 412 404 363 384 6 362 24 52 365 390 368 394 419 60 7 375 13 26 58 374 366 45 11 33</file>
  5914. </tool>
  5915. </inputs>
  5916. </file>
  5917. <file>
  5918. <name>$PROJ_DIR$\..\..\..\..\..\Components\mt\DebugTrace.c</name>
  5919. <outputs>
  5920. <tool>
  5921. <name>ICC8051</name>
  5922. <file> 274 324 117</file>
  5923. </tool>
  5924. <tool>
  5925. <name>BICOMP</name>
  5926. <file> 167</file>
  5927. </tool>
  5928. </outputs>
  5929. <inputs>
  5930. <tool>
  5931. <name>ICC8051</name>
  5932. <file> 432 442 414 394 24 12 435 404 412 419 388 349 350 334 387</file>
  5933. </tool>
  5934. <tool>
  5935. <name>BICOMP</name>
  5936. <file> 350 404 387 394 24 412 349 414 388 334 435 12 419</file>
  5937. </tool>
  5938. </inputs>
  5939. </file>
  5940. <file>
  5941. <name>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT.c</name>
  5942. <outputs>
  5943. <tool>
  5944. <name>ICC8051</name>
  5945. <file> 272 184 158</file>
  5946. </tool>
  5947. <tool>
  5948. <name>BICOMP</name>
  5949. <file> 215</file>
  5950. </tool>
  5951. </outputs>
  5952. <inputs>
  5953. <tool>
  5954. <name>ICC8051</name>
  5955. <file> 432 442 414 394 24 12 435 388 349 351 404 412 419 334 337 357 426 26 45 17 11 7 13 406 387 447 439 6 60 340 338 398 430 428 352 333 416 356 420 422 411 401 396 436 445 400 345 54 346 30 10 358</file>
  5956. </tool>
  5957. <tool>
  5958. <name>BICOMP</name>
  5959. <file> 349 400 419 401 356 404 412 358 26 12 6 24 340 396 398 445 430 337 346 394 414 422 388 351 426 387 345 30 435 13 45 11 439 60 338 447 333 334 357 406 17 10 7 428 352 436 416 411 420 54</file>
  5960. </tool>
  5961. </inputs>
  5962. </file>
  5963. <file>
  5964. <name>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\single_chip\mac_radio_defs.c</name>
  5965. <outputs>
  5966. <tool>
  5967. <name>ICC8051</name>
  5968. <file> 82 241 175</file>
  5969. </tool>
  5970. <tool>
  5971. <name>BICOMP</name>
  5972. <file> 151</file>
  5973. </tool>
  5974. </outputs>
  5975. <inputs>
  5976. <tool>
  5977. <name>ICC8051</name>
  5978. <file> 432 442 368 12 7 26 24 45 58 29 374 11 27 6 435 60 375 366 362 33 13 4</file>
  5979. </tool>
  5980. <tool>
  5981. <name>BICOMP</name>
  5982. <file> 13 7 24 45 33 4 375 12 11 6 29 362 26 435 58 374 366 27 60 368</file>
  5983. </tool>
  5984. </inputs>
  5985. </file>
  5986. <file>
  5987. <name>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\single_chip\mac_mcu.c</name>
  5988. <outputs>
  5989. <tool>
  5990. <name>ICC8051</name>
  5991. <file> 176 235 88</file>
  5992. </tool>
  5993. <tool>
  5994. <name>BICOMP</name>
  5995. <file> 138</file>
  5996. </tool>
  5997. </outputs>
  5998. <inputs>
  5999. <tool>
  6000. <name>ICC8051</name>
  6001. <file> 432 442 12 26 24 45 365 27 6 435 60 383 373 366 374 11 7 390 363 368 58 29 375 362 33 13</file>
  6002. </tool>
  6003. <tool>
  6004. <name>BICOMP</name>
  6005. <file> 12 374 6 373 24 366 365 390 362 27 435 58 33 26 383 363 368 45 60 11 7 29 375 13</file>
  6006. </tool>
  6007. </inputs>
  6008. </file>
  6009. <file>
  6010. <name>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\single_chip\mac_rffrontend.c</name>
  6011. <outputs>
  6012. <tool>
  6013. <name>ICC8051</name>
  6014. <file> 220 125 327</file>
  6015. </tool>
  6016. <tool>
  6017. <name>BICOMP</name>
  6018. <file> 302</file>
  6019. </tool>
  6020. </outputs>
  6021. <inputs>
  6022. <tool>
  6023. <name>ICC8051</name>
  6024. <file> 432 442 24 7 26 12 45 33 6 435 60 368 58 29 374 11 27 375 366 362 13</file>
  6025. </tool>
  6026. <tool>
  6027. <name>BICOMP</name>
  6028. <file> 24 29 368 60 362 33 12 7 375 13 374 6 26 45 435 58 366 27 11</file>
  6029. </tool>
  6030. </inputs>
  6031. </file>
  6032. <file>
  6033. <name>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_radio.c</name>
  6034. <outputs>
  6035. <tool>
  6036. <name>ICC8051</name>
  6037. <file> 258 109 318</file>
  6038. </tool>
  6039. <tool>
  6040. <name>BICOMP</name>
  6041. <file> 198</file>
  6042. </tool>
  6043. </outputs>
  6044. <inputs>
  6045. <tool>
  6046. <name>ICC8051</name>
  6047. <file> 432 442 24 4 6 435 60 27 363 384 383 365 390 12 380 373 368 7 26 45 58 29 374 11 375 366 362 33 13</file>
  6048. </tool>
  6049. <tool>
  6050. <name>BICOMP</name>
  6051. <file> 24 375 373 6 383 60 27 12 7 13 363 390 362 29 11 33 4 384 365 380 368 435 58 374 366 26 45</file>
  6052. </tool>
  6053. </inputs>
  6054. </file>
  6055. <file>
  6056. <name>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_rx_onoff.c</name>
  6057. <outputs>
  6058. <tool>
  6059. <name>ICC8051</name>
  6060. <file> 93 131 156</file>
  6061. </tool>
  6062. <tool>
  6063. <name>BICOMP</name>
  6064. <file> 312</file>
  6065. </tool>
  6066. </outputs>
  6067. <inputs>
  6068. <tool>
  6069. <name>ICC8051</name>
  6070. <file> 432 442 12 24 363 27 6 435 60 390 365 383 368 7 26 45 58 29 374 11 375 366 362 33 13</file>
  6071. </tool>
  6072. <tool>
  6073. <name>BICOMP</name>
  6074. <file> 24 45 27 58 12 365 60 366 363 368 374 26 11 33 390 383 362 6 435 7 29 375 13</file>
  6075. </tool>
  6076. </inputs>
  6077. </file>
  6078. <file>
  6079. <name>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_sleep.c</name>
  6080. <outputs>
  6081. <tool>
  6082. <name>ICC8051</name>
  6083. <file> 261 79 229</file>
  6084. </tool>
  6085. <tool>
  6086. <name>BICOMP</name>
  6087. <file> 269</file>
  6088. </tool>
  6089. </outputs>
  6090. <inputs>
  6091. <tool>
  6092. <name>ICC8051</name>
  6093. <file> 432 442 24 4 6 435 60 27 363 380 384 383 365 390 12 368 7 26 45 58 29 374 11 375 366 362 33 13</file>
  6094. </tool>
  6095. <tool>
  6096. <name>BICOMP</name>
  6097. <file> 368 24 27 58 45 384 366 12 363 365 435 374 26 11 33 4 380 383 390 362 6 60 7 29 375 13</file>
  6098. </tool>
  6099. </inputs>
  6100. </file>
  6101. <file>
  6102. <name>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_tx.c</name>
  6103. <outputs>
  6104. <tool>
  6105. <name>ICC8051</name>
  6106. <file> 163 130 114</file>
  6107. </tool>
  6108. <tool>
  6109. <name>BICOMP</name>
  6110. <file> 189</file>
  6111. </tool>
  6112. </outputs>
  6113. <inputs>
  6114. <tool>
  6115. <name>ICC8051</name>
  6116. <file> 432 442 24 12 26 45 58 29 4 6 435 60 27 363 383 373 365 390 384 380 368 7 374 11 375 366 362 33 13</file>
  6117. </tool>
  6118. <tool>
  6119. <name>BICOMP</name>
  6120. <file> 24 12 373 27 29 380 45 375 26 363 390 362 435 7 13 11 33 58 4 383 365 384 368 6 60 374 366</file>
  6121. </tool>
  6122. </inputs>
  6123. </file>
  6124. <file>
  6125. <name>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_autopend.c</name>
  6126. <outputs>
  6127. <tool>
  6128. <name>ICC8051</name>
  6129. <file> 234 148 328</file>
  6130. </tool>
  6131. <tool>
  6132. <name>BICOMP</name>
  6133. <file> 255</file>
  6134. </tool>
  6135. </outputs>
  6136. <inputs>
  6137. <tool>
  6138. <name>ICC8051</name>
  6139. <file> 432 442 6 24 435 60 368 12 7 26 45 58 29 374 11 27 375 366 362 33 13 404 394 412 419 414 389</file>
  6140. </tool>
  6141. <tool>
  6142. <name>BICOMP</name>
  6143. <file> 7 13 12 414 24 375 11 27 404 60 29 362 45 368 435 389 58 374 366 26 412 394 6 33 419</file>
  6144. </tool>
  6145. </inputs>
  6146. </file>
  6147. <file>
  6148. <name>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\single_chip\mac_csp_tx.c</name>
  6149. <outputs>
  6150. <tool>
  6151. <name>ICC8051</name>
  6152. <file> 155 227 98</file>
  6153. </tool>
  6154. <tool>
  6155. <name>BICOMP</name>
  6156. <file> 96</file>
  6157. </tool>
  6158. </outputs>
  6159. <inputs>
  6160. <tool>
  6161. <name>ICC8051</name>
  6162. <file> 432 442 24 26 12 45 29 4 6 435 60 27 363 366 374 11 7 383 365 390 368 58 375 362 33 13</file>
  6163. </tool>
  6164. <tool>
  6165. <name>BICOMP</name>
  6166. <file> 362 390 435 6 363 27 29 383 24 374 12 33 26 4 366 365 368 45 60 7 375 13 11 58</file>
  6167. </tool>
  6168. </inputs>
  6169. </file>
  6170. <file>
  6171. <name>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\single_chip\mac_mem.c</name>
  6172. <outputs>
  6173. <tool>
  6174. <name>ICC8051</name>
  6175. <file> 276 310 266</file>
  6176. </tool>
  6177. <tool>
  6178. <name>BICOMP</name>
  6179. <file> 63</file>
  6180. </tool>
  6181. </outputs>
  6182. <inputs>
  6183. <tool>
  6184. <name>ICC8051</name>
  6185. <file> 432 442 24 375 27 6 435 60 26 12 45 362 33</file>
  6186. </tool>
  6187. <tool>
  6188. <name>BICOMP</name>
  6189. <file> 27 6 26 435 375 362 24 60 12 45 33</file>
  6190. </tool>
  6191. </inputs>
  6192. </file>
  6193. <file>
  6194. <name>$PROJ_DIR$\..\..\..\..\..\Components\mt\MT_AF.c</name>
  6195. <outputs>
  6196. <tool>
  6197. <name>ICC8051</name>
  6198. <file> 205 303 228</file>
  6199. </tool>
  6200. <tool>
  6201. <name>BICOMP</name>
  6202. <file> 251</file>
  6203. </tool>
  6204. </outputs>
  6205. <inputs>
  6206. <tool>
  6207. <name>ICC8051</name>
  6208. <file> 432 442 414 394 24 12 435 404 412 419 388 349 348 396 420 447 439 6 60 398 340 338 422 333 416 356 411 426 26 45 17 11 7 13 346 436 445 430 428 352 401 358</file>
  6209. </tool>
  6210. <tool>
  6211. <name>BICOMP</name>
  6212. <file> 6 24 414 422 420 447 338 26 426 346 416 404 396 340 436 388 394 412 349 439 60 398 411 17 7 430 445 348 358 435 12 419 333 356 13 45 11 428 352 401</file>
  6213. </tool>
  6214. </inputs>
  6215. </file>
  6216. <file>
  6217. <name>$PROJ_DIR$\..\..\..\..\..\Components\mac\low_level\srf04\mac_backoff_timer.c</name>
  6218. <outputs>
  6219. <tool>
  6220. <name>ICC8051</name>
  6221. <file> 263 291 326</file>
  6222. </tool>
  6223. <tool>
  6224. <name>BICOMP</name>
  6225. <file> 150</file>
  6226. </tool>
  6227. </outputs>
  6228. <inputs>
  6229. <tool>
  6230. <name>ICC8051</name>
  6231. <file> 432 442 24 26 12 45 29 363 27 6 435 60 373 383 368 7 58 374 11 375 366 362 33 13</file>
  6232. </tool>
  6233. <tool>
  6234. <name>BICOMP</name>
  6235. <file> 24 373 362 29 368 27 60 11 33 26 363 383 12 45 6 435 7 375 13 374 58 366</file>
  6236. </tool>
  6237. </inputs>
  6238. </file>
  6239. <file>
  6240. <name>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\stub_aps.c</name>
  6241. <outputs>
  6242. <tool>
  6243. <name>ICC8051</name>
  6244. <file> 145 187 135</file>
  6245. </tool>
  6246. <tool>
  6247. <name>BICOMP</name>
  6248. <file> 162</file>
  6249. </tool>
  6250. </outputs>
  6251. <inputs>
  6252. <tool>
  6253. <name>ICC8051</name>
  6254. <file> 432 442 404 394 24 12 412 419 29 400 340 447 414 435 439 6 60 338 398 420 422 396 333 416 356 411 402</file>
  6255. </tool>
  6256. <tool>
  6257. <name>BICOMP</name>
  6258. <file> 60 411 12 340 333 402 394 400 412 338 414 435 398 29 396 419 24 420 447 439 6 416 422 404 356</file>
  6259. </tool>
  6260. </inputs>
  6261. </file>
  6262. <file>
  6263. <name>$PROJ_DIR$\..\..\..\..\..\Components\osal\common\OSAL.c</name>
  6264. <outputs>
  6265. <tool>
  6266. <name>ICC8051</name>
  6267. <file> 174 257 116</file>
  6268. </tool>
  6269. <tool>
  6270. <name>BICOMP</name>
  6271. <file> 105</file>
  6272. </tool>
  6273. </outputs>
  6274. <inputs>
  6275. <tool>
  6276. <name>ICC8051</name>
  6277. <file> 432 442 61 62 394 24 12 404 412 419 413 415 403 426 26 45 17 11 7 13 15</file>
  6278. </tool>
  6279. <tool>
  6280. <name>BICOMP</name>
  6281. <file> 12 45 15 13 11 412 394 404 403 419 26 413 415 426 62 24 17 7 61</file>
  6282. </tool>
  6283. </inputs>
  6284. </file>
  6285. <file>
  6286. <name>$PROJ_DIR$\..\..\..\..\..\Components\stack\nwk\nwk_globals.c</name>
  6287. <outputs>
  6288. <tool>
  6289. <name>ICC8051</name>
  6290. <file> 243 262 154</file>
  6291. </tool>
  6292. <tool>
  6293. <name>BICOMP</name>
  6294. <file> 172</file>
  6295. </tool>
  6296. </outputs>
  6297. <inputs>
  6298. <tool>
  6299. <name>ICC8051</name>
  6300. <file> 432 442 414 394 24 12 435 404 412 419 406 361 338 356 420 447 439 6 60 398 340 422 400 416 411 352 333 401 397 445 396 426 26 45 17 11 7 13 1</file>
  6301. </tool>
  6302. <tool>
  6303. <name>BICOMP</name>
  6304. <file> 420 435 12 398 7 352 338 411 419 333 414 406 400 397 426 394 396 13 24 404 361 356 416 422 445 1 412 401 26 447 340 439 6 60 17 45 11</file>
  6305. </tool>
  6306. </inputs>
  6307. </file>
  6308. <file>
  6309. <name>$PROJ_DIR$\..\..\..\..\..\Components\osal\common\OSAL_Memory.c</name>
  6310. <outputs>
  6311. <tool>
  6312. <name>ICC8051</name>
  6313. <file> 165 137 330</file>
  6314. </tool>
  6315. <tool>
  6316. <name>BICOMP</name>
  6317. <file> 242</file>
  6318. </tool>
  6319. </outputs>
  6320. <inputs>
  6321. <tool>
  6322. <name>ICC8051</name>
  6323. <file> 432 442 394 24 12 404 412 419 426 26 45 17 11 7 13 33</file>
  6324. </tool>
  6325. <tool>
  6326. <name>BICOMP</name>
  6327. <file> 26 24 412 33 13 404 426 12 394 419 17 45 7 11</file>
  6328. </tool>
  6329. </inputs>
  6330. </file>
  6331. <file>
  6332. <name>$PROJ_DIR$\..\..\..\..\..\Components\stack\sys\ZGlobals.c</name>
  6333. <outputs>
  6334. <tool>
  6335. <name>ICC8051</name>
  6336. <file> 290 106 249</file>
  6337. </tool>
  6338. <tool>
  6339. <name>BICOMP</name>
  6340. <file> 99</file>
  6341. </tool>
  6342. </outputs>
  6343. <inputs>
  6344. <tool>
  6345. <name>ICC8051</name>
  6346. <file> 432 442 414 394 24 12 435 406 430 340 447 439 6 60 338 398 428 352 333 416 356 404 412 419 420 422 411 401 396 436 445 444 400 426 26 45 17 11 7 13 427</file>
  6347. </tool>
  6348. <tool>
  6349. <name>BICOMP</name>
  6350. <file> 422 447 24 436 338 394 420 444 340 6 414 416 404 333 396 428 13 26 430 427 398 439 60 352 356 411 419 406 426 435 12 401 412 445 400 17 7 45 11</file>
  6351. </tool>
  6352. </inputs>
  6353. </file>
  6354. <file>
  6355. <name>$PROJ_DIR$\..\..\..\..\..\Components\osal\mcu\cc2530\OSAL_Math.s51</name>
  6356. <outputs>
  6357. <tool>
  6358. <name>A8051</name>
  6359. <file> 211</file>
  6360. </tool>
  6361. </outputs>
  6362. </file>
  6363. <file>
  6364. <name>$PROJ_DIR$\..\..\..\..\..\Components\osal\mcu\cc2530\OSAL_Nv.c</name>
  6365. <outputs>
  6366. <tool>
  6367. <name>ICC8051</name>
  6368. <file> 119 191 181</file>
  6369. </tool>
  6370. <tool>
  6371. <name>BICOMP</name>
  6372. <file> 292</file>
  6373. </tool>
  6374. </outputs>
  6375. <inputs>
  6376. <tool>
  6377. <name>ICC8051</name>
  6378. <file> 432 442 32 11 7 26 12 24 45 20 406 414 394 435</file>
  6379. </tool>
  6380. <tool>
  6381. <name>BICOMP</name>
  6382. <file> 11 414 12 24 20 406 435 32 7 26 45 394</file>
  6383. </tool>
  6384. </inputs>
  6385. </file>
  6386. <file>
  6387. <name>$PROJ_DIR$\..\..\..\..\..\Components\osal\common\OSAL_Clock.c</name>
  6388. <outputs>
  6389. <tool>
  6390. <name>ICC8051</name>
  6391. <file> 128 283 224</file>
  6392. </tool>
  6393. <tool>
  6394. <name>BICOMP</name>
  6395. <file> 166</file>
  6396. </tool>
  6397. </outputs>
  6398. <inputs>
  6399. <tool>
  6400. <name>ICC8051</name>
  6401. <file> 432 442 394 24 12 426 26 45 17 11 7 13 404 412 419 403</file>
  6402. </tool>
  6403. <tool>
  6404. <name>BICOMP</name>
  6405. <file> 13 419 404 12 26 24 394 426 403 17 45 7 11 412</file>
  6406. </tool>
  6407. </inputs>
  6408. </file>
  6409. <file>
  6410. <name>$PROJ_DIR$\..\..\..\..\..\Components\osal\common\OSAL_PwrMgr.c</name>
  6411. <outputs>
  6412. <tool>
  6413. <name>ICC8051</name>
  6414. <file> 250 270 256</file>
  6415. </tool>
  6416. <tool>
  6417. <name>BICOMP</name>
  6418. <file> 186</file>
  6419. </tool>
  6420. </outputs>
  6421. <inputs>
  6422. <tool>
  6423. <name>ICC8051</name>
  6424. <file> 432 442 394 24 12 426 26 45 17 11 7 13 404 412 419 413 415</file>
  6425. </tool>
  6426. <tool>
  6427. <name>BICOMP</name>
  6428. <file> 24 26 12 419 404 13 426 413 415 17 45 11 412 394 7</file>
  6429. </tool>
  6430. </inputs>
  6431. </file>
  6432. <file>
  6433. <name>$PROJ_DIR$\..\..\..\..\..\Components\osal\common\OSAL_Timers.c</name>
  6434. <outputs>
  6435. <tool>
  6436. <name>ICC8051</name>
  6437. <file> 97 146 161</file>
  6438. </tool>
  6439. <tool>
  6440. <name>BICOMP</name>
  6441. <file> 102</file>
  6442. </tool>
  6443. </outputs>
  6444. <inputs>
  6445. <tool>
  6446. <name>ICC8051</name>
  6447. <file> 432 442 394 24 12 426 26 45 17 11 7 13 404 412 419 21</file>
  6448. </tool>
  6449. <tool>
  6450. <name>BICOMP</name>
  6451. <file> 17 21 404 24 12 426 419 26 13 45 11 412 394 7</file>
  6452. </tool>
  6453. </inputs>
  6454. </file>
  6455. <file>
  6456. <name>$PROJ_DIR$\..\..\..\..\..\Components\stack\af\AF.c</name>
  6457. <outputs>
  6458. <tool>
  6459. <name>ICC8051</name>
  6460. <file> 288 73 65</file>
  6461. </tool>
  6462. <tool>
  6463. <name>BICOMP</name>
  6464. <file> 90</file>
  6465. </tool>
  6466. </outputs>
  6467. <inputs>
  6468. <tool>
  6469. <name>ICC8051</name>
  6470. <file> 432 442 404 394 24 12 412 419 396 414 435 420 447 439 6 60 398 340 338 422 333 416 356 411 400 335 436 445 354 397</file>
  6471. </tool>
  6472. <tool>
  6473. <name>BICOMP</name>
  6474. <file> 396 447 338 414 335 394 333 6 24 422 411 416 354 419 404 400 436 397 412 12 420 435 340 439 60 398 356 445</file>
  6475. </tool>
  6476. </inputs>
  6477. </file>
  6478. <file>
  6479. <name>$PROJ_DIR$\..\..\..\..\..\Components\services\saddr\saddr.c</name>
  6480. <outputs>
  6481. <tool>
  6482. <name>ICC8051</name>
  6483. <file> 321 309 209</file>
  6484. </tool>
  6485. <tool>
  6486. <name>BICOMP</name>
  6487. <file> 297</file>
  6488. </tool>
  6489. </outputs>
  6490. <inputs>
  6491. <tool>
  6492. <name>ICC8051</name>
  6493. <file> 432 442 24 404 394 12 412 419 435</file>
  6494. </tool>
  6495. <tool>
  6496. <name>BICOMP</name>
  6497. <file> 394 435 12 404 412 24 419</file>
  6498. </tool>
  6499. </inputs>
  6500. </file>
  6501. <file>
  6502. <name>$PROJ_DIR$\..\..\..\..\..\Components\zmac\f8w\zmac_cb.c</name>
  6503. <outputs>
  6504. <tool>
  6505. <name>ICC8051</name>
  6506. <file> 233 139 190</file>
  6507. </tool>
  6508. <tool>
  6509. <name>BICOMP</name>
  6510. <file> 280</file>
  6511. </tool>
  6512. </outputs>
  6513. <inputs>
  6514. <tool>
  6515. <name>ICC8051</name>
  6516. <file> 432 442 414 394 24 12 435 404 412 419 447 439 6 60 56 26 45 420 398 340 338 422 411 52 27 57</file>
  6517. </tool>
  6518. <tool>
  6519. <name>BICOMP</name>
  6520. <file> 6 24 414 27 52 398 26 394 338 447 435 12 419 439 60 45 422 404 56 420 411 57 412 340</file>
  6521. </tool>
  6522. </inputs>
  6523. </file>
  6524. <file>
  6525. <name>$PROJ_DIR$\..\..\..\ZMain\TI2530DB\chipcon_cstartup.s51</name>
  6526. <outputs>
  6527. <tool>
  6528. <name>A8051</name>
  6529. <file> 113</file>
  6530. </tool>
  6531. </outputs>
  6532. <inputs>
  6533. <tool>
  6534. <name>A8051</name>
  6535. <file> 42 48 47</file>
  6536. </tool>
  6537. </inputs>
  6538. </file>
  6539. <file>
  6540. <name>$PROJ_DIR$\..\..\..\..\..\Components\stack\zdo\ZDApp.c</name>
  6541. <outputs>
  6542. <tool>
  6543. <name>ICC8051</name>
  6544. <file> 133 81 134</file>
  6545. </tool>
  6546. <tool>
  6547. <name>BICOMP</name>
  6548. <file> 320</file>
  6549. </tool>
  6550. </outputs>
  6551. <inputs>
  6552. <tool>
  6553. <name>ICC8051</name>
  6554. <file> 432 442 414 394 24 12 435 447 439 6 60 404 412 419 413 415 406 396 420 398 340 338 422 333 416 356 411 361 436 445 430 428 352 401 427 387 400 426 26 45 17 11 7 13 444 397 30 1 10</file>
  6555. </tool>
  6556. <tool>
  6557. <name>BICOMP</name>
  6558. <file> 398 394 400 414 340 10 356 420 12 415 445 397 435 422 404 396 436 428 411 30 419 333 338 352 13 45 11 416 447 413 406 361 430 427 387 426 444 1 24 439 6 60 412 26 401 17 7</file>
  6559. </tool>
  6560. </inputs>
  6561. </file>
  6562. <file>
  6563. <name>$PROJ_DIR$\..\..\..\..\..\Components\stack\zdo\ZDProfile.c</name>
  6564. <outputs>
  6565. <tool>
  6566. <name>ICC8051</name>
  6567. <file> 260 69 141</file>
  6568. </tool>
  6569. <tool>
  6570. <name>BICOMP</name>
  6571. <file> 122</file>
  6572. </tool>
  6573. </outputs>
  6574. <inputs>
  6575. <tool>
  6576. <name>ICC8051</name>
  6577. <file> 432 442 414 394 24 12 435 404 412 419 396 420 447 439 6 60 398 340 338 422 333 416 356 411 400 352 401 361 445 436 430 428 444 426 26 45 17 11 7 13 346 388 349</file>
  6578. </tool>
  6579. <tool>
  6580. <name>BICOMP</name>
  6581. <file> 396 340 411 420 428 436 60 414 45 333 400 426 394 439 447 398 338 401 13 11 349 361 444 435 12 419 6 24 416 422 404 352 445 430 346 412 356 26 17 7 388</file>
  6582. </tool>
  6583. </inputs>
  6584. </file>
  6585. <file>
  6586. <name>$PROJ_DIR$\..\..\..\..\..\Components\stack\zdo\ZDObject.c</name>
  6587. <outputs>
  6588. <tool>
  6589. <name>ICC8051</name>
  6590. <file> 294 200 75</file>
  6591. </tool>
  6592. <tool>
  6593. <name>BICOMP</name>
  6594. <file> 314</file>
  6595. </tool>
  6596. </outputs>
  6597. <inputs>
  6598. <tool>
  6599. <name>ICC8051</name>
  6600. <file> 432 442 414 394 24 12 435 404 412 419 406 397 400 340 447 439 6 60 338 398 420 422 411 416 356 352 333 401 361 396 430 428 436 445 427 426 26 45 17 11 7 13 1</file>
  6601. </tool>
  6602. <tool>
  6603. <name>BICOMP</name>
  6604. <file> 17 414 428 447 24 338 396 340 430 426 356 398 11 406 352 361 445 411 6 420 7 404 397 416 333 436 427 400 1 394 412 439 60 422 26 435 12 419 401 13 45</file>
  6605. </tool>
  6606. </inputs>
  6607. </file>
  6608. <file>
  6609. <name>$PROJ_DIR$\..\..\..\ZMain\TI2530DB\OnBoard.c</name>
  6610. <outputs>
  6611. <tool>
  6612. <name>ICC8051</name>
  6613. <file> 264 104 179</file>
  6614. </tool>
  6615. <tool>
  6616. <name>BICOMP</name>
  6617. <file> 217</file>
  6618. </tool>
  6619. </outputs>
  6620. <inputs>
  6621. <tool>
  6622. <name>ICC8051</name>
  6623. <file> 432 442 414 394 24 12 435 411 426 26 45 17 11 7 13 404 412 419 388 349 357 387 1 21 10 30 368 58 29 374 27 6 60 375 366 362 33</file>
  6624. </tool>
  6625. <tool>
  6626. <name>BICOMP</name>
  6627. <file> 26 12 58 60 388 368 11 24 27 426 387 10 394 366 411 404 357 1 21 30 13 45 412 349 374 414 435 17 7 419 29 375 362 6 33</file>
  6628. </tool>
  6629. </inputs>
  6630. </file>
  6631. <file>
  6632. <name>$PROJ_DIR$\..\..\..\..\..\Components\stack\zdo\ZDSecMgr.c</name>
  6633. <outputs>
  6634. <tool>
  6635. <name>ICC8051</name>
  6636. <file> 307 313 197</file>
  6637. </tool>
  6638. <tool>
  6639. <name>BICOMP</name>
  6640. <file> 273</file>
  6641. </tool>
  6642. </outputs>
  6643. <inputs>
  6644. <tool>
  6645. <name>ICC8051</name>
  6646. <file> 432 442 414 394 24 12 435 404 412 419 406 411 422 416 398 447 439 6 60 338 356 420 340 361 333 445 396 427 428 352 401 436</file>
  6647. </tool>
  6648. <tool>
  6649. <name>BICOMP</name>
  6650. <file> 398 414 419 420 361 428 422 427 447 338 406 333 435 12 394 352 356 404 411 416 340 445 436 396 24 412 439 6 60 401</file>
  6651. </tool>
  6652. </inputs>
  6653. </file>
  6654. <file>
  6655. <name>$PROJ_DIR$\..\..\..\ZMain\TI2530DB\ZMain.c</name>
  6656. <outputs>
  6657. <tool>
  6658. <name>ICC8051</name>
  6659. <file> 284 221 300</file>
  6660. </tool>
  6661. <tool>
  6662. <name>BICOMP</name>
  6663. <file> 149</file>
  6664. </tool>
  6665. </outputs>
  6666. <inputs>
  6667. <tool>
  6668. <name>ICC8051</name>
  6669. <file> 432 442 396 414 394 24 12 435 420 447 439 6 60 398 340 338 422 333 416 356 404 412 419 411 32 11 7 26 45 20 1 30 15 426 17 13 406</file>
  6670. </tool>
  6671. <tool>
  6672. <name>BICOMP</name>
  6673. <file> 406 414 394 24 404 30 447 6 416 20 426 333 340 439 60 422 338 12 11 17 32 1 15 420 435 398 411 419 396 356 412 7 26 45 13</file>
  6674. </tool>
  6675. </inputs>
  6676. </file>
  6677. <file>
  6678. <name>$PROJ_DIR$\..\..\..\..\..\Components\stack\zdo\ZDConfig.c</name>
  6679. <outputs>
  6680. <tool>
  6681. <name>ICC8051</name>
  6682. <file> 194 278 245</file>
  6683. </tool>
  6684. <tool>
  6685. <name>BICOMP</name>
  6686. <file> 231</file>
  6687. </tool>
  6688. </outputs>
  6689. <inputs>
  6690. <tool>
  6691. <name>ICC8051</name>
  6692. <file> 432 442 414 394 24 12 435 396 420 447 439 6 60 398 340 338 422 333 416 356 404 412 419 411 430 428 352 401 436 445</file>
  6693. </tool>
  6694. <tool>
  6695. <name>BICOMP</name>
  6696. <file> 439 414 340 428 436 430 394 24 420 447 356 398 404 396 445 435 12 333 422 338 412 352 6 60 416 411 419 401</file>
  6697. </tool>
  6698. </inputs>
  6699. </file>
  6700. <file>
  6701. <name>$PROJ_DIR$\..\..\..\..\..\Components\stack\zdo\ZDNwkMgr.c</name>
  6702. <outputs>
  6703. <tool>
  6704. <name>ICC8051</name>
  6705. <file> 110 305 317</file>
  6706. </tool>
  6707. <tool>
  6708. <name>BICOMP</name>
  6709. <file> 222</file>
  6710. </tool>
  6711. </outputs>
  6712. <inputs>
  6713. <tool>
  6714. <name>ICC8051</name>
  6715. <file> 432 442 414 394 24 12 435 400 340 447 439 6 60 338 398 420 422 428 352 333 416 356 404 412 419 411 401 396 436 445 430 444 346 388 349 426 26 45 17 11 7 13 1</file>
  6716. </tool>
  6717. <tool>
  6718. <name>BICOMP</name>
  6719. <file> 6 24 404 447 414 7 333 396 411 401 356 398 428 1 394 420 439 60 340 338 412 416 436 26 400 430 444 346 426 435 12 422 352 419 445 349 13 388 17 45 11</file>
  6720. </tool>
  6721. </inputs>
  6722. </file>
  6723. <file>
  6724. <name>$PROJ_DIR$\..\..\..\..\..\Components\zmac\f8w\zmac.c</name>
  6725. <outputs>
  6726. <tool>
  6727. <name>ICC8051</name>
  6728. <file> 192 66 74</file>
  6729. </tool>
  6730. <tool>
  6731. <name>BICOMP</name>
  6732. <file> 213</file>
  6733. </tool>
  6734. </outputs>
  6735. <inputs>
  6736. <tool>
  6737. <name>ICC8051</name>
  6738. <file> 432 442 414 394 24 12 435 404 412 419 447 439 6 60 57 27 422 411</file>
  6739. </tool>
  6740. <tool>
  6741. <name>BICOMP</name>
  6742. <file> 412 414 422 394 24 435 447 404 57 411 12 419 439 6 60 27</file>
  6743. </tool>
  6744. </inputs>
  6745. </file>
  6746. <forcedrebuild>
  6747. <name>[MULTI_TOOL]</name>
  6748. <tool>XLINK</tool>
  6749. </forcedrebuild>
  6750. </configuration>
  6751. </project>