10.html 339 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head id="ctl00_header">
  4. <!-- AppInternalsXpert BMX Integration Begin -->
  5. <script>
  6. if(!OPNET_ARXS){
  7. var OPNET_ARXS={startJS:Number(new Date()),
  8. clientId:'7496BECC1B8E33C4',appId:100040,
  9. collector:'perf.mouser.com',
  10. collectorHttpPort:80, collectorHttpsPort:443,
  11. sv:'0302',
  12. tag1:'', tag2:'', tag3:''};
  13. (function(){
  14. var w=window,l=w.addEventListener,m=w.attachEvent,
  15. d=document,s='script',t='load',o=OPNET_ARXS,
  16. z='-0b2c4d73f58414c86c7384150be8ca44',
  17. r=(('https:'===d.location.protocol)?
  18. 'https://953c27ce3b34cfb8cc56'+z+'.ssl':
  19. 'http://fb3f316d487bcc59f7ec'+z+'.r88')+
  20. '.cf1.rackcdn.com/opnet_browsermetrix.c.'+
  21. (o.ajax?'ajax.js':'js'),p=('onpagehide' in w),e=p?'pageshow':t,
  22. j=d.createElement(s),x=d.getElementsByTagName(s)[0],
  23. h=function(y){o.ldJS=new Date();o.per=y?y.persisted:null;},
  24. i=function(){o.ld=1;};o.cookie=d.cookie;d.cookie=
  25. '_op_aixPageId=0; path=/; expires='+(new Date(0)).toGMTString();
  26. o.cookieAfterDelete=d.cookie;j.async=1;j.src=r;
  27. if(l){l(e,h,false);if(p){l(t,i,false);}}else if(m)
  28. {m('on'+e,h);if(p){m('on'+t,i);}}
  29. if(o.sync){d.write('<'+s+' src=\''+r+'\'></'+s+'>');}
  30. else{x.parentNode.insertBefore(j,x);}
  31. })();}
  32. </script>
  33. <script>if(!OPNET_ARXS_PARAM){var OPNET_ARXS_PARAM={};} OPNET_ARXS_PARAM.pageId = 'a2_b492df21-924d-4469-b11f-c0da4fedaed9-23296-399708';</script>
  34. <!-- AppInternalsXpert BMX Integration End -->
  35. <title>
  36. 处理器 - 专门应用 | Mouser
  37. </title><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><meta id="ctl00_metaDesc" name="Description" content="目前,Mouser Electronics可供应处理器 - 专门应用 。Mouser提供处理器 - 专门应用 的库存、定价和数据表。" /><meta id="ctl00_metaKeywords" name="Keywords" content="处理器 - 专门应用" /><meta name="verify-v1" content="bhrmPa5uloYbiuM+lDu4z+y0qUGeKGW5FfFMprQAqlU=" /><meta name="viewport" content="width=1000, initial-scale=1" /><meta name="SKYPE_TOOLBAR" content="SKYPE_TOOLBAR_PARSER_COMPATIBLE" />
  38. <!-- BASE STYLE SHEET -->
  39. <link rel="shortcut icon" href="../../../../../../favicon.ico" /><link rel="alternate" type="application/rss+xml" title="RSS" href="../../../../../../rss/rss.xml" />
  40. <!--[if IE 7]>
  41. <link rel="stylesheet" type="text/css" href="../../../../../../css/ie7.css" />
  42. <![endif]-->
  43. <!--[if IE 8]>
  44. <link rel="stylesheet" type="text/css" href="../../../../../../css/ie8.css" />
  45. <![endif]-->
  46. <!--[if IE 9]>
  47. <link rel="stylesheet" type="text/css" href="../../../../../../css/ie9.css" />
  48. <![endif]-->
  49. <script type="text/javascript">
  50. function OpenBackordered(URL) {
  51. var MsgWindow;
  52. MsgWindow = window.open(URL, "MsgWindow", "scrollbars=1,height=500,width=650,menubar=0,resizable=1");
  53. }
  54. </script>
  55. <script type="text/javascript"> var _gaq = _gaq || [];var pluginUrl ='//www.google-analytics.com/plugins/ga/inpage_linkid.js';_gaq.push(['_require', 'inpage_linkid', pluginUrl]); _gaq.push(['_setAccount', "UA-521079-1"]);_gaq.push(['_setDomainName', "mouser.cn"]);_gaq.push(['_setAllowLinker', true]);_gaq.push(['_setAllowAnchor', true]);_gaq.push(["_setCustomVar",1,"Language","zh-CN",3]);_gaq.push(["_setCustomVar",30,"s35h","eoKmjhu5J6NroOo6uJSVsPzSgdyrR7e4sSrtAaePWo4=",2]);_gaq.push(["_setCustomVar",31,"Cart","75abba3d-207e-453d-bb8c-89f81268befb",2]);
  56. _gaq.push(["_setCustomVar",15,"TriColor PO1010","163AA125AA126AA195",2]);
  57. _gaq.push(["_setCustomVar",3,"PageType","Refine",3]);
  58. _gaq.push(["_setSiteSpeedSampleRate", 10]);
  59. _gaq.push(["_trackPageview"]);
  60. (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;ga.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'stats.g.doubleclick.net/dc.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })();
  61. (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)})(window,document,'script','//www.google-analytics.com/analytics.js','ga');ga('create', 'UA-521079-20', {'cookieDomain': 'mouser.cn','allowLinker': true});
  62. ga('require', 'ec');
  63. ga('ec:addImpression', {
  64. 'id': '841-MCIMX6G3DVM05AA',
  65. 'name': 'Processors - Application Specialized i.MX 32-bit MPU, ARM Cortex-A7 core, 500MHz, 289BGA',
  66. 'category': 'Processors - Application Specialized',
  67. 'brand': 'NXP / Freescale',
  68. 'variant': 'MCIMX6G3DVM05AA',
  69. 'list': 'Refine',
  70. 'position': '1'
  71. });
  72. ga('ec:addImpression', {
  73. 'id': '841-MCIMX6G3DVK05AA',
  74. 'name': 'Processors - Application Specialized i.MX 32-bit MPU, ARM Cortex-A7 core, 500MHz, 289BGA',
  75. 'category': 'Processors - Application Specialized',
  76. 'brand': 'NXP / Freescale',
  77. 'variant': 'MCIMX6G3DVK05AA',
  78. 'list': 'Refine',
  79. 'position': '2'
  80. });
  81. ga('ec:addImpression', {
  82. 'id': '841-MCIMX6G2DVM05AA',
  83. 'name': 'Processors - Application Specialized i.MX 32-bit MPU, ARM Cortex-A7 core, 500MHz, 289BGA',
  84. 'category': 'Processors - Application Specialized',
  85. 'brand': 'NXP / Freescale',
  86. 'variant': 'MCIMX6G2DVM05AA',
  87. 'list': 'Refine',
  88. 'position': '3'
  89. });
  90. ga('ec:addImpression', {
  91. 'id': '841-MCIMX6S5DVM10AC',
  92. 'name': 'Processors - Application Specialized i.MX 6 series 32-bit MPU, ARM Cortex-A9 core, 1GHz, MAPBGA 624',
  93. 'category': 'Processors - Application Specialized',
  94. 'brand': 'NXP / Freescale',
  95. 'variant': 'MCIMX6S5DVM10AC',
  96. 'list': 'Refine',
  97. 'position': '4'
  98. });
  99. ga('ec:addImpression', {
  100. 'id': '841-MCIMX515DJM8C',
  101. 'name': 'Processors - Application Specialized iMX515 App Processor Extended Temp',
  102. 'category': 'Processors - Application Specialized',
  103. 'brand': 'NXP / Freescale',
  104. 'variant': 'MCIMX515DJM8C',
  105. 'list': 'Refine',
  106. 'position': '5'
  107. });
  108. ga('ec:addImpression', {
  109. 'id': '841-MCIMX287CVM4B',
  110. 'name': 'Processors - Application Specialized CATSKILLS REV 1.2',
  111. 'category': 'Processors - Application Specialized',
  112. 'brand': 'NXP / Freescale',
  113. 'variant': 'MCIMX287CVM4B',
  114. 'list': 'Refine',
  115. 'position': '6'
  116. });
  117. ga('ec:addImpression', {
  118. 'id': '841-MCIMX6U5DVM10AC',
  119. 'name': 'Processors - Application Specialized i.MX 6 series 32-bit MPU, Dual ARM Cortex-A9 core, 1GHz, MAPBGA 624',
  120. 'category': 'Processors - Application Specialized',
  121. 'brand': 'NXP / Freescale',
  122. 'variant': 'MCIMX6U5DVM10AC',
  123. 'list': 'Refine',
  124. 'position': '7'
  125. });
  126. ga('ec:addImpression', {
  127. 'id': '841-MCIMX535DVV1C',
  128. 'name': 'Processors - Application Specialized IMX53 REV 2.1 COMM',
  129. 'category': 'Processors - Application Specialized',
  130. 'brand': 'NXP / Freescale',
  131. 'variant': 'MCIMX535DVV1C',
  132. 'list': 'Refine',
  133. 'position': '8'
  134. });
  135. ga('ec:addImpression', {
  136. 'id': '841-MCIMX6Q5EYM10AD',
  137. 'name': 'Processors - Application Specialized i.MX 6 series 32-bit MPU, Quad ARM Cortex-A9 core, 1GHz, FCBGA 624',
  138. 'category': 'Processors - Application Specialized',
  139. 'brand': 'NXP / Freescale',
  140. 'variant': 'MCIMX6Q5EYM10AD',
  141. 'list': 'Refine',
  142. 'position': '9'
  143. });
  144. ga('ec:addImpression', {
  145. 'id': '841-MCIMX6Q7CVT08AD',
  146. 'name': 'Processors - Application Specialized i.MX6 32bit A9 Core 800MHz, FCBGA 624',
  147. 'category': 'Processors - Application Specialized',
  148. 'brand': 'NXP / Freescale',
  149. 'variant': 'MCIMX6Q7CVT08AD',
  150. 'list': 'Refine',
  151. 'position': '10'
  152. });
  153. ga('ec:addImpression', {
  154. 'id': '841-MCIMX6S7CVM08AC',
  155. 'name': 'Processors - Application Specialized i.MX6 32bit A9 Core 800MHz, FCBGA 624',
  156. 'category': 'Processors - Application Specialized',
  157. 'brand': 'NXP / Freescale',
  158. 'variant': 'MCIMX6S7CVM08AC',
  159. 'list': 'Refine',
  160. 'position': '11'
  161. });
  162. ga('ec:addImpression', {
  163. 'id': '841-MCIMX6U7CVM08AC',
  164. 'name': 'Processors - Application Specialized i.MX6 32bit A9 Core 800MHz, FCBGA 624',
  165. 'category': 'Processors - Application Specialized',
  166. 'brand': 'NXP / Freescale',
  167. 'variant': 'MCIMX6U7CVM08AC',
  168. 'list': 'Refine',
  169. 'position': '12'
  170. });
  171. ga('ec:addImpression', {
  172. 'id': '841-MCIMX536AVV8C',
  173. 'name': 'Processors - Application Specialized IMX53 REV 2.1 AUTO',
  174. 'category': 'Processors - Application Specialized',
  175. 'brand': 'NXP / Freescale',
  176. 'variant': 'MCIMX536AVV8C',
  177. 'list': 'Refine',
  178. 'position': '13'
  179. });
  180. ga('ec:addImpression', {
  181. 'id': '671-AGB75LC04-QU-E',
  182. 'name': 'Processors - Application Specialized LCD Controller Chip Color 208 PQFP',
  183. 'category': 'Processors - Application Specialized',
  184. 'brand': 'Amulet Technologies',
  185. 'variant': 'AGB75LC04-QU-E',
  186. 'list': 'Refine',
  187. 'position': '14'
  188. });
  189. ga('ec:addImpression', {
  190. 'id': '841-MCIMX257DJM4A',
  191. 'name': 'Processors - Application Specialized IMX25 1.2 COMM',
  192. 'category': 'Processors - Application Specialized',
  193. 'brand': 'NXP / Freescale',
  194. 'variant': 'MCIMX257DJM4A',
  195. 'list': 'Refine',
  196. 'position': '15'
  197. });
  198. ga('ec:addImpression', {
  199. 'id': '595-OMAP3530ECBB',
  200. 'name': 'Processors - Application Specialized Applications Proc',
  201. 'category': 'Processors - Application Specialized',
  202. 'brand': 'Texas Instruments',
  203. 'variant': 'OMAP3530ECBB',
  204. 'list': 'Refine',
  205. 'position': '16'
  206. });
  207. ga('ec:addImpression', {
  208. 'id': '841-MCIMX6L8DVN10AB',
  209. 'name': 'Processors - Application Specialized i.MX6 Megrez',
  210. 'category': 'Processors - Application Specialized',
  211. 'brand': 'NXP / Freescale',
  212. 'variant': 'MCIMX6L8DVN10AB',
  213. 'list': 'Refine',
  214. 'position': '17'
  215. });
  216. ga('ec:addImpression', {
  217. 'id': '841-MCIMX283CVM4B',
  218. 'name': 'Processors - Application Specialized CATSKILLS REV 1.2',
  219. 'category': 'Processors - Application Specialized',
  220. 'brand': 'NXP / Freescale',
  221. 'variant': 'MCIMX283CVM4B',
  222. 'list': 'Refine',
  223. 'position': '18'
  224. });
  225. ga('ec:addImpression', {
  226. 'id': '595-DMVA2ZCE',
  227. 'name': 'Processors - Application Specialized A 595-MS320DM8147SCYE0',
  228. 'category': 'Processors - Application Specialized',
  229. 'brand': 'Texas Instruments',
  230. 'variant': 'DMVA2ZCE',
  231. 'list': 'Refine',
  232. 'position': '19'
  233. });
  234. ga('ec:addImpression', {
  235. 'id': '841-MCIMX257CJN4A',
  236. 'name': 'Processors - Application Specialized 12X12 IMX25 1.2',
  237. 'category': 'Processors - Application Specialized',
  238. 'brand': 'NXP / Freescale',
  239. 'variant': 'MCIMX257CJN4A',
  240. 'list': 'Refine',
  241. 'position': '20'
  242. });
  243. ga('ec:addImpression', {
  244. 'id': '595-OMAP3530ECBB72',
  245. 'name': 'Processors - Application Specialized Applications Proc',
  246. 'category': 'Processors - Application Specialized',
  247. 'brand': 'Texas Instruments',
  248. 'variant': 'OMAP3530ECBB72',
  249. 'list': 'Refine',
  250. 'position': '21'
  251. });
  252. ga('ec:addImpression', {
  253. 'id': '841-MCIMX31DVMN5D',
  254. 'name': 'Processors - Application Specialized 2.0.1 CONSUMER FULL',
  255. 'category': 'Processors - Application Specialized',
  256. 'brand': 'NXP / Freescale',
  257. 'variant': 'MCIMX31DVMN5D',
  258. 'list': 'Refine',
  259. 'position': '22'
  260. });
  261. ga('ec:addImpression', {
  262. 'id': '841-MCIMX283DVM4B',
  263. 'name': 'Processors - Application Specialized CATSKILLS REV 1.2',
  264. 'category': 'Processors - Application Specialized',
  265. 'brand': 'NXP / Freescale',
  266. 'variant': 'MCIMX283DVM4B',
  267. 'list': 'Refine',
  268. 'position': '23'
  269. });
  270. ga('ec:addImpression', {
  271. 'id': '841-MCIMX6D5EYM10AD',
  272. 'name': 'Processors - Application Specialized i.MX 6 series 32-bit MPU, Dual ARM Cortex-A9 core, 1GHz, FCBGA 624',
  273. 'category': 'Processors - Application Specialized',
  274. 'brand': 'NXP / Freescale',
  275. 'variant': 'MCIMX6D5EYM10AD',
  276. 'list': 'Refine',
  277. 'position': '24'
  278. });
  279. ga('ec:addImpression', {
  280. 'id': '841-MCIMX6Q5EYM10AC',
  281. 'name': 'Processors - Application Specialized i.MX6Q',
  282. 'category': 'Processors - Application Specialized',
  283. 'brand': 'NXP / Freescale',
  284. 'variant': 'MCIMX6Q5EYM10AC',
  285. 'list': 'Refine',
  286. 'position': '25'
  287. });
  288. ga('set','dimension1','zh-CN');
  289. ga('set','dimension30','eoKmjhu5J6NroOo6uJSVsPzSgdyrR7e4sSrtAaePWo4=');
  290. ga('set','dimension31','75abba3d-207e-453d-bb8c-89f81268befb');
  291. ga('set','dimension13','163AA125AA126AA195');
  292. ga('set','metric2',428);
  293. ga('set','dimension5','Processors - Application Specialized');
  294. ga('set','dimension48','a86sh');
  295. ga('set','dimension3','Refine');
  296. ga('set','dimension55','Products');
  297. ga('send', 'pageview');
  298. </script>
  299. <link href="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/?No=25" rel="next" content="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/?No=25" /><link href="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh" rel="canonical" content="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh" /><meta http-equiv="content-language" content="zh-cn" /><link href="../../../../../../css/style.axd?v=3.0.20160304.2&amp;type=css&amp;fileSet=CSS_Base&amp;lang=zh-CN" rel="stylesheet" type="text/css" /><link href="../../../../../../css/style.axd?v=3.0.20160304.2&amp;fileSet=Css_Search&amp;type=css&amp;lang=zh-CN" rel="stylesheet" type="text/css" /><link rel="alternate" hreflang="es-AR" href="http://ar.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="de-AT" href="http://www.mouser.at/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="en-AU" href="http://au.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="fr-BE" href="http://www.mouser.be/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="en-BG" href="http://www.mouser.bg/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="pt-BR" href="http://br.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="en-CA" href="http://ca.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="de-CH" href="http://www.mouser.ch/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="es-CL" href="http://www.mouser.cl/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="zh-Hans-CN" href="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="es-CO" href="http://co.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="es-CR" href="http://www.mouser.co.cr/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="cs-CZ" href="http://cz.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="de-DE" href="http://www.mouser.de/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="en-DK" href="http://www.mouser.dk/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="es-DO" href="http://www.mouser.do/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="es-EC" href="http://www.mouser.ec/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="en-EE" href="http://www.mouser.ee/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="es-ES" href="http://www.mouser.es/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="en-FI" href="http://www.mouser.fi/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="fr-FR" href="http://www.mouser.fr/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="en-GB" href="http://www.mouser.co.uk/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="en-GR" href="http://gr.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="es-GT" href="http://www.mouser.com.gt/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="zh-Hant-HK" href="http://www.mouser.hk/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="es-HN" href="http://www.mouser.hn/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="en-HR" href="http://hr.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="en-HU" href="http://hu.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="en-ID" href="http://www.mouser.co.id/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="en-IE" href="http://www.mouser.ie/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="en-IL" href="http://www.mouser.co.il/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="en-IN" href="http://www.mouser.in/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="it-IT" href="http://www.mouser.it/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="ja-JP" href="http://www.mouser.jp/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="ko-KR" href="http://kr.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="de-LI" href="http://www.mouser.li/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="fr-LU" href="http://www.mouser.lu/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="es-MX" href="http://www.mouser.mx/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="en-MY" href="http://my.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="nl-NL" href="http://nl.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="en-NO" href="http://no.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="en-NZ" href="http://nz.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="es-PE" href="http://www.mouser.pe/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="en-PH" href="http://www.mouser.ph/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="en-PL" href="http://pl.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="es-PR" href="http://www.mouser.pr/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="pt-PT" href="http://pt.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="en-RO" href="http://ro.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="ru-RU" href="http://ru.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="sv-SE" href="http://www.mouser.se/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="en-SG" href="http://www.mouser.sg/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="en-SK" href="http://www.mouser.sk/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="th-TH" href="http://th.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="en-TR" href="http://www.mouser.com.tr/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="zh-Hant-TW" href="http://www.mouser.tw/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="es-UY" href="http://uy.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="es-VE" href="http://ve.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="en-VN" href="http://www.mouser.vn/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="en-US" href="http://www.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="en-ZA" href="http://www.mouser.co.za/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="pt" href="http://br.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="zh-Hans" href="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="cs" href="http://cz.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="de" href="http://www.mouser.de/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="fr" href="http://www.mouser.fr/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="it" href="http://www.mouser.it/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="ja" href="http://www.mouser.jp/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="ko" href="http://kr.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="es" href="http://www.mouser.mx/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="nl" href="http://nl.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="ru" href="http://ru.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="sv" href="http://www.mouser.se/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="th" href="http://th.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="zh-Hant" href="http://www.mouser.tw/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><link rel="alternate" hreflang="en" href="http://www.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" /><style type="text/css">#d__fFH{position:absolute;top:-5000px;left:-5000px}#d__fF{font-family:serif;font-size:200px;visibility:hidden}#yxezcaswaauztuaqaww{display:none!important}</style><!-- Optimized for speed - Stingray Aptimizer --></head>
  300. <body id="ctl00_body" itemscope="" itemtype="http://schema.org/SearchResultsPage" class="widePage">
  301. <script src='../../../../../../flash/js/jquery-1.11.1.min.js' type="text/javascript"></script>
  302. <script src='../../../../../../flash/js/empty.file.js' type="text/javascript"></script>
  303. <script src='../../../../../../flash/js/jquery-ui-1.11.1.min.js' type="text/javascript"></script>
  304. <script src='../../../../../../flash/js/jquery.plugins2.js?v=3.0.20160304.2' type="text/javascript"></script>
  305. <script src='../../../../../../flash/js/default.js?v=3.0.20160304.2' type="text/javascript"></script>
  306. <!--[if lt IE 9]>
  307. <script src='../../../../../../flash/js/respond.min.js?v=3.0.20160304.2' type="text/javascript"></script>
  308. <![endif]-->
  309. <form method="post" action="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/" id="aspnetForm">
  310. <div class="aspNetHidden">
  311. <input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" />
  312. <input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="" />
  313. <input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="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" />
  314. <input type="hidden" name="__VIEWSTATEENCRYPTED" id="__VIEWSTATEENCRYPTED" value="" />
  315. </div>
  316. <script type="text/javascript">
  317. //<![CDATA[
  318. var theForm = document.forms['aspnetForm'];
  319. if (!theForm) {
  320. theForm = document.aspnetForm;
  321. }
  322. function __doPostBack(eventTarget, eventArgument) {
  323. if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
  324. theForm.__EVENTTARGET.value = eventTarget;
  325. theForm.__EVENTARGUMENT.value = eventArgument;
  326. theForm.submit();
  327. }
  328. }
  329. //]]>
  330. </script>
  331. <script src="/WebResource.axd?d=pynGkmcFUV13He1Qd6_TZIfBoSL8TZnsnOFihh6T3B3-ZDc9vWAo-Dvo5VSdzj9CkFL2Zg2&amp;t=635802997220000000" type="text/javascript"></script>
  332. <script type="text/javascript">
  333. //<![CDATA[
  334. var lasttemplateid='17178209';
  335. var subdomainname = '.mouser.cn';
  336. var lang = 'zh-CN';
  337. var country = 'CN';
  338. var shippingCountry = 'CN';
  339. var usdSubdomain = 'www';
  340. var subdomain = 'cn2';
  341. function attributecount() { return true; }
  342. var navids='17178209';var baseDomain = 'mouser.cn';var baseUrl = '/';function OpenRoHSPopup(url) {
  343. var left = (screen.width / 2) - (800 / 2);var top = (screen.height / 2) - (505 / 2); var msgWindow = window.open(url,'MsgWindow','height=505,width=800,top="+top+",left="+left+",scrollbars=1,resizable=1,menubar=0');
  344. }
  345. function GenerateClientID(prefix, i, suffix) {
  346. if (i < 10) { return prefix + '0' + String(i) + suffix; }
  347. else { return prefix + String(i) + suffix; }
  348. }
  349. var checked = false;
  350. function SelectAll() {
  351. checked = !checked;
  352. var i = 3;
  353. var chkSelect = document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', i, '_chkSelect'));
  354. while (i < 29) {
  355. if (chkSelect != null) chkSelect.checked = checked;
  356. i = i + 1;
  357. chkSelect = document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', i, '_chkSelect'));
  358. }
  359. }
  360. function IsAllChecked(checked) {
  361. var i = 3;
  362. var chkSelect = document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', i, '_chkSelect'));
  363. while (i < 29) {
  364. if (chkSelect != null && chkSelect.checked != checked) return false;
  365. i = i + 1;
  366. chkSelect = document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', i, '_chkSelect'));
  367. }
  368. return true;
  369. }
  370. function IsAnyChecked(checked) {
  371. return !IsAllChecked(!checked);
  372. }
  373. function SelectRow(row, checked) {
  374. document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', row + 2, '_chkSelect')).checked = checked;
  375. }
  376. function RowSelected(index, checked) { }
  377. function GetQuantityTextboxByRow(row) {
  378. return GetQuantityTextboxByIndex(row + 2);
  379. }
  380. function GetQuantityTextboxByIndex(index) {
  381. return document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', index, '_ctl08_txtQuantity'));
  382. }
  383. function SelectQuantity(row, quantity) {
  384. txtQuantity = GetQuantityTextboxByRow(row);
  385. if (txtQuantity == null) { return; }
  386. txtQuantity.value = quantity;
  387. SelectRow(row, true);
  388. }
  389. var qtyRegEx = /^([0]|\s)*$/;
  390. function IsQuantityEmptyOrZero(quantity) {
  391. return qtyRegEx.test(quantity);
  392. }
  393. function QuantityChanged(row, quantity) {
  394. SelectRow(row, !IsQuantityEmptyOrZero(quantity));
  395. }
  396. var QuantityRowSelectedBase = RowSelected;
  397. function QuantityRowSelected(index, checked) {
  398. QuantityRowSelectedBase(index, checked);
  399. txtQuantity = GetQuantityTextboxByIndex(index);
  400. if (txtQuantity == null) { return; }
  401. if (checked && IsQuantityEmptyOrZero(txtQuantity.value)) { txtQuantity.value = '1'; }
  402. else if (!checked && !IsQuantityEmptyOrZero(txtQuantity.value)) { txtQuantity.value = ''; }
  403. }
  404. RowSelected = QuantityRowSelected;
  405. //]]>
  406. </script>
  407. <script src="/ScriptResource.axd?d=uHIkleVeDJf4xS50Krz-yLZiFX7sHlbDXYG7grp_ShaHv69VIAEOcpM4TN9lauhC0X7ygOmvbN9UoBDJp9Fxpp070ZuaWnHq0iGu2wrMiqeKRHSQRp1JtxMBc1rFMtqKP3k9luRsKE2zUCEe5vPEtaEcaYs1&amp;t=5f9d5645" type="text/javascript"></script>
  408. <script src="/ScriptResource.axd?d=Jw6tUGWnA15YEa3ai3FadNDaKN5iB6DZajN3yaqKXlja_PtqFi29BLm2xLtzx_CFBg9ewsT8N0e16Y-T0mixPBOugHEUl7mcCpeiqN8QyENMYH_4VU249VWR4nBfm5bTbFpPAS0ObKbPyc9VIH6VCmU2vz81&amp;t=5f9d5645" type="text/javascript"></script>
  409. <div id="cookie-notification-bar">
  410. </div>
  411. <div id="zone34-banner" class="banmanzone" data-zone-id="34" data-kw="newVisitor"></div>
  412. <div id="wideGab" class="wideGab">
  413. <div id="ctl00_globalActionBar" class="global-action-bar">
  414. <div id="gab-container" class="container">
  415. <div id="contact" class="row">
  416. <div class="topPadding col-xs-6">
  417. <div class="inline-block">
  418. <a href="http://www.mouser.cn/contact/" id="ctl00_gab1_A1" class="smallgrey contactInfo" title="联系我们">
  419. <span id="ctl00_gab1_lbl2">联系Mouser (上海)</span>&nbsp;
  420. 400-821-6111</a><div style="display: none;"><a href="xxrrtbuu.html" id="yxezcaswaauztuaqaww" rel="file">ubqtbausacydzezvysubqtb</a></div>
  421. &nbsp;&nbsp;&nbsp;&nbsp;<span class="pipe">|</span>&nbsp;&nbsp;&nbsp;&nbsp;
  422. <a href="http://www.mouser.cn/feedback.aspx" id="ctl00_gab1_AF" class="smallgrey imgFeedBack" title="反馈">
  423. 反馈</a>
  424. </div>
  425. <span class="qqIcon inline-block">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<script charset='utf-8' type='text/javascript' src='http://wpa.b.qq.com/cgi/wpa.php?key=XzkzODAwMTY0Nl83MDM1OV80MDA4MjE2MTExXw'></script>
  426. </span>&nbsp;&nbsp;
  427. </div>
  428. <div class="col-xs-6 align-right">
  429. <div id="tdImg" class="inline-block topPadding9px">
  430. <a href="http://www.mouser.cn/Cart/Cart.aspx" id="ctl00_gab1_A3" onclick="return MiniCart.ViewCartButton(&#39;Cart Hover&#39;,&#39;Global Action Bar&#39;);" class="smallgrey">
  431. <img src="/Images/global-cart-icon.png" class="visualAttributeImage" /></a>
  432. <a id="ctl00_gab1_miniCarthypLink" class="padding10Right" onclick="javascript:return MiniCart.ViewCartButton(&#39;Cart Hover&#39;,&#39;Global Action Bar&#39;);" href="http://www.mouser.cn/Cart/Cart.aspx">购物车</a>
  433. </div>
  434. <div class="topPadding inline-block">
  435. <span class="pipe">|</span>&nbsp;&nbsp;&nbsp;
  436. <a id="ctl00_gab1_A2" title="更改位置" href="http://www.mouser.cn/localsites.aspx?qs=0gZ0gv0KDwvP7WQAo8iqDRfsfSMqyvMLMMwfxyI2u5%2f4qc5ce9IXZBtQkqWv2G7D%2fzEbCxVZR9TMbhabil8UazR0wvsJ%252bTwQdvE13pxfphL%252bxWP9WcO1fAZFsXetCwXhFU%2fSG0GGGde%2fOX1PAXbgAFaGu%252b9VDxSoo6I6%2frzZlRLvRAJY8d24mA%3d%3d">更改国家</a>
  437. <a id="ctl00_gab1_A6" title="更改位置" class="tdFlag topPadding" href="http://www.mouser.cn/localsites.aspx?qs=0gZ0gv0KDwvP7WQAo8iqDRfsfSMqyvMLMMwfxyI2u5%2f4qc5ce9IXZBtQkqWv2G7D%2fzEbCxVZR9TMbhabil8UazR0wvsJ%252bTwQdvE13pxfphL%252bxWP9WcO1fAZFsXetCwXhFU%2fSG0GGGde%2fOX1PAXbgAFaGu%252b9VDxSoo6I6%2frzZlRLvRAJY8d24mA%3d%3d"><img id="ctl00_gab1_img7" class="visualAttributeImage" src="../../../../../../images/international/flags/cn2.gif" alt="更改位置" style="border-width: 1px;" /></a>
  438. <input type="hidden" name="ctl00$gab1$hidSelectedCurrency" id="ctl00_gab1_hidSelectedCurrency" value="-1" />
  439. <span id="ctl00_gab1_lbl1">RMB</span>
  440. </div>
  441. </div>
  442. </div>
  443. </div>
  444. <div style="clear: both;"></div>
  445. <a href="#TB_inline?height=440&width=400&inlineId=divCurrencyPopup&modal=true" id="tblink"
  446. class="thickbox"></a>
  447. <div id="divCurrencyPopup" class="currency-popup">
  448. <div class="currency-close">
  449. <a href="javascript:void(0)" title="Close Window" onclick="javascript:CloseCurrencyPopup();">&nbsp;</a>
  450. </div>
  451. <div>
  452. <div id="popupHeader" style="width:auto;"><img id="ctl00_gab1_uc1_imgFlag" src="../../../../../../images/international/flags/cn2.gif" alt="中国" />&nbsp;<span id="ctl00_gab1_uc1_lblCountry">中国</span></div>
  453. <br/>
  454. <div style="padding: 0 20px 0 20px">
  455. <span id="ctl00_gab1_uc1_lblInstructions">请确认您选择的货币:</span><br />
  456. <br />
  457. <table width="95%">
  458. <tr>
  459. <td width="20%">
  460. <input type="submit" name="ctl00$gab1$uc1$rptCurrencies$ctl00$btnCurrency" value="RMB" id="ctl00_gab1_uc1_rptCurrencies_ctl00_btnCurrency" class="button" />
  461. </td>
  462. <td>
  463. <strong><span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblCurrencyPluralName">人民币</span></strong>
  464. <br/>
  465. <span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblIncoterms">国际贸易术语:DDP<br /></span>
  466. <span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblShippingTerms">All prices <u>include</u> duty and customs fees.<br /></span>
  467. <span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblFreeShipping"></span>
  468. <span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblPaymentTerms"></span>
  469. </td>
  470. </tr>
  471. </table>
  472. </div>
  473. </div>
  474. </div>
  475. <div id="cartDialog" class="CartDialog" style="display: none;">
  476. <table id="miniCartOnly">
  477. <tr id="divall">
  478. <td id="tdCart">
  479. <table style="width: 100%; padding: 0px; border: 0px">
  480. <tr>
  481. <td id="divCartSummText" style="width: 50%; padding-top: 3px; padding-bottom: 3px">
  482. <span id="ctl00_gab1_ucmini_lblCartSummary" class="summaryTxt">购物车小结</span>
  483. </td>
  484. <td id="tdSchedul" class="tdScheduleOrder" style="display: none">
  485. <span id="ctl00_gab1_ucmini_lblScheduledError" class="scheduleOrderTxt" style="float: left;">购物车包含定期发货商品</span>
  486. </td>
  487. </tr>
  488. </table>
  489. <table id="tableMiniCartItms">
  490. <tr id="trCart">
  491. <td>
  492. <hr id="ctl00_gab1_ucmini_hrSeparatorTop" style="padding: 0px; display: none; margin: 0px !important;"></hr>
  493. <table id="tblMiniCart">
  494. <thead>
  495. <tr>
  496. <th class="miniCartColumn">制造商</th>
  497. <th class="miniCartColumn MiniCartHdBg">制造商。 编号:</th>
  498. <th class="miniCartColumn MiniCartHdBg">数量</th>
  499. <th class="MiniCartHdStyle MiniCartHdBg">总价(含17%增值税)</th>
  500. </tr>
  501. </thead>
  502. </table>
  503. <script type="text/javascript">
  504. var miniCartResources = {"YourCartIsEmpty":"您的购物车是空的。","CartSubTotal":"订单总计(含17%增值税)","lblCart":"购物车","SelectionRequiredToBuy":"请选择希望购买的产品。","AddedToCart":"添加至购物车","CartSummary":"购物车小结","items":"项目","item":"项目"};
  505. var currentGuid = '75abba3d-207e-453d-bb8c-89f81268befb';
  506. var currentCountryCode = 'CN';
  507. var currentCurrencyCode= 'RMB';
  508. var currencyCulture = 'zh-CN';
  509. var cultureCode = 'zh-CN';
  510. var customerID = '';
  511. </script>
  512. <hr id="ctl00_gab1_ucmini_hrSeparatorBtm" style="padding: 0px; display: none; margin: 0px !important;"></hr>
  513. </td>
  514. </tr>
  515. </table>
  516. <div style="display: none; padding-top: 10px" id="divSingleItem">
  517. <table id="tblSingeItem">
  518. <tr>
  519. <!-- Here goes the single item -->
  520. <td style="padding-right: 15px">
  521. <img id="ctl00_gab1_ucmini_CarPDFSearch_miniCartImg" class="MiniCartMxImg" /></td>
  522. <td style="align: right; padding-right: 2px" id="tdSingleItms">
  523. <div id="divAll">
  524. <div id="wrapper">
  525. <div id="divLbl">
  526. <span id="ctl00_gab1_ucmini_CarPDFSearch_lblMFg" class="label">制造商 零件编号</span>
  527. </div>
  528. <div id="divHyp">
  529. </div>
  530. </div>
  531. <div id="divRest">
  532. <span id="ctl00_gab1_ucmini_CarPDFSearch_lblMfr" class="label">制造商:</span><span id="ctl00_gab1_ucmini_CarPDFSearch_lblMiniMfrName"></span><br />
  533. <span id="ctl00_gab1_ucmini_CarPDFSearch_lblDes" class="label">描述:</span><span id="ctl00_gab1_ucmini_CarPDFSearch_lblMiniPartDes" class="MiniCartDescription"></span>
  534. <br />
  535. <span id="ctl00_gab1_ucmini_CarPDFSearch_LblQty" class="label">数量:</span><span id="ctl00_gab1_ucmini_CarPDFSearch_lblMiniCartQty"></span><br />
  536. </div>
  537. </div>
  538. </td>
  539. </tr>
  540. </table>
  541. </div>
  542. <div id="divForCart" class="divMsgLnkTotal" style="display: none">
  543. <hr id="ctl00_gab1_ucmini_hrSprCartSubtotal" style="padding: 0px; display: none;"></hr>
  544. <span id="ctl00_gab1_ucmini_lblCartTotalAmount" class="MiniCartSubTotal" style="display: none;">购物车小结</span><br />
  545. <span id="ctl00_gab1_ucmini_lblCartErorMsg" class="miniCartError" style="display: none">* 您的购物车包含错误。</span>
  546. <div style="display: none" class="CenterAll" id="divToCartAtMiniCart">
  547. <a onclick="javascript:return MiniCart.SendToCartPage(&#39;Cart Hover&#39;,&#39;View Cart Button&#39;);" id="ctl00_gab1_ucmini_linkToCartAtMiniCart" class="continue btn-Checkout" href="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions(&quot;ctl00$gab1$ucmini$linkToCartAtMiniCart&quot;, &quot;&quot;, false, &quot;&quot;, &quot;http://www.mouser.cn/Cart/Cart.aspx&quot;, false, true))" style="color:White;text-decoration:none;">查看购物车</a>
  548. </div>
  549. </div>
  550. </td>
  551. <td style="display: none" id="trCartSubTotal">
  552. <table class="tblMiniCartSub">
  553. <tr>
  554. <td align="right" style="padding-bottom: 5px; padding-top: 2px">
  555. <span id="ctl00_gab1_ucmini_MiniCartSubTotoal_lblMiniCartItemTotal" class="label"></span>
  556. <hr id="ctl00_gab1_ucmini_MiniCartSubTotoal_hrSeparator" style="padding: 1px"></hr>
  557. </td>
  558. </tr>
  559. <tr>
  560. <td align="right" style="padding-bottom: 5px">
  561. <span id="ctl00_gab1_ucmini_MiniCartSubTotoal_lblMiniCartBalance">未结余额指根据您选择的付款方式目前应当支付而尚未支付的所有费用。</span>
  562. </td>
  563. </tr>
  564. <tr>
  565. <td align="left" style="padding-bottom: 5px">
  566. <span id="ctl00_gab1_ucmini_MiniCartSubTotoal_lblFreeShipping" class="miniCartFreeShipMsg"></span>
  567. </td>
  568. </tr>
  569. <tr>
  570. <td align="center" style="padding-top: 5px; text-overflow: ellipsis; overflow: hidden; white-space: nowrap;">
  571. <a onclick="return MiniCart.ContinueShopping();" id="ctl00_gab1_ucmini_MiniCartSubTotoal_lnkBtnContune" class="blue-button showHorizontalMargin" href="javascript:__doPostBack(&#39;ctl00$gab1$ucmini$MiniCartSubTotoal$lnkBtnContune&#39;,&#39;&#39;)" style="color:White;text-decoration:none;">继续购物</a>
  572. <a onclick="return MiniCart.SendToCartPage(&#39;Add to Cart Modal&#39;,&#39;View Cart&#39;);" id="ctl00_gab1_ucmini_MiniCartSubTotoal_lnkBtnCart" class="continue btn-Checkout showHorizontal" href="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions(&quot;ctl00$gab1$ucmini$MiniCartSubTotoal$lnkBtnCart&quot;, &quot;&quot;, false, &quot;&quot;, &quot;http://www.mouser.cn/Cart/Cart.aspx&quot;, false, true))" style="color:White;text-decoration:none;">查看购物车</a>
  573. </td>
  574. </tr>
  575. </table>
  576. <span id="ctl00_gab1_ucmini_erorMsgSubtotal" class="miniCartError" style="display: none; float: right">* 您的购物车包含错误。</span>
  577. </td>
  578. </tr>
  579. <tr id="trHideModalCheckBox" style="display: none">
  580. <td colspan="2">
  581. <span class="cssChkhideModal"><input id="ctl00_gab1_ucmini_chkHideModal" type="checkbox" name="ctl00$gab1$ucmini$chkHideModal" /><label for="ctl00_gab1_ucmini_chkHideModal">不再显示,直接进入购物车。 </label></span>
  582. </td>
  583. </tr>
  584. </table>
  585. <script type="text/javascript">
  586. $(document).ready(function () {
  587. MiniCart.source = 'refine';
  588. });
  589. </script>
  590. </div>
  591. <script type="text/javascript">
  592. function OpenCurrencyPopup() {
  593. $("#tblink").trigger('click');
  594. }
  595. function CloseCurrencyPopup() {
  596. var ddlCurrency = document.getElementById('ctl00_gab1_ddlCurrencies');
  597. var hidCurrencyValue = document.getElementById('ctl00_gab1_hidSelectedCurrency');
  598. if (ddlCurrency != null && hidCurrencyValue != null) {
  599. ddlCurrency.selectedIndex = hidCurrencyValue.value;
  600. }
  601. window.location.reload();
  602. }
  603. </script>
  604. </div>
  605. </div>
  606. <div id="wideHeader" class="wideHeader">
  607. <div id="header" class="container" itemscope itemtype="http://schema.org/WPHeader">
  608. <div id="search" class="row">
  609. <div id="logo" class='col-xs-4'>
  610. <a id="ctl00_NavHeader_hlnk1" title="Mouser Electronics - 电子元器件分销商" href="../../../../../../" target="_self">Mouser Electronics - 电子元器件分销商</a>
  611. </div>
  612. <div id="search-block" class="col-xs-4">
  613. <div id="search-title">
  614. 物料编号/关键字
  615. </div>
  616. <div id="search-bar">
  617. <div id="ctl00_NavHeader_pnl1" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_NavHeader_btn1&#39;)">
  618. <div id="searchPartNumberBox" class="search-box inline-block">
  619. <input name="ctl00$NavHeader$txt1" type="text" id="ctl00_NavHeader_txt1" title="物料编号/关键字" class="search-txt" />
  620. <input type="submit" name="ctl00$NavHeader$btn1" value="" id="ctl00_NavHeader_btn1" title="搜索" class="searchbutton" class="Empty" />
  621. </div>
  622. <div class="inline-block">
  623. <span title="选中时,搜索将只返回库存的产品。"><input id="ctl00_NavHeader_chkStockedMouserHeader" type="checkbox" name="ctl00$NavHeader$chkStockedMouserHeader" /><label for="ctl00_NavHeader_chkStockedMouserHeader">有库存</label></span><br />
  624. <span title="选中时,搜索将只返回符合 RoHS 规范要求和 RoHS 豁免产品。"><input id="ctl00_NavHeader_chkRoHSCompliantMouserHeader" type="checkbox" name="ctl00$NavHeader$chkRoHSCompliantMouserHeader" /><label for="ctl00_NavHeader_chkRoHSCompliantMouserHeader">符合RoHS</label></span>
  625. </div>
  626. </div>
  627. </div>
  628. </div>
  629. <div id="account" class="col-xs-4 align-right">
  630. <ul>
  631. <li>
  632. </li>
  633. <li>
  634. <a id="ctl00_NavHeader_hlnk3" title="登录" href="https://www.mouser.cn/MyMouser/MouserLogin.aspx?qs=0gZ0gv0KDwvP7WQAo8iqDRfsfSMqyvMLMMwfxyI2u5%2f4qc5ce9IXZBtQkqWv2G7D%2fzEbCxVZR9TMbhabil8UazR0wvsJ%252bTwQdvE13pxfphL%252bxWP9WcO1fAZFsXetCwXhFU%2fSG0GGGde%2fOX1PAXbgAFaGu%252b9VDxSoo6I6%2frzZlRLvRAJY8d24mA%3d%3d">登录</a>
  635. </li>
  636. <li>
  637. </li>
  638. <li>
  639. <a id="ctl00_NavHeader_hlnk5" title="新用户注册" href="https://www.mouser.cn/MyMouser/CreateAccount.aspx">新用户注册</a>
  640. </li>
  641. <li>
  642. <a id="ctl00_NavHeader_hlnk7" title="订单历史" href="http://www.mouser.cn/OrderHistory/OrderHistoryLogin.aspx">订单历史</a>
  643. </li>
  644. <li>
  645. <!-- Mush:TBC -->
  646. <a id="ctl00_NavHeader_hlnk6" title="订阅" onclick="javascript:return SaveSubscriptionURL();" href="https://sub.info.mouser.com/subscription-newsletter-catalog-sc" target="_blank">订阅</a>
  647. </li>
  648. </ul>
  649. </div>
  650. </div>
  651. <div id="navArea" class="row">
  652. <div class="col-xs-12">
  653. <div id="navMain" class="inline-block">
  654. <div class="navbar">
  655. <ul class="topnav">
  656. <li>
  657. <a id="ctl00_NavHeader_RepeaterNav_ctl00_hyperHeaderNav" href="/Electronic-Components/">产品</a>
  658. <ul class="subnav" id="subnav">
  659. <li>
  660. <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/Electronic-Components/">所有产品</a>
  661. </li>
  662. <li>
  663. <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/new/">最新产品</a>
  664. </li>
  665. <li>
  666. <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/new/products">按类别划分的新产品</a>
  667. </li>
  668. <li>
  669. <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/applications/">新技术</a>
  670. </li>
  671. </ul>
  672. </li>
  673. <li>
  674. <a id="ctl00_NavHeader_RepeaterNav_ctl01_hyperHeaderNav" href="/supplierpage/">制造商</a>
  675. <ul class="subnav" id="subnav">
  676. <li>
  677. <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/supplierpage/">所有制造商A-Z</a>
  678. </li>
  679. <li>
  680. <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/newsuppliers/">新制造商</a>
  681. </li>
  682. <li>
  683. <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/suppliercategory/">制造商(按产品类别分类)</a>
  684. </li>
  685. <li>
  686. <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/catalogRequest/catalogdownloads.aspx">下载线卡</a>
  687. </li>
  688. </ul>
  689. </li>
  690. <li>
  691. <a id="ctl00_NavHeader_RepeaterNav_ctl02_hyperHeaderNav" href="/applications/">应用</a>
  692. <ul class="subnav" id="subnav">
  693. <li>
  694. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/blog">Mouser博客</a>
  695. </li>
  696. <li>
  697. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/applications/audio_applications">音频</a>
  698. </li>
  699. <li>
  700. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/applications/automotive-applications">汽车</a>
  701. </li>
  702. <li>
  703. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/applications/industrial_applications">工业</a>
  704. </li>
  705. <li>
  706. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl05_hyperHeaderNavChild" href="/applications/internet-of-things">物联网</a>
  707. </li>
  708. <li>
  709. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl06_hyperHeaderNavChild" href="/applications/lighting">照明</a>
  710. </li>
  711. <li>
  712. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl07_hyperHeaderNavChild" href="/applications/open-source-hardware">开源硬件</a>
  713. </li>
  714. <li>
  715. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl08_hyperHeaderNavChild" href="/applications/rf-wireless-technology">无线射频</a>
  716. </li>
  717. <li>
  718. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl09_hyperHeaderNavChild" href="/applications/sensor_technology">传感器技术</a>
  719. </li>
  720. <li>
  721. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl10_hyperHeaderNavChild" href="/applications/usb-technology">USB技术</a>
  722. </li>
  723. <li>
  724. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl11_hyperHeaderNavChild" href="/applications/">更多应用</a>
  725. </li>
  726. </ul>
  727. </li>
  728. <li>
  729. <a id="ctl00_NavHeader_RepeaterNav_ctl03_hyperHeaderNav" href="/servicesandtools/">服务和工具</a>
  730. <ul class="subnav" id="subnav">
  731. <li>
  732. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/MyMouser/AccountSummary.aspx">登录/创建账户</a>
  733. </li>
  734. <li>
  735. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/EZBuy/EZBuy.aspx">简易订购工具</a>
  736. </li>
  737. <li>
  738. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/OrderHistory/ProjectsView.aspx">项目管理器</a>
  739. </li>
  740. <li>
  741. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/bomtool/">BOM工具</a>
  742. </li>
  743. <li>
  744. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl05_hyperHeaderNavChild" href="/Tools/part-list-import.aspx">零件清单导入器</a>
  745. </li>
  746. <li>
  747. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl06_hyperHeaderNavChild" href="/accelerator/">搜索加速器</a>
  748. </li>
  749. <li>
  750. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl07_hyperHeaderNavChild" href="/Quote/Quote.aspx">请求报价</a>
  751. </li>
  752. <li>
  753. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl08_hyperHeaderNavChild" href="https://sub.info.mouser.com/subscription-newsletter-catalog-sc" target="_blank">订阅电子邮件</a>
  754. </li>
  755. <li>
  756. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl09_hyperHeaderNavChild" href="/blog">Mouser博客</a>
  757. </li>
  758. <li>
  759. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl10_hyperHeaderNavChild" href="/servicesandtools/">更多服务和工具</a>
  760. </li>
  761. </ul>
  762. </li>
  763. <li>
  764. <a id="ctl00_NavHeader_RepeaterNav_ctl04_hyperHeaderNav" href="/CatalogRequest/Catalog.aspx">目录</a>
  765. <ul class="subnav" id="subnav">
  766. <li>
  767. <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/CatalogRequest/Catalog.aspx">所有目录选项</a>
  768. </li>
  769. <li>
  770. <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/catalogviewer/default.aspx">在线目录</a>
  771. </li>
  772. <li>
  773. <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/CatalogRequest/CatalogDownloads.aspx">下载 Mouser 目录</a>
  774. </li>
  775. <li>
  776. <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="https://sub.info.mouser.com/subscription-newsletter-catalog-sc" target="_blank">目录订阅</a>
  777. </li>
  778. </ul>
  779. </li>
  780. <li>
  781. <a id="ctl00_NavHeader_RepeaterNav_ctl05_hyperHeaderNav" href="/Help/Help.aspx">帮助</a>
  782. <ul class="subnav" id="subnav">
  783. <li>
  784. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/aboutus/">关于 Mouser</a>
  785. </li>
  786. <li>
  787. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/contact/">联系我们</a>
  788. </li>
  789. <li>
  790. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/feedback.aspx">反馈</a>
  791. </li>
  792. <li>
  793. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/helppage/#FAQ">常见问题</a>
  794. </li>
  795. <li>
  796. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl05_hyperHeaderNavChild" href="/Help/Help.aspx">更多幫助主題</a>
  797. </li>
  798. </ul>
  799. </li>
  800. </ul>
  801. </div>
  802. </div>
  803. <div class="onlineCatalog inline-block">
  804. <a href="/mobilecatalog.aspx" class="btnOnlineCatalog" title="在线目录"><span class="online-catalog-child inline-block">在线目录</span></a>
  805. </div>
  806. </div>
  807. </div>
  808. </div>
  809. <div style="visibility: hidden; height: 0px;">
  810. <input name="ctl00$NavHeader$lblTrdTerm" type="text" id="ctl00_NavHeader_lblTrdTerm" />
  811. <input name="ctl00$NavHeader$lblIsNewTerm" type="text" id="ctl00_NavHeader_lblIsNewTerm" />
  812. <input type="hidden" name="ctl00$NavHeader$hdQuickSingUpPage" id="ctl00_NavHeader_hdQuickSingUpPage" value="https://sub.info.mouser.com/quick-signup-sc" />
  813. </div>
  814. <script type="text/javascript">
  815. $(document).ready(function () {
  816. //* change to html5 catalog if javascript is enabled *
  817. $('a.btnOnlineCatalog').attr('href', '/catalogviewer/default.aspx');
  818. });
  819. </script>
  820. <script type="text/javascript" src='../../../../../../javascript/genLib.js'></script>
  821. </div>
  822. <div id="ctl00_divWide" class="divWide">
  823. <link rel="stylesheet" type="text/css" href='../../../../../../css/fontawesome/css/font-awesome.min.css' />
  824. <br />
  825. <strong></strong>
  826. <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl00_lnkBreadcrumb" href="../../../../../../Electronic-Components/" style="font-size: 9pt; font-weight: bold;">所有产品</a>
  827. <strong>></strong>
  828. <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl01_lnkBreadcrumb" href="../../../../../_/N-5gcb/" style="font-size: 9pt; font-weight: bold;">半导体</a>
  829. <strong>></strong>
  830. <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl02_lnkBreadcrumb" href="../../../../_/N-6j73k/" style="font-size: 9pt; font-weight: bold;">集成电路 - IC</a>
  831. <strong>></strong>
  832. <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl03_lnkBreadcrumb" itemprop="isPartOf" href="../../../_/N-a86bc/" style="font-size: 9pt; font-weight: bold;">嵌入式处理器和控制器</a>
  833. <strong>></strong>
  834. <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl04_lnkBreadcrumb" href="./" style="font-size: 9pt; font-weight: bold;">处理器 - 专门应用</a>
  835. <hr />
  836. <div id="ctl00_ContentMain_categorySearchLimitsDiv" class="hidden">
  837. <div class="categorySearchLimits">
  838. <div id="ctl00_ContentMain_uc1_pnlCategorySearchLimits">
  839. </div>
  840. </div>
  841. </div>
  842. <table border="0" width="100%">
  843. <tr>
  844. <td>
  845. <div id="ctl00_ContentMain_pnl3">
  846. <div id="category-top" class="category-content">
  847. <a id="ctl00_ContentMain_lnkCategory" class="SearchResultsTopLevelCategory"><h1> 处理器 - 专门应用</h1></a>
  848. <!--Marketing Content-->
  849. <div id="ctl00_ContentMain_refinemfglogo">
  850. </div>
  851. </div><!--.category-content-->
  852. </div>
  853. </td>
  854. </tr>
  855. <tr>
  856. <td>
  857. </td>
  858. </tr>
  859. <tr>
  860. <td>
  861. <div id="refine-page2">
  862. </div>
  863. </td>
  864. </tr>
  865. </table>
  866. <div id="ctl00_ContentMain_divTabs" class="row">
  867. <div class="col-xs-12">
  868. <div id="tabsNavigation" >
  869. <ul>
  870. <li id="ctl00_ContentMain_liProductsTab" class="active">
  871. <a id="ctl00_ContentMain_liProductsLink" class="aspNetDisabled">产品<span id="ctl00_ContentMain_lblProductCount" class="item-counts">(428)</span></a>
  872. </li>
  873. <li id="ctl00_ContentMain_liDatasheetsTab" class="">
  874. <a id="ctl00_ContentMain_liDatasheetsLink" onclick="SendGATracking(&#39;Refine Tab Click&#39;, &#39;Datasheets&#39;, &#39;Processors - Application Specialized&#39;);" href="../../Datasheets/_/N-a86sh">数据表<sup class="superscript">BETA</sup><span id="ctl00_ContentMain_lblDatasheetCount" class="item-counts">(59)</span></a>
  875. </li>
  876. <li id="ctl00_ContentMain_liImagesTab" class="">
  877. <a id="ctl00_ContentMain_liImagesLink" onclick="SendGATracking(&#39;Refine Tab Click&#39;, &#39;Images&#39;, &#39;Processors - Application Specialized&#39;);" href="../../Images/_/N-a86sh">图片<sup class="superscript">BETA</sup><span id="ctl00_ContentMain_lblImagesCount" class="item-counts">(49)</span></a>
  878. </li>
  879. <li id="ctl00_ContentMain_liNewestTab" class="">
  880. <a id="ctl00_ContentMain_liNewestProdLink" onclick="SendGATracking(&#39;Refine Tab Click&#39;, &#39;Newest Products&#39;, &#39;Processors - Application Specialized&#39;);" href="../../Newest-Products/_/N-a86sh">最新产品</a>
  881. </li>
  882. </ul>
  883. </div>
  884. </div>
  885. </div>
  886. <div id="tabDivs" class="tab-divs">
  887. <script type="text/javascript">
  888. //<![CDATA[
  889. Sys.WebForms.PageRequestManager._initialize('ctl00$ContentMain$ScriptManager1', 'aspnetForm', [], [], [], 90, 'ctl00');
  890. //]]>
  891. </script>
  892. <div id="ctl00_ContentMain_liProducts">
  893. <div id="refineSearchDiv">
  894. <div id="ctl00_ContentMain_pnlRefineSearchBar" class="refine-search-bar-2">
  895. <div id="refine-keyword-search-2">
  896. <div id="ctl00_ContentMain_uc2_BoxSearch" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_uc2_btnSearch&#39;)">
  897. <div id="boxPartSearch2">
  898. <table id="ctl00_ContentMain_uc2_tblSearch" class="tblSearch2">
  899. <tr>
  900. <td rowspan="3" style="vertical-align: middle">
  901. <div id="searchPartNumberBox" class="search-box" >
  902. <input name="ctl00$ContentMain$uc2$txtPartKeywordSearch" type="text" id="ctl00_ContentMain_uc2_txtPartKeywordSearch" title="物料编号/关键字" class="search-txt" />
  903. <input type="submit" name="ctl00$ContentMain$uc2$btnSearch" value="" onclick="return attributecount();" id="ctl00_ContentMain_uc2_btnSearch" title="搜索" class="searchbutton" class="Empty" />
  904. </div>
  905. </td>
  906. </tr>
  907. <tr>
  908. <td class="chk-Search">
  909. <span title="选中时,搜索将只返回库存的产品。"><input id="ctl00_ContentMain_uc2_chkStocked" type="checkbox" name="ctl00$ContentMain$uc2$chkStocked" /><label for="ctl00_ContentMain_uc2_chkStocked">有库存</label></span>
  910. </td>
  911. </tr>
  912. <tr>
  913. <td class="chk-Search">
  914. <span title="选中时,搜索将只返回符合 RoHS 规范要求和 RoHS 豁免产品。"><input id="ctl00_ContentMain_uc2_chkRoHSCompliant" type="checkbox" name="ctl00$ContentMain$uc2$chkRoHSCompliant" /><label for="ctl00_ContentMain_uc2_chkRoHSCompliant">符合RoHS</label></span>
  915. </td>
  916. </tr>
  917. </table>
  918. <input type="hidden" name="ctl00$ContentMain$uc2$searchWithinResults" id="ctl00_ContentMain_uc2_searchWithinResults" value="在结果中搜索" />
  919. </div>
  920. <script type="text/javascript" src='../../../../../../flash/js/Placeholders.min.js'></script>
  921. <script type="text/javascript" src='../../../../../../flash/js/watermark.js'></script>
  922. </div>
  923. </div>
  924. <div id="refine-mfg-select-2">
  925. </div>
  926. <div class="clear">
  927. </div>
  928. <table class="SearchParametricTable2">
  929. <tr>
  930. <td>
  931. <div id="AttributesDiv2">
  932. <div id="ctl00_ContentMain_uc5_categorySearchLimitsDiv" style="padding-top: 5px;">
  933. <div class="categorySearchLimits">
  934. <div id="ctl00_ContentMain_uc5_CategorySearchLimits_pnlCategorySearchLimits">
  935. <span class="subCategoryHeader">类别</span>&nbsp;&nbsp;<span title="半导体"><input id="ctl00_ContentMain_uc5_CategorySearchLimits_chkbx254459|Semiconductors" type="checkbox" name="ctl00$ContentMain$uc5$CategorySearchLimits$chkbx254459|Semiconductors" checked="checked" onclick="document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx10973360|Integrated Circuits - ICs&#39;).checked = false;document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx17177592|Embedded Processors &amp; Controllers&#39;).checked = false;document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx17178209|Processors - Application Specialized&#39;).checked = false;" /></span>&nbsp;<b>半导体</b>&nbsp;&#62;&nbsp;<span title="集成电路 - IC"><input id="ctl00_ContentMain_uc5_CategorySearchLimits_chkbx10973360|Integrated Circuits - ICs" type="checkbox" name="ctl00$ContentMain$uc5$CategorySearchLimits$chkbx10973360|Integrated Circuits - ICs" checked="checked" onclick="document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx254459|Semiconductors&#39;).checked = true;document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx17177592|Embedded Processors &amp; Controllers&#39;).checked = false;document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx17178209|Processors - Application Specialized&#39;).checked = false;" /></span>&nbsp;<b>集成电路 - IC</b>&nbsp;&#62;&nbsp;<span title="嵌入式处理器和控制器"><input id="ctl00_ContentMain_uc5_CategorySearchLimits_chkbx17177592|Embedded Processors & Controllers" type="checkbox" name="ctl00$ContentMain$uc5$CategorySearchLimits$chkbx17177592|Embedded Processors & Controllers" checked="checked" onclick="document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx254459|Semiconductors&#39;).checked = true;document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx10973360|Integrated Circuits - ICs&#39;).checked = true;document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx17178209|Processors - Application Specialized&#39;).checked = false;" /></span>&nbsp;<b>嵌入式处理器和控制器</b>&nbsp;&#62;&nbsp;<span title="处理器 - 专门应用"><input id="ctl00_ContentMain_uc5_CategorySearchLimits_chkbx17178209|Processors - Application Specialized" type="checkbox" name="ctl00$ContentMain$uc5$CategorySearchLimits$chkbx17178209|Processors - Application Specialized" checked="checked" onclick="document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx254459|Semiconductors&#39;).checked = true;document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx10973360|Integrated Circuits - ICs&#39;).checked = true;document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx17177592|Embedded Processors &amp; Controllers&#39;).checked = true;" /></span>&nbsp;<b>处理器 - 专门应用</b>
  936. </div>
  937. </div>
  938. <hr/>
  939. </div>
  940. <div id="ctl00_ContentMain_uc5_availableFiltersDiv">
  941. <p class="applied-filter-lbl">
  942. <span id="ctl00_ContentMain_uc5_lblAvailableFilters" class="availableFilters">可用过滤器</span>
  943. <span id="ctl00_ContentMain_uc5_lblreccount">428 匹配</span>
  944. &nbsp;<span id="ctl00_ContentMain_uc5_lblajaxcount" class="error"></span>
  945. </p>
  946. <div id="ctl00_ContentMain_uc5_SmartFilterDiv2" class="hidden">
  947. <input id="ctl00_ContentMain_uc5_ckSmartFilter" type="checkbox" name="ctl00$ContentMain$uc5$ckSmartFilter" />&nbsp;
  948. <span id="ctl00_ContentMain_uc5_lblSmartFilter">启用智能过滤</span>&nbsp;
  949. <img id="ctl00_ContentMain_uc5_imgSmartFilter" title="当您选择下述一个或多个参数过滤器时,智能过滤将即时禁用未选中的数值,可能导致查找不到相关结果。" class="smartFilterImg" src="../../../../../../images/icon_tooltip.png" />
  950. <br />
  951. </div>
  952. </div>
  953. <table id="tb1" style="width: 100%;">
  954. <tr>
  955. <td>
  956. <table id="ctl00_ContentMain_uc5_AttributeCategoryList" class="bottom" cellspacing="0" style="border-collapse:collapse;">
  957. <tr>
  958. <td>
  959. <table cellpadding="0" cellspacing="0">
  960. <tr>
  961. <td>
  962. <table>
  963. <tr>
  964. <td>
  965. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_lblheader" style="font-weight:bold;white-space:normal;">制造商</span>
  966. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_RangePnl">
  967. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  968. of parametric ids sent on the query string after the seo url is generated and redirected to.
  969. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  970. sorted parametric attributes from an endeca attribute group --->
  971. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_hdnRange" />
  972. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_hdnDimId" value="1000000411" />
  973. &nbsp;
  974. </div>
  975. </td>
  976. </tr>
  977. <tr>
  978. <td>
  979. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$1000000411" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_1000000411">
  980. <option value="4292488353">4D Systems</option>
  981. <option value="4294759198">Amulet Technologies</option>
  982. <option value="4294449078">Cirrus Logic</option>
  983. <option value="4294759026">Infineon</option>
  984. <option value="4294758971">NXP</option>
  985. <option value="4294759663">ON Semiconductor</option>
  986. <option value="4294759686">Texas Instruments</option>
  987. </select>
  988. </td>
  989. </tr>
  990. <tr>
  991. <td>
  992. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  993. </td>
  994. </tr>
  995. </table>
  996. </td>
  997. <td valign="bottom" style="width: 15px;">
  998. &nbsp;
  999. </td>
  1000. </tr>
  1001. </table>
  1002. </td><td>
  1003. <table cellpadding="0" cellspacing="0">
  1004. <tr>
  1005. <td>
  1006. <table>
  1007. <tr>
  1008. <td>
  1009. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_lblheader" style="font-weight:bold;white-space:normal;">应用</span>
  1010. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_RangePnl">
  1011. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1012. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1013. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1014. sorted parametric attributes from an endeca attribute group --->
  1015. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_hdnRange" />
  1016. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_hdnDimId" value="688275" />
  1017. &nbsp;
  1018. </div>
  1019. </td>
  1020. </tr>
  1021. <tr>
  1022. <td>
  1023. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$688275" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_688275">
  1024. <option value="4269057840">Application Processors</option>
  1025. <option value="4269053618">Automotive, Infotainment Applications</option>
  1026. <option value="4269051539">Commercial Applications</option>
  1027. <option value="4269051540">Consumer Applications</option>
  1028. <option value="4269051336">Graphic Controllers</option>
  1029. <option value="4269055954">Graphical OS Chips</option>
  1030. <option value="4269053617">Industrial Applications</option>
  1031. <option value="4269057646">Multimedia Applications</option>
  1032. <option value="4269048055">Security Applications</option>
  1033. <option value="4269057060">Video Applications</option>
  1034. </select>
  1035. </td>
  1036. </tr>
  1037. <tr>
  1038. <td>
  1039. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1040. </td>
  1041. </tr>
  1042. </table>
  1043. </td>
  1044. <td valign="bottom" style="width: 15px;">
  1045. &nbsp;
  1046. </td>
  1047. </tr>
  1048. </table>
  1049. </td><td>
  1050. <table cellpadding="0" cellspacing="0">
  1051. <tr>
  1052. <td>
  1053. <table>
  1054. <tr>
  1055. <td>
  1056. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_lblheader" style="font-weight:bold;white-space:normal;">核心</span>
  1057. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_RangePnl">
  1058. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1059. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1060. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1061. sorted parametric attributes from an endeca attribute group --->
  1062. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_hdnRange" />
  1063. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_hdnDimId" value="1000000656" />
  1064. &nbsp;
  1065. </div>
  1066. </td>
  1067. </tr>
  1068. <tr>
  1069. <td>
  1070. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$1000000656" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_1000000656">
  1071. <option value="4289524331">ARM Cortex A7</option>
  1072. <option value="4292835478">ARM Cortex A8</option>
  1073. <option value="4271725998">ARM Cortex A8, TMS320C64x</option>
  1074. <option value="4291929581">ARM Cortex A9</option>
  1075. <option value="4281698815">ARM Cortex A9, ARM Cortex M4</option>
  1076. <option value="4292835505">ARM1136JF-S</option>
  1077. <option value="4292836065">ARM7TDMI</option>
  1078. <option value="4272831580">ARM920TDMI</option>
  1079. <option value="4292835772">ARM926EJ-S</option>
  1080. <option value="4271661354">ARM926EJ-S, MS320C55x</option>
  1081. <option value="4292835593">ARM9TDMI</option>
  1082. <option value="4289468997">EVE</option>
  1083. </select>
  1084. </td>
  1085. </tr>
  1086. <tr>
  1087. <td>
  1088. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1089. </td>
  1090. </tr>
  1091. </table>
  1092. </td>
  1093. <td valign="bottom" style="width: 15px;">
  1094. &nbsp;
  1095. </td>
  1096. </tr>
  1097. </table>
  1098. </td><td>
  1099. <table cellpadding="0" cellspacing="0">
  1100. <tr>
  1101. <td>
  1102. <table>
  1103. <tr>
  1104. <td>
  1105. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_lblheader" style="font-weight:bold;white-space:normal;">内核数量</span>
  1106. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_RangePnl">
  1107. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1108. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1109. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1110. sorted parametric attributes from an endeca attribute group --->
  1111. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_hdnRange" />
  1112. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_hdnDimId" value="1000000877" />
  1113. &nbsp;
  1114. </div>
  1115. </td>
  1116. </tr>
  1117. <tr>
  1118. <td>
  1119. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$1000000877" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_1000000877">
  1120. <option value="4273581943">1 Core</option>
  1121. <option value="4282222145">2 Core</option>
  1122. </select>
  1123. </td>
  1124. </tr>
  1125. <tr>
  1126. <td>
  1127. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1128. </td>
  1129. </tr>
  1130. </table>
  1131. </td>
  1132. <td valign="bottom" style="width: 15px;">
  1133. &nbsp;
  1134. </td>
  1135. </tr>
  1136. </table>
  1137. </td><td>
  1138. <table cellpadding="0" cellspacing="0">
  1139. <tr>
  1140. <td>
  1141. <table>
  1142. <tr>
  1143. <td>
  1144. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_lblheader" style="font-weight:bold;white-space:normal;">数据总线宽度</span>
  1145. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_RangePnl">
  1146. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1147. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1148. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1149. sorted parametric attributes from an endeca attribute group --->
  1150. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_hdnRange" />
  1151. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_hdnDimId" value="1000000426" />
  1152. &nbsp;
  1153. </div>
  1154. </td>
  1155. </tr>
  1156. <tr>
  1157. <td>
  1158. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$1000000426" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_1000000426">
  1159. <option value="4294604602">16 bit</option>
  1160. <option value="4294602379">32 bit</option>
  1161. <option value="4266193181">32 bit/16 bit</option>
  1162. </select>
  1163. </td>
  1164. </tr>
  1165. <tr>
  1166. <td>
  1167. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1168. </td>
  1169. </tr>
  1170. </table>
  1171. </td>
  1172. <td valign="bottom" style="width: 15px;">
  1173. &nbsp;
  1174. </td>
  1175. </tr>
  1176. </table>
  1177. </td><td>
  1178. <table cellpadding="0" cellspacing="0">
  1179. <tr>
  1180. <td>
  1181. <table>
  1182. <tr>
  1183. <td>
  1184. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_lblheader" style="font-weight:bold;white-space:normal;">最大时钟频率</span>
  1185. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_RangePnl">
  1186. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1187. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1188. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1189. sorted parametric attributes from an endeca attribute group --->
  1190. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_hdnRange" />
  1191. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_hdnDimId" value="1000000389" />
  1192. &nbsp;
  1193. </div>
  1194. </td>
  1195. </tr>
  1196. <tr>
  1197. <td>
  1198. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$1000000389" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_1000000389">
  1199. <option value="4294604917">12 MHz</option>
  1200. <option value="4294598023">48 MHz</option>
  1201. <option value="4294587949">70 MHz</option>
  1202. <option value="4273097327">74 MHz</option>
  1203. <option value="4294601742">100 MHz</option>
  1204. <option value="4294601681">150 MHz</option>
  1205. <option value="4292894084">192 MHz</option>
  1206. <option value="4294601703">200 MHz</option>
  1207. <option value="4294601693">266 MHz</option>
  1208. <option value="4294601664">400 MHz</option>
  1209. <option value="4292873528">454 MHz</option>
  1210. <option value="4284917608">528 MHz</option>
  1211. <option value="4294406253">532 MHz</option>
  1212. <option value="4294594355">600 MHz</option>
  1213. <option value="4271725992">600 MHz, 520 MHz</option>
  1214. <option value="4294594295">720 MHz</option>
  1215. <option value="4271724498">720 MHz, 520 MHz</option>
  1216. <option value="4294406333">800 MHz</option>
  1217. <option value="4272845443">800 MHz, 227 MHz</option>
  1218. <option value="4271785558">825 MHz</option>
  1219. <option value="4291182152">852 MHz</option>
  1220. <option value="4294588405">1 GHz</option>
  1221. <option value="4272845447">1 GHz, 227 MHz</option>
  1222. <option value="4292856852">1.2 GHz</option>
  1223. </select>
  1224. </td>
  1225. </tr>
  1226. <tr>
  1227. <td>
  1228. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1229. </td>
  1230. </tr>
  1231. </table>
  1232. </td>
  1233. <td valign="bottom" style="width: 15px;">
  1234. &nbsp;
  1235. </td>
  1236. </tr>
  1237. </table>
  1238. </td><td>
  1239. <table cellpadding="0" cellspacing="0">
  1240. <tr>
  1241. <td>
  1242. <table>
  1243. <tr>
  1244. <td>
  1245. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_lblheader" style="font-weight:bold;white-space:normal;">L1缓存指令存储器</span>
  1246. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_RangePnl">
  1247. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1248. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1249. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1250. sorted parametric attributes from an endeca attribute group --->
  1251. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl06$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_hdnRange" />
  1252. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl06$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_hdnDimId" value="1000001066" />
  1253. &nbsp;
  1254. </div>
  1255. </td>
  1256. </tr>
  1257. <tr>
  1258. <td>
  1259. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl06$1000001066" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_1000001066">
  1260. <option value="4276869821">8 kB</option>
  1261. <option value="4276869825">16 kB</option>
  1262. <option value="4271661352">16 kB, 24 kB</option>
  1263. <option value="4271725994">16 kB, 32 kB</option>
  1264. <option value="4276869088">32 kB</option>
  1265. <option value="4276865745">32 kB, 16 kB</option>
  1266. <option value="4276869908">-</option>
  1267. </select>
  1268. </td>
  1269. </tr>
  1270. <tr>
  1271. <td>
  1272. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1273. </td>
  1274. </tr>
  1275. </table>
  1276. </td>
  1277. <td valign="bottom" style="width: 15px;">
  1278. &nbsp;
  1279. </td>
  1280. </tr>
  1281. </table>
  1282. </td><td>
  1283. <table cellpadding="0" cellspacing="0">
  1284. <tr>
  1285. <td>
  1286. <table>
  1287. <tr>
  1288. <td>
  1289. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl07_lblheader" style="font-weight:bold;white-space:normal;">L1缓存数据存储器</span>
  1290. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl07_RangePnl">
  1291. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1292. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1293. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1294. sorted parametric attributes from an endeca attribute group --->
  1295. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl07$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl07_hdnRange" />
  1296. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl07$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl07_hdnDimId" value="1000001067" />
  1297. &nbsp;
  1298. </div>
  1299. </td>
  1300. </tr>
  1301. <tr>
  1302. <td>
  1303. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl07$1000001067" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl07_1000001067">
  1304. <option value="4276869822">8 kB</option>
  1305. <option value="4276869826">16 kB</option>
  1306. <option value="4271725995">16 kB, 80 kB</option>
  1307. <option value="4276869089">32 kB</option>
  1308. <option value="4276865746">32 kB, 16 kB</option>
  1309. <option value="4276869909">-</option>
  1310. </select>
  1311. </td>
  1312. </tr>
  1313. <tr>
  1314. <td>
  1315. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl07_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1316. </td>
  1317. </tr>
  1318. </table>
  1319. </td>
  1320. <td valign="bottom" style="width: 15px;">
  1321. &nbsp;
  1322. </td>
  1323. </tr>
  1324. </table>
  1325. </td><td>
  1326. <table cellpadding="0" cellspacing="0">
  1327. <tr>
  1328. <td>
  1329. <table>
  1330. <tr>
  1331. <td>
  1332. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl08_lblheader" style="font-weight:bold;white-space:normal;">工作电源电压</span>
  1333. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl08_RangePnl">
  1334. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1335. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1336. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1337. sorted parametric attributes from an endeca attribute group --->
  1338. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl08$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl08_hdnRange" />
  1339. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl08$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl08_hdnDimId" value="1000000393" />
  1340. &nbsp;
  1341. </div>
  1342. </td>
  1343. </tr>
  1344. <tr>
  1345. <td>
  1346. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl08$1000000393" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl08_1000000393">
  1347. <option value="4271725990">985 mV to 1.35 V</option>
  1348. <option value="4294595635">1 V</option>
  1349. <option value="4272830825">1 V to 1.55 V</option>
  1350. <option value="4294593038">1.05 V</option>
  1351. <option value="4291121518">1.05 V to 1.5 V</option>
  1352. <option value="4272845445">1.075 V to 1.5 V</option>
  1353. <option value="4294593073">1.1 V</option>
  1354. <option value="4271784174">1.15 V to 1.3 V</option>
  1355. <option value="4291088621">1.175 V to 1.5 V</option>
  1356. <option value="4294604096">1.2 V</option>
  1357. <option value="4292795328">1.22 V to 1.47 V</option>
  1358. <option value="4294594379">1.25 V</option>
  1359. <option value="4272549813">1.275 V</option>
  1360. <option value="4272567288">1.32 V to 1.47 V</option>
  1361. <option value="4292869104">1.33 V to 1.47 V</option>
  1362. <option value="4292727415">1.35 V</option>
  1363. <option value="4272565162">1.35 V to 1.55 V</option>
  1364. <option value="4292873523">1.38 V to 1.52 V</option>
  1365. <option value="4292908023">1.45 V</option>
  1366. <option value="4272831576">1.45 V to 1.65 V</option>
  1367. <option value="4294629295">1.6 V</option>
  1368. <option value="4294604809">1.8 V</option>
  1369. <option value="4294627904">2.5 V</option>
  1370. <option value="4294629989">3.3 V</option>
  1371. <option value="4289279886">-</option>
  1372. </select>
  1373. </td>
  1374. </tr>
  1375. <tr>
  1376. <td>
  1377. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl08_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1378. </td>
  1379. </tr>
  1380. </table>
  1381. </td>
  1382. <td valign="bottom" style="width: 15px;">
  1383. &nbsp;
  1384. </td>
  1385. </tr>
  1386. </table>
  1387. </td><td>
  1388. <table cellpadding="0" cellspacing="0">
  1389. <tr>
  1390. <td>
  1391. <table>
  1392. <tr>
  1393. <td>
  1394. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl09_lblheader" style="font-weight:bold;white-space:normal;">最大工作温度</span>
  1395. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl09_RangePnl">
  1396. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl09_lnklesseq" title="Select less or equal values." class="lesseq">&#8804;</a>
  1397. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl09_lnkgreatereq" title="Select greater or equal values." class="greatereq">&#8805;</a>
  1398. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1399. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1400. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1401. sorted parametric attributes from an endeca attribute group --->
  1402. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl09$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl09_hdnRange" />
  1403. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl09$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl09_hdnDimId" value="1000000314" />
  1404. </div>
  1405. </td>
  1406. </tr>
  1407. <tr>
  1408. <td>
  1409. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl09$1000000314" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl09_1000000314">
  1410. <option value="4294629996">+ 70 C</option>
  1411. <option value="4294631168">+ 80 C</option>
  1412. <option value="4294630005">+ 85 C</option>
  1413. <option value="4294575688">+ 90 C</option>
  1414. <option value="4294031282">+ 95 C</option>
  1415. <option value="4294568129">+ 105 C</option>
  1416. <option value="4294631245">+ 125 C</option>
  1417. <option value="4289511885">-</option>
  1418. </select>
  1419. </td>
  1420. </tr>
  1421. <tr>
  1422. <td>
  1423. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl09_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1424. </td>
  1425. </tr>
  1426. </table>
  1427. </td>
  1428. <td valign="bottom" style="width: 15px;">
  1429. &nbsp;
  1430. </td>
  1431. </tr>
  1432. </table>
  1433. </td><td>
  1434. <table cellpadding="0" cellspacing="0">
  1435. <tr>
  1436. <td>
  1437. <table>
  1438. <tr>
  1439. <td>
  1440. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl10_lblheader" style="font-weight:bold;white-space:normal;">安装风格</span>
  1441. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl10_RangePnl">
  1442. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1443. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1444. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1445. sorted parametric attributes from an endeca attribute group --->
  1446. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl10$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl10_hdnRange" />
  1447. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl10$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl10_hdnDimId" value="1323044" />
  1448. &nbsp;
  1449. </div>
  1450. </td>
  1451. </tr>
  1452. <tr>
  1453. <td>
  1454. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl10$1323044" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl10_1323044">
  1455. <option value="4294741457">SMD/SMT</option>
  1456. </select>
  1457. </td>
  1458. </tr>
  1459. <tr>
  1460. <td>
  1461. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl10_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1462. </td>
  1463. </tr>
  1464. </table>
  1465. </td>
  1466. <td valign="bottom" style="width: 15px;">
  1467. &nbsp;
  1468. </td>
  1469. </tr>
  1470. </table>
  1471. </td><td>
  1472. <table cellpadding="0" cellspacing="0">
  1473. <tr>
  1474. <td>
  1475. <table>
  1476. <tr>
  1477. <td>
  1478. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl11_lblheader" style="font-weight:bold;white-space:normal;">封装 / 箱体</span>
  1479. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl11_RangePnl">
  1480. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1481. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1482. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1483. sorted parametric attributes from an endeca attribute group --->
  1484. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl11$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl11_hdnRange" />
  1485. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl11$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl11_hdnDimId" value="688606" />
  1486. &nbsp;
  1487. </div>
  1488. </td>
  1489. </tr>
  1490. <tr>
  1491. <td>
  1492. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl11$688606" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl11_688606">
  1493. <option value="4294672631">BGA-169</option>
  1494. <option value="4292986877">BGA-225</option>
  1495. <option value="4294680905">BGA-256</option>
  1496. <option value="4294677008">BGA-289</option>
  1497. <option value="4292873525">BGA-529</option>
  1498. <option value="4294572402">FCBGA-515</option>
  1499. <option value="4271785578">FCPBGA-569</option>
  1500. <option value="4285762427">FCPBGA-624</option>
  1501. <option value="4294685151">LQFP-128</option>
  1502. <option value="4292524490">MAPBGA-225</option>
  1503. <option value="4292823353">MAPBGA-256</option>
  1504. <option value="4271783979">MAPBGA-272</option>
  1505. <option value="4292789714">MAPBGA-289</option>
  1506. <option value="4292795327">MAPBGA-400</option>
  1507. <option value="4272579188">MAPBGA-404</option>
  1508. <option value="4272559482">MAPBGA-416</option>
  1509. <option value="4291170715">MAPBGA-432</option>
  1510. <option value="4272586176">MAPBGA-457</option>
  1511. <option value="4292789707">MAPBGA-473</option>
  1512. <option value="4281698729">MAPBGA-529</option>
  1513. <option value="4291182149">MAPBGA-624</option>
  1514. <option value="4287547095">nFBGA-337</option>
  1515. <option value="4271725989">PBGA-423</option>
  1516. <option value="4289875636">PBGA-515</option>
  1517. <option value="4294679339">PQFP-208</option>
  1518. <option value="4294689635">QFN-28</option>
  1519. <option value="4271794925">TEPBGA-529</option>
  1520. <option value="4290974913">TFBGA-484</option>
  1521. <option value="4294718155">TQFP-64</option>
  1522. <option value="4294687460">TSSOP-28</option>
  1523. </select>
  1524. </td>
  1525. </tr>
  1526. <tr>
  1527. <td>
  1528. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl11_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1529. </td>
  1530. </tr>
  1531. </table>
  1532. </td>
  1533. <td valign="bottom" style="width: 15px;">
  1534. &nbsp;
  1535. </td>
  1536. </tr>
  1537. </table>
  1538. </td>
  1539. </tr>
  1540. </table>
  1541. <table class="ApplyFilter">
  1542. <tr>
  1543. <td class="ApplyFilterColumn1">
  1544. <input type="submit" name="ctl00$ContentMain$uc5$btnfilter1" value="应用过滤器" onclick="return submitClick();" id="ctl00_ContentMain_uc5_btnfilter1" title="点击以应用选定的过滤器,或删除未选中的过滤器。" class="button-white" />
  1545. </td>
  1546. <td class="ApplyFilterColumn2">
  1547. <span id="ctl00_ContentMain_uc5_lblZeroResultHint" class="error" style="display:inline-block;width:1px;display: none;">请修改您的搜索,这样它会返回结果。</span>
  1548. </td>
  1549. <td class="ApplyFilterColumn2_5">
  1550. <span id="ctl00_ContentMain_uc5_lblInvalidRangeHint" class="error" style="display:inline-block;width:1px;display: none;">所选过滤条件不再可用,搜索结果已改变。请重试搜索。</span>
  1551. </td>
  1552. <td class="ApplyFilterColumn3">
  1553. <input type="submit" name="ctl00$ContentMain$uc5$btnfilter2" value="应用过滤器" onclick="return submitClick();" id="ctl00_ContentMain_uc5_btnfilter2" title="点击以应用选定的过滤器,或删除未选中的过滤器。" class="button-white" />
  1554. </td>
  1555. </tr>
  1556. </table>
  1557. </td>
  1558. </tr>
  1559. </table>
  1560. </div>
  1561. </td>
  1562. </tr>
  1563. </table>
  1564. <div id='WarningPopup' style='text-align: center; position: absolute; width: 430px;
  1565. height: 70px; display: none; background: white; border: 1px solid #000;'>
  1566. <br />
  1567. <span id="ctl00_ContentMain_uc5_Label1">要使用小于或大于功能,请首先选择一个值。</span><br />
  1568. <br />
  1569. <div style="text-align: right; margin-right: 15; padding-right: 15;">
  1570. <!--Close Window-->
  1571. <a href="javascript:closeWarningPopup();" id="ctl00_ContentMain_uc5_linkCloseWindow" class="close" title="关闭窗口">
  1572. <span id="ctl00_ContentMain_uc5_lblClose">关闭窗口</span>
  1573. </a>&nbsp;&nbsp;</div>
  1574. </div>
  1575. <div id ="VisualAttributePopup" class="hidden" >
  1576. <div id="ctl00_ContentMain_uc5_VisualParametricsSelector_visualAttributePopup">
  1577. <div id="divAttributeGroup" data-bind="if: hasGroupDescription ">
  1578. <div class="visualAttGroupDesc" data-bind="text: AttributeGroupDescription"></div>
  1579. </div>
  1580. <div><img data-bind="visible: !loadFinished()" class="visualAttSpinnerImg" id="loadingimgspinner" src="/Images/spinner2.gif" /></div>
  1581. <div class="visualAttValues" data-bind="visible: attributes().length > 0 " >
  1582. <table id="tblAttributes" >
  1583. <tbody data-bind="foreach: attributes, visible: loadFinished()">
  1584. <tr data-bind="click: $root.toggleSelection, css: { 'selectedAttribute': IsSelected }, hoverToggle: 'highlightedAttribute', attr: {'attValueId': AttributeValueID} ">
  1585. <td class="visualAttributeImage">
  1586. <div data-bind="if: AttributeValueImage"><img data-bind="attr: {src: 'data:image/gif;base64,' + AttributeValueImage}" class="visualAttImage" alt="" /></div>
  1587. <div data-bind="ifnot: AttributeValueImage" ><div data-bind="css: { 'visualAttRelatedImageDiv': RelatedImgFound, 'visualAttNoImageDiv': !RelatedImgFound } " ><span data-bind="text: NoImageMsg" class="visualAttributeMsg" ></span></div></div>
  1588. </td>
  1589. <td>
  1590. <table class="visualAttValueDesc">
  1591. <tr>
  1592. <td data-bind="text: AttributeValue" class="visualAttValue" colspan="3"></td>
  1593. </tr>
  1594. <tr>
  1595. <td data-bind="text: AttributeDesc" class="visualAttDescription" colspan="3"></td>
  1596. </tr>
  1597. <tr data-bind="if: ImagePath1 ">
  1598. <td class="visualAttRelatedImage"><div data-bind="if: ImagePath1"><img data-bind="attr: {src: ImagePath1}" class="visualAttRelatedImgs" /></div></td>
  1599. <td class="visualAttRelatedImage"><div data-bind="if: ImagePath2"><img data-bind="attr: {src: ImagePath2}" class="visualAttRelatedImgs" /></div></td>
  1600. <td class="visualAttRelatedImage"><div data-bind="if: ImagePath3"><img data-bind="attr: {src: ImagePath3}" class="visualAttRelatedImgs" /></div></td>
  1601. </tr>
  1602. </table>
  1603. </td>
  1604. </tr>
  1605. <tr data-bind="if: ($index() !== ($parent.attributes().length - 1)) "><td colspan="3"><div class="visualAttValueBorder" ></div></td></tr>
  1606. </tbody>
  1607. </table>
  1608. <img data-bind="visible: !moreLoadFinished()" class="visualAttSpinnerImg" id="Img1" src="/Images/spinner2.gif" />
  1609. <div data-bind="if: hasMoreOptions" align="center">
  1610. <input type="submit" name="ctl00$ContentMain$uc5$VisualParametricsSelector$btnShowMore" value="显示更多" id="ctl00_ContentMain_uc5_VisualParametricsSelector_btnShowMore" class="button" data-bind="click: showMore" />
  1611. </div>
  1612. </div>
  1613. <div data-bind="visible: attributes().length > 0" class="visualAttributesBtnBorder"></div>
  1614. <div class="visualAttributesBtnDiv">
  1615. <input type="submit" name="ctl00$ContentMain$uc5$VisualParametricsSelector$btnOK" value="确定" onclick="javascript:ClosePopup();" id="ctl00_ContentMain_uc5_VisualParametricsSelector_btnOK" class="button" data-bind="visible: attributes().length &lt; 1" />
  1616. <a id="ctl00_ContentMain_uc5_VisualParametricsSelector_lnkCancel" class="cancel-link-button" data-bind="visible: attributes().length > 0" onclick="javascript:ClosePopup();">取消</a>
  1617. <input type="submit" name="ctl00$ContentMain$uc5$VisualParametricsSelector$btnApply" value="确定" id="ctl00_ContentMain_uc5_VisualParametricsSelector_btnApply" class="button" data-bind="click: applySelections, visible: attributes().length > 0" />
  1618. </div>
  1619. </div>
  1620. <style type="text/css">.ui-dialog{position:absolute;padding:0px !important;width:300px;overflow:hidden;}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.6em !important;background:none;overflow:auto;zoom:1;max-height:450px;}.ui-dialog .ui-dialog-titlebar{padding:.4em .5em !important;position:relative;background:none repeat scroll 0 0 #E0E4E9;font-size:15px;}.ui-corner-all,.ui-corner-bottom,.ui-corner-right,.ui-corner-br{border-bottom-right-radius:0;}.ui-corner-all,.ui-corner-bottom,.ui-corner-left,.ui-corner-bl{border-bottom-left-radius:0;}</style>
  1621. <script type="text/javascript" src='/JavaScript/VisualParametricAttributes.js'></script>
  1622. <script type="text/javascript" src='/flash/js/knockout-2.2.1.js'></script>
  1623. </div>
  1624. <script type="text/javascript" src='/JavaScript/jquery.ckie.js'></script>
  1625. <script type="text/javascript" src='/JavaScript/multimanufacturerselectionlist.js'></script>
  1626. <script src='../../../../../../flash/js/AttributeSelectionControl2.js?v=3.0.20160304.2' type="text/javascript"></script>
  1627. <script type="text/javascript" src='/JavaScript/VisualParametricAttributes.js'></script>
  1628. <script type="text/javascript">
  1629. $().ready(function () {
  1630. ko.applyBindings(new DisplayAttributesModel());
  1631. ko.bindingHandlers.hoverToggle = {
  1632. update: function (element, valueAccessor) {
  1633. var css = valueAccessor();
  1634. var isSelected = $(element).hasClass("selectedAttribute");
  1635. if (!isSelected) {
  1636. ko.utils.registerEventHandler(element, "mouseenter", function () {
  1637. ko.utils.toggleDomNodeCssClass(element, ko.utils.unwrapObservable(css), true);
  1638. });
  1639. ko.utils.registerEventHandler(element, "mouseleave", function () {
  1640. ko.utils.toggleDomNodeCssClass(element, ko.utils.unwrapObservable(css), false);
  1641. });
  1642. }
  1643. }
  1644. };
  1645. });
  1646. </script>
  1647. </div>
  1648. <div id="refine-mfg-logo2">
  1649. </div>
  1650. </div>
  1651. <br />
  1652. <table border="0" width="100%">
  1653. <tr>
  1654. <td>
  1655. </td>
  1656. </tr>
  1657. <tr>
  1658. <td>
  1659. <!--- Search Features --->
  1660. </td>
  1661. </tr>
  1662. <tr>
  1663. <td>
  1664. <div id="refine-page">
  1665. </div>
  1666. </td>
  1667. </tr>
  1668. <tr>
  1669. <td class="refine-show-products">
  1670. <span class="redtextb">
  1671. </span> <span class="redtextb">
  1672. </span> <span class="redtextb">
  1673. </span> <span class="redtextb">
  1674. </span>
  1675. <span class="redtextb">
  1676. </span>
  1677. </td>
  1678. </tr>
  1679. <tr>
  1680. <td>
  1681. </td>
  1682. </tr>
  1683. <tr>
  1684. <td>
  1685. <!--- Special Order Parts New --->
  1686. <!-- SOP Section 1 -->
  1687. </td>
  1688. </tr>
  1689. </table>
  1690. <div id="searchResultsTbl">
  1691. <table id="ctl00_ContentMain_tbl2" class="no-pad">
  1692. <tr>
  1693. <td class="tdSearchResultsPagingTop">
  1694. <table id="ctl00_ContentMain_tbl3" class="SearchResultsPaging">
  1695. <tr>
  1696. <td>
  1697. <input type="submit" name="ctl00$ContentMain$btn1" value="购买所选商品" onclick="javascript:return MiniCart.AddToCartNShowCart(MiniCart.source);" id="ctl00_ContentMain_btn1" title="购买所选商品" class="buy-button" ImageUrl="~/Images/Search/buy_selected.gif" />
  1698. </td>
  1699. <td>
  1700. <input type="submit" name="ctl00$ContentMain$btn2" value="对比所选" onclick="javascript:if(!IsAnyChecked(true) &amp;&amp; 0 == 0) { alert(&#39;请选择您希望对比的产品。&#39;); return false; };" id="ctl00_ContentMain_btn2" title="对比所选" class="compare-Selected-Button" ImageUrl="~/Images/Search/buy_selected.gif" />
  1701. </td>
  1702. <td>
  1703. <span id="ctl00_ContentMain_lbl10" title="您可选择至多20 个零件单次进行对比。若您选择更多,则仅20件距离最近的所选零件会被对比。" class="bold">至多对比 20 零件.</span>
  1704. </td>
  1705. <td style="padding-left: 40px;">
  1706. <div class="floatrightpager">
  1707. <span class="bold">
  1708. 页面:
  1709. </span>
  1710. <span id="ctl00_ContentMain_PagerTop"><span id="ctl00_ContentMain_PagerTop_lblCurrent" class="paging-current">1</span><a id="ctl00_ContentMain_PagerTop_1" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/?No=25">2</a><a id="ctl00_ContentMain_PagerTop_2" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/?No=50">3</a><a id="ctl00_ContentMain_PagerTop_3" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/?No=75">4</a><a id="ctl00_ContentMain_PagerTop_4" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/?No=100">5</a><a id="ctl00_ContentMain_PagerTop_5" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/?No=125">6</a><a id="ctl00_ContentMain_PagerTop_6" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/?No=150">7</a><a id="ctl00_ContentMain_PagerTop_7" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/?No=175">8</a><a id="ctl00_ContentMain_PagerTop_8" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/?No=200">9</a><a id="ctl00_ContentMain_PagerTop_9" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/?No=225">10</a><a id="ctl00_ContentMain_PagerTop_lnkNextSet" class="ellipsis" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/?No=250">...</a><a id="ctl00_ContentMain_PagerTop_17" class="first-last" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/?No=425">18</a><a id="ctl00_ContentMain_PagerTop_lnkNext" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/?No=25">下一页</a></span>
  1711. </div>
  1712. </td>
  1713. </tr>
  1714. </table>
  1715. </td>
  1716. </tr>
  1717. <tr>
  1718. <td>
  1719. <div>
  1720. <table class="SearchResultsTable" cellspacing="1" cellpadding="2" rules="all" border="1" id="ctl00_ContentMain_SearchResultsGrid_grid" style="width:100%;">
  1721. <tr class="SearchResultColumnHeading" valign="top" style="font-weight:bold;height:100%;">
  1722. <th class="td-select" scope="col" style="width:35px;">
  1723. 选择
  1724. </th><th class="SearchResultParametricColumnHeading" scope="col">图像</th><th scope="col">Mouser 零件编号
  1725. </th><th scope="col">制造商 零件编号
  1726. </th><th scope="col">制造商
  1727. </th><th scope="col">描述
  1728. </th><th scope="col"><img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl01_ctl05_imgHeader" src="../../../../../../Images/Search/pdf.gif" alt="文件" />
  1729. </th><th scope="col">供货情况
  1730. </th><th scope="col">单价(含17%增值税)
  1731. <br />
  1732. </th><th class="SearchResultsBuyColumnHeading" scope="col">数量
  1733. </th><th class="SearchResultParametricColumnHeading" scope="col">RoHS
  1734. </th><th class="SearchResultParametricColumnHeading" scope="col">应用
  1735. </th><th class="SearchResultParametricColumnHeading" scope="col">核心
  1736. </th><th class="SearchResultParametricColumnHeading" scope="col">内核数量
  1737. </th><th class="SearchResultParametricColumnHeading" scope="col">数据总线宽度
  1738. </th><th class="SearchResultParametricColumnHeading" scope="col">最大时钟频率
  1739. </th><th class="SearchResultParametricColumnHeading" scope="col">L1缓存指令存储器
  1740. </th><th class="SearchResultParametricColumnHeading" scope="col">L1缓存数据存储器
  1741. </th><th class="SearchResultParametricColumnHeading" scope="col">工作电源电压
  1742. </th><th class="SearchResultParametricColumnHeading" scope="col">最大工作温度
  1743. </th><th class="SearchResultParametricColumnHeading" scope="col">安装风格
  1744. </th><th class="SearchResultParametricColumnHeading" scope="col">封装 / 箱体
  1745. </th>
  1746. </tr><tr class="SearchResultsSortCell">
  1747. <td class="td-select" align="center"></td><td></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$MouserPartNumber>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl22&#39;,&#39;&#39;)"><img title="按 Mouser 零件编号 Ascending 排序" src="../../../../../../Images/Search/btn_Sort_Up.gif" alt="按 Mouser 零件编号 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$MouserPartNumber>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl24&#39;,&#39;&#39;)"><img title="按 Mouser 零件编号 Descending 排序" src="../../../../../../Images/Search/btn_Sort_Down.gif" alt="按 Mouser 零件编号 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$ManufacturerPartNumber>Ascending&#39;); return false;" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl02_ctl26" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl26&#39;,&#39;&#39;)"><img title="按 制造商 零件编号 Ascending 排序" src="../../../../../../Images/Search/btn_Sort_Up.gif" alt="按 制造商 零件编号 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$ManufacturerPartNumber>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl28&#39;,&#39;&#39;)"><img title="按 制造商 零件编号 Descending 排序" src="../../../../../../Images/Search/btn_Sort_Down.gif" alt="按 制造商 零件编号 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Brand>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl30&#39;,&#39;&#39;)"><img title="按 制造商 Ascending 排序" src="../../../../../../Images/Search/btn_Sort_Up.gif" alt="按 制造商 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Brand>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl32&#39;,&#39;&#39;)"><img title="按 制造商 Descending 排序" src="../../../../../../Images/Search/btn_Sort_Down.gif" alt="按 制造商 Descending 排序" /></a></td><td></td><td></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Default>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl34&#39;,&#39;&#39;)"><img title="按 供货情况 Ascending 排序" src="../../../../../../Images/Search/btn_ActiveSort_Up.jpg" alt="按 供货情况 Ascending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Pricing>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl36&#39;,&#39;&#39;)"><img title="按 单价(含17%增值税) Ascending 排序" src="../../../../../../Images/Search/btn_Sort_Up.gif" alt="按 单价(含17%增值税) Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Pricing>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl38&#39;,&#39;&#39;)"><img title="按 单价(含17%增值税) Descending 排序" src="../../../../../../Images/Search/btn_Sort_Down.gif" alt="按 单价(含17%增值税) Descending 排序" /></a></td><td></td><td></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Application>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl40&#39;,&#39;&#39;)"><img title="按 应用 Ascending 排序" src="../../../../../../Images/Search/btn_Sort_Up.gif" alt="按 应用 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Application>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl42&#39;,&#39;&#39;)"><img title="按 应用 Descending 排序" src="../../../../../../Images/Search/btn_Sort_Down.gif" alt="按 应用 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Core>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl44&#39;,&#39;&#39;)"><img title="按 核心 Ascending 排序" src="../../../../../../Images/Search/btn_Sort_Up.gif" alt="按 核心 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Core>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl46&#39;,&#39;&#39;)"><img title="按 核心 Descending 排序" src="../../../../../../Images/Search/btn_Sort_Down.gif" alt="按 核心 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Number of Cores>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl48&#39;,&#39;&#39;)"><img title="按 内核数量 Ascending 排序" src="../../../../../../Images/Search/btn_Sort_Up.gif" alt="按 内核数量 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Number of Cores>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl50&#39;,&#39;&#39;)"><img title="按 内核数量 Descending 排序" src="../../../../../../Images/Search/btn_Sort_Down.gif" alt="按 内核数量 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Data Bus Width>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl52&#39;,&#39;&#39;)"><img title="按 数据总线宽度 Ascending 排序" src="../../../../../../Images/Search/btn_Sort_Up.gif" alt="按 数据总线宽度 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Data Bus Width>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl54&#39;,&#39;&#39;)"><img title="按 数据总线宽度 Descending 排序" src="../../../../../../Images/Search/btn_Sort_Down.gif" alt="按 数据总线宽度 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Maximum Clock Frequency>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl56&#39;,&#39;&#39;)"><img title="按 最大时钟频率 Ascending 排序" src="../../../../../../Images/Search/btn_Sort_Up.gif" alt="按 最大时钟频率 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Maximum Clock Frequency>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl58&#39;,&#39;&#39;)"><img title="按 最大时钟频率 Descending 排序" src="../../../../../../Images/Search/btn_Sort_Down.gif" alt="按 最大时钟频率 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$L1 Cache Instruction Memory>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl60&#39;,&#39;&#39;)"><img title="按 L1缓存指令存储器 Ascending 排序" src="../../../../../../Images/Search/btn_Sort_Up.gif" alt="按 L1缓存指令存储器 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$L1 Cache Instruction Memory>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl62&#39;,&#39;&#39;)"><img title="按 L1缓存指令存储器 Descending 排序" src="../../../../../../Images/Search/btn_Sort_Down.gif" alt="按 L1缓存指令存储器 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$L1 Cache Data Memory>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl64&#39;,&#39;&#39;)"><img title="按 L1缓存数据存储器 Ascending 排序" src="../../../../../../Images/Search/btn_Sort_Up.gif" alt="按 L1缓存数据存储器 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$L1 Cache Data Memory>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl66&#39;,&#39;&#39;)"><img title="按 L1缓存数据存储器 Descending 排序" src="../../../../../../Images/Search/btn_Sort_Down.gif" alt="按 L1缓存数据存储器 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Operating Supply Voltage>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl68&#39;,&#39;&#39;)"><img title="按 工作电源电压 Ascending 排序" src="../../../../../../Images/Search/btn_Sort_Up.gif" alt="按 工作电源电压 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Operating Supply Voltage>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl70&#39;,&#39;&#39;)"><img title="按 工作电源电压 Descending 排序" src="../../../../../../Images/Search/btn_Sort_Down.gif" alt="按 工作电源电压 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Maximum Operating Temperature>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl72&#39;,&#39;&#39;)"><img title="按 最大工作温度 Ascending 排序" src="../../../../../../Images/Search/btn_Sort_Up.gif" alt="按 最大工作温度 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Maximum Operating Temperature>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl74&#39;,&#39;&#39;)"><img title="按 最大工作温度 Descending 排序" src="../../../../../../Images/Search/btn_Sort_Down.gif" alt="按 最大工作温度 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Mounting Style>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl76&#39;,&#39;&#39;)"><img title="按 安装风格 Ascending 排序" src="../../../../../../Images/Search/btn_Sort_Up.gif" alt="按 安装风格 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Mounting Style>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl78&#39;,&#39;&#39;)"><img title="按 安装风格 Descending 排序" src="../../../../../../Images/Search/btn_Sort_Down.gif" alt="按 安装风格 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Package / Case>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl80&#39;,&#39;&#39;)"><img title="按 封装 / 箱体 Ascending 排序" src="../../../../../../Images/Search/btn_Sort_Up.gif" alt="按 封装 / 箱体 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Package / Case>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl82&#39;,&#39;&#39;)"><img title="按 封装 / 箱体 Descending 排序" src="../../../../../../Images/Search/btn_Sort_Down.gif" alt="按 封装 / 箱体 Descending 排序" /></a></td>
  1748. </tr><tr class="SearchResultsRowOdd" data-partnumber="841-MCIMX6G3DVM05AA" data-index="3">
  1749. <td class="td-select" align="center">
  1750. <div style="padding: 5px 5px 0 5px;">
  1751. <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl03$chkSelect" onclick="javascript:RowSelected(3, this.checked);" /></span>
  1752. </div>
  1753. </td><td><a href='/ProductDetail/NXP-Freescale/MCIMX6G3DVM05AA/?qs=sGAEpiMZZMvr4NRCYJMseGml8HC0wUVD5pewMSYUXjXpN262YYE%2fWg%3d%3d'><img title='NXP / Freescale MCIMX6G3DVM05AA' alt='NXP / Freescale MCIMX6G3DVM05AA' id=1594220416 src='/images/mouserimages/sm/BGA_289_t.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/mouserimages/images/BGA_289_t.jpg</div></a></td><td>
  1754. <div style="text-align:left;">
  1755. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/NXP-Freescale/MCIMX6G3DVM05AA/?qs=sGAEpiMZZMvr4NRCYJMseGml8HC0wUVD5pewMSYUXjXpN262YYE%2fWg%3d%3d">841-MCIMX6G3DVM05AA</a><br />
  1756. <br />
  1757. <br />
  1758. </div></td><td>
  1759. <div class="mfrDiv">
  1760. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/NXP-Freescale/MCIMX6G3DVM05AA/?qs=sGAEpiMZZMvr4NRCYJMseGml8HC0wUVD5pewMSYUXjXpN262YYE%2fWg%3d%3d">MCIMX6G3DVM05AA</a><br />
  1761. <br />
  1762. <div style="width: 100%; text-align: center;">
  1763. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  1764. </div>
  1765. <div style="width: 100%; text-align: center;">
  1766. </div>
  1767. </div>
  1768. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl03_lnkSupplier" href="../../../../../../Freescale-Semiconductor">NXP / Freescale</a>
  1769. </td><td>处理器 - 专门应用 i.MX 32-bit MPU, ARM Cortex-A7 core, 500MHz, 289BGA
  1770. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  1771. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../freescale-imx6-ultralite">了解更多</a>
  1772. </div>
  1773. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  1774. </div>
  1775. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;NXP / Freescale&quot;,&quot;841-MCIMX6G3DVM05AA | MCIMX6G3DVM05AA&quot;]);" href="http://www.mouser.com/ds/2/302/IMX6ULCEC-782209.pdf" target="_blank">数据表</a>
  1776. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl06_lnkAvailability">310<br/>有库存</span>
  1777. <table>
  1778. <tr align="center">
  1779. <td style="padding-top: 5px">
  1780. </td>
  1781. </tr>
  1782. <tr align="center">
  1783. <td style="padding-top: 5px; padding-bottom: 5px">
  1784. </td>
  1785. </tr>
  1786. </table></td><td>
  1787. <table class="PriceBreaks" cellspacing="0" border="0">
  1788. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  1789. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1790. </td>
  1791. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1792. </td>
  1793. </tr>
  1794. <tr>
  1795. <td class="PriceBreakQuantity">
  1796. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(1,1);">1:</a>
  1797. </td>
  1798. <td class="PriceBreakPrice">
  1799. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥100.8072</span>
  1800. </td>
  1801. </tr>
  1802. <tr>
  1803. <td class="PriceBreakQuantity">
  1804. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(1,10);">10:</a>
  1805. </td>
  1806. <td class="PriceBreakPrice">
  1807. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥95.1795</span>
  1808. </td>
  1809. </tr>
  1810. <tr>
  1811. <td class="PriceBreakQuantity">
  1812. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(1,25);">25:</a>
  1813. </td>
  1814. <td class="PriceBreakPrice">
  1815. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥89.6337</span>
  1816. </td>
  1817. </tr>
  1818. <tr>
  1819. <td class="PriceBreakQuantity">
  1820. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(1,100);">100:</a>
  1821. </td>
  1822. <td class="PriceBreakPrice">
  1823. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥67.2282</span>
  1824. </td>
  1825. </tr>
  1826. <tr>
  1827. <td><br /></td>
  1828. </tr>
  1829. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  1830. <td colspan="2" style="text-align: center;">
  1831. </td>
  1832. </tr>
  1833. </table>
  1834. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl08_btnBuy&#39;)">
  1835. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl03$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(1,this.value);" /><br />
  1836. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl03$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 1);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl08_btnBuy" title="购买 MCIMX6G3DVM05AA" class="buy-button" /><br />
  1837. <table cellspacing="0" border="0" style="width: 100%;">
  1838. <tr>
  1839. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1840. 最低:
  1841. </td>
  1842. <td style="padding-left: 2px; text-align: left;">
  1843. 1
  1844. </td>
  1845. </tr>
  1846. <tr>
  1847. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1848. 多个:
  1849. </td>
  1850. <td style="padding-left: 2px; text-align: left;">
  1851. 1
  1852. </td>
  1853. </tr>
  1854. </table>
  1855. </div>
  1856. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_pnlCompliant">
  1857. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  1858. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=%252bQjoh3SlCFCwwebTB%2f3%2f3Q%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=%252bQjoh3SlCFCwwebTB%2f3%2f3Q%3d%3d" target="_blank">详细信息</a>
  1859. </div>
  1860. </td><td>Security Applications
  1861. </td><td>ARM Cortex A7
  1862. </td><td>1 Core
  1863. </td><td>32 bit
  1864. </td><td>528 MHz
  1865. </td><td>32 kB
  1866. </td><td>32 kB
  1867. </td><td>1.15 V to 1.3 V
  1868. </td><td>+ 95 C
  1869. </td><td>SMD/SMT
  1870. </td><td>MAPBGA-289
  1871. </td>
  1872. </tr><tr class="SearchResultsRowEven" data-partnumber="841-MCIMX6G3DVK05AA" data-index="4">
  1873. <td class="td-select" align="center">
  1874. <div style="padding: 5px 5px 0 5px;">
  1875. <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl04$chkSelect" onclick="javascript:RowSelected(4, this.checked);" /></span>
  1876. </div>
  1877. </td><td><a href='/ProductDetail/NXP-Freescale/MCIMX6G3DVK05AA/?qs=sGAEpiMZZMvr4NRCYJMseGml8HC0wUVDpvoYMo%252bRAhvNGIPY8tFqLg%3d%3d'><img title='NXP / Freescale MCIMX6G3DVK05AA' alt='NXP / Freescale MCIMX6G3DVK05AA' id=1594220420 src='/images/mouserimages/sm/BGA_289_t.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/mouserimages/images/BGA_289_t.jpg</div></a></td><td>
  1878. <div style="text-align:left;">
  1879. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/NXP-Freescale/MCIMX6G3DVK05AA/?qs=sGAEpiMZZMvr4NRCYJMseGml8HC0wUVDpvoYMo%252bRAhvNGIPY8tFqLg%3d%3d">841-MCIMX6G3DVK05AA</a><br />
  1880. <br />
  1881. <br />
  1882. </div></td><td>
  1883. <div class="mfrDiv">
  1884. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/NXP-Freescale/MCIMX6G3DVK05AA/?qs=sGAEpiMZZMvr4NRCYJMseGml8HC0wUVDpvoYMo%252bRAhvNGIPY8tFqLg%3d%3d">MCIMX6G3DVK05AA</a><br />
  1885. <br />
  1886. <div style="width: 100%; text-align: center;">
  1887. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  1888. </div>
  1889. <div style="width: 100%; text-align: center;">
  1890. </div>
  1891. </div>
  1892. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl03_lnkSupplier" href="../../../../../../Freescale-Semiconductor">NXP / Freescale</a>
  1893. </td><td>处理器 - 专门应用 i.MX 32-bit MPU, ARM Cortex-A7 core, 500MHz, 289BGA
  1894. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  1895. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../freescale-imx6-ultralite">了解更多</a>
  1896. </div>
  1897. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  1898. </div>
  1899. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;NXP / Freescale&quot;,&quot;841-MCIMX6G3DVK05AA | MCIMX6G3DVK05AA&quot;]);" href="http://www.mouser.com/ds/2/302/IMX6ULCEC-782209.pdf" target="_blank">数据表</a>
  1900. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl06_lnkAvailability">260<br/>有库存</span>
  1901. <table>
  1902. <tr align="center">
  1903. <td style="padding-top: 5px">
  1904. </td>
  1905. </tr>
  1906. <tr align="center">
  1907. <td style="padding-top: 5px; padding-bottom: 5px">
  1908. </td>
  1909. </tr>
  1910. </table></td><td>
  1911. <table class="PriceBreaks" cellspacing="0" border="0">
  1912. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  1913. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1914. </td>
  1915. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1916. </td>
  1917. </tr>
  1918. <tr>
  1919. <td class="PriceBreakQuantity">
  1920. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(2,1);">1:</a>
  1921. </td>
  1922. <td class="PriceBreakPrice">
  1923. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥105.9669</span>
  1924. </td>
  1925. </tr>
  1926. <tr>
  1927. <td class="PriceBreakQuantity">
  1928. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(2,10);">10:</a>
  1929. </td>
  1930. <td class="PriceBreakPrice">
  1931. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥100.035</span>
  1932. </td>
  1933. </tr>
  1934. <tr>
  1935. <td class="PriceBreakQuantity">
  1936. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(2,25);">25:</a>
  1937. </td>
  1938. <td class="PriceBreakPrice">
  1939. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥94.185</span>
  1940. </td>
  1941. </tr>
  1942. <tr>
  1943. <td class="PriceBreakQuantity">
  1944. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(2,100);">100:</a>
  1945. </td>
  1946. <td class="PriceBreakPrice">
  1947. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥70.6212</span>
  1948. </td>
  1949. </tr>
  1950. <tr>
  1951. <td><br /></td>
  1952. </tr>
  1953. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  1954. <td colspan="2" style="text-align: center;">
  1955. </td>
  1956. </tr>
  1957. </table>
  1958. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl08_btnBuy&#39;)">
  1959. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl04$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(2,this.value);" /><br />
  1960. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl04$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 2);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl08_btnBuy" title="购买 MCIMX6G3DVK05AA" class="buy-button" /><br />
  1961. <table cellspacing="0" border="0" style="width: 100%;">
  1962. <tr>
  1963. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1964. 最低:
  1965. </td>
  1966. <td style="padding-left: 2px; text-align: left;">
  1967. 1
  1968. </td>
  1969. </tr>
  1970. <tr>
  1971. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1972. 多个:
  1973. </td>
  1974. <td style="padding-left: 2px; text-align: left;">
  1975. 1
  1976. </td>
  1977. </tr>
  1978. </table>
  1979. </div>
  1980. </td><td>
  1981. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_pnlNotCompliant">
  1982. <br />
  1983. <br />
  1984. </div>
  1985. </td><td>Security Applications
  1986. </td><td>ARM Cortex A7
  1987. </td><td>1 Core
  1988. </td><td>32 bit
  1989. </td><td>528 MHz
  1990. </td><td>32 kB
  1991. </td><td>32 kB
  1992. </td><td>1.15 V to 1.3 V
  1993. </td><td>+ 95 C
  1994. </td><td>SMD/SMT
  1995. </td><td>MAPBGA-272
  1996. </td>
  1997. </tr><tr class="SearchResultsRowOdd" data-partnumber="841-MCIMX6G2DVM05AA" data-index="5">
  1998. <td class="td-select" align="center">
  1999. <div style="padding: 5px 5px 0 5px;">
  2000. <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl05$chkSelect" onclick="javascript:RowSelected(5, this.checked);" /></span>
  2001. </div>
  2002. </td><td><a href='/ProductDetail/NXP-Freescale/MCIMX6G2DVM05AA/?qs=sGAEpiMZZMvr4NRCYJMseGml8HC0wUVD6lm4%2fU9Tyfa%2fU9ElQkeCaA%3d%3d'><img title='NXP / Freescale MCIMX6G2DVM05AA' alt='NXP / Freescale MCIMX6G2DVM05AA' id=1594220424 src='/images/mouserimages/sm/BGA_289_t.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/mouserimages/images/BGA_289_t.jpg</div></a></td><td>
  2003. <div style="text-align:left;">
  2004. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/NXP-Freescale/MCIMX6G2DVM05AA/?qs=sGAEpiMZZMvr4NRCYJMseGml8HC0wUVD6lm4%2fU9Tyfa%2fU9ElQkeCaA%3d%3d">841-MCIMX6G2DVM05AA</a><br />
  2005. <br />
  2006. <br />
  2007. </div></td><td>
  2008. <div class="mfrDiv">
  2009. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/NXP-Freescale/MCIMX6G2DVM05AA/?qs=sGAEpiMZZMvr4NRCYJMseGml8HC0wUVD6lm4%2fU9Tyfa%2fU9ElQkeCaA%3d%3d">MCIMX6G2DVM05AA</a><br />
  2010. <br />
  2011. <div style="width: 100%; text-align: center;">
  2012. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2013. </div>
  2014. <div style="width: 100%; text-align: center;">
  2015. </div>
  2016. </div>
  2017. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl03_lnkSupplier" href="../../../../../../Freescale-Semiconductor">NXP / Freescale</a>
  2018. </td><td>处理器 - 专门应用 i.MX 32-bit MPU, ARM Cortex-A7 core, 500MHz, 289BGA
  2019. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2020. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../freescale-imx6-ultralite">了解更多</a>
  2021. </div>
  2022. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2023. </div>
  2024. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;NXP / Freescale&quot;,&quot;841-MCIMX6G2DVM05AA | MCIMX6G2DVM05AA&quot;]);" href="http://www.mouser.com/ds/2/302/IMX6ULCEC-782209.pdf" target="_blank">数据表</a>
  2025. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl06_lnkAvailability">147<br/>有库存</span>
  2026. <table>
  2027. <tr align="center">
  2028. <td style="padding-top: 5px">
  2029. </td>
  2030. </tr>
  2031. <tr align="center">
  2032. <td style="padding-top: 5px; padding-bottom: 5px">
  2033. </td>
  2034. </tr>
  2035. </table></td><td>
  2036. <table class="PriceBreaks" cellspacing="0" border="0">
  2037. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2038. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2039. </td>
  2040. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2041. </td>
  2042. </tr>
  2043. <tr>
  2044. <td class="PriceBreakQuantity">
  2045. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(3,1);">1:</a>
  2046. </td>
  2047. <td class="PriceBreakPrice">
  2048. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥85.2462</span>
  2049. </td>
  2050. </tr>
  2051. <tr>
  2052. <td class="PriceBreakQuantity">
  2053. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(3,10);">10:</a>
  2054. </td>
  2055. <td class="PriceBreakPrice">
  2056. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥80.5545</span>
  2057. </td>
  2058. </tr>
  2059. <tr>
  2060. <td class="PriceBreakQuantity">
  2061. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(3,25);">25:</a>
  2062. </td>
  2063. <td class="PriceBreakPrice">
  2064. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥75.7809</span>
  2065. </td>
  2066. </tr>
  2067. <tr>
  2068. <td class="PriceBreakQuantity">
  2069. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(3,100);">100:</a>
  2070. </td>
  2071. <td class="PriceBreakPrice">
  2072. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥56.8386</span>
  2073. </td>
  2074. </tr>
  2075. <tr>
  2076. <td><br /></td>
  2077. </tr>
  2078. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2079. <td colspan="2" style="text-align: center;">
  2080. </td>
  2081. </tr>
  2082. </table>
  2083. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl08_btnBuy&#39;)">
  2084. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl05$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(3,this.value);" /><br />
  2085. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl05$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 3);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl08_btnBuy" title="购买 MCIMX6G2DVM05AA" class="buy-button" /><br />
  2086. <table cellspacing="0" border="0" style="width: 100%;">
  2087. <tr>
  2088. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2089. 最低:
  2090. </td>
  2091. <td style="padding-left: 2px; text-align: left;">
  2092. 1
  2093. </td>
  2094. </tr>
  2095. <tr>
  2096. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2097. 多个:
  2098. </td>
  2099. <td style="padding-left: 2px; text-align: left;">
  2100. 1
  2101. </td>
  2102. </tr>
  2103. </table>
  2104. </div>
  2105. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_pnlCompliant">
  2106. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2107. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=%252bQjoh3SlCFBYjTkAbx4izg%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=%252bQjoh3SlCFBYjTkAbx4izg%3d%3d" target="_blank">详细信息</a>
  2108. </div>
  2109. </td><td>Application Processors
  2110. </td><td>ARM Cortex A7
  2111. </td><td>1 Core
  2112. </td><td>32 bit
  2113. </td><td>528 MHz
  2114. </td><td>32 kB
  2115. </td><td>32 kB
  2116. </td><td>1.15 V to 1.3 V
  2117. </td><td>+ 95 C
  2118. </td><td>SMD/SMT
  2119. </td><td>MAPBGA-289
  2120. </td>
  2121. </tr><tr class="SearchResultsRowEven" data-partnumber="841-MCIMX6S5DVM10AC" data-index="6">
  2122. <td class="td-select" align="center">
  2123. <div style="padding: 5px 5px 0 5px;">
  2124. <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl06$chkSelect" onclick="javascript:RowSelected(6, this.checked);" /></span>
  2125. </div>
  2126. </td><td><a href='/ProductDetail/NXP-Freescale/MCIMX6S5DVM10AC/?qs=sGAEpiMZZMvr4NRCYJMseENl70YDCZtQD3prb3cyLEtvtC0PheMsRQ%3d%3d'><img title='NXP / Freescale MCIMX6S5DVM10AC' alt='NXP / Freescale MCIMX6S5DVM10AC' id=1010869204 src='/images/freescale/sm/BGA-624.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/freescale/images/BGA-624.jpg</div></a></td><td>
  2127. <div style="text-align:left;">
  2128. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/NXP-Freescale/MCIMX6S5DVM10AC/?qs=sGAEpiMZZMvr4NRCYJMseENl70YDCZtQD3prb3cyLEtvtC0PheMsRQ%3d%3d">841-MCIMX6S5DVM10AC</a><br />
  2129. <br />
  2130. <br />
  2131. </div></td><td>
  2132. <div class="mfrDiv">
  2133. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/NXP-Freescale/MCIMX6S5DVM10AC/?qs=sGAEpiMZZMvr4NRCYJMseENl70YDCZtQD3prb3cyLEtvtC0PheMsRQ%3d%3d">MCIMX6S5DVM10AC</a><br />
  2134. <br />
  2135. <div style="width: 100%; text-align: center;">
  2136. </div>
  2137. <div style="width: 100%; text-align: center;">
  2138. </div>
  2139. </div>
  2140. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl03_lnkSupplier" href="../../../../../../Freescale-Semiconductor">NXP / Freescale</a>
  2141. </td><td>处理器 - 专门应用 i.MX 6 series 32-bit MPU, ARM Cortex-A9 core, 1GHz, MAPBGA 624
  2142. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2143. <img src="/Images/icon_EAR.gif" alt='此产品可能需要其他文件才能从美国出口。' title='此产品可能需要其他文件才能从美国出口。' />
  2144. </div>
  2145. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;NXP / Freescale&quot;,&quot;841-MCIMX6S5DVM10AC | MCIMX6S5DVM10AC&quot;]);" href="http://www.mouser.com/ds/2/302/IMX6SDLCEC-782185.pdf" target="_blank">数据表</a>
  2146. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl06_lnkAvailability">1,349<br/>有库存</span>
  2147. <table>
  2148. <tr align="center">
  2149. <td style="padding-top: 5px">
  2150. </td>
  2151. </tr>
  2152. <tr align="center">
  2153. <td style="padding-top: 5px; padding-bottom: 5px">
  2154. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl06_lnkAlternativePackaging" title="备用包装 | 841-MCIMX6S5DVM10AC" class="thickbox" href="../../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YQeqxs7bzq4crpGRhSm0cIR9S%252bomcvvG%2fZks%2fR%2fFvJMTA3uIDixyv8BHnR9ksGdyeckjUWRlEaBoqagjdvNw6KZXjvCAJNnMkDQNvOmToecoYttzgeFeO5fixX1sNwPHrxW%2fUDy6iqepIZ3mHTNKu%2fP&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  2155. </td>
  2156. </tr>
  2157. </table></td><td>
  2158. <table class="PriceBreaks" cellspacing="0" border="0">
  2159. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2160. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2161. </td>
  2162. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2163. </td>
  2164. </tr>
  2165. <tr>
  2166. <td class="PriceBreakQuantity">
  2167. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(4,1);">1:</a>
  2168. </td>
  2169. <td class="PriceBreakPrice">
  2170. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥196.677</span>
  2171. </td>
  2172. </tr>
  2173. <tr>
  2174. <td class="PriceBreakQuantity">
  2175. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(4,10);">10:</a>
  2176. </td>
  2177. <td class="PriceBreakPrice">
  2178. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥185.7492</span>
  2179. </td>
  2180. </tr>
  2181. <tr>
  2182. <td class="PriceBreakQuantity">
  2183. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(4,25);">25:</a>
  2184. </td>
  2185. <td class="PriceBreakPrice">
  2186. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥174.8097</span>
  2187. </td>
  2188. </tr>
  2189. <tr>
  2190. <td class="PriceBreakQuantity">
  2191. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(4,100);">100:</a>
  2192. </td>
  2193. <td class="PriceBreakPrice">
  2194. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥131.0751</span>
  2195. </td>
  2196. </tr>
  2197. <tr>
  2198. <td><br /></td>
  2199. </tr>
  2200. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2201. <td colspan="2" style="text-align: center;">
  2202. </td>
  2203. </tr>
  2204. </table>
  2205. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl08_btnBuy&#39;)">
  2206. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl06$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(4,this.value);" /><br />
  2207. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl06$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 4);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl08_btnBuy" title="购买 MCIMX6S5DVM10AC" class="buy-button" /><br />
  2208. <table cellspacing="0" border="0" style="width: 100%;">
  2209. <tr>
  2210. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2211. 最低:
  2212. </td>
  2213. <td style="padding-left: 2px; text-align: left;">
  2214. 1
  2215. </td>
  2216. </tr>
  2217. <tr>
  2218. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2219. 多个:
  2220. </td>
  2221. <td style="padding-left: 2px; text-align: left;">
  2222. 1
  2223. </td>
  2224. </tr>
  2225. </table>
  2226. </div>
  2227. </td><td>
  2228. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_pnlNotCompliant">
  2229. <br />
  2230. <br />
  2231. </div>
  2232. </td><td>Commercial Applications
  2233. </td><td>ARM Cortex A9
  2234. </td><td>1 Core
  2235. </td><td>32 bit
  2236. </td><td>1 GHz
  2237. </td><td>32 kB
  2238. </td><td>32 kB
  2239. </td><td>1.175 V to 1.5 V
  2240. </td><td>+ 95 C
  2241. </td><td>SMD/SMT
  2242. </td><td>MAPBGA-624
  2243. </td>
  2244. </tr><tr class="SearchResultsRowOdd" data-partnumber="841-MCIMX515DJM8C" data-index="7">
  2245. <td class="td-select" align="center">
  2246. <div style="padding: 5px 5px 0 5px;">
  2247. <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl07$chkSelect" onclick="javascript:RowSelected(7, this.checked);" /></span>
  2248. </div>
  2249. </td><td><a href='/ProductDetail/NXP-Freescale/MCIMX515DJM8C/?qs=sGAEpiMZZMvr4NRCYJMseCj4MEIaaNcogXL4XwYeb84%3d'><img title='NXP / Freescale MCIMX515DJM8C' alt='NXP / Freescale MCIMX515DJM8C' id=387722297 src='/images/freescale/sm/imx51.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/freescale/images/imx51.jpg</div></a></td><td>
  2250. <div style="text-align:left;">
  2251. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/NXP-Freescale/MCIMX515DJM8C/?qs=sGAEpiMZZMvr4NRCYJMseCj4MEIaaNcogXL4XwYeb84%3d">841-MCIMX515DJM8C</a><br />
  2252. <br />
  2253. <br />
  2254. </div></td><td>
  2255. <div class="mfrDiv">
  2256. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/NXP-Freescale/MCIMX515DJM8C/?qs=sGAEpiMZZMvr4NRCYJMseCj4MEIaaNcogXL4XwYeb84%3d">MCIMX515DJM8C</a><br />
  2257. <br />
  2258. <div style="width: 100%; text-align: center;">
  2259. </div>
  2260. <div style="width: 100%; text-align: center;">
  2261. </div>
  2262. </div>
  2263. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl03_lnkSupplier" href="../../../../../../Freescale-Semiconductor">NXP / Freescale</a>
  2264. </td><td>处理器 - 专门应用 iMX515 App Processor Extended Temp
  2265. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2266. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../freescaleimx/">了解更多</a>
  2267. </div>
  2268. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2269. <img src="/Images/icon_EAR.gif" alt='此产品可能需要其他文件才能从美国出口。' title='此产品可能需要其他文件才能从美国出口。' />
  2270. </div>
  2271. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;NXP / Freescale&quot;,&quot;841-MCIMX515DJM8C | MCIMX515DJM8C&quot;]);" href="http://www.mouser.com/ds/2/302/IMX51CEC-782995.pdf" target="_blank">数据表</a>
  2272. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl06_lnkAvailability">796<br/>有库存</span>
  2273. <table>
  2274. <tr align="center">
  2275. <td style="padding-top: 5px">
  2276. </td>
  2277. </tr>
  2278. <tr align="center">
  2279. <td style="padding-top: 5px; padding-bottom: 5px">
  2280. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl06_lnkAlternativePackaging" title="备用包装 | 841-MCIMX515DJM8C" class="thickbox" href="../../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YQeqxs7bzq4cgGNOdZv46QN7xV%252bNiqvvjG4Q%252bOCr%2fE4BjGc%252bheFD7FwoqgvYYRBe%2f%2fdcmitwKn22MfbBDXBKufpvwlQ5W6%2fmx0nY2bLYBb5qyPSmaO65GD78M2q%2fqnxHohbAA8bDQKa4A%3d%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  2281. </td>
  2282. </tr>
  2283. </table></td><td>
  2284. <table class="PriceBreaks" cellspacing="0" border="0">
  2285. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2286. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2287. </td>
  2288. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2289. </td>
  2290. </tr>
  2291. <tr>
  2292. <td class="PriceBreakQuantity">
  2293. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(5,1);">1:</a>
  2294. </td>
  2295. <td class="PriceBreakPrice">
  2296. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥283.7016</span>
  2297. </td>
  2298. </tr>
  2299. <tr>
  2300. <td class="PriceBreakQuantity">
  2301. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(5,10);">10:</a>
  2302. </td>
  2303. <td class="PriceBreakPrice">
  2304. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥267.9183</span>
  2305. </td>
  2306. </tr>
  2307. <tr>
  2308. <td class="PriceBreakQuantity">
  2309. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(5,25);">25:</a>
  2310. </td>
  2311. <td class="PriceBreakPrice">
  2312. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥252.2052</span>
  2313. </td>
  2314. </tr>
  2315. <tr>
  2316. <td class="PriceBreakQuantity">
  2317. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(5,100);">100:</a>
  2318. </td>
  2319. <td class="PriceBreakPrice">
  2320. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥189.1305</span>
  2321. </td>
  2322. </tr>
  2323. <tr>
  2324. <td><br /></td>
  2325. </tr>
  2326. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2327. <td colspan="2" style="text-align: center;">
  2328. </td>
  2329. </tr>
  2330. </table>
  2331. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl08_btnBuy&#39;)">
  2332. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl07$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(5,this.value);" /><br />
  2333. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl07$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 5);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl08_btnBuy" title="购买 MCIMX515DJM8C" class="buy-button" /><br />
  2334. <table cellspacing="0" border="0" style="width: 100%;">
  2335. <tr>
  2336. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2337. 最低:
  2338. </td>
  2339. <td style="padding-left: 2px; text-align: left;">
  2340. 1
  2341. </td>
  2342. </tr>
  2343. <tr>
  2344. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2345. 多个:
  2346. </td>
  2347. <td style="padding-left: 2px; text-align: left;">
  2348. 1
  2349. </td>
  2350. </tr>
  2351. </table>
  2352. </div>
  2353. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_pnlCompliant">
  2354. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2355. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=NZ%2fADFh%252bmBlp3KMIYShJwg%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=NZ%2fADFh%252bmBlp3KMIYShJwg%3d%3d" target="_blank">详细信息</a>
  2356. </div>
  2357. </td><td>Multimedia Applications
  2358. </td><td>ARM Cortex A8
  2359. </td><td>1 Core
  2360. </td><td>32 bit
  2361. </td><td>800 MHz
  2362. </td><td>32 kB
  2363. </td><td>32 kB
  2364. </td><td>1.1 V
  2365. </td><td>+ 85 C
  2366. </td><td>SMD/SMT
  2367. </td><td>BGA-529
  2368. </td>
  2369. </tr><tr class="SearchResultsRowEven" data-partnumber="841-MCIMX287CVM4B" data-index="8">
  2370. <td class="td-select" align="center">
  2371. <div style="padding: 5px 5px 0 5px;">
  2372. <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl08$chkSelect" onclick="javascript:RowSelected(8, this.checked);" /></span>
  2373. </div>
  2374. </td><td><a href='/ProductDetail/NXP-Freescale/MCIMX287CVM4B/?qs=sGAEpiMZZMvr4NRCYJMseEmK4MbZDFC7ZcX2iLZ8mDA%3d'><img title='NXP / Freescale MCIMX287CVM4B' alt='NXP / Freescale MCIMX287CVM4B' id=481259387 src='/images/freescale/sm/imx283.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/freescale/images/imx283.jpg</div></a></td><td>
  2375. <div style="text-align:left;">
  2376. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/NXP-Freescale/MCIMX287CVM4B/?qs=sGAEpiMZZMvr4NRCYJMseEmK4MbZDFC7ZcX2iLZ8mDA%3d">841-MCIMX287CVM4B</a><br />
  2377. <br />
  2378. <br />
  2379. </div></td><td>
  2380. <div class="mfrDiv">
  2381. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/NXP-Freescale/MCIMX287CVM4B/?qs=sGAEpiMZZMvr4NRCYJMseEmK4MbZDFC7ZcX2iLZ8mDA%3d">MCIMX287CVM4B</a><br />
  2382. <br />
  2383. <div style="width: 100%; text-align: center;">
  2384. </div>
  2385. <div style="width: 100%; text-align: center;">
  2386. </div>
  2387. </div>
  2388. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl03_lnkSupplier" href="../../../../../../Freescale-Semiconductor">NXP / Freescale</a>
  2389. </td><td>处理器 - 专门应用 CATSKILLS REV 1.2
  2390. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2391. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../freescaleimx28">了解更多</a>
  2392. </div>
  2393. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2394. <img src="/Images/icon_EAR.gif" alt='此产品可能需要其他文件才能从美国出口。' title='此产品可能需要其他文件才能从美国出口。' />
  2395. </div>
  2396. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;NXP / Freescale&quot;,&quot;841-MCIMX287CVM4B | MCIMX287CVM4B&quot;]);" href="http://www.mouser.com/ds/2/302/IMX28CEC-782181.pdf" target="_blank">数据表</a>
  2397. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl06_lnkAvailability">1,015<br/>有库存</span>
  2398. <table>
  2399. <tr align="center">
  2400. <td style="padding-top: 5px">
  2401. </td>
  2402. </tr>
  2403. <tr align="center">
  2404. <td style="padding-top: 5px; padding-bottom: 5px">
  2405. </td>
  2406. </tr>
  2407. </table></td><td>
  2408. <table class="PriceBreaks" cellspacing="0" border="0">
  2409. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2410. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2411. </td>
  2412. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2413. </td>
  2414. </tr>
  2415. <tr>
  2416. <td class="PriceBreakQuantity">
  2417. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(6,1);">1:</a>
  2418. </td>
  2419. <td class="PriceBreakPrice">
  2420. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥112.9752</span>
  2421. </td>
  2422. </tr>
  2423. <tr>
  2424. <td class="PriceBreakQuantity">
  2425. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(6,10);">10:</a>
  2426. </td>
  2427. <td class="PriceBreakPrice">
  2428. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥106.6572</span>
  2429. </td>
  2430. </tr>
  2431. <tr>
  2432. <td class="PriceBreakQuantity">
  2433. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(6,25);">25:</a>
  2434. </td>
  2435. <td class="PriceBreakPrice">
  2436. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥100.4211</span>
  2437. </td>
  2438. </tr>
  2439. <tr>
  2440. <td class="PriceBreakQuantity">
  2441. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(6,100);">100:</a>
  2442. </td>
  2443. <td class="PriceBreakPrice">
  2444. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥75.3129</span>
  2445. </td>
  2446. </tr>
  2447. <tr>
  2448. <td><br /></td>
  2449. </tr>
  2450. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2451. <td colspan="2" style="text-align: center;">
  2452. </td>
  2453. </tr>
  2454. </table>
  2455. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl08_btnBuy&#39;)">
  2456. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl08$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(6,this.value);" /><br />
  2457. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl08$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 6);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl08_btnBuy" title="购买 MCIMX287CVM4B" class="buy-button" /><br />
  2458. <table cellspacing="0" border="0" style="width: 100%;">
  2459. <tr>
  2460. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2461. 最低:
  2462. </td>
  2463. <td style="padding-left: 2px; text-align: left;">
  2464. 1
  2465. </td>
  2466. </tr>
  2467. <tr>
  2468. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2469. 多个:
  2470. </td>
  2471. <td style="padding-left: 2px; text-align: left;">
  2472. 1
  2473. </td>
  2474. </tr>
  2475. </table>
  2476. </div>
  2477. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_pnlCompliant">
  2478. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2479. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=uLDMbbYh%252bDW514fLQhkCBA%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=uLDMbbYh%252bDW514fLQhkCBA%3d%3d" target="_blank">详细信息</a>
  2480. </div>
  2481. </td><td>Multimedia Applications
  2482. </td><td>ARM926EJ-S
  2483. </td><td>1 Core
  2484. </td><td>32 bit
  2485. </td><td>454 MHz
  2486. </td><td>16 kB
  2487. </td><td>32 kB
  2488. </td><td>1.35 V to 1.55 V
  2489. </td><td>+ 85 C
  2490. </td><td>SMD/SMT
  2491. </td><td>MAPBGA-289
  2492. </td>
  2493. </tr><tr class="SearchResultsRowOdd" data-partnumber="841-MCIMX6U5DVM10AC" data-index="9">
  2494. <td class="td-select" align="center">
  2495. <div style="padding: 5px 5px 0 5px;">
  2496. <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl09$chkSelect" onclick="javascript:RowSelected(9, this.checked);" /></span>
  2497. </div>
  2498. </td><td><a href='/ProductDetail/NXP-Freescale/MCIMX6U5DVM10AC/?qs=sGAEpiMZZMvr4NRCYJMseENl70YDCZtQrONc5IpRJhui41tZTcA8VQ%3d%3d'><img title='NXP / Freescale MCIMX6U5DVM10AC' alt='NXP / Freescale MCIMX6U5DVM10AC' id=1010869228 src='/images/freescale/sm/BGA-624.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/freescale/images/BGA-624.jpg</div></a></td><td>
  2499. <div style="text-align:left;">
  2500. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/NXP-Freescale/MCIMX6U5DVM10AC/?qs=sGAEpiMZZMvr4NRCYJMseENl70YDCZtQrONc5IpRJhui41tZTcA8VQ%3d%3d">841-MCIMX6U5DVM10AC</a><br />
  2501. <br />
  2502. <br />
  2503. </div></td><td>
  2504. <div class="mfrDiv">
  2505. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/NXP-Freescale/MCIMX6U5DVM10AC/?qs=sGAEpiMZZMvr4NRCYJMseENl70YDCZtQrONc5IpRJhui41tZTcA8VQ%3d%3d">MCIMX6U5DVM10AC</a><br />
  2506. <br />
  2507. <div style="width: 100%; text-align: center;">
  2508. </div>
  2509. <div style="width: 100%; text-align: center;">
  2510. </div>
  2511. </div>
  2512. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl03_lnkSupplier" href="../../../../../../Freescale-Semiconductor">NXP / Freescale</a>
  2513. </td><td>处理器 - 专门应用 i.MX 6 series 32-bit MPU, Dual ARM Cortex-A9 core, 1GHz, MAPBGA 624
  2514. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2515. <img src="/Images/icon_EAR.gif" alt='此产品可能需要其他文件才能从美国出口。' title='此产品可能需要其他文件才能从美国出口。' />
  2516. </div>
  2517. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;NXP / Freescale&quot;,&quot;841-MCIMX6U5DVM10AC | MCIMX6U5DVM10AC&quot;]);" href="http://www.mouser.com/ds/2/302/IMX6SDLCEC-782185.pdf" target="_blank">数据表</a>
  2518. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl06_lnkAvailability">419<br/>有库存</span>
  2519. <table>
  2520. <tr align="center">
  2521. <td style="padding-top: 5px">
  2522. </td>
  2523. </tr>
  2524. <tr align="center">
  2525. <td style="padding-top: 5px; padding-bottom: 5px">
  2526. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl06_lnkAlternativePackaging" title="备用包装 | 841-MCIMX6U5DVM10AC" class="thickbox" href="../../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YQeqxs7bzq4ciLyIChYURZjNsMT%252buM4GFXivNPLGZTma2SbiUXuSFOitwO%2f%2fMf5UHWvNqcW%252bW7Su8VenvaUr1zq2%2fQeSKbsr29%2f26zi8mUcgx8xvNHnyhQHaZrbS9ylbYoVRKba5nx%252b7MFHRZk0izVA&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  2527. </td>
  2528. </tr>
  2529. </table></td><td>
  2530. <table class="PriceBreaks" cellspacing="0" border="0">
  2531. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2532. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2533. </td>
  2534. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2535. </td>
  2536. </tr>
  2537. <tr>
  2538. <td class="PriceBreakQuantity">
  2539. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(7,1);">1:</a>
  2540. </td>
  2541. <td class="PriceBreakPrice">
  2542. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥245.8872</span>
  2543. </td>
  2544. </tr>
  2545. <tr>
  2546. <td class="PriceBreakQuantity">
  2547. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(7,10);">10:</a>
  2548. </td>
  2549. <td class="PriceBreakPrice">
  2550. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥232.1865</span>
  2551. </td>
  2552. </tr>
  2553. <tr>
  2554. <td class="PriceBreakQuantity">
  2555. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(7,25);">25:</a>
  2556. </td>
  2557. <td class="PriceBreakPrice">
  2558. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥218.556</span>
  2559. </td>
  2560. </tr>
  2561. <tr>
  2562. <td class="PriceBreakQuantity">
  2563. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(7,100);">100:</a>
  2564. </td>
  2565. <td class="PriceBreakPrice">
  2566. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥163.8702</span>
  2567. </td>
  2568. </tr>
  2569. <tr>
  2570. <td><br /></td>
  2571. </tr>
  2572. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2573. <td colspan="2" style="text-align: center;">
  2574. </td>
  2575. </tr>
  2576. </table>
  2577. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl08_btnBuy&#39;)">
  2578. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl09$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(7,this.value);" /><br />
  2579. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl09$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 7);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl08_btnBuy" title="购买 MCIMX6U5DVM10AC" class="buy-button" /><br />
  2580. <table cellspacing="0" border="0" style="width: 100%;">
  2581. <tr>
  2582. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2583. 最低:
  2584. </td>
  2585. <td style="padding-left: 2px; text-align: left;">
  2586. 1
  2587. </td>
  2588. </tr>
  2589. <tr>
  2590. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2591. 多个:
  2592. </td>
  2593. <td style="padding-left: 2px; text-align: left;">
  2594. 1
  2595. </td>
  2596. </tr>
  2597. </table>
  2598. </div>
  2599. </td><td>
  2600. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_pnlNotCompliant">
  2601. <br />
  2602. <br />
  2603. </div>
  2604. </td><td>Commercial Applications
  2605. </td><td>ARM Cortex A9
  2606. </td><td>1 Core
  2607. </td><td>32 bit
  2608. </td><td>1 GHz
  2609. </td><td>32 kB
  2610. </td><td>32 kB
  2611. </td><td>1.175 V to 1.5 V
  2612. </td><td>+ 95 C
  2613. </td><td>SMD/SMT
  2614. </td><td>MAPBGA-624
  2615. </td>
  2616. </tr><tr class="SearchResultsRowEven" data-partnumber="841-MCIMX535DVV1C" data-index="10">
  2617. <td class="td-select" align="center">
  2618. <div style="padding: 5px 5px 0 5px;">
  2619. <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl10$chkSelect" onclick="javascript:RowSelected(10, this.checked);" /></span>
  2620. </div>
  2621. </td><td><a href='/ProductDetail/NXP-Freescale/MCIMX535DVV1C/?qs=sGAEpiMZZMvr4NRCYJMseHv%252bvU%2fC0OEEwA85F8msMgM%3d'><img title='NXP / Freescale MCIMX535DVV1C' alt='NXP / Freescale MCIMX535DVV1C' id=543749238 src='/images/mouserimages/sm/BGA_529_t.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/mouserimages/images/BGA_529_t.jpg</div></a></td><td>
  2622. <div style="text-align:left;">
  2623. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/NXP-Freescale/MCIMX535DVV1C/?qs=sGAEpiMZZMvr4NRCYJMseHv%252bvU%2fC0OEEwA85F8msMgM%3d">841-MCIMX535DVV1C</a><br />
  2624. <br />
  2625. <br />
  2626. </div></td><td>
  2627. <div class="mfrDiv">
  2628. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/NXP-Freescale/MCIMX535DVV1C/?qs=sGAEpiMZZMvr4NRCYJMseHv%252bvU%2fC0OEEwA85F8msMgM%3d">MCIMX535DVV1C</a><br />
  2629. <br />
  2630. <div style="width: 100%; text-align: center;">
  2631. </div>
  2632. <div style="width: 100%; text-align: center;">
  2633. </div>
  2634. </div>
  2635. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl03_lnkSupplier" href="../../../../../../Freescale-Semiconductor">NXP / Freescale</a>
  2636. </td><td>处理器 - 专门应用 IMX53 REV 2.1 COMM
  2637. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2638. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../freescale-imx53">了解更多</a>
  2639. </div>
  2640. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2641. <img src="/Images/icon_EAR.gif" alt='此产品可能需要其他文件才能从美国出口。' title='此产品可能需要其他文件才能从美国出口。' />
  2642. </div>
  2643. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;NXP / Freescale&quot;,&quot;841-MCIMX535DVV1C | MCIMX535DVV1C&quot;]);" href="http://www.mouser.com/ds/2/302/IMX53CEC-782229.pdf" target="_blank">数据表</a>
  2644. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl06_lnkAvailability">509<br/>有库存</span>
  2645. <table>
  2646. <tr align="center">
  2647. <td style="padding-top: 5px">
  2648. </td>
  2649. </tr>
  2650. <tr align="center">
  2651. <td style="padding-top: 5px; padding-bottom: 5px">
  2652. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl06_lnkAlternativePackaging" title="备用包装 | 841-MCIMX535DVV1C" class="thickbox" href="../../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YQeqxs7bzq4ctqM9hlU%252bcHWwPdRrzmyWxbWb4QvW9bNKTyJos%2fh6FPNMuesXJaVRXdj6kKMu7uUr0Z8Ino1BWFvuyJJRm2l8d0enEqRgHU6hUY4JHIIXVshmwzw3k3%2fGTQr%2fINcCi9hSA%3d%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  2653. </td>
  2654. </tr>
  2655. </table></td><td>
  2656. <table class="PriceBreaks" cellspacing="0" border="0">
  2657. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2658. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2659. </td>
  2660. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2661. </td>
  2662. </tr>
  2663. <tr>
  2664. <td class="PriceBreakQuantity">
  2665. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(8,1);">1:</a>
  2666. </td>
  2667. <td class="PriceBreakPrice">
  2668. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥268.0704</span>
  2669. </td>
  2670. </tr>
  2671. <tr>
  2672. <td class="PriceBreakQuantity">
  2673. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(8,10);">10:</a>
  2674. </td>
  2675. <td class="PriceBreakPrice">
  2676. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥253.1295</span>
  2677. </td>
  2678. </tr>
  2679. <tr>
  2680. <td class="PriceBreakQuantity">
  2681. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(8,25);">25:</a>
  2682. </td>
  2683. <td class="PriceBreakPrice">
  2684. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥238.2705</span>
  2685. </td>
  2686. </tr>
  2687. <tr>
  2688. <td class="PriceBreakQuantity">
  2689. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(8,100);">100:</a>
  2690. </td>
  2691. <td class="PriceBreakPrice">
  2692. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥178.659</span>
  2693. </td>
  2694. </tr>
  2695. <tr>
  2696. <td><br /></td>
  2697. </tr>
  2698. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2699. <td colspan="2" style="text-align: center;">
  2700. </td>
  2701. </tr>
  2702. </table>
  2703. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl08_btnBuy&#39;)">
  2704. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl10$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(8,this.value);" /><br />
  2705. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl10$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 8);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl08_btnBuy" title="购买 MCIMX535DVV1C" class="buy-button" /><br />
  2706. <table cellspacing="0" border="0" style="width: 100%;">
  2707. <tr>
  2708. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2709. 最低:
  2710. </td>
  2711. <td style="padding-left: 2px; text-align: left;">
  2712. 1
  2713. </td>
  2714. </tr>
  2715. <tr>
  2716. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2717. 多个:
  2718. </td>
  2719. <td style="padding-left: 2px; text-align: left;">
  2720. 1
  2721. </td>
  2722. </tr>
  2723. </table>
  2724. </div>
  2725. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_pnlCompliant">
  2726. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2727. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=Ayss8bGagj9L9Qv3BS6eYw%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=Ayss8bGagj9L9Qv3BS6eYw%3d%3d" target="_blank">详细信息</a>
  2728. </div>
  2729. </td><td>Multimedia Applications
  2730. </td><td>ARM Cortex A8
  2731. </td><td>1 Core
  2732. </td><td>32 bit
  2733. </td><td>1 GHz
  2734. </td><td>32 kB
  2735. </td><td>32 kB
  2736. </td><td>1.25 V
  2737. </td><td>+ 70 C
  2738. </td><td>SMD/SMT
  2739. </td><td>BGA-529
  2740. </td>
  2741. </tr><tr class="SearchResultsRowOdd" data-partnumber="841-MCIMX6Q5EYM10AD" data-index="11">
  2742. <td class="td-select" align="center">
  2743. <div style="padding: 5px 5px 0 5px;">
  2744. <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl11$chkSelect" onclick="javascript:RowSelected(11, this.checked);" /></span>
  2745. </div>
  2746. </td><td></td><td>
  2747. <div style="text-align:left;">
  2748. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/NXP-Freescale/MCIMX6Q5EYM10AD/?qs=sGAEpiMZZMvr4NRCYJMseENl70YDCZtQeLjEyvluY4hpf%2ffBE3vtaQ%3d%3d">841-MCIMX6Q5EYM10AD</a><br />
  2749. <br />
  2750. <br />
  2751. </div></td><td>
  2752. <div class="mfrDiv">
  2753. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/NXP-Freescale/MCIMX6Q5EYM10AD/?qs=sGAEpiMZZMvr4NRCYJMseENl70YDCZtQeLjEyvluY4hpf%2ffBE3vtaQ%3d%3d">MCIMX6Q5EYM10AD</a><br />
  2754. <br />
  2755. <div style="width: 100%; text-align: center;">
  2756. </div>
  2757. <div style="width: 100%; text-align: center;">
  2758. </div>
  2759. </div>
  2760. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl03_lnkSupplier" href="../../../../../../Freescale-Semiconductor">NXP / Freescale</a>
  2761. </td><td>处理器 - 专门应用 i.MX 6 series 32-bit MPU, Quad ARM Cortex-A9 core, 1GHz, FCBGA 624
  2762. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2763. <img src="/Images/icon_EAR.gif" alt='此产品可能需要其他文件才能从美国出口。' title='此产品可能需要其他文件才能从美国出口。' />
  2764. </div>
  2765. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;NXP / Freescale&quot;,&quot;841-MCIMX6Q5EYM10AD | MCIMX6Q5EYM10AD&quot;]);" href="http://www.mouser.com/ds/2/302/IMX6DQAEC-845587.pdf" target="_blank">数据表</a>
  2766. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl06_lnkAvailability">415<br/>有库存</span>
  2767. <table>
  2768. <tr align="center">
  2769. <td style="padding-top: 5px">
  2770. </td>
  2771. </tr>
  2772. <tr align="center">
  2773. <td style="padding-top: 5px; padding-bottom: 5px">
  2774. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl06_lnkAlternativePackaging" title="备用包装 | 841-MCIMX6Q5EYM10AD" class="thickbox" href="../../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YQeqxs7bzq4cuzZ5h3wZYqlJBIbmyW%252bT7juLMYbQnii9xukf3fmEiYyjll5iitA6DIZSFeFy4hsrt2AEH3TJXU7DTNZxYeMI%2fvOSDSRetfETuumxWnb2qb7%2f%252bdzAXoPs5m%2fOPs0efWv3doup5HzMhyD&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  2775. </td>
  2776. </tr>
  2777. </table></td><td>
  2778. <table class="PriceBreaks" cellspacing="0" border="0">
  2779. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2780. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2781. </td>
  2782. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2783. </td>
  2784. </tr>
  2785. <tr>
  2786. <td class="PriceBreakQuantity">
  2787. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(9,1);">1:</a>
  2788. </td>
  2789. <td class="PriceBreakPrice">
  2790. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥456.1245</span>
  2791. </td>
  2792. </tr>
  2793. <tr>
  2794. <td class="PriceBreakQuantity">
  2795. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(9,10);">10:</a>
  2796. </td>
  2797. <td class="PriceBreakPrice">
  2798. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥430.794</span>
  2799. </td>
  2800. </tr>
  2801. <tr>
  2802. <td class="PriceBreakQuantity">
  2803. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(9,25);">25:</a>
  2804. </td>
  2805. <td class="PriceBreakPrice">
  2806. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥405.4518</span>
  2807. </td>
  2808. </tr>
  2809. <tr>
  2810. <td class="PriceBreakQuantity">
  2811. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(9,100);">100:</a>
  2812. </td>
  2813. <td class="PriceBreakPrice">
  2814. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥304.1064</span>
  2815. </td>
  2816. </tr>
  2817. <tr>
  2818. <td><br /></td>
  2819. </tr>
  2820. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2821. <td colspan="2" style="text-align: center;">
  2822. </td>
  2823. </tr>
  2824. </table>
  2825. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl08_btnBuy&#39;)">
  2826. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl11$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(9,this.value);" /><br />
  2827. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl11$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 9);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl08_btnBuy" title="购买 MCIMX6Q5EYM10AD" class="buy-button" /><br />
  2828. <table cellspacing="0" border="0" style="width: 100%;">
  2829. <tr>
  2830. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2831. 最低:
  2832. </td>
  2833. <td style="padding-left: 2px; text-align: left;">
  2834. 1
  2835. </td>
  2836. </tr>
  2837. <tr>
  2838. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2839. 多个:
  2840. </td>
  2841. <td style="padding-left: 2px; text-align: left;">
  2842. 1
  2843. </td>
  2844. </tr>
  2845. </table>
  2846. </div>
  2847. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_pnlCompliant">
  2848. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2849. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=ZmgIo9SwPwfP2KexmhGx4w%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=ZmgIo9SwPwfP2KexmhGx4w%3d%3d" target="_blank">详细信息</a>
  2850. </div>
  2851. </td><td>Consumer Applications
  2852. </td><td>ARM Cortex A9
  2853. </td><td>1 Core
  2854. </td><td>32 bit
  2855. </td><td>1 GHz
  2856. </td><td>32 kB
  2857. </td><td>32 kB
  2858. </td><td>1.05 V to 1.5 V
  2859. </td><td>+ 105 C
  2860. </td><td>SMD/SMT
  2861. </td><td>FCPBGA-624
  2862. </td>
  2863. </tr><tr class="SearchResultsRowEven" data-partnumber="841-MCIMX6Q7CVT08AD" data-index="12">
  2864. <td class="td-select" align="center">
  2865. <div style="padding: 5px 5px 0 5px;">
  2866. <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl12$chkSelect" onclick="javascript:RowSelected(12, this.checked);" /></span>
  2867. </div>
  2868. </td><td><a href='/ProductDetail/NXP-Freescale/MCIMX6Q7CVT08AD/?qs=sGAEpiMZZMvr4NRCYJMseENl70YDCZtQcilVLl1pUlr3Ils29PFI9g%3d%3d'><img title='NXP / Freescale MCIMX6Q7CVT08AD' alt='NXP / Freescale MCIMX6Q7CVT08AD' id=1010869194 src='/images/freescale/sm/BGA-624.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/freescale/images/BGA-624.jpg</div></a></td><td>
  2869. <div style="text-align:left;">
  2870. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/NXP-Freescale/MCIMX6Q7CVT08AD/?qs=sGAEpiMZZMvr4NRCYJMseENl70YDCZtQcilVLl1pUlr3Ils29PFI9g%3d%3d">841-MCIMX6Q7CVT08AD</a><br />
  2871. <br />
  2872. <br />
  2873. </div></td><td>
  2874. <div class="mfrDiv">
  2875. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/NXP-Freescale/MCIMX6Q7CVT08AD/?qs=sGAEpiMZZMvr4NRCYJMseENl70YDCZtQcilVLl1pUlr3Ils29PFI9g%3d%3d">MCIMX6Q7CVT08AD</a><br />
  2876. <br />
  2877. <div style="width: 100%; text-align: center;">
  2878. </div>
  2879. <div style="width: 100%; text-align: center;">
  2880. </div>
  2881. </div>
  2882. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl03_lnkSupplier" href="../../../../../../Freescale-Semiconductor">NXP / Freescale</a>
  2883. </td><td>处理器 - 专门应用 i.MX6 32bit A9 Core 800MHz, FCBGA 624
  2884. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2885. <img src="/Images/icon_EAR.gif" alt='此产品可能需要其他文件才能从美国出口。' title='此产品可能需要其他文件才能从美国出口。' />
  2886. </div>
  2887. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;NXP / Freescale&quot;,&quot;841-MCIMX6Q7CVT08AD | MCIMX6Q7CVT08AD&quot;]);" href="http://www.mouser.com/ds/2/302/IMX6DQIEC-782129.pdf" target="_blank">数据表</a>
  2888. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl06_lnkAvailability">366<br/>有库存</span>
  2889. <table>
  2890. <tr align="center">
  2891. <td style="padding-top: 5px">
  2892. </td>
  2893. </tr>
  2894. <tr align="center">
  2895. <td style="padding-top: 5px; padding-bottom: 5px">
  2896. </td>
  2897. </tr>
  2898. </table></td><td>
  2899. <table class="PriceBreaks" cellspacing="0" border="0">
  2900. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2901. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2902. </td>
  2903. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2904. </td>
  2905. </tr>
  2906. <tr>
  2907. <td class="PriceBreakQuantity">
  2908. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(10,1);">1:</a>
  2909. </td>
  2910. <td class="PriceBreakPrice">
  2911. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥524.511</span>
  2912. </td>
  2913. </tr>
  2914. <tr>
  2915. <td class="PriceBreakQuantity">
  2916. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(10,10);">10:</a>
  2917. </td>
  2918. <td class="PriceBreakPrice">
  2919. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥495.3195</span>
  2920. </td>
  2921. </tr>
  2922. <tr>
  2923. <td class="PriceBreakQuantity">
  2924. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(10,25);">25:</a>
  2925. </td>
  2926. <td class="PriceBreakPrice">
  2927. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥466.2099</span>
  2928. </td>
  2929. </tr>
  2930. <tr>
  2931. <td class="PriceBreakQuantity">
  2932. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(10,100);">100:</a>
  2933. </td>
  2934. <td class="PriceBreakPrice">
  2935. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥349.6194</span>
  2936. </td>
  2937. </tr>
  2938. <tr>
  2939. <td><br /></td>
  2940. </tr>
  2941. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2942. <td colspan="2" style="text-align: center;">
  2943. </td>
  2944. </tr>
  2945. </table>
  2946. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl08_btnBuy&#39;)">
  2947. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl12$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(10,this.value);" /><br />
  2948. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl12$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 10);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl08_btnBuy" title="购买 MCIMX6Q7CVT08AD" class="buy-button" /><br />
  2949. <table cellspacing="0" border="0" style="width: 100%;">
  2950. <tr>
  2951. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2952. 最低:
  2953. </td>
  2954. <td style="padding-left: 2px; text-align: left;">
  2955. 1
  2956. </td>
  2957. </tr>
  2958. <tr>
  2959. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2960. 多个:
  2961. </td>
  2962. <td style="padding-left: 2px; text-align: left;">
  2963. 1
  2964. </td>
  2965. </tr>
  2966. </table>
  2967. </div>
  2968. </td><td>
  2969. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_pnlNotCompliant">
  2970. <br />
  2971. <br />
  2972. </div>
  2973. </td><td>Industrial Applications
  2974. </td><td>ARM Cortex A9
  2975. </td><td>1 Core
  2976. </td><td>32 bit
  2977. </td><td>800 MHz
  2978. </td><td>32 kB
  2979. </td><td>32 kB
  2980. </td><td>1.05 V to 1.5 V
  2981. </td><td>+ 105 C
  2982. </td><td>SMD/SMT
  2983. </td><td>FCPBGA-624
  2984. </td>
  2985. </tr><tr class="SearchResultsRowOdd" data-partnumber="841-MCIMX6S7CVM08AC" data-index="13">
  2986. <td class="td-select" align="center">
  2987. <div style="padding: 5px 5px 0 5px;">
  2988. <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl13$chkSelect" onclick="javascript:RowSelected(13, this.checked);" /></span>
  2989. </div>
  2990. </td><td><a href='/ProductDetail/NXP-Freescale/MCIMX6S7CVM08AC/?qs=sGAEpiMZZMvr4NRCYJMseENl70YDCZtQefS1HAfj6FWKB04ZFAV5ug%3d%3d'><img title='NXP / Freescale MCIMX6S7CVM08AC' alt='NXP / Freescale MCIMX6S7CVM08AC' id=1010869216 src='/images/freescale/sm/BGA-624.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/freescale/images/BGA-624.jpg</div></a></td><td>
  2991. <div style="text-align:left;">
  2992. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/NXP-Freescale/MCIMX6S7CVM08AC/?qs=sGAEpiMZZMvr4NRCYJMseENl70YDCZtQefS1HAfj6FWKB04ZFAV5ug%3d%3d">841-MCIMX6S7CVM08AC</a><br />
  2993. <br />
  2994. <br />
  2995. </div></td><td>
  2996. <div class="mfrDiv">
  2997. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/NXP-Freescale/MCIMX6S7CVM08AC/?qs=sGAEpiMZZMvr4NRCYJMseENl70YDCZtQefS1HAfj6FWKB04ZFAV5ug%3d%3d">MCIMX6S7CVM08AC</a><br />
  2998. <br />
  2999. <div style="width: 100%; text-align: center;">
  3000. </div>
  3001. <div style="width: 100%; text-align: center;">
  3002. </div>
  3003. </div>
  3004. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl03_lnkSupplier" href="../../../../../../Freescale-Semiconductor">NXP / Freescale</a>
  3005. </td><td>处理器 - 专门应用 i.MX6 32bit A9 Core 800MHz, FCBGA 624
  3006. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3007. <img src="/Images/icon_EAR.gif" alt='此产品可能需要其他文件才能从美国出口。' title='此产品可能需要其他文件才能从美国出口。' />
  3008. </div>
  3009. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;NXP / Freescale&quot;,&quot;841-MCIMX6S7CVM08AC | MCIMX6S7CVM08AC&quot;]);" href="http://www.mouser.com/ds/2/302/IMX6SDLIEC-782136.pdf" target="_blank">数据表</a>
  3010. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl06_lnkAvailability">589<br/>有库存</span>
  3011. <table>
  3012. <tr align="center">
  3013. <td style="padding-top: 5px">
  3014. </td>
  3015. </tr>
  3016. <tr align="center">
  3017. <td style="padding-top: 5px; padding-bottom: 5px">
  3018. </td>
  3019. </tr>
  3020. </table></td><td>
  3021. <table class="PriceBreaks" cellspacing="0" border="0">
  3022. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3023. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3024. </td>
  3025. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3026. </td>
  3027. </tr>
  3028. <tr>
  3029. <td class="PriceBreakQuantity">
  3030. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(11,1);">1:</a>
  3031. </td>
  3032. <td class="PriceBreakPrice">
  3033. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥226.3248</span>
  3034. </td>
  3035. </tr>
  3036. <tr>
  3037. <td class="PriceBreakQuantity">
  3038. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(11,10);">10:</a>
  3039. </td>
  3040. <td class="PriceBreakPrice">
  3041. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥213.7824</span>
  3042. </td>
  3043. </tr>
  3044. <tr>
  3045. <td class="PriceBreakQuantity">
  3046. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(11,25);">25:</a>
  3047. </td>
  3048. <td class="PriceBreakPrice">
  3049. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥201.1464</span>
  3050. </td>
  3051. </tr>
  3052. <tr>
  3053. <td class="PriceBreakQuantity">
  3054. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(11,100);">100:</a>
  3055. </td>
  3056. <td class="PriceBreakPrice">
  3057. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥150.8598</span>
  3058. </td>
  3059. </tr>
  3060. <tr>
  3061. <td><br /></td>
  3062. </tr>
  3063. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3064. <td colspan="2" style="text-align: center;">
  3065. </td>
  3066. </tr>
  3067. </table>
  3068. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl08_btnBuy&#39;)">
  3069. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl13$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(11,this.value);" /><br />
  3070. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl13$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 11);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl08_btnBuy" title="购买 MCIMX6S7CVM08AC" class="buy-button" /><br />
  3071. <table cellspacing="0" border="0" style="width: 100%;">
  3072. <tr>
  3073. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3074. 最低:
  3075. </td>
  3076. <td style="padding-left: 2px; text-align: left;">
  3077. 1
  3078. </td>
  3079. </tr>
  3080. <tr>
  3081. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3082. 多个:
  3083. </td>
  3084. <td style="padding-left: 2px; text-align: left;">
  3085. 1
  3086. </td>
  3087. </tr>
  3088. </table>
  3089. </div>
  3090. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_pnlCompliant">
  3091. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3092. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=ZmgIo9SwPwf4GNC1gzeykA%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=ZmgIo9SwPwf4GNC1gzeykA%3d%3d" target="_blank">详细信息</a>
  3093. </div>
  3094. </td><td>Industrial Applications
  3095. </td><td>ARM Cortex A9
  3096. </td><td>1 Core
  3097. </td><td>32 bit
  3098. </td><td>800 MHz
  3099. </td><td>32 kB
  3100. </td><td>32 kB
  3101. </td><td>1.175 V to 1.5 V
  3102. </td><td>+ 105 C
  3103. </td><td>SMD/SMT
  3104. </td><td>MAPBGA-624
  3105. </td>
  3106. </tr><tr class="SearchResultsRowEven" data-partnumber="841-MCIMX6U7CVM08AC" data-index="14">
  3107. <td class="td-select" align="center">
  3108. <div style="padding: 5px 5px 0 5px;">
  3109. <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl14$chkSelect" onclick="javascript:RowSelected(14, this.checked);" /></span>
  3110. </div>
  3111. </td><td><a href='/ProductDetail/NXP-Freescale/MCIMX6U7CVM08AC/?qs=sGAEpiMZZMvr4NRCYJMseENl70YDCZtQ4%252b2dOVtm00rl3wsStviNsw%3d%3d'><img title='NXP / Freescale MCIMX6U7CVM08AC' alt='NXP / Freescale MCIMX6U7CVM08AC' id=1010869240 src='/images/freescale/sm/BGA-624.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/freescale/images/BGA-624.jpg</div></a></td><td>
  3112. <div style="text-align:left;">
  3113. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/NXP-Freescale/MCIMX6U7CVM08AC/?qs=sGAEpiMZZMvr4NRCYJMseENl70YDCZtQ4%252b2dOVtm00rl3wsStviNsw%3d%3d">841-MCIMX6U7CVM08AC</a><br />
  3114. <br />
  3115. <br />
  3116. </div></td><td>
  3117. <div class="mfrDiv">
  3118. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/NXP-Freescale/MCIMX6U7CVM08AC/?qs=sGAEpiMZZMvr4NRCYJMseENl70YDCZtQ4%252b2dOVtm00rl3wsStviNsw%3d%3d">MCIMX6U7CVM08AC</a><br />
  3119. <br />
  3120. <div style="width: 100%; text-align: center;">
  3121. </div>
  3122. <div style="width: 100%; text-align: center;">
  3123. </div>
  3124. </div>
  3125. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl03_lnkSupplier" href="../../../../../../Freescale-Semiconductor">NXP / Freescale</a>
  3126. </td><td>处理器 - 专门应用 i.MX6 32bit A9 Core 800MHz, FCBGA 624
  3127. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3128. <img src="/Images/icon_EAR.gif" alt='此产品可能需要其他文件才能从美国出口。' title='此产品可能需要其他文件才能从美国出口。' />
  3129. </div>
  3130. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;NXP / Freescale&quot;,&quot;841-MCIMX6U7CVM08AC | MCIMX6U7CVM08AC&quot;]);" href="http://www.mouser.com/ds/2/302/IMX6SDLIEC-782136.pdf" target="_blank">数据表</a>
  3131. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl06_lnkAvailability">554<br/>有库存</span>
  3132. <table>
  3133. <tr align="center">
  3134. <td style="padding-top: 5px">
  3135. </td>
  3136. </tr>
  3137. <tr align="center">
  3138. <td style="padding-top: 5px; padding-bottom: 5px">
  3139. </td>
  3140. </tr>
  3141. </table></td><td>
  3142. <table class="PriceBreaks" cellspacing="0" border="0">
  3143. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3144. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3145. </td>
  3146. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3147. </td>
  3148. </tr>
  3149. <tr>
  3150. <td class="PriceBreakQuantity">
  3151. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(12,1);">1:</a>
  3152. </td>
  3153. <td class="PriceBreakPrice">
  3154. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥282.8592</span>
  3155. </td>
  3156. </tr>
  3157. <tr>
  3158. <td class="PriceBreakQuantity">
  3159. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(12,10);">10:</a>
  3160. </td>
  3161. <td class="PriceBreakPrice">
  3162. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥267.1461</span>
  3163. </td>
  3164. </tr>
  3165. <tr>
  3166. <td class="PriceBreakQuantity">
  3167. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(12,25);">25:</a>
  3168. </td>
  3169. <td class="PriceBreakPrice">
  3170. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥251.433</span>
  3171. </td>
  3172. </tr>
  3173. <tr>
  3174. <td class="PriceBreakQuantity">
  3175. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(12,100);">100:</a>
  3176. </td>
  3177. <td class="PriceBreakPrice">
  3178. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥188.5923</span>
  3179. </td>
  3180. </tr>
  3181. <tr>
  3182. <td><br /></td>
  3183. </tr>
  3184. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3185. <td colspan="2" style="text-align: center;">
  3186. </td>
  3187. </tr>
  3188. </table>
  3189. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl08_btnBuy&#39;)">
  3190. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl14$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(12,this.value);" /><br />
  3191. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl14$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 12);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl08_btnBuy" title="购买 MCIMX6U7CVM08AC" class="buy-button" /><br />
  3192. <table cellspacing="0" border="0" style="width: 100%;">
  3193. <tr>
  3194. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3195. 最低:
  3196. </td>
  3197. <td style="padding-left: 2px; text-align: left;">
  3198. 1
  3199. </td>
  3200. </tr>
  3201. <tr>
  3202. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3203. 多个:
  3204. </td>
  3205. <td style="padding-left: 2px; text-align: left;">
  3206. 1
  3207. </td>
  3208. </tr>
  3209. </table>
  3210. </div>
  3211. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_pnlCompliant">
  3212. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3213. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=ZmgIo9SwPwc11XMYnafRBQ%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=ZmgIo9SwPwc11XMYnafRBQ%3d%3d" target="_blank">详细信息</a>
  3214. </div>
  3215. </td><td>Industrial Applications
  3216. </td><td>ARM Cortex A9
  3217. </td><td>1 Core
  3218. </td><td>32 bit
  3219. </td><td>800 MHz
  3220. </td><td>32 kB
  3221. </td><td>32 kB
  3222. </td><td>1.175 V to 1.5 V
  3223. </td><td>+ 105 C
  3224. </td><td>SMD/SMT
  3225. </td><td>MAPBGA-624
  3226. </td>
  3227. </tr><tr class="SearchResultsRowOdd" data-partnumber="841-MCIMX536AVV8C" data-index="15">
  3228. <td class="td-select" align="center">
  3229. <div style="padding: 5px 5px 0 5px;">
  3230. <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl15$chkSelect" onclick="javascript:RowSelected(15, this.checked);" /></span>
  3231. </div>
  3232. </td><td><a href='/ProductDetail/NXP-Freescale/MCIMX536AVV8C/?qs=sGAEpiMZZMvr4NRCYJMseHv%252bvU%2fC0OEE95VnKX6ZkFk%3d'><img title='NXP / Freescale MCIMX536AVV8C' alt='NXP / Freescale MCIMX536AVV8C' id=543749242 src='/images/mouserimages/sm/BGA_529_t.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/mouserimages/images/BGA_529_t.jpg</div></a></td><td>
  3233. <div style="text-align:left;">
  3234. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/NXP-Freescale/MCIMX536AVV8C/?qs=sGAEpiMZZMvr4NRCYJMseHv%252bvU%2fC0OEE95VnKX6ZkFk%3d">841-MCIMX536AVV8C</a><br />
  3235. <br />
  3236. <br />
  3237. </div></td><td>
  3238. <div class="mfrDiv">
  3239. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/NXP-Freescale/MCIMX536AVV8C/?qs=sGAEpiMZZMvr4NRCYJMseHv%252bvU%2fC0OEE95VnKX6ZkFk%3d">MCIMX536AVV8C</a><br />
  3240. <br />
  3241. <div style="width: 100%; text-align: center;">
  3242. </div>
  3243. <div style="width: 100%; text-align: center;">
  3244. </div>
  3245. </div>
  3246. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl03_lnkSupplier" href="../../../../../../Freescale-Semiconductor">NXP / Freescale</a>
  3247. </td><td>处理器 - 专门应用 IMX53 REV 2.1 AUTO
  3248. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3249. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../freescale-imx53">了解更多</a>
  3250. </div>
  3251. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3252. <img src="/Images/icon_EAR.gif" alt='此产品可能需要其他文件才能从美国出口。' title='此产品可能需要其他文件才能从美国出口。' />
  3253. </div>
  3254. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;NXP / Freescale&quot;,&quot;841-MCIMX536AVV8C | MCIMX536AVV8C&quot;]);" href="http://www.mouser.com/ds/2/302/IMX53AEC-782478.pdf" target="_blank">数据表</a>
  3255. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl06_lnkAvailability">377<br/>有库存</span>
  3256. <table>
  3257. <tr align="center">
  3258. <td style="padding-top: 5px">
  3259. </td>
  3260. </tr>
  3261. <tr align="center">
  3262. <td style="padding-top: 5px; padding-bottom: 5px">
  3263. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl06_lnkAlternativePackaging" title="备用包装 | 841-MCIMX536AVV8C" class="thickbox" href="../../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YQeqxs7bzq4ck2Dj8AHmmHnZPP2LiDK66%2f1Bz7y6JKKZ6GcEi33hnesForp3Zz5i7i43%252bkVSUpfRdPnj3WynRPjB8gZP8uFUsjGL0Y1fsKoQo45OBiHj3gYZi%252by3qrjNinr65n9MdUMUQ%3d%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  3264. </td>
  3265. </tr>
  3266. </table></td><td>
  3267. <table class="PriceBreaks" cellspacing="0" border="0">
  3268. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3269. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3270. </td>
  3271. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3272. </td>
  3273. </tr>
  3274. <tr>
  3275. <td class="PriceBreakQuantity">
  3276. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(13,1);">1:</a>
  3277. </td>
  3278. <td class="PriceBreakPrice">
  3279. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥291.6342</span>
  3280. </td>
  3281. </tr>
  3282. <tr>
  3283. <td class="PriceBreakQuantity">
  3284. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(13,10);">10:</a>
  3285. </td>
  3286. <td class="PriceBreakPrice">
  3287. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥275.3829</span>
  3288. </td>
  3289. </tr>
  3290. <tr>
  3291. <td class="PriceBreakQuantity">
  3292. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(13,25);">25:</a>
  3293. </td>
  3294. <td class="PriceBreakPrice">
  3295. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥259.2135</span>
  3296. </td>
  3297. </tr>
  3298. <tr>
  3299. <td class="PriceBreakQuantity">
  3300. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(13,100);">100:</a>
  3301. </td>
  3302. <td class="PriceBreakPrice">
  3303. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥194.3721</span>
  3304. </td>
  3305. </tr>
  3306. <tr>
  3307. <td><br /></td>
  3308. </tr>
  3309. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3310. <td colspan="2" style="text-align: center;">
  3311. </td>
  3312. </tr>
  3313. </table>
  3314. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl08_btnBuy&#39;)">
  3315. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl15$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(13,this.value);" /><br />
  3316. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl15$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 13);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl08_btnBuy" title="购买 MCIMX536AVV8C" class="buy-button" /><br />
  3317. <table cellspacing="0" border="0" style="width: 100%;">
  3318. <tr>
  3319. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3320. 最低:
  3321. </td>
  3322. <td style="padding-left: 2px; text-align: left;">
  3323. 1
  3324. </td>
  3325. </tr>
  3326. <tr>
  3327. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3328. 多个:
  3329. </td>
  3330. <td style="padding-left: 2px; text-align: left;">
  3331. 1
  3332. </td>
  3333. </tr>
  3334. </table>
  3335. </div>
  3336. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_pnlCompliant">
  3337. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3338. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=Ayss8bGagj%252b3l7SonA9BPQ%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=Ayss8bGagj%252b3l7SonA9BPQ%3d%3d" target="_blank">详细信息</a>
  3339. </div>
  3340. </td><td>Automotive, Infotainment Applications
  3341. </td><td>ARM Cortex A8
  3342. </td><td>1 Core
  3343. </td><td>32 bit
  3344. </td><td>800 MHz
  3345. </td><td>32 kB
  3346. </td><td>32 kB
  3347. </td><td>1.1 V
  3348. </td><td>+ 85 C
  3349. </td><td>SMD/SMT
  3350. </td><td>TEPBGA-529
  3351. </td>
  3352. </tr><tr class="SearchResultsRowEven" data-partnumber="671-AGB75LC04-QU-E" data-index="16">
  3353. <td class="td-select" align="center">
  3354. <div style="padding: 5px 5px 0 5px;">
  3355. <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl16$chkSelect" onclick="javascript:RowSelected(16, this.checked);" /></span>
  3356. </div>
  3357. </td><td><a href='/ProductDetail/Amulet-Technologies/AGB75LC04-QU-E/?qs=sGAEpiMZZMvr4NRCYJMseC13VHEFWAcOFBwbL1bJZ%252b4%3d'><img title='Amulet Technologies AGB75LC04-QU-E' alt='Amulet Technologies AGB75LC04-QU-E' id=303468082 src='/images/amulettechnologies/sm/ChipRGB1.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/amulettechnologies/images/ChipRGB1.jpg</div></a></td><td>
  3358. <div style="text-align:left;">
  3359. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Amulet-Technologies/AGB75LC04-QU-E/?qs=sGAEpiMZZMvr4NRCYJMseC13VHEFWAcOFBwbL1bJZ%252b4%3d">671-AGB75LC04-QU-E</a><br />
  3360. <br />
  3361. <br />
  3362. </div></td><td>
  3363. <div class="mfrDiv">
  3364. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Amulet-Technologies/AGB75LC04-QU-E/?qs=sGAEpiMZZMvr4NRCYJMseC13VHEFWAcOFBwbL1bJZ%252b4%3d">AGB75LC04-QU-E</a><br />
  3365. <br />
  3366. <div style="width: 100%; text-align: center;">
  3367. </div>
  3368. <div style="width: 100%; text-align: center;">
  3369. </div>
  3370. </div>
  3371. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl03_lnkSupplier" href="../../../../../../amulet">Amulet Technologies</a>
  3372. </td><td>处理器 - 专门应用 LCD Controller Chip Color 208 PQFP
  3373. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3374. </div>
  3375. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Amulet Technologies&quot;,&quot;671-AGB75LC04-QU-E | AGB75LC04-QU-E&quot;]);" href="http://www.mouser.com/ds/2/20/colorchipdatasheet_v2_3-594353.pdf" target="_blank">数据表</a>
  3376. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl06_lnkAvailability">315<br/>有库存</span>
  3377. <table>
  3378. <tr align="center">
  3379. <td style="padding-top: 5px">
  3380. </td>
  3381. </tr>
  3382. <tr align="center">
  3383. <td style="padding-top: 5px; padding-bottom: 5px">
  3384. </td>
  3385. </tr>
  3386. </table></td><td>
  3387. <table class="PriceBreaks" cellspacing="0" border="0">
  3388. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3389. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3390. </td>
  3391. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3392. </td>
  3393. </tr>
  3394. <tr>
  3395. <td class="PriceBreakQuantity">
  3396. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(14,1);">1:</a>
  3397. </td>
  3398. <td class="PriceBreakPrice">
  3399. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥274.4586</span>
  3400. </td>
  3401. </tr>
  3402. <tr>
  3403. <td class="PriceBreakQuantity">
  3404. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(14,5);">5:</a>
  3405. </td>
  3406. <td class="PriceBreakPrice">
  3407. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥265.6017</span>
  3408. </td>
  3409. </tr>
  3410. <tr>
  3411. <td><br /></td>
  3412. </tr>
  3413. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl03_trMouserReel">
  3414. <td colspan="2" style="text-align: center;">
  3415. </td>
  3416. </tr>
  3417. </table>
  3418. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl08_btnBuy&#39;)">
  3419. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl16$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(14,this.value);" /><br />
  3420. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl16$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 14);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl08_btnBuy" title="购买 AGB75LC04-QU-E" class="buy-button" /><br />
  3421. <table cellspacing="0" border="0" style="width: 100%;">
  3422. <tr>
  3423. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3424. 最低:
  3425. </td>
  3426. <td style="padding-left: 2px; text-align: left;">
  3427. 1
  3428. </td>
  3429. </tr>
  3430. <tr>
  3431. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3432. 多个:
  3433. </td>
  3434. <td style="padding-left: 2px; text-align: left;">
  3435. 1
  3436. </td>
  3437. </tr>
  3438. </table>
  3439. </div>
  3440. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_pnlCompliant">
  3441. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3442. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=QokePWb7NzZtS4jFILx3Jg%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=QokePWb7NzZtS4jFILx3Jg%3d%3d" target="_blank">详细信息</a>
  3443. </div>
  3444. </td><td>Graphical OS Chips
  3445. </td><td>ARM7TDMI
  3446. </td><td>1 Core
  3447. </td><td>32 bit
  3448. </td><td>12 MHz
  3449. </td><td>-
  3450. </td><td>-
  3451. </td><td>1.2 V
  3452. </td><td>+ 85 C
  3453. </td><td>SMD/SMT
  3454. </td><td>PQFP-208
  3455. </td>
  3456. </tr><tr class="SearchResultsRowOdd" data-partnumber="841-MCIMX257DJM4A" data-index="17">
  3457. <td class="td-select" align="center">
  3458. <div style="padding: 5px 5px 0 5px;">
  3459. <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl17$chkSelect" onclick="javascript:RowSelected(17, this.checked);" /></span>
  3460. </div>
  3461. </td><td><a href='/ProductDetail/NXP-Freescale/MCIMX257DJM4A/?qs=sGAEpiMZZMvr4NRCYJMseBip1lQVaBEa7YthJO%252bmtPY%3d'><img title='NXP / Freescale MCIMX257DJM4A' alt='NXP / Freescale MCIMX257DJM4A' id=444782396 src='/images/freescale/sm/IMX251.jpg' /></a></td><td>
  3462. <div style="text-align:left;">
  3463. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/NXP-Freescale/MCIMX257DJM4A/?qs=sGAEpiMZZMvr4NRCYJMseBip1lQVaBEa7YthJO%252bmtPY%3d">841-MCIMX257DJM4A</a><br />
  3464. <br />
  3465. <br />
  3466. </div></td><td>
  3467. <div class="mfrDiv">
  3468. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/NXP-Freescale/MCIMX257DJM4A/?qs=sGAEpiMZZMvr4NRCYJMseBip1lQVaBEa7YthJO%252bmtPY%3d">MCIMX257DJM4A</a><br />
  3469. <br />
  3470. <div style="width: 100%; text-align: center;">
  3471. </div>
  3472. <div style="width: 100%; text-align: center;">
  3473. </div>
  3474. </div>
  3475. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl03_lnkSupplier" href="../../../../../../Freescale-Semiconductor">NXP / Freescale</a>
  3476. </td><td>处理器 - 专门应用 IMX25 1.2 COMM
  3477. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3478. <img src="/Images/icon_EAR.gif" alt='此产品可能需要其他文件才能从美国出口。' title='此产品可能需要其他文件才能从美国出口。' />
  3479. </div>
  3480. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;NXP / Freescale&quot;,&quot;841-MCIMX257DJM4A | MCIMX257DJM4A&quot;]);" href="http://www.mouser.com/ds/2/302/IMX25CEC-782593.pdf" target="_blank">数据表</a>
  3481. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl06_lnkAvailability">1,323<br/>有库存</span>
  3482. <table>
  3483. <tr align="center">
  3484. <td style="padding-top: 5px">
  3485. </td>
  3486. </tr>
  3487. <tr align="center">
  3488. <td style="padding-top: 5px; padding-bottom: 5px">
  3489. </td>
  3490. </tr>
  3491. </table></td><td>
  3492. <table class="PriceBreaks" cellspacing="0" border="0">
  3493. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3494. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3495. </td>
  3496. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3497. </td>
  3498. </tr>
  3499. <tr>
  3500. <td class="PriceBreakQuantity">
  3501. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(15,1);">1:</a>
  3502. </td>
  3503. <td class="PriceBreakPrice">
  3504. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥101.0412</span>
  3505. </td>
  3506. </tr>
  3507. <tr>
  3508. <td class="PriceBreakQuantity">
  3509. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(15,10);">10:</a>
  3510. </td>
  3511. <td class="PriceBreakPrice">
  3512. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥95.4135</span>
  3513. </td>
  3514. </tr>
  3515. <tr>
  3516. <td class="PriceBreakQuantity">
  3517. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(15,25);">25:</a>
  3518. </td>
  3519. <td class="PriceBreakPrice">
  3520. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥89.7975</span>
  3521. </td>
  3522. </tr>
  3523. <tr>
  3524. <td class="PriceBreakQuantity">
  3525. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(15,100);">100:</a>
  3526. </td>
  3527. <td class="PriceBreakPrice">
  3528. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥67.3101</span>
  3529. </td>
  3530. </tr>
  3531. <tr>
  3532. <td><br /></td>
  3533. </tr>
  3534. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3535. <td colspan="2" style="text-align: center;">
  3536. </td>
  3537. </tr>
  3538. </table>
  3539. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl08_btnBuy&#39;)">
  3540. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl17$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(15,this.value);" /><br />
  3541. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl17$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 15);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl08_btnBuy" title="购买 MCIMX257DJM4A" class="buy-button" /><br />
  3542. <table cellspacing="0" border="0" style="width: 100%;">
  3543. <tr>
  3544. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3545. 最低:
  3546. </td>
  3547. <td style="padding-left: 2px; text-align: left;">
  3548. 1
  3549. </td>
  3550. </tr>
  3551. <tr>
  3552. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3553. 多个:
  3554. </td>
  3555. <td style="padding-left: 2px; text-align: left;">
  3556. 1
  3557. </td>
  3558. </tr>
  3559. </table>
  3560. </div>
  3561. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_pnlCompliant">
  3562. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3563. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=c98P57sALXOxyMVb1w5BvA%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=c98P57sALXOxyMVb1w5BvA%3d%3d" target="_blank">详细信息</a>
  3564. </div>
  3565. </td><td>Multimedia Applications
  3566. </td><td>ARM926EJ-S
  3567. </td><td>1 Core
  3568. </td><td>32 bit
  3569. </td><td>400 MHz
  3570. </td><td>16 kB
  3571. </td><td>16 kB
  3572. </td><td>1.45 V
  3573. </td><td>+ 70 C
  3574. </td><td>SMD/SMT
  3575. </td><td>MAPBGA-400
  3576. </td>
  3577. </tr><tr class="SearchResultsRowEven" data-partnumber="595-OMAP3530ECBB" data-index="18">
  3578. <td class="td-select" align="center">
  3579. <div style="padding: 5px 5px 0 5px;">
  3580. <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl18$chkSelect" onclick="javascript:RowSelected(18, this.checked);" /></span>
  3581. </div>
  3582. </td><td><a href='/ProductDetail/Texas-Instruments/OMAP3530ECBB/?qs=sGAEpiMZZMvr4NRCYJMseFqiPf1jzKz4V9WbTqMl3g8%3d'><img title='Texas Instruments OMAP3530ECBB' alt='Texas Instruments OMAP3530ECBB' id=713540189 src='/images/texasinstruments/sm/TI_FCBGA_515_pop.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/texasinstruments/images/TI_FCBGA_515_pop.jpg</div></a></td><td>
  3583. <div style="text-align:left;">
  3584. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Texas-Instruments/OMAP3530ECBB/?qs=sGAEpiMZZMvr4NRCYJMseFqiPf1jzKz4V9WbTqMl3g8%3d">595-OMAP3530ECBB</a><br />
  3585. <br />
  3586. <br />
  3587. </div></td><td>
  3588. <div class="mfrDiv">
  3589. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Texas-Instruments/OMAP3530ECBB/?qs=sGAEpiMZZMvr4NRCYJMseFqiPf1jzKz4V9WbTqMl3g8%3d">OMAP3530ECBB</a><br />
  3590. <br />
  3591. <div style="width: 100%; text-align: center;">
  3592. </div>
  3593. <div style="width: 100%; text-align: center;">
  3594. </div>
  3595. </div>
  3596. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl03_lnkSupplier" href="../../../../../../Texas-Instruments">Texas Instruments</a>
  3597. </td><td>处理器 - 专门应用 Applications Proc
  3598. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3599. </div>
  3600. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Texas Instruments&quot;,&quot;595-OMAP3530ECBB | OMAP3530ECBB&quot;]);" href="http://www.mouser.com/ds/2/405/omap3530-483637.pdf" target="_blank">数据表</a>
  3601. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl06_lnkAvailability">199<br/>有库存</span>
  3602. <table>
  3603. <tr align="center">
  3604. <td style="padding-top: 5px">
  3605. </td>
  3606. </tr>
  3607. <tr align="center">
  3608. <td style="padding-top: 5px; padding-bottom: 5px">
  3609. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl06_lnkAlternativePackaging" title="备用包装 | 595-OMAP3530ECBB" class="thickbox" href="../../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YQavNg%2f409ixEP3h6uzJAJW0kqXncPZD6%252bOGPj5nbMm5VqL%2fZAwDhJt25qahXhCq0yrZe3cdIzw3N93B%252b67%252b6c2ZJAwIwuKlmx1DijCebdxI7mQwDiGQjRY5Eyodhh%252b07iVuj5olNJzfQ%3d%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  3610. </td>
  3611. </tr>
  3612. </table></td><td>
  3613. <table class="PriceBreaks" cellspacing="0" border="0">
  3614. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3615. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3616. </td>
  3617. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3618. </td>
  3619. </tr>
  3620. <tr>
  3621. <td class="PriceBreakQuantity">
  3622. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(16,1);">1:</a>
  3623. </td>
  3624. <td class="PriceBreakPrice">
  3625. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥426.9447</span>
  3626. </td>
  3627. </tr>
  3628. <tr>
  3629. <td class="PriceBreakQuantity">
  3630. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(16,5);">5:</a>
  3631. </td>
  3632. <td class="PriceBreakPrice">
  3633. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥414.0045</span>
  3634. </td>
  3635. </tr>
  3636. <tr>
  3637. <td class="PriceBreakQuantity">
  3638. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(16,10);">10:</a>
  3639. </td>
  3640. <td class="PriceBreakPrice">
  3641. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥401.0643</span>
  3642. </td>
  3643. </tr>
  3644. <tr>
  3645. <td class="PriceBreakQuantity">
  3646. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(16,25);">25:</a>
  3647. </td>
  3648. <td class="PriceBreakPrice">
  3649. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥386.1234</span>
  3650. </td>
  3651. </tr>
  3652. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  3653. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3654. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(16,50);">50:</a>
  3655. </td>
  3656. <td class="PriceBreakPrice">
  3657. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Texas-Instruments/OMAP3530ECBB/?qs=sGAEpiMZZMvr4NRCYJMseFqiPf1jzKz4V9WbTqMl3g8%3d">查看</a>
  3658. </td>
  3659. </tr>
  3660. <tr>
  3661. <td><br /></td>
  3662. </tr>
  3663. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3664. <td colspan="2" style="text-align: center;">
  3665. </td>
  3666. </tr>
  3667. </table>
  3668. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl08_btnBuy&#39;)">
  3669. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl18$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(16,this.value);" /><br />
  3670. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl18$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 16);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl08_btnBuy" title="购买 OMAP3530ECBB" class="buy-button" /><br />
  3671. <table cellspacing="0" border="0" style="width: 100%;">
  3672. <tr>
  3673. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3674. 最低:
  3675. </td>
  3676. <td style="padding-left: 2px; text-align: left;">
  3677. 1
  3678. </td>
  3679. </tr>
  3680. <tr>
  3681. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3682. 多个:
  3683. </td>
  3684. <td style="padding-left: 2px; text-align: left;">
  3685. 1
  3686. </td>
  3687. </tr>
  3688. </table>
  3689. </div>
  3690. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_pnlCompliant">
  3691. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3692. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=5qTj8c%252bvdt%2f4poAWF021ew%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=5qTj8c%252bvdt%2f4poAWF021ew%3d%3d" target="_blank">详细信息</a>
  3693. </div>
  3694. </td><td>Application Processors
  3695. </td><td>ARM Cortex A8, TMS320C64x
  3696. </td><td>2 Core
  3697. </td><td>32 bit
  3698. </td><td>600 MHz, 520 MHz
  3699. </td><td>16 kB, 32 kB
  3700. </td><td>16 kB, 80 kB
  3701. </td><td>985 mV to 1.35 V
  3702. </td><td>+ 90 C
  3703. </td><td>SMD/SMT
  3704. </td><td>PBGA-515
  3705. </td>
  3706. </tr><tr class="SearchResultsRowOdd" data-partnumber="841-MCIMX6L8DVN10AB" data-index="19">
  3707. <td class="td-select" align="center">
  3708. <div style="padding: 5px 5px 0 5px;">
  3709. <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl19$chkSelect" onclick="javascript:RowSelected(19, this.checked);" /></span>
  3710. </div>
  3711. </td><td></td><td>
  3712. <div style="text-align:left;">
  3713. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/NXP-Freescale/MCIMX6L8DVN10AB/?qs=sGAEpiMZZMvr4NRCYJMseKxrk7cGVsxDqK2wIS4%252bFG8%3d">841-MCIMX6L8DVN10AB</a><br />
  3714. <br />
  3715. <br />
  3716. </div></td><td>
  3717. <div class="mfrDiv">
  3718. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/NXP-Freescale/MCIMX6L8DVN10AB/?qs=sGAEpiMZZMvr4NRCYJMseKxrk7cGVsxDqK2wIS4%252bFG8%3d">MCIMX6L8DVN10AB</a><br />
  3719. <br />
  3720. <div style="width: 100%; text-align: center;">
  3721. </div>
  3722. <div style="width: 100%; text-align: center;">
  3723. </div>
  3724. </div>
  3725. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl03_lnkSupplier" href="../../../../../../Freescale-Semiconductor">NXP / Freescale</a>
  3726. </td><td>处理器 - 专门应用 i.MX6 Megrez
  3727. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3728. <img src="/Images/icon_EAR.gif" alt='此产品可能需要其他文件才能从美国出口。' title='此产品可能需要其他文件才能从美国出口。' />
  3729. </div>
  3730. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;NXP / Freescale&quot;,&quot;841-MCIMX6L8DVN10AB | MCIMX6L8DVN10AB&quot;]);" href="http://www.mouser.com/ds/2/302/IMX6SLCEC-782508.pdf" target="_blank">数据表</a>
  3731. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl06_lnkAvailability">808<br/>有库存</span>
  3732. <table>
  3733. <tr align="center">
  3734. <td style="padding-top: 5px">
  3735. </td>
  3736. </tr>
  3737. <tr align="center">
  3738. <td style="padding-top: 5px; padding-bottom: 5px">
  3739. </td>
  3740. </tr>
  3741. </table></td><td>
  3742. <table class="PriceBreaks" cellspacing="0" border="0">
  3743. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3744. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3745. </td>
  3746. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3747. </td>
  3748. </tr>
  3749. <tr>
  3750. <td class="PriceBreakQuantity">
  3751. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(17,1);">1:</a>
  3752. </td>
  3753. <td class="PriceBreakPrice">
  3754. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥146.3202</span>
  3755. </td>
  3756. </tr>
  3757. <tr>
  3758. <td class="PriceBreakQuantity">
  3759. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(17,10);">10:</a>
  3760. </td>
  3761. <td class="PriceBreakPrice">
  3762. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥138.2355</span>
  3763. </td>
  3764. </tr>
  3765. <tr>
  3766. <td class="PriceBreakQuantity">
  3767. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(17,25);">25:</a>
  3768. </td>
  3769. <td class="PriceBreakPrice">
  3770. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥130.0689</span>
  3771. </td>
  3772. </tr>
  3773. <tr>
  3774. <td class="PriceBreakQuantity">
  3775. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(17,100);">100:</a>
  3776. </td>
  3777. <td class="PriceBreakPrice">
  3778. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥97.5663</span>
  3779. </td>
  3780. </tr>
  3781. <tr>
  3782. <td><br /></td>
  3783. </tr>
  3784. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3785. <td colspan="2" style="text-align: center;">
  3786. </td>
  3787. </tr>
  3788. </table>
  3789. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl08_btnBuy&#39;)">
  3790. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl19$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(17,this.value);" /><br />
  3791. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl19$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 17);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl08_btnBuy" title="购买 MCIMX6L8DVN10AB" class="buy-button" /><br />
  3792. <table cellspacing="0" border="0" style="width: 100%;">
  3793. <tr>
  3794. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3795. 最低:
  3796. </td>
  3797. <td style="padding-left: 2px; text-align: left;">
  3798. 1
  3799. </td>
  3800. </tr>
  3801. <tr>
  3802. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3803. 多个:
  3804. </td>
  3805. <td style="padding-left: 2px; text-align: left;">
  3806. 1
  3807. </td>
  3808. </tr>
  3809. </table>
  3810. </div>
  3811. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_pnlCompliant">
  3812. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3813. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=gTOhuAPmzPtMayKcEnef2A%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=gTOhuAPmzPtMayKcEnef2A%3d%3d" target="_blank">详细信息</a>
  3814. </div>
  3815. </td><td>Consumer Applications
  3816. </td><td>ARM Cortex A9
  3817. </td><td>1 Core
  3818. </td><td>32 bit
  3819. </td><td>1 GHz
  3820. </td><td>32 kB
  3821. </td><td>32 kB
  3822. </td><td>1.25 V
  3823. </td><td>+ 95 C
  3824. </td><td>SMD/SMT
  3825. </td><td>MAPBGA-432
  3826. </td>
  3827. </tr><tr class="SearchResultsRowEven" data-partnumber="841-MCIMX283CVM4B" data-index="20">
  3828. <td class="td-select" align="center">
  3829. <div style="padding: 5px 5px 0 5px;">
  3830. <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl20$chkSelect" onclick="javascript:RowSelected(20, this.checked);" /></span>
  3831. </div>
  3832. </td><td><a href='/ProductDetail/NXP-Freescale/MCIMX283CVM4B/?qs=sGAEpiMZZMvr4NRCYJMseEmK4MbZDFC7EKdR1GsO%252bGI%3d'><img title='NXP / Freescale MCIMX283CVM4B' alt='NXP / Freescale MCIMX283CVM4B' id=481259371 src='/images/freescale/sm/imx283.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/freescale/images/imx283.jpg</div></a></td><td>
  3833. <div style="text-align:left;">
  3834. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/NXP-Freescale/MCIMX283CVM4B/?qs=sGAEpiMZZMvr4NRCYJMseEmK4MbZDFC7EKdR1GsO%252bGI%3d">841-MCIMX283CVM4B</a><br />
  3835. <br />
  3836. <br />
  3837. </div></td><td>
  3838. <div class="mfrDiv">
  3839. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/NXP-Freescale/MCIMX283CVM4B/?qs=sGAEpiMZZMvr4NRCYJMseEmK4MbZDFC7EKdR1GsO%252bGI%3d">MCIMX283CVM4B</a><br />
  3840. <br />
  3841. <div style="width: 100%; text-align: center;">
  3842. </div>
  3843. <div style="width: 100%; text-align: center;">
  3844. </div>
  3845. </div>
  3846. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl03_lnkSupplier" href="../../../../../../Freescale-Semiconductor">NXP / Freescale</a>
  3847. </td><td>处理器 - 专门应用 CATSKILLS REV 1.2
  3848. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3849. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../freescaleimx28">了解更多</a>
  3850. </div>
  3851. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3852. <img src="/Images/icon_EAR.gif" alt='此产品可能需要其他文件才能从美国出口。' title='此产品可能需要其他文件才能从美国出口。' />
  3853. </div>
  3854. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;NXP / Freescale&quot;,&quot;841-MCIMX283CVM4B | MCIMX283CVM4B&quot;]);" href="http://www.mouser.com/ds/2/302/IMX28CEC-782181.pdf" target="_blank">数据表</a>
  3855. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl06_lnkAvailability">1,382<br/>有库存</span>
  3856. <table>
  3857. <tr align="center">
  3858. <td style="padding-top: 5px">
  3859. </td>
  3860. </tr>
  3861. <tr align="center">
  3862. <td style="padding-top: 5px; padding-bottom: 5px">
  3863. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl06_lnkAlternativePackaging" title="备用包装 | 841-MCIMX283CVM4B" class="thickbox" href="../../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YQeqxs7bzq4chLiLMbRNPzOglkoudgzoRW%252bz6GJC7ohBwiuokBShzgWpeFF44fQaLvZ6oAjvitp4AsDOND0e2ufT5W3Zqj2gm7eKiEnAdS52LickRSyDlwA8cHkC66cram20MDhVbv7xg%3d%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  3864. </td>
  3865. </tr>
  3866. </table></td><td>
  3867. <table class="PriceBreaks" cellspacing="0" border="0">
  3868. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3869. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3870. </td>
  3871. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3872. </td>
  3873. </tr>
  3874. <tr>
  3875. <td class="PriceBreakQuantity">
  3876. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(18,1);">1:</a>
  3877. </td>
  3878. <td class="PriceBreakPrice">
  3879. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥89.4114</span>
  3880. </td>
  3881. </tr>
  3882. <tr>
  3883. <td class="PriceBreakQuantity">
  3884. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(18,10);">10:</a>
  3885. </td>
  3886. <td class="PriceBreakPrice">
  3887. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥84.4038</span>
  3888. </td>
  3889. </tr>
  3890. <tr>
  3891. <td class="PriceBreakQuantity">
  3892. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(18,25);">25:</a>
  3893. </td>
  3894. <td class="PriceBreakPrice">
  3895. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥79.4781</span>
  3896. </td>
  3897. </tr>
  3898. <tr>
  3899. <td class="PriceBreakQuantity">
  3900. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(18,100);">100:</a>
  3901. </td>
  3902. <td class="PriceBreakPrice">
  3903. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥59.5998</span>
  3904. </td>
  3905. </tr>
  3906. <tr>
  3907. <td><br /></td>
  3908. </tr>
  3909. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3910. <td colspan="2" style="text-align: center;">
  3911. </td>
  3912. </tr>
  3913. </table>
  3914. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl08_btnBuy&#39;)">
  3915. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl20$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(18,this.value);" /><br />
  3916. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl20$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 18);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl08_btnBuy" title="购买 MCIMX283CVM4B" class="buy-button" /><br />
  3917. <table cellspacing="0" border="0" style="width: 100%;">
  3918. <tr>
  3919. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3920. 最低:
  3921. </td>
  3922. <td style="padding-left: 2px; text-align: left;">
  3923. 1
  3924. </td>
  3925. </tr>
  3926. <tr>
  3927. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3928. 多个:
  3929. </td>
  3930. <td style="padding-left: 2px; text-align: left;">
  3931. 1
  3932. </td>
  3933. </tr>
  3934. </table>
  3935. </div>
  3936. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_pnlCompliant">
  3937. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3938. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=uLDMbbYh%252bDVOXHaC%2fp3Qqg%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=uLDMbbYh%252bDVOXHaC%2fp3Qqg%3d%3d" target="_blank">详细信息</a>
  3939. </div>
  3940. </td><td>Multimedia Applications
  3941. </td><td>ARM926EJ-S
  3942. </td><td>1 Core
  3943. </td><td>32 bit
  3944. </td><td>454 MHz
  3945. </td><td>16 kB
  3946. </td><td>32 kB
  3947. </td><td>1.35 V to 1.55 V
  3948. </td><td>+ 85 C
  3949. </td><td>SMD/SMT
  3950. </td><td>MAPBGA-289
  3951. </td>
  3952. </tr><tr class="SearchResultsRowOdd" data-partnumber="595-DMVA2ZCE" data-index="21">
  3953. <td class="td-select" align="center">
  3954. <div style="padding: 5px 5px 0 5px;">
  3955. <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl21$chkSelect" onclick="javascript:RowSelected(21, this.checked);" /></span>
  3956. </div>
  3957. </td><td></td><td>
  3958. <div style="text-align:left;">
  3959. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Texas-Instruments/DMVA2ZCE/?qs=sGAEpiMZZMvr4NRCYJMseDKG%2f2jylntfNu%2fOLxZtmB4%3d">595-DMVA2ZCE</a><br />
  3960. <br />
  3961. <br />
  3962. </div></td><td>
  3963. <div class="mfrDiv">
  3964. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Texas-Instruments/DMVA2ZCE/?qs=sGAEpiMZZMvr4NRCYJMseDKG%2f2jylntfNu%2fOLxZtmB4%3d">DMVA2ZCE</a><br />
  3965. <br />
  3966. <div style="width: 100%; text-align: center;">
  3967. <span><img src="/images/icon-lc-new-at-mouser-sm.png" alt="Mouser 的新产品" /><br/>Mouser 的新产品</span><br/><br/>
  3968. </div>
  3969. <div style="width: 100%; text-align: center;">
  3970. </div>
  3971. </div>
  3972. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl03_lnkSupplier" href="../../../../../../Texas-Instruments">Texas Instruments</a>
  3973. </td><td>处理器 - 专门应用 A 595-MS320DM8147SCYE0
  3974. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3975. </div>
  3976. </td><td>
  3977. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl06_lnkAvailability">320<br/>有库存</span>
  3978. <table>
  3979. <tr align="center">
  3980. <td style="padding-top: 5px">
  3981. </td>
  3982. </tr>
  3983. <tr align="center">
  3984. <td style="padding-top: 5px; padding-bottom: 5px">
  3985. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl06_lnkAlternativePackaging" title="备用包装 | 595-DMVA2ZCE" class="thickbox" href="../../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YRrtKYWfLD1S6652AFPXvxHhFqILaxMkTlFe0QNtm%252bwo0%2fY%2fm1WWJG1xmwTWUZLmaDq1nSeyhvQniesTviMFovK4wS1e904nZGatXrAzUV46LELmb1v58fa&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  3986. </td>
  3987. </tr>
  3988. </table></td><td>
  3989. <table class="PriceBreaks" cellspacing="0" border="0">
  3990. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3991. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3992. </td>
  3993. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3994. </td>
  3995. </tr>
  3996. <tr>
  3997. <td class="PriceBreakQuantity">
  3998. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(19,1);">1:</a>
  3999. </td>
  4000. <td class="PriceBreakPrice">
  4001. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥402.9948</span>
  4002. </td>
  4003. </tr>
  4004. <tr>
  4005. <td class="PriceBreakQuantity">
  4006. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(19,5);">5:</a>
  4007. </td>
  4008. <td class="PriceBreakPrice">
  4009. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥394.056</span>
  4010. </td>
  4011. </tr>
  4012. <tr>
  4013. <td class="PriceBreakQuantity">
  4014. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(19,10);">10:</a>
  4015. </td>
  4016. <td class="PriceBreakPrice">
  4017. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥376.038</span>
  4018. </td>
  4019. </tr>
  4020. <tr>
  4021. <td class="PriceBreakQuantity">
  4022. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(19,25);">25:</a>
  4023. </td>
  4024. <td class="PriceBreakPrice">
  4025. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥358.0902</span>
  4026. </td>
  4027. </tr>
  4028. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  4029. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  4030. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(19,50);">50:</a>
  4031. </td>
  4032. <td class="PriceBreakPrice">
  4033. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Texas-Instruments/DMVA2ZCE/?qs=sGAEpiMZZMvr4NRCYJMseDKG%2f2jylntfNu%2fOLxZtmB4%3d">查看</a>
  4034. </td>
  4035. </tr>
  4036. <tr>
  4037. <td><br /></td>
  4038. </tr>
  4039. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4040. <td colspan="2" style="text-align: center;">
  4041. </td>
  4042. </tr>
  4043. </table>
  4044. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl08_btnBuy&#39;)">
  4045. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl21$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(19,this.value);" /><br />
  4046. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl21$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 19);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl08_btnBuy" title="购买 DMVA2ZCE" class="buy-button" /><br />
  4047. <table cellspacing="0" border="0" style="width: 100%;">
  4048. <tr>
  4049. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4050. 最低:
  4051. </td>
  4052. <td style="padding-left: 2px; text-align: left;">
  4053. 1
  4054. </td>
  4055. </tr>
  4056. <tr>
  4057. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4058. 多个:
  4059. </td>
  4060. <td style="padding-left: 2px; text-align: left;">
  4061. 1
  4062. </td>
  4063. </tr>
  4064. </table>
  4065. </div>
  4066. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_pnlCompliant">
  4067. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4068. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=DesSMXV4JGzxGm6VbVcf2g%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=DesSMXV4JGzxGm6VbVcf2g%3d%3d" target="_blank">详细信息</a>
  4069. </div>
  4070. </td><td>
  4071. </td><td>
  4072. </td><td>
  4073. </td><td>
  4074. </td><td>
  4075. </td><td>
  4076. </td><td>
  4077. </td><td>
  4078. </td><td>
  4079. </td><td>
  4080. </td><td>
  4081. </td>
  4082. </tr><tr class="SearchResultsRowEven" data-partnumber="841-MCIMX257CJN4A" data-index="22">
  4083. <td class="td-select" align="center">
  4084. <div style="padding: 5px 5px 0 5px;">
  4085. <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl22$chkSelect" onclick="javascript:RowSelected(22, this.checked);" /></span>
  4086. </div>
  4087. </td><td><a href='/ProductDetail/NXP-Freescale/MCIMX257CJN4A/?qs=sGAEpiMZZMvr4NRCYJMseBip1lQVaBEaeGzQmcj0s0Q%3d'><img title='NXP / Freescale MCIMX257CJN4A' alt='NXP / Freescale MCIMX257CJN4A' id=444782390 src='/images/freescale/sm/IMX251.jpg' /></a></td><td>
  4088. <div style="text-align:left;">
  4089. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/NXP-Freescale/MCIMX257CJN4A/?qs=sGAEpiMZZMvr4NRCYJMseBip1lQVaBEaeGzQmcj0s0Q%3d">841-MCIMX257CJN4A</a><br />
  4090. <br />
  4091. <br />
  4092. </div></td><td>
  4093. <div class="mfrDiv">
  4094. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/NXP-Freescale/MCIMX257CJN4A/?qs=sGAEpiMZZMvr4NRCYJMseBip1lQVaBEaeGzQmcj0s0Q%3d">MCIMX257CJN4A</a><br />
  4095. <br />
  4096. <div style="width: 100%; text-align: center;">
  4097. </div>
  4098. <div style="width: 100%; text-align: center;">
  4099. </div>
  4100. </div>
  4101. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl03_lnkSupplier" href="../../../../../../Freescale-Semiconductor">NXP / Freescale</a>
  4102. </td><td>处理器 - 专门应用 12X12 IMX25 1.2
  4103. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4104. <img src="/Images/icon_EAR.gif" alt='此产品可能需要其他文件才能从美国出口。' title='此产品可能需要其他文件才能从美国出口。' />
  4105. </div>
  4106. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;NXP / Freescale&quot;,&quot;841-MCIMX257CJN4A | MCIMX257CJN4A&quot;]);" href="http://www.mouser.com/ds/2/302/IMX25CEC-782593.pdf" target="_blank">数据表</a>
  4107. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl06_lnkAvailability">945<br/>有库存</span>
  4108. <table>
  4109. <tr align="center">
  4110. <td style="padding-top: 5px">
  4111. </td>
  4112. </tr>
  4113. <tr align="center">
  4114. <td style="padding-top: 5px; padding-bottom: 5px">
  4115. </td>
  4116. </tr>
  4117. </table></td><td>
  4118. <table class="PriceBreaks" cellspacing="0" border="0">
  4119. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4120. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4121. </td>
  4122. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4123. </td>
  4124. </tr>
  4125. <tr>
  4126. <td class="PriceBreakQuantity">
  4127. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(20,1);">1:</a>
  4128. </td>
  4129. <td class="PriceBreakPrice">
  4130. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥106.5753</span>
  4131. </td>
  4132. </tr>
  4133. <tr>
  4134. <td class="PriceBreakQuantity">
  4135. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(20,10);">10:</a>
  4136. </td>
  4137. <td class="PriceBreakPrice">
  4138. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥100.6551</span>
  4139. </td>
  4140. </tr>
  4141. <tr>
  4142. <td class="PriceBreakQuantity">
  4143. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(20,25);">25:</a>
  4144. </td>
  4145. <td class="PriceBreakPrice">
  4146. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥94.7232</span>
  4147. </td>
  4148. </tr>
  4149. <tr>
  4150. <td class="PriceBreakQuantity">
  4151. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(20,100);">100:</a>
  4152. </td>
  4153. <td class="PriceBreakPrice">
  4154. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥71.0073</span>
  4155. </td>
  4156. </tr>
  4157. <tr>
  4158. <td><br /></td>
  4159. </tr>
  4160. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4161. <td colspan="2" style="text-align: center;">
  4162. </td>
  4163. </tr>
  4164. </table>
  4165. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl08_btnBuy&#39;)">
  4166. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl22$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(20,this.value);" /><br />
  4167. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl22$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 20);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl08_btnBuy" title="购买 MCIMX257CJN4A" class="buy-button" /><br />
  4168. <table cellspacing="0" border="0" style="width: 100%;">
  4169. <tr>
  4170. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4171. 最低:
  4172. </td>
  4173. <td style="padding-left: 2px; text-align: left;">
  4174. 1
  4175. </td>
  4176. </tr>
  4177. <tr>
  4178. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4179. 多个:
  4180. </td>
  4181. <td style="padding-left: 2px; text-align: left;">
  4182. 1
  4183. </td>
  4184. </tr>
  4185. </table>
  4186. </div>
  4187. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_pnlCompliant">
  4188. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4189. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=c98P57sALXNBNqCFMvrVgQ%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=c98P57sALXNBNqCFMvrVgQ%3d%3d" target="_blank">详细信息</a>
  4190. </div>
  4191. </td><td>Multimedia Applications
  4192. </td><td>ARM926EJ-S
  4193. </td><td>1 Core
  4194. </td><td>32 bit
  4195. </td><td>400 MHz
  4196. </td><td>16 kB
  4197. </td><td>16 kB
  4198. </td><td>1.45 V
  4199. </td><td>+ 85 C
  4200. </td><td>SMD/SMT
  4201. </td><td>MAPBGA-400
  4202. </td>
  4203. </tr><tr class="SearchResultsRowOdd" data-partnumber="595-OMAP3530ECBB72" data-index="23">
  4204. <td class="td-select" align="center">
  4205. <div style="padding: 5px 5px 0 5px;">
  4206. <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl23$chkSelect" onclick="javascript:RowSelected(23, this.checked);" /></span>
  4207. </div>
  4208. </td><td><a href='/ProductDetail/Texas-Instruments/OMAP3530ECBB72/?qs=sGAEpiMZZMvr4NRCYJMseFqiPf1jzKz43xE5tyntLmk%3d'><img title='Texas Instruments OMAP3530ECBB72' alt='Texas Instruments OMAP3530ECBB72' id=713540191 src='/images/texasinstruments/sm/TI_FCBGA_515_pop.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/texasinstruments/images/TI_FCBGA_515_pop.jpg</div></a></td><td>
  4209. <div style="text-align:left;">
  4210. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Texas-Instruments/OMAP3530ECBB72/?qs=sGAEpiMZZMvr4NRCYJMseFqiPf1jzKz43xE5tyntLmk%3d">595-OMAP3530ECBB72</a><br />
  4211. <br />
  4212. <br />
  4213. </div></td><td>
  4214. <div class="mfrDiv">
  4215. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Texas-Instruments/OMAP3530ECBB72/?qs=sGAEpiMZZMvr4NRCYJMseFqiPf1jzKz43xE5tyntLmk%3d">OMAP3530ECBB72</a><br />
  4216. <br />
  4217. <div style="width: 100%; text-align: center;">
  4218. </div>
  4219. <div style="width: 100%; text-align: center;">
  4220. </div>
  4221. </div>
  4222. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl03_lnkSupplier" href="../../../../../../Texas-Instruments">Texas Instruments</a>
  4223. </td><td>处理器 - 专门应用 Applications Proc
  4224. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4225. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../new/texasinstruments/ti-omap3530/">了解更多</a>
  4226. </div>
  4227. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4228. <img src="/Images/icon_EAR.gif" alt='此产品可能需要其他文件才能从美国出口。' title='此产品可能需要其他文件才能从美国出口。' />
  4229. </div>
  4230. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Texas Instruments&quot;,&quot;595-OMAP3530ECBB72 | OMAP3530ECBB72&quot;]);" href="http://www.mouser.com/ds/2/405/omap3530-483637.pdf" target="_blank">数据表</a>
  4231. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl06_lnkAvailability">159<br/>有库存</span>
  4232. <table>
  4233. <tr align="center">
  4234. <td style="padding-top: 5px">
  4235. </td>
  4236. </tr>
  4237. <tr align="center">
  4238. <td style="padding-top: 5px; padding-bottom: 5px">
  4239. </td>
  4240. </tr>
  4241. </table></td><td>
  4242. <table class="PriceBreaks" cellspacing="0" border="0">
  4243. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4244. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4245. </td>
  4246. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4247. </td>
  4248. </tr>
  4249. <tr>
  4250. <td class="PriceBreakQuantity">
  4251. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(21,1);">1:</a>
  4252. </td>
  4253. <td class="PriceBreakPrice">
  4254. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥492.8625</span>
  4255. </td>
  4256. </tr>
  4257. <tr>
  4258. <td class="PriceBreakQuantity">
  4259. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(21,5);">5:</a>
  4260. </td>
  4261. <td class="PriceBreakPrice">
  4262. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥477.3834</span>
  4263. </td>
  4264. </tr>
  4265. <tr>
  4266. <td class="PriceBreakQuantity">
  4267. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(21,10);">10:</a>
  4268. </td>
  4269. <td class="PriceBreakPrice">
  4270. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥468.2223</span>
  4271. </td>
  4272. </tr>
  4273. <tr>
  4274. <td class="PriceBreakQuantity">
  4275. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(21,25);">25:</a>
  4276. </td>
  4277. <td class="PriceBreakPrice">
  4278. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥444.5766</span>
  4279. </td>
  4280. </tr>
  4281. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  4282. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  4283. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(21,50);">50:</a>
  4284. </td>
  4285. <td class="PriceBreakPrice">
  4286. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Texas-Instruments/OMAP3530ECBB72/?qs=sGAEpiMZZMvr4NRCYJMseFqiPf1jzKz43xE5tyntLmk%3d">查看</a>
  4287. </td>
  4288. </tr>
  4289. <tr>
  4290. <td><br /></td>
  4291. </tr>
  4292. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4293. <td colspan="2" style="text-align: center;">
  4294. </td>
  4295. </tr>
  4296. </table>
  4297. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl08_btnBuy&#39;)">
  4298. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl23$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(21,this.value);" /><br />
  4299. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl23$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 21);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl08_btnBuy" title="购买 OMAP3530ECBB72" class="buy-button" /><br />
  4300. <table cellspacing="0" border="0" style="width: 100%;">
  4301. <tr>
  4302. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4303. 最低:
  4304. </td>
  4305. <td style="padding-left: 2px; text-align: left;">
  4306. 1
  4307. </td>
  4308. </tr>
  4309. <tr>
  4310. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4311. 多个:
  4312. </td>
  4313. <td style="padding-left: 2px; text-align: left;">
  4314. 1
  4315. </td>
  4316. </tr>
  4317. </table>
  4318. </div>
  4319. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_pnlCompliant">
  4320. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4321. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=5qTj8c%252bvdt%2fhZz8f6wq8%252bw%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=5qTj8c%252bvdt%2fhZz8f6wq8%252bw%3d%3d" target="_blank">详细信息</a>
  4322. </div>
  4323. </td><td>Application Processors
  4324. </td><td>ARM Cortex A8, TMS320C64x
  4325. </td><td>2 Core
  4326. </td><td>32 bit
  4327. </td><td>720 MHz, 520 MHz
  4328. </td><td>16 kB, 32 kB
  4329. </td><td>16 kB, 80 kB
  4330. </td><td>985 mV to 1.35 V
  4331. </td><td>+ 90 C
  4332. </td><td>SMD/SMT
  4333. </td><td>PBGA-515
  4334. </td>
  4335. </tr><tr class="SearchResultsRowEven" data-partnumber="841-MCIMX31DVMN5D" data-index="24">
  4336. <td class="td-select" align="center">
  4337. <div style="padding: 5px 5px 0 5px;">
  4338. <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl24$chkSelect" onclick="javascript:RowSelected(24, this.checked);" /></span>
  4339. </div>
  4340. </td><td><a href='/ProductDetail/NXP-Freescale/MCIMX31DVMN5D/?qs=sGAEpiMZZMvr4NRCYJMseJo%252bQl7tOYMUfysuRfqObSQ%3d'><img title='NXP / Freescale MCIMX31DVMN5D' alt='NXP / Freescale MCIMX31DVMN5D' id=294929625 src='/images/freescale/sm/bga457.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/freescale/images/bga457.jpg</div></a></td><td>
  4341. <div style="text-align:left;">
  4342. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/NXP-Freescale/MCIMX31DVMN5D/?qs=sGAEpiMZZMvr4NRCYJMseJo%252bQl7tOYMUfysuRfqObSQ%3d">841-MCIMX31DVMN5D</a><br />
  4343. <br />
  4344. <br />
  4345. </div></td><td>
  4346. <div class="mfrDiv">
  4347. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/NXP-Freescale/MCIMX31DVMN5D/?qs=sGAEpiMZZMvr4NRCYJMseJo%252bQl7tOYMUfysuRfqObSQ%3d">MCIMX31DVMN5D</a><br />
  4348. <br />
  4349. <div style="width: 100%; text-align: center;">
  4350. </div>
  4351. <div style="width: 100%; text-align: center;">
  4352. </div>
  4353. </div>
  4354. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl03_lnkSupplier" href="../../../../../../Freescale-Semiconductor">NXP / Freescale</a>
  4355. </td><td>处理器 - 专门应用 2.0.1 CONSUMER FULL
  4356. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4357. <img src="/Images/icon_EAR.gif" alt='此产品可能需要其他文件才能从美国出口。' title='此产品可能需要其他文件才能从美国出口。' />
  4358. </div>
  4359. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;NXP / Freescale&quot;,&quot;841-MCIMX31DVMN5D | MCIMX31DVMN5D&quot;]);" href="http://www.mouser.com/ds/2/302/MCIMX31C-845067.pdf" target="_blank">数据表</a>
  4360. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl06_lnkAvailability">316<br/>有库存</span>
  4361. <table>
  4362. <tr align="center">
  4363. <td style="padding-top: 5px">
  4364. </td>
  4365. </tr>
  4366. <tr align="center">
  4367. <td style="padding-top: 5px; padding-bottom: 5px">
  4368. </td>
  4369. </tr>
  4370. </table></td><td>
  4371. <table class="PriceBreaks" cellspacing="0" border="0">
  4372. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4373. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4374. </td>
  4375. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4376. </td>
  4377. </tr>
  4378. <tr>
  4379. <td class="PriceBreakQuantity">
  4380. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(22,1);">1:</a>
  4381. </td>
  4382. <td class="PriceBreakPrice">
  4383. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥273.6162</span>
  4384. </td>
  4385. </tr>
  4386. <tr>
  4387. <td class="PriceBreakQuantity">
  4388. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(22,10);">10:</a>
  4389. </td>
  4390. <td class="PriceBreakPrice">
  4391. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥258.3711</span>
  4392. </td>
  4393. </tr>
  4394. <tr>
  4395. <td class="PriceBreakQuantity">
  4396. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(22,25);">25:</a>
  4397. </td>
  4398. <td class="PriceBreakPrice">
  4399. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥243.1962</span>
  4400. </td>
  4401. </tr>
  4402. <tr>
  4403. <td class="PriceBreakQuantity">
  4404. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(22,100);">100:</a>
  4405. </td>
  4406. <td class="PriceBreakPrice">
  4407. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥182.3562</span>
  4408. </td>
  4409. </tr>
  4410. <tr>
  4411. <td><br /></td>
  4412. </tr>
  4413. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4414. <td colspan="2" style="text-align: center;">
  4415. </td>
  4416. </tr>
  4417. </table>
  4418. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl08_btnBuy&#39;)">
  4419. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl24$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(22,this.value);" /><br />
  4420. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl24$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 22);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl08_btnBuy" title="购买 MCIMX31DVMN5D" class="buy-button" /><br />
  4421. <table cellspacing="0" border="0" style="width: 100%;">
  4422. <tr>
  4423. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4424. 最低:
  4425. </td>
  4426. <td style="padding-left: 2px; text-align: left;">
  4427. 1
  4428. </td>
  4429. </tr>
  4430. <tr>
  4431. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4432. 多个:
  4433. </td>
  4434. <td style="padding-left: 2px; text-align: left;">
  4435. 1
  4436. </td>
  4437. </tr>
  4438. </table>
  4439. </div>
  4440. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_pnlCompliant">
  4441. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4442. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=OTwDwlVWYCzwLAI3caV1Aw%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=OTwDwlVWYCzwLAI3caV1Aw%3d%3d" target="_blank">详细信息</a>
  4443. </div>
  4444. </td><td>Multimedia Applications
  4445. </td><td>ARM1136JF-S
  4446. </td><td>1 Core
  4447. </td><td>32 bit
  4448. </td><td>532 MHz
  4449. </td><td>16 kB
  4450. </td><td>16 kB
  4451. </td><td>1.38 V to 1.52 V
  4452. </td><td>+ 70 C
  4453. </td><td>SMD/SMT
  4454. </td><td>MAPBGA-473
  4455. </td>
  4456. </tr><tr class="SearchResultsRowOdd" data-partnumber="841-MCIMX283DVM4B" data-index="25">
  4457. <td class="td-select" align="center">
  4458. <div style="padding: 5px 5px 0 5px;">
  4459. <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl25$chkSelect" onclick="javascript:RowSelected(25, this.checked);" /></span>
  4460. </div>
  4461. </td><td><a href='/ProductDetail/NXP-Freescale/MCIMX283DVM4B/?qs=sGAEpiMZZMvr4NRCYJMseEmK4MbZDFC7ZNb6u2Wky2M%3d'><img title='NXP / Freescale MCIMX283DVM4B' alt='NXP / Freescale MCIMX283DVM4B' id=481259375 src='/images/freescale/sm/imx283.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/freescale/images/imx283.jpg</div></a></td><td>
  4462. <div style="text-align:left;">
  4463. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/NXP-Freescale/MCIMX283DVM4B/?qs=sGAEpiMZZMvr4NRCYJMseEmK4MbZDFC7ZNb6u2Wky2M%3d">841-MCIMX283DVM4B</a><br />
  4464. <br />
  4465. <br />
  4466. </div></td><td>
  4467. <div class="mfrDiv">
  4468. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/NXP-Freescale/MCIMX283DVM4B/?qs=sGAEpiMZZMvr4NRCYJMseEmK4MbZDFC7ZNb6u2Wky2M%3d">MCIMX283DVM4B</a><br />
  4469. <br />
  4470. <div style="width: 100%; text-align: center;">
  4471. </div>
  4472. <div style="width: 100%; text-align: center;">
  4473. </div>
  4474. </div>
  4475. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl03_lnkSupplier" href="../../../../../../Freescale-Semiconductor">NXP / Freescale</a>
  4476. </td><td>处理器 - 专门应用 CATSKILLS REV 1.2
  4477. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4478. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../freescaleimx28">了解更多</a>
  4479. </div>
  4480. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4481. <img src="/Images/icon_EAR.gif" alt='此产品可能需要其他文件才能从美国出口。' title='此产品可能需要其他文件才能从美国出口。' />
  4482. </div>
  4483. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;NXP / Freescale&quot;,&quot;841-MCIMX283DVM4B | MCIMX283DVM4B&quot;]);" href="http://www.mouser.com/ds/2/302/IMX28CEC-782181.pdf" target="_blank">数据表</a>
  4484. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl06_lnkAvailability">394<br/>有库存</span>
  4485. <table>
  4486. <tr align="center">
  4487. <td style="padding-top: 5px">
  4488. </td>
  4489. </tr>
  4490. <tr align="center">
  4491. <td style="padding-top: 5px; padding-bottom: 5px">
  4492. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl06_lnkAlternativePackaging" title="备用包装 | 841-MCIMX283DVM4B" class="thickbox" href="../../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YQeqxs7bzq4csx6NuHalhGHZ3WwUFchcpj8lIi14ktSS5OdzpfC%2f%252beUWmk5t3ZEYvOs7%252b8dZAANm%2f3MDPXxiqQPBgpOVYL7zP73fjRoIbC%2feSp8QcnKVTJJfOw3J7eFV7oDhCLmLiCAfQ%3d%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  4493. </td>
  4494. </tr>
  4495. </table></td><td>
  4496. <table class="PriceBreaks" cellspacing="0" border="0">
  4497. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4498. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4499. </td>
  4500. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4501. </td>
  4502. </tr>
  4503. <tr>
  4504. <td class="PriceBreakQuantity">
  4505. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(23,1);">1:</a>
  4506. </td>
  4507. <td class="PriceBreakPrice">
  4508. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥81.1629</span>
  4509. </td>
  4510. </tr>
  4511. <tr>
  4512. <td class="PriceBreakQuantity">
  4513. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(23,10);">10:</a>
  4514. </td>
  4515. <td class="PriceBreakPrice">
  4516. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥76.7052</span>
  4517. </td>
  4518. </tr>
  4519. <tr>
  4520. <td class="PriceBreakQuantity">
  4521. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(23,25);">25:</a>
  4522. </td>
  4523. <td class="PriceBreakPrice">
  4524. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥72.1539</span>
  4525. </td>
  4526. </tr>
  4527. <tr>
  4528. <td class="PriceBreakQuantity">
  4529. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(23,100);">100:</a>
  4530. </td>
  4531. <td class="PriceBreakPrice">
  4532. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥54.1359</span>
  4533. </td>
  4534. </tr>
  4535. <tr>
  4536. <td><br /></td>
  4537. </tr>
  4538. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4539. <td colspan="2" style="text-align: center;">
  4540. </td>
  4541. </tr>
  4542. </table>
  4543. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl08_btnBuy&#39;)">
  4544. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl25$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(23,this.value);" /><br />
  4545. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl25$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 23);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl08_btnBuy" title="购买 MCIMX283DVM4B" class="buy-button" /><br />
  4546. <table cellspacing="0" border="0" style="width: 100%;">
  4547. <tr>
  4548. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4549. 最低:
  4550. </td>
  4551. <td style="padding-left: 2px; text-align: left;">
  4552. 1
  4553. </td>
  4554. </tr>
  4555. <tr>
  4556. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4557. 多个:
  4558. </td>
  4559. <td style="padding-left: 2px; text-align: left;">
  4560. 1
  4561. </td>
  4562. </tr>
  4563. </table>
  4564. </div>
  4565. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_pnlCompliant">
  4566. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4567. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=uLDMbbYh%252bDX7yzQr4kJtyw%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=uLDMbbYh%252bDX7yzQr4kJtyw%3d%3d" target="_blank">详细信息</a>
  4568. </div>
  4569. </td><td>Multimedia Applications
  4570. </td><td>ARM926EJ-S
  4571. </td><td>1 Core
  4572. </td><td>32 bit
  4573. </td><td>454 MHz
  4574. </td><td>16 kB
  4575. </td><td>32 kB
  4576. </td><td>1.35 V to 1.55 V
  4577. </td><td>+ 70 C
  4578. </td><td>SMD/SMT
  4579. </td><td>MAPBGA-289
  4580. </td>
  4581. </tr><tr class="SearchResultsRowEven" data-partnumber="841-MCIMX6D5EYM10AD" data-index="26">
  4582. <td class="td-select" align="center">
  4583. <div style="padding: 5px 5px 0 5px;">
  4584. <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl26$chkSelect" onclick="javascript:RowSelected(26, this.checked);" /></span>
  4585. </div>
  4586. </td><td></td><td>
  4587. <div style="text-align:left;">
  4588. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/NXP-Freescale/MCIMX6D5EYM10AD/?qs=sGAEpiMZZMvr4NRCYJMseENl70YDCZtQog5JfkivDNGC0sSDfazjog%3d%3d">841-MCIMX6D5EYM10AD</a><br />
  4589. <br />
  4590. <br />
  4591. </div></td><td>
  4592. <div class="mfrDiv">
  4593. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/NXP-Freescale/MCIMX6D5EYM10AD/?qs=sGAEpiMZZMvr4NRCYJMseENl70YDCZtQog5JfkivDNGC0sSDfazjog%3d%3d">MCIMX6D5EYM10AD</a><br />
  4594. <br />
  4595. <div style="width: 100%; text-align: center;">
  4596. </div>
  4597. <div style="width: 100%; text-align: center;">
  4598. </div>
  4599. </div>
  4600. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl03_lnkSupplier" href="../../../../../../Freescale-Semiconductor">NXP / Freescale</a>
  4601. </td><td>处理器 - 专门应用 i.MX 6 series 32-bit MPU, Dual ARM Cortex-A9 core, 1GHz, FCBGA 624
  4602. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4603. <img src="/Images/icon_EAR.gif" alt='此产品可能需要其他文件才能从美国出口。' title='此产品可能需要其他文件才能从美国出口。' />
  4604. </div>
  4605. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;NXP / Freescale&quot;,&quot;841-MCIMX6D5EYM10AD | MCIMX6D5EYM10AD&quot;]);" href="http://www.mouser.com/ds/2/302/IMX6DQAEC-845587.pdf" target="_blank">数据表</a>
  4606. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl06_lnkAvailability">212<br/>有库存</span>
  4607. <table>
  4608. <tr align="center">
  4609. <td style="padding-top: 5px">
  4610. </td>
  4611. </tr>
  4612. <tr align="center">
  4613. <td style="padding-top: 5px; padding-bottom: 5px">
  4614. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl06_lnkAlternativePackaging" title="备用包装 | 841-MCIMX6D5EYM10AD" class="thickbox" href="../../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YQeqxs7bzq4ckhLRMDhMLQi%2fjyu1acPGLWk%2fId5xPa2C5YsH%2f9FaRAVPjBa0iCzYQv%252b1iuxpITsbN7WnGJRq0Xd%2f8L7XkIfP2xIa53ACO7UrGSHk%252b1T0MH13zQejlOnEI%252bn0P%252bw9V8pVlbMNnHDuP1i&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  4615. </td>
  4616. </tr>
  4617. </table></td><td>
  4618. <table class="PriceBreaks" cellspacing="0" border="0">
  4619. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4620. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4621. </td>
  4622. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4623. </td>
  4624. </tr>
  4625. <tr>
  4626. <td class="PriceBreakQuantity">
  4627. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(24,1);">1:</a>
  4628. </td>
  4629. <td class="PriceBreakPrice">
  4630. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥364.9464</span>
  4631. </td>
  4632. </tr>
  4633. <tr>
  4634. <td class="PriceBreakQuantity">
  4635. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(24,10);">10:</a>
  4636. </td>
  4637. <td class="PriceBreakPrice">
  4638. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥344.6937</span>
  4639. </td>
  4640. </tr>
  4641. <tr>
  4642. <td class="PriceBreakQuantity">
  4643. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(24,25);">25:</a>
  4644. </td>
  4645. <td class="PriceBreakPrice">
  4646. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥324.3591</span>
  4647. </td>
  4648. </tr>
  4649. <tr>
  4650. <td class="PriceBreakQuantity">
  4651. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(24,100);">100:</a>
  4652. </td>
  4653. <td class="PriceBreakPrice">
  4654. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥243.2781</span>
  4655. </td>
  4656. </tr>
  4657. <tr>
  4658. <td><br /></td>
  4659. </tr>
  4660. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4661. <td colspan="2" style="text-align: center;">
  4662. </td>
  4663. </tr>
  4664. </table>
  4665. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl08_btnBuy&#39;)">
  4666. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl26$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(24,this.value);" /><br />
  4667. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl26$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 24);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl08_btnBuy" title="购买 MCIMX6D5EYM10AD" class="buy-button" /><br />
  4668. <table cellspacing="0" border="0" style="width: 100%;">
  4669. <tr>
  4670. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4671. 最低:
  4672. </td>
  4673. <td style="padding-left: 2px; text-align: left;">
  4674. 1
  4675. </td>
  4676. </tr>
  4677. <tr>
  4678. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4679. 多个:
  4680. </td>
  4681. <td style="padding-left: 2px; text-align: left;">
  4682. 1
  4683. </td>
  4684. </tr>
  4685. </table>
  4686. </div>
  4687. </td><td>
  4688. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_pnlNotCompliant">
  4689. <br />
  4690. <br />
  4691. </div>
  4692. </td><td>Consumer Applications
  4693. </td><td>ARM Cortex A9
  4694. </td><td>1 Core
  4695. </td><td>32 bit
  4696. </td><td>1 GHz
  4697. </td><td>32 kB
  4698. </td><td>32 kB
  4699. </td><td>1.05 V to 1.5 V
  4700. </td><td>+ 105 C
  4701. </td><td>SMD/SMT
  4702. </td><td>FCPBGA-624
  4703. </td>
  4704. </tr><tr class="SearchResultsRowOdd" data-partnumber="841-MCIMX6Q5EYM10AC" data-index="27">
  4705. <td class="td-select" align="center">
  4706. <div style="padding: 5px 5px 0 5px;">
  4707. <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl27$chkSelect" onclick="javascript:RowSelected(27, this.checked);" /></span>
  4708. </div>
  4709. </td><td><a href='/ProductDetail/NXP-Freescale/MCIMX6Q5EYM10AC/?qs=sGAEpiMZZMvr4NRCYJMseFWjRJP%2f3a%2fs50sLqBXn5sM%3d'><img title='NXP / Freescale MCIMX6Q5EYM10AC' alt='NXP / Freescale MCIMX6Q5EYM10AC' id=809463733 src='/images/freescale/sm/fcbga.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/freescale/images/fcbga.jpg</div></a></td><td>
  4710. <div style="text-align:left;">
  4711. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/NXP-Freescale/MCIMX6Q5EYM10AC/?qs=sGAEpiMZZMvr4NRCYJMseFWjRJP%2f3a%2fs50sLqBXn5sM%3d">841-MCIMX6Q5EYM10AC</a><br />
  4712. <br />
  4713. <br />
  4714. </div></td><td>
  4715. <div class="mfrDiv">
  4716. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/NXP-Freescale/MCIMX6Q5EYM10AC/?qs=sGAEpiMZZMvr4NRCYJMseFWjRJP%2f3a%2fs50sLqBXn5sM%3d">MCIMX6Q5EYM10AC</a><br />
  4717. <br />
  4718. <div style="width: 100%; text-align: center;">
  4719. </div>
  4720. <div style="width: 100%; text-align: center;">
  4721. </div>
  4722. </div>
  4723. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl03_lnkSupplier" href="../../../../../../Freescale-Semiconductor">NXP / Freescale</a>
  4724. </td><td>处理器 - 专门应用 i.MX6Q
  4725. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4726. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../freescaleimx6/">了解更多</a>
  4727. </div>
  4728. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4729. <img src="/Images/icon_EAR.gif" alt='此产品可能需要其他文件才能从美国出口。' title='此产品可能需要其他文件才能从美国出口。' />
  4730. </div>
  4731. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;NXP / Freescale&quot;,&quot;841-MCIMX6Q5EYM10AC | MCIMX6Q5EYM10AC&quot;]);" href="http://www.mouser.com/ds/2/302/IMX6DQCEC-782183.pdf" target="_blank">数据表</a>
  4732. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl06_lnkAvailability">105<br/>有库存</span>
  4733. <table>
  4734. <tr align="center">
  4735. <td style="padding-top: 5px">
  4736. </td>
  4737. </tr>
  4738. <tr align="center">
  4739. <td style="padding-top: 5px; padding-bottom: 5px">
  4740. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl06_lnkAlternativePackaging" title="备用包装 | 841-MCIMX6Q5EYM10AC" class="thickbox" href="../../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YQeqxs7bzq4cuzZ5h3wZYqloytsaY4ZVWzzzHTU25H3BKGsPA2%252bH2v3WQy%2fKBpl%252bugR5R7MF9qG9lwAW9rVRLhR3vzsu3zendyqZBQhSzAxELFS%2fT5HSjXd3Yso%2fxg8kgXwmaHCXMVo0A%3d%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  4741. </td>
  4742. </tr>
  4743. </table></td><td>
  4744. <table class="PriceBreaks" cellspacing="0" border="0">
  4745. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4746. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4747. </td>
  4748. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4749. </td>
  4750. </tr>
  4751. <tr>
  4752. <td class="PriceBreakQuantity">
  4753. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(25,1);">1:</a>
  4754. </td>
  4755. <td class="PriceBreakPrice">
  4756. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥410.6934</span>
  4757. </td>
  4758. </tr>
  4759. <tr>
  4760. <td class="PriceBreakQuantity">
  4761. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(25,2);">2:</a>
  4762. </td>
  4763. <td class="PriceBreakPrice">
  4764. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥398.9817</span>
  4765. </td>
  4766. </tr>
  4767. <tr>
  4768. <td class="PriceBreakQuantity">
  4769. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(25,5);">5:</a>
  4770. </td>
  4771. <td class="PriceBreakPrice">
  4772. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥392.9796</span>
  4773. </td>
  4774. </tr>
  4775. <tr>
  4776. <td class="PriceBreakQuantity">
  4777. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(25,10);">10:</a>
  4778. </td>
  4779. <td class="PriceBreakPrice">
  4780. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥387.1998</span>
  4781. </td>
  4782. </tr>
  4783. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  4784. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  4785. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(25,25);">25:</a>
  4786. </td>
  4787. <td class="PriceBreakPrice">
  4788. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/NXP-Freescale/MCIMX6Q5EYM10AC/?qs=sGAEpiMZZMvr4NRCYJMseFWjRJP%2f3a%2fs50sLqBXn5sM%3d">查看</a>
  4789. </td>
  4790. </tr>
  4791. <tr>
  4792. <td><br /></td>
  4793. </tr>
  4794. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4795. <td colspan="2" style="text-align: center;">
  4796. </td>
  4797. </tr>
  4798. </table>
  4799. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl08_btnBuy&#39;)">
  4800. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl27$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(25,this.value);" /><br />
  4801. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl27$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 25);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl08_btnBuy" title="购买 MCIMX6Q5EYM10AC" class="buy-button" /><br />
  4802. <table cellspacing="0" border="0" style="width: 100%;">
  4803. <tr>
  4804. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4805. 最低:
  4806. </td>
  4807. <td style="padding-left: 2px; text-align: left;">
  4808. 1
  4809. </td>
  4810. </tr>
  4811. <tr>
  4812. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4813. 多个:
  4814. </td>
  4815. <td style="padding-left: 2px; text-align: left;">
  4816. 1
  4817. </td>
  4818. </tr>
  4819. </table>
  4820. </div>
  4821. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_pnlCompliant">
  4822. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4823. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=45Cc3lLMKBXGidm8wuPmdA%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=45Cc3lLMKBXGidm8wuPmdA%3d%3d" target="_blank">详细信息</a>
  4824. </div>
  4825. </td><td>Consumer Applications
  4826. </td><td>ARM Cortex A9
  4827. </td><td>1 Core
  4828. </td><td>32 bit
  4829. </td><td>1 GHz
  4830. </td><td>32 kB
  4831. </td><td>32 kB
  4832. </td><td>1.05 V to 1.5 V
  4833. </td><td>+ 105 C
  4834. </td><td>SMD/SMT
  4835. </td><td>FCPBGA-624
  4836. </td>
  4837. </tr>
  4838. </table>
  4839. </div>
  4840. </td>
  4841. </tr>
  4842. <tr>
  4843. <td class="tdSearchResultsPagingBottom">
  4844. <table id="ctl00_ContentMain_tbl4" class="SearchResultsPaging">
  4845. <tr>
  4846. <td>
  4847. <input type="submit" name="ctl00$ContentMain$btn3" value="购买所选商品" onclick="javascript:return MiniCart.AddToCartNShowCart(MiniCart.source);" id="ctl00_ContentMain_btn3" title="购买所选商品" class="buy-button" />
  4848. </td>
  4849. <td>
  4850. <input type="submit" name="ctl00$ContentMain$btn4" value="对比所选" onclick="javascript:if(!IsAnyChecked(true) &amp;&amp; 0 == 0) { alert(&#39;请选择您希望对比的产品。&#39;); return false; };" id="ctl00_ContentMain_btn4" title="对比所选" class="compare-Selected-Button" ImageUrl="~/Images/Search/buy_selected.gif" />
  4851. </td>
  4852. <td>
  4853. <span id="ctl00_ContentMain_lbl12" title="您可选择至多20 个零件单次进行对比。若您选择更多,则仅20件距离最近的所选零件会被对比。" class="bold">至多对比 20 零件.</span>
  4854. </td>
  4855. <td style="padding-left: 40px;">
  4856. <div class="floatrightpager">
  4857. <span class="bold">
  4858. 页面:
  4859. </span>
  4860. <span id="ctl00_ContentMain_PagerBottom"><span id="ctl00_ContentMain_PagerBottom_lblCurrent" class="paging-current">1</span><a id="ctl00_ContentMain_PagerBottom_1" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/?No=25">2</a><a id="ctl00_ContentMain_PagerBottom_2" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/?No=50">3</a><a id="ctl00_ContentMain_PagerBottom_3" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/?No=75">4</a><a id="ctl00_ContentMain_PagerBottom_4" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/?No=100">5</a><a id="ctl00_ContentMain_PagerBottom_5" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/?No=125">6</a><a id="ctl00_ContentMain_PagerBottom_6" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/?No=150">7</a><a id="ctl00_ContentMain_PagerBottom_7" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/?No=175">8</a><a id="ctl00_ContentMain_PagerBottom_8" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/?No=200">9</a><a id="ctl00_ContentMain_PagerBottom_9" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/?No=225">10</a><a id="ctl00_ContentMain_PagerBottom_lnkNextSet" class="ellipsis" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/?No=250">...</a><a id="ctl00_ContentMain_PagerBottom_17" class="first-last" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/?No=425">18</a><a id="ctl00_ContentMain_PagerBottom_lnkNext" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh/?No=25">下一页</a></span>
  4861. </div>
  4862. </td>
  4863. </tr>
  4864. </table>
  4865. </td>
  4866. </tr>
  4867. <tr>
  4868. <td>
  4869. <!--- Search Tips --->
  4870. </td>
  4871. </tr>
  4872. <tr>
  4873. <td>
  4874. <!-- SOP Section 2 -->
  4875. </td>
  4876. </tr>
  4877. </table>
  4878. </div>
  4879. </div><!-- #liProducts-->
  4880. <!-- Datasheets tab -->
  4881. <!-- #liDatasheets-->
  4882. <!-- Images tab -->
  4883. <!-- #liImages-->
  4884. <!-- Newest Products tab -->
  4885. <!-- #liProducts-->
  4886. </div>
  4887. <div id="ctl00_ContentMain_popSearch_pnlPopularSearches">
  4888. <div>
  4889. <span class="popular-searches-label">热门搜索:</span>
  4890. <span class="popular-searches-links"><a href='/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized/_/N-a86sh?P=1ylomup&pop=k8qf' onclick="ga('send','event','Popular Search Refine Click','Processors - Application Specialized','Industrial Applications Processors - Application Specialized')">Industrial Applications 处理器 - 专门应用</a></span>
  4891. </div>
  4892. </div>
  4893. <div style="visibility: hidden;">
  4894. <input name="ctl00$ContentMain$lblTrdTerm" type="text" id="ctl00_ContentMain_lblTrdTerm" style="height:1px;" />
  4895. <input name="ctl00$ContentMain$lblIsNewTerm" type="text" id="ctl00_ContentMain_lblIsNewTerm" style="height:1px;" />
  4896. <span id="SearchResultCount">428</span>
  4897. <div id="disclaimer">
  4898. 图像仅供参考<br/>请参阅产品规格</div>
  4899. </div>
  4900. <input type="hidden" name="ctl00$ContentMain$hfBreadcrumbTemplates" id="ctl00_ContentMain_hfBreadcrumbTemplates" value="Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Processors-Application-Specialized" />
  4901. <script type="text/javascript" src='../../../../../../javascript/ProductImage.js'></script>
  4902. <script type="text/javascript" src='../../../../../../flash/js/mb.zoomify.js?v=3.0.20160304.2'></script>
  4903. <script type="text/javascript" src='../../../../../../flash/js/refine2.js?v=3.0.20160304.2'></script>
  4904. <!--[if gte IE 9]><!-->
  4905. <script type="text/javascript" src='../../../../../../flash/js/angular.min.js?v=3.0.20160304.2'></script>
  4906. <!--<![endif]-->
  4907. <!--[if lt IE 9]>
  4908. <script type="text/javascript" src='../../../../../../flash/js/angular-1.2.min.js?v=3.0.20160304.2'></script>
  4909. <![endif]-->
  4910. <script type="text/javascript" src='../../../../../../flash/js/catalog-nav-2.js?v=3.0.20160304.2'></script>
  4911. <script type="text/javascript">
  4912. var subdomain = 'cn2';
  4913. </script>
  4914. </div>
  4915. <div class="aspNetHidden">
  4916. <input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="1BDFFD94" />
  4917. <input type="hidden" name="__SCROLLPOSITIONX" id="__SCROLLPOSITIONX" value="0" />
  4918. <input type="hidden" name="__SCROLLPOSITIONY" id="__SCROLLPOSITIONY" value="0" />
  4919. <input type="hidden" name="__PREVIOUSPAGE" id="__PREVIOUSPAGE" value="sCwL_pxdoj0XSK04yfSNwmk7SAHGSbiByRjA1dnwtKBk-nBbIRlJWZQvencUkJ0sBD6NabQ8CPhwqV6J9lNk9NKWVfo1" />
  4920. </div>
  4921. <script type="text/javascript">
  4922. //<![CDATA[
  4923. var mfrIDsArray = new Array;
  4924. //]]>
  4925. </script>
  4926. <script src='../../../../../../flash/js/Minicart.js?v=3.0.20160304.2' type='text/javascript'></script>
  4927. <script type="text/javascript">
  4928. //<![CDATA[
  4929. var auOnMsg='打开建议';var auOffMsg='关闭建议';var autoSuggestionEnabled='1';var lblMoreParts ='更多零件';var enableNewTypeAhead='1';var enableAtaTypeAhead='1';var enableAtaGATrackingEstimatedAjaxCalls='1';//]]>
  4930. </script>
  4931. <script src='../../../../../../flash/js/Plugin/jquery.autoSuggest3.js?v=3.0.20160304.2' type='text/javascript'></script><script src='../../../../../../flash/js/AutoSuggestionM3.js?v=3.0.20160304.2' type='text/javascript'></script>
  4932. <script type="text/javascript">
  4933. //<![CDATA[
  4934. maxAllowedAttributeSelection =150; currentParametricCount =0; maxSelectionAllowedPerGroupBeforeConversion =10; enableRangeLists = 1; maxWarningMessage = '由于应用的过滤条件太多,您的搜索无法完成。请去除一些选择,然后重试。';
  4935. <!-- Google Code for Conversion Page Remarketing List -->
  4936. <!--
  4937. var google_conversion_id = 1046090287;
  4938. var google_conversion_language = "en";
  4939. var google_conversion_format = "3";
  4940. var google_conversion_color = "666666";
  4941. var google_conversion_label = "9WmrCMOVxQEQr6To8gM";
  4942. var google_conversion_value = 0;
  4943. //-->
  4944. </script>
  4945. <div class="ga-remarketing">
  4946. <script type="text/javascript" src="http://www.googleadservices.com/pagead/conversion.js">
  4947. </script>
  4948. </div>
  4949. <noscript>
  4950. <div style="display:inline;">
  4951. <img height="1" width="1" style="border-style:none;" alt="" src="http://www.googleadservices.com/pagead/conversion/1046090287/?label=9WmrCMOVxQEQr6To8gM&amp;guid=ON&amp;script=0" />
  4952. </div>
  4953. </noscript>
  4954. <script type="text/javascript">
  4955. //]]>
  4956. </script>
  4957. <script type='text/javascript'>$(document).ready(function() { $(':text').blur(); });</script><script src='../../../../../../flash/js/DataTables-1.9.4/jquery.dataTables.min.js' type='text/javascript'></script><script src='../../../../../../flash/js/DataTables.js?v=3.0.20160304.2' type='text/javascript'></script><script src='../../../../../../flash/js/jquery.hoverIntent.minified.js?v=3.0.20160304.2' type='text/javascript'></script>
  4958. <script type="text/javascript">
  4959. //<![CDATA[
  4960. groupAttributeSelectionIds ='ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$1000000411^ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$688275^ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$1000000656^ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$1000000877^ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$1000000426^ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$1000000389^ctl00$ContentMain$uc5$AttributeCategoryList$ctl06$1000001066^ctl00$ContentMain$uc5$AttributeCategoryList$ctl07$1000001067^ctl00$ContentMain$uc5$AttributeCategoryList$ctl08$1000000393^ctl00$ContentMain$uc5$AttributeCategoryList$ctl09$1000000314^ctl00$ContentMain$uc5$AttributeCategoryList$ctl10$1323044^ctl00$ContentMain$uc5$AttributeCategoryList$ctl11$688606';
  4961. theForm.oldSubmit = theForm.submit;
  4962. theForm.submit = WebForm_SaveScrollPositionSubmit;
  4963. theForm.oldOnSubmit = theForm.onsubmit;
  4964. theForm.onsubmit = WebForm_SaveScrollPositionOnSubmit;
  4965. //]]>
  4966. </script>
  4967. </form>
  4968. <div id="content-container2" class="hidden">
  4969. <div id="content-fixed-width2" class="content-fixed-width">
  4970. </div>
  4971. </div>
  4972. <div id="wideFooter" class="wideFooter">
  4973. <div id="footer" class="container">
  4974. <input name="ctl00$Footer1$sb" type="hidden" id="ctl00_Footer1_sb" value="TXWEB10|20160304.2" />
  4975. <div id="ft_table1">
  4976. <div class="row">
  4977. <div class="col-xs-12">
  4978. <div id="ctl00_Footer1_pnlEmailSignup" class="ft_signup hidden-xs">
  4979. <div class="floatleft padding5right">
  4980. <strong class="h3">
  4981. 快速电子邮件注册</strong>&nbsp;&nbsp;
  4982. <input type="text" id="txtQuickSubsEmail" maxlength="48" style="width: 200px" tooltip="eMail Address" />
  4983. </div>
  4984. <a id="lnkBox" class="thickbox blue-button" onclick="return QuickSignUp();">
  4985. 提交
  4986. </a>
  4987. </div>
  4988. <div id="ft_icons" class="ft_icons">
  4989. <div id="ft_social">
  4990. <a id="ctl00_Footer1_lnkWechat" title="微信" onclick="ga(&#39;send&#39;,&#39;event&#39;,&#39;Social Media Footer Icon&#39;,&#39;Wechat&#39;,&#39;http://www.mouser.cn/wechat&#39;);" href="http://www.mouser.cn/wechat"><div id="ctl00_Footer1_imgWechat" class="ico-social wechat"></div></a>
  4991. <a id="ctl00_Footer1_lnkYouKu" title="优酷" onclick="ga(&#39;send&#39;,&#39;event&#39;,&#39;Social Media Footer Icon&#39;,&#39;YouKu&#39;,&#39;http://i.youku.com/mouserelectronics&#39;);" href="http://i.youku.com/mouserelectronics" target="_blank"><div id="ctl00_Footer1_imgYouKu" class="ico-social youku"></div></a>
  4992. <a id="ctl00_Footer1_lnkWeibo" title="新浪微博" onclick="ga(&#39;send&#39;,&#39;event&#39;,&#39;Social Media Footer Icon&#39;,&#39;Sina Weibo&#39;,&#39;http://www.weibo.com/u/2498646920&#39;);" href="http://www.weibo.com/u/2498646920" target="_blank"><div id="ctl00_Footer1_imgWeigo" class="ico-social weibo"></div></a>
  4993. <a id="ctl00_Footer1_lnkFB" title="facebook" onclick="ga(&#39;send&#39;,&#39;event&#39;,&#39;Social Media Footer Icon&#39;,&#39;facebook&#39;,&#39;http://www.facebook.com/mouserelectronics&#39;);" href="http://www.facebook.com/mouserelectronics" target="_blank">
  4994. <div class="ico-social fb"></div>
  4995. </a>
  4996. <a id="ctl00_Footer1_lnkTw" title="Twitter" onclick="ga(&#39;send&#39;,&#39;event&#39;,&#39;Social Media Footer Icon&#39;,&#39;Twitter&#39;,&#39;http://www.twitter.com/mouserelec&#39;);" href="http://www.twitter.com/mouserelec" target="_blank">
  4997. <div class="ico-social tw"></div>
  4998. </a>
  4999. <a id="ctl00_Footer1_lnkRSS" title="RSS" onclick="ga(&#39;send&#39;,&#39;event&#39;,&#39;Social Media Footer Icon&#39;,&#39;RSS&#39;,&#39;http://www.mouser.cn/rssfeeds&#39;);" href="http://www.mouser.cn/rssfeeds" target="_blank">
  5000. <div class="ico-social rss"></div>
  5001. </a>
  5002. <a id="ctl00_Footer1_lnkYT" title="YouTube" onclick="ga(&#39;send&#39;,&#39;event&#39;,&#39;Social Media Footer Icon&#39;,&#39;YouTube&#39;,&#39;http://www.youtube.com/mouserelec&#39;);" href="http://www.youtube.com/mouserelec" target="_blank">
  5003. <div class="ico-social yt"></div>
  5004. </a>
  5005. <a id="ctl00_Footer1_lnkGp" title="Google+" onclick="ga(&#39;send&#39;,&#39;event&#39;,&#39;Social Media Footer Icon&#39;,&#39;Google+&#39;,&#39;http://google.com/+MouserElec&#39;);" href="http://google.com/+MouserElec" target="_blank">
  5006. <div class="ico-social gp"></div>
  5007. </a>
  5008. <a id="ctl00_Footer1_lnkLn" title="LinkedIn" onclick="ga(&#39;send&#39;,&#39;event&#39;,&#39;Social Media Footer Icon&#39;,&#39;LinkedIn&#39;,&#39;http://www.linkedin.com/company/26041?trk=NUS_CMPY_TWIT&#39;);" href="http://www.linkedin.com/company/26041?trk=NUS_CMPY_TWIT" target="_blank">
  5009. <div class="ico-social ln"></div>
  5010. </a>
  5011. <a id="ctl00_Footer1_lnkSb" title="订阅中心" onclick="ga(&#39;send&#39;,&#39;event&#39;,&#39;Social Media Footer Icon&#39;,&#39;Subscription Center&#39;,&#39;http://www.mouser.cn/SubscriptionCenter/CreateSubscription.aspx&#39;);" href="http://www.mouser.cn/SubscriptionCenter/CreateSubscription.aspx">
  5012. <div class="ico-social sb"></div>
  5013. </a>
  5014. <a id="ctl00_Footer1_lnkBlog" title="Mouser博客" onclick="ga(&#39;send&#39;,&#39;event&#39;,&#39;Social Media Footer Icon&#39;,&#39;Mouser Blog&#39;,&#39;http://www.mouser.cn/blog&#39;);" href="http://www.mouser.cn/blog">
  5015. <div class="ico-social blog"></div>
  5016. </a>
  5017. </div>
  5018. </div>
  5019. </div>
  5020. </div>
  5021. </div>
  5022. <div id="ft_box" itemscope itemtype="http://schema.org/WPFooter">
  5023. <div class="ft_wrapper">
  5024. <div id="ft_links" class="row">
  5025. <div class="col-xs-3 paddingBtm10 hidden-xs">
  5026. <strong class="paddingTopBtm10 inline-block">
  5027. 公司</strong>
  5028. <ul>
  5029. <li>
  5030. <a id="ctl00_Footer1_lnk26" href="../../../../../../aboutus/">关于我们</a></li>
  5031. <li>
  5032. <a id="ctl00_Footer1_lnk28" href="../../../../../../educationalsales/">教育销售</a></li>
  5033. <li>
  5034. <a id="ctl00_Footer1_lnk31" href="../../../../../../pressroom/">新闻中心</a></li>
  5035. <li>
  5036. <a id="ctl00_Footer1_lnk32" href="../../../../../../careers/">Mouser 工作机会</a></li>
  5037. <li>
  5038. <a id="ctl00_Footer1_lnk29" href="../../../../../../quality/">品质保证</a></li>
  5039. <li>
  5040. <a id="ctl00_Footer1_lnk30" href="../../../../../../environmental/">环境保护</a></li>
  5041. </ul>
  5042. </div>
  5043. <div class="col-xs-3 hidden-xs">
  5044. <strong class="paddingTopBtm10 inline-block">
  5045. 快速链接</strong>
  5046. <ul>
  5047. <li><a id="A7" href="/blog">
  5048. Mouser博客</a></li>
  5049. <li>
  5050. <a id="ctl00_Footer1_hlnk1" href="../../../../../../new/">最新产品</a></li>
  5051. <li>
  5052. <a id="ctl00_Footer1_hlnk2" href="../../../../../../new/products/">新产品</a></li>
  5053. <li>
  5054. <a id="ctl00_Footer1_hlnk3" href="../../../../../../applications/">新技术</a></li>
  5055. </ul>
  5056. </div>
  5057. <div class="col-xs-12 col-sm-3">
  5058. <strong class="paddingTopBtm10 inline-block">
  5059. 支持</strong>
  5060. <ul>
  5061. <li><a id="A3" href="/feedback.aspx">
  5062. 反馈</a></li>
  5063. <li class="hidden-xs"><a id="A4" href="/Help/help.aspx">
  5064. 帮助</a></li>
  5065. <li>
  5066. <a id="ctl00_Footer1_lnk27" href="../../../../../../contact/">联系我们</a></li>
  5067. <li class="hidden-xs"><a id="A5" href="/browsersupport/">
  5068. 浏览器支持</a></li>
  5069. <li><a id="A6" href="/cookie-policy/">
  5070. Cookie政策</a></li>
  5071. </ul>
  5072. </div>
  5073. <div class="col-xs-12 col-sm-3">
  5074. <strong class="paddingTopBtm10 inline-block">
  5075. 昴氏(上海)电子贸易有限公司</strong>
  5076. <ul>
  5077. <li>
  5078. <h4>
  5079. 中国上海市长宁区娄山关路555号<br />长房国际广场办公楼2506-2510室<br />邮编200051<br/><br/>400-821-6111</h4>
  5080. </li>
  5081. </ul>
  5082. </div>
  5083. </div>
  5084. </div>
  5085. </div>
  5086. <div class="row">
  5087. <div id="ctl00_Footer1_pn1" class="ft_copy_pos2 col-xs-12 col-sm-5">
  5088. <div id="ft_copy">
  5089. <span class="ft_terms">
  5090. <a id="A1" href="/privacypolicy/">
  5091. 隐私政策</a>
  5092. &nbsp;&nbsp;|&nbsp;&nbsp;
  5093. <a id="href3" href="/saleterms/">
  5094. 销售条款</a>
  5095. <br />
  5096. </span>
  5097. <span class="ft_copyright">
  5098. 版权所有©2016 Mouser Electronics, Inc
  5099. |
  5100. 沪ICP备15042575号-1
  5101. <br />
  5102. </span>
  5103. <span class="ft_trade">
  5104. Mouser® 和 Mouser Electronics® 是 Mouser Electronics, Inc 的注册商标。
  5105. </span>
  5106. <span class="ft_hq">
  5107. Corporate headquarters and logistics center in Mansfield, Texas USA.
  5108. </span>
  5109. <br />
  5110. <span class="ft_ClassicMobile">
  5111. <strong>
  5112. <a id="ctl00_Footer1_lbtn1" class="ft-mobile" href="../../../../../../m_Home.aspx">通过移动设备查看</a></strong>
  5113. </span>
  5114. </div>
  5115. </div>
  5116. <div id="ft_cert" class="col-xs-7 align-right hidden-xs">
  5117. <a id="ctl00_Footer1_linkECIA" title="ECIA" class="ft_cert_padding ft_ecia" href="../../../../../../ecia/"><img id="ctl00_Footer1_imgECIA" src="../../../../../../Images/footer/logo-ecia_small.png" alt="ECIA" /></a>
  5118. <a id="ctl00_Footer1_linkCEDA" title="CEDA" class="ft_cert_padding ft_ceda" href="../../../../../../ecia/"><img id="ctl00_Footer1_imgCEDA" src="../../../../../../Images/footer/logo-ceda_small.png" alt="CEDA" /></a>
  5119. <a id="link" title="IESA" class="ft_cert_padding ft_ecia" href="/ecia/">
  5120. <img id="imgIESA" src="/Images/footer/logo-IESA_small.png" alt="IESA">
  5121. </a>
  5122. <a id="ctl00_Footer1_lnkSiteSecureSeal" class="ft_cert_padding ft_secure" href="https://seal.qualys.com/sealserv/info/?i=c8b29c82-965e-403b-956c-c855241927bb" target="_blank"><img id="ctl00_Footer1_imgSiteSecureSeal" oncontextmenu="javascript:alert(&#39;Copying Prohibited by Law&#39;); return false;" src="//seal.qualys.com/sealserv/seal.gif?i=c8b29c82-965e-403b-956c-c855241927bb" alt="Qualys Secure Seal" style="border-style:None;" /></a>
  5123. <a id="ctl00_Footer1_Hyperlink1" class="ft_cert_padding ft_sgs" href="http://www.sgs.gov.cn/lz/licenseLink.do?method=licenceView&amp;entyId=20120329100456493" target="_blank" style="text-decoration:none;"><img id="ctl00_Footer1_imgChinaCN2" src="../../../../../../images/footer/icon_SGS.gif" style="border-style:None;height:37px;width:45px;" />&nbsp;&nbsp;&nbsp;
  5124. </a>
  5125. </div>
  5126. <div id="ft_cert_2" class="col-xs-7 align-right hidden-xs">
  5127. <a id="ctl00_Footer1_linkNfsb" title="Customer Service Award" class="ft_cert_padding ft_award" href="../../../../../../nfsb-award/"><img id="ctl00_Footer1_imgNfsb" src="../../../../../../Images/footer/logo-nfsb_small.png" alt="Customer Service Award" /></a>
  5128. <a id="ctl00_Footer1_linkISO9001" title="ISO9001" class="ft_cert_padding ft_iso" href="../../../../../../quality/"><img id="ctl00_Footer1_imgISO9001" src="../../../../../../Images/footer/logo-ISO9001_small.png" alt="ISO9001" /></a>
  5129. <a id="ctl00_Footer1_linkAS9120A" title="AS9120A" class="ft_cert_padding ft_as9" href="../../../../../../as9100C/"><img id="ctl00_Footer1_imgAS9120A" src="../../../../../../Images/footer/logo-as9120a_small.png" alt="AS9120A" /></a>
  5130. <a id="ctl00_Footer1_linkESD2020" title="ESD" class="ft_cert_padding ft_esd" href="../../../../../../quality/"><img id="ctl00_Footer1_imgESD" src="../../../../../../Images/footer/logo-esd_small.png" alt="ESD" /></a>
  5131. </div>
  5132. </div>
  5133. <noscript><iframe src="//www.googletagmanager.com/ns.html?id=GTM-WXX6" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript><script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src='//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer','GTM-WXX6');</script>
  5134. <script type="text/javascript">
  5135. var quickSignUpUrl = 'https://sub.info.mouser.com/quick-signup-sc';
  5136. </script>
  5137. </div>
  5138. </div>
  5139. <script src="../../../../../../flash/AC_RunActiveContent.js" type="text/javascript"></script>
  5140. <script type="text/javascript">var _elqQ = _elqQ || []; _elqQ.push(['elqSetSiteId', '1742027581']); _elqQ.push(['elqTrackPageView']); _elqQ.push(['elqUseFirstPartyCookie', 'elq.mouser.cn']); (function () { function async_load() { var s = document.createElement('script'); s.type = 'text/javascript'; s.async = true; s.src = '//img03.en25.com/i/elqCfg.min.js'; var x = document.getElementsByTagName('script')[0]; x.parentNode.insertBefore(s, x); } if (window.addEventListener) window.addEventListener('DOMContentLoaded', async_load, false); else if (window.attachEvent) window.attachEvent('onload', async_load); })();</script>
  5141. </body>
  5142. </html>