19.html 393 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215
  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_16dd2c7e-91ef-4b86-979f-d0b69acd43ca-27072-324551';</script>
  34. <!-- AppInternalsXpert BMX Integration End -->
  35. <title>
  36. 数字信号处理器和控制器 - DSP, DSC | Mouser
  37. </title><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><meta id="ctl00_metaDesc" name="Description" content="目前,Mouser Electronics可供应数字信号处理器和控制器 - DSP, DSC 。Mouser提供数字信号处理器和控制器 - DSP, DSC 的库存、定价和数据表。" /><meta id="ctl00_metaKeywords" name="Keywords" content="数字信号处理器和控制器 - DSP, DSC" /><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","deHRkp5bOZBnpXE86fb2WjIjjCxAufeZVOWB+R3bRaw=",2]);_gaq.push(["_setCustomVar",31,"Cart","9a94ed0c-a843-4bd0-8d4d-f09108df77f3",2]);
  56. _gaq.push(["_setCustomVar",15,"TriColor PO1010","163AA125AA96AA68",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': '584-ADSP-BF706BCPZ-4',
  65. 'name': 'Digital Signal Processors \u0026 Controllers - DSP, DSC Low Cost sngl core BF+ w/larg int l mem',
  66. 'category': 'Digital Signal Processors \u0026 Controllers - DSP, DSC',
  67. 'brand': 'Analog Devices',
  68. 'variant': 'ADSP-BF706BCPZ-4',
  69. 'list': 'Refine',
  70. 'position': '1'
  71. });
  72. ga('ec:addImpression', {
  73. 'id': '584-ADSP-BF707BBCZ-4',
  74. 'name': 'Digital Signal Processors \u0026 Controllers - DSP, DSC Low Cost sngl core BF+w/Large int l mem',
  75. 'category': 'Digital Signal Processors \u0026 Controllers - DSP, DSC',
  76. 'brand': 'Analog Devices',
  77. 'variant': 'ADSP-BF707BBCZ-4',
  78. 'list': 'Refine',
  79. 'position': '2'
  80. });
  81. ga('ec:addImpression', {
  82. 'id': '584-ADSP-BF707KBCZ-4',
  83. 'name': 'Digital Signal Processors \u0026 Controllers - DSP, DSC Low Cost sngl core BF+w/Large int l mem',
  84. 'category': 'Digital Signal Processors \u0026 Controllers - DSP, DSC',
  85. 'brand': 'Analog Devices',
  86. 'variant': 'ADSP-BF707KBCZ-4',
  87. 'list': 'Refine',
  88. 'position': '3'
  89. });
  90. ga('ec:addImpression', {
  91. 'id': '584-ADSP-BF704BCPZ-4',
  92. 'name': 'Digital Signal Processors \u0026 Controllers - DSP, DSC Low Cost sngl core BF+ w/larg int l mem',
  93. 'category': 'Digital Signal Processors \u0026 Controllers - DSP, DSC',
  94. 'brand': 'Analog Devices',
  95. 'variant': 'ADSP-BF704BCPZ-4',
  96. 'list': 'Refine',
  97. 'position': '4'
  98. });
  99. ga('ec:addImpression', {
  100. 'id': '584-ADSP-BF706KCPZ-4',
  101. 'name': 'Digital Signal Processors \u0026 Controllers - DSP, DSC Low Cost sngl core BF+ w/larg int l mem',
  102. 'category': 'Digital Signal Processors \u0026 Controllers - DSP, DSC',
  103. 'brand': 'Analog Devices',
  104. 'variant': 'ADSP-BF706KCPZ-4',
  105. 'list': 'Refine',
  106. 'position': '5'
  107. });
  108. ga('ec:addImpression', {
  109. 'id': '584-ADSP-BF706BCPZ-3',
  110. 'name': 'Digital Signal Processors \u0026 Controllers - DSP, DSC Low Cost sngl core BF+ w/larg int l mem',
  111. 'category': 'Digital Signal Processors \u0026 Controllers - DSP, DSC',
  112. 'brand': 'Analog Devices',
  113. 'variant': 'ADSP-BF706BCPZ-3',
  114. 'list': 'Refine',
  115. 'position': '6'
  116. });
  117. ga('ec:addImpression', {
  118. 'id': '584-ADSP-BF707BBCZ-3',
  119. 'name': 'Digital Signal Processors \u0026 Controllers - DSP, DSC Low Cost sngl core BF+w/Large int l mem',
  120. 'category': 'Digital Signal Processors \u0026 Controllers - DSP, DSC',
  121. 'brand': 'Analog Devices',
  122. 'variant': 'ADSP-BF707BBCZ-3',
  123. 'list': 'Refine',
  124. 'position': '7'
  125. });
  126. ga('ec:addImpression', {
  127. 'id': '584-ADSP-CM408CSWZAF',
  128. 'name': 'Digital Signal Processors \u0026 Controllers - DSP, DSC ARM CORTEX M4 FLASH 13+ ENOB DC 240MHz',
  129. 'category': 'Digital Signal Processors \u0026 Controllers - DSP, DSC',
  130. 'brand': 'Analog Devices',
  131. 'variant': 'ADSP-CM408CSWZ-AF',
  132. 'list': 'Refine',
  133. 'position': '8'
  134. });
  135. ga('ec:addImpression', {
  136. 'id': '584-ADSP-BF706KCPZ-3',
  137. 'name': 'Digital Signal Processors \u0026 Controllers - DSP, DSC Low Cost sngl core BF+ w/larg int l mem',
  138. 'category': 'Digital Signal Processors \u0026 Controllers - DSP, DSC',
  139. 'brand': 'Analog Devices',
  140. 'variant': 'ADSP-BF706KCPZ-3',
  141. 'list': 'Refine',
  142. 'position': '9'
  143. });
  144. ga('ec:addImpression', {
  145. 'id': '584-ADSP-CM403CSWZCF',
  146. 'name': 'Digital Signal Processors \u0026 Controllers - DSP, DSC ARM CORTEX M4 FLASH 13+ ENOB DC 240MHz',
  147. 'category': 'Digital Signal Processors \u0026 Controllers - DSP, DSC',
  148. 'brand': 'Analog Devices',
  149. 'variant': 'ADSP-CM403CSWZ-CF',
  150. 'list': 'Refine',
  151. 'position': '10'
  152. });
  153. ga('ec:addImpression', {
  154. 'id': '584-ADSP-CM408CSWZBF',
  155. 'name': 'Digital Signal Processors \u0026 Controllers - DSP, DSC ARM CORTEX M4 FLASH 13+ ENOB DC 240MHz',
  156. 'category': 'Digital Signal Processors \u0026 Controllers - DSP, DSC',
  157. 'brand': 'Analog Devices',
  158. 'variant': 'ADSP-CM408CSWZ-BF',
  159. 'list': 'Refine',
  160. 'position': '11'
  161. });
  162. ga('ec:addImpression', {
  163. 'id': '584-ADSP-BF707KBCZ-3',
  164. 'name': 'Digital Signal Processors \u0026 Controllers - DSP, DSC Low Cost sngl core BF+w/Large int l mem',
  165. 'category': 'Digital Signal Processors \u0026 Controllers - DSP, DSC',
  166. 'brand': 'Analog Devices',
  167. 'variant': 'ADSP-BF707KBCZ-3',
  168. 'list': 'Refine',
  169. 'position': '12'
  170. });
  171. ga('ec:addImpression', {
  172. 'id': '584-ADSP-CM407CSWZDF',
  173. 'name': 'Digital Signal Processors \u0026 Controllers - DSP, DSC ARM CORTEX M4 FLASH 11+ ENOB DC 1500MHz',
  174. 'category': 'Digital Signal Processors \u0026 Controllers - DSP, DSC',
  175. 'brand': 'Analog Devices',
  176. 'variant': 'ADSP-CM407CSWZ-DF',
  177. 'list': 'Refine',
  178. 'position': '13'
  179. });
  180. ga('ec:addImpression', {
  181. 'id': '584-ADSP-CM402CSWZEF',
  182. 'name': 'Digital Signal Processors \u0026 Controllers - DSP, DSC ARM CORTEX M4 FLASH 11+ ENOB DC 150MHz',
  183. 'category': 'Digital Signal Processors \u0026 Controllers - DSP, DSC',
  184. 'brand': 'Analog Devices',
  185. 'variant': 'ADSP-CM402CSWZ-EF',
  186. 'list': 'Refine',
  187. 'position': '14'
  188. });
  189. ga('ec:addImpression', {
  190. 'id': '584-ADSP-CM403CSWZFF',
  191. 'name': 'Digital Signal Processors \u0026 Controllers - DSP, DSC ARM CORTEX M4 FLASH 13+ ENOB DC 100MHz',
  192. 'category': 'Digital Signal Processors \u0026 Controllers - DSP, DSC',
  193. 'brand': 'Analog Devices',
  194. 'variant': 'ADSP-CM403CSWZ-FF',
  195. 'list': 'Refine',
  196. 'position': '15'
  197. });
  198. ga('ec:addImpression', {
  199. 'id': '584-ADSP-CM407CSWZBF',
  200. 'name': 'Digital Signal Processors \u0026 Controllers - DSP, DSC ARM CORTEX M4 FLASH 11+ ENOB DC 240MHz',
  201. 'category': 'Digital Signal Processors \u0026 Controllers - DSP, DSC',
  202. 'brand': 'Analog Devices',
  203. 'variant': 'ADSP-CM407CSWZ-BF',
  204. 'list': 'Refine',
  205. 'position': '16'
  206. });
  207. ga('ec:addImpression', {
  208. 'id': '584-ADSP-CM407CSWZAF',
  209. 'name': 'Digital Signal Processors \u0026 Controllers - DSP, DSC ARM CORTEX M4 FLASH 11+ ENOB DC 240MHz',
  210. 'category': 'Digital Signal Processors \u0026 Controllers - DSP, DSC',
  211. 'brand': 'Analog Devices',
  212. 'variant': 'ADSP-CM407CSWZ-AF',
  213. 'list': 'Refine',
  214. 'position': '17'
  215. });
  216. ga('ec:addImpression', {
  217. 'id': '595-TMS320C6678ACYPA',
  218. 'name': 'Digital Signal Processors \u0026 Controllers - DSP, DSC Multicore Fix/Float Pt Dig Sig Proc',
  219. 'category': 'Digital Signal Processors \u0026 Controllers - DSP, DSC',
  220. 'brand': 'Texas Instruments',
  221. 'variant': 'TMS320C6678ACYPA',
  222. 'list': 'Refine',
  223. 'position': '18'
  224. });
  225. ga('ec:addImpression', {
  226. 'id': '841-MC56F8037VLH',
  227. 'name': 'Digital Signal Processors \u0026 Controllers - DSP, DSC 16 BIT DSPHC',
  228. 'category': 'Digital Signal Processors \u0026 Controllers - DSP, DSC',
  229. 'brand': 'NXP / Freescale',
  230. 'variant': 'MC56F8037VLH',
  231. 'list': 'Refine',
  232. 'position': '19'
  233. });
  234. ga('ec:addImpression', {
  235. 'id': '595-OMAPL137BPTPH',
  236. 'name': 'Digital Signal Processors \u0026 Controllers - DSP, DSC High Temp Low Power App Proc',
  237. 'category': 'Digital Signal Processors \u0026 Controllers - DSP, DSC',
  238. 'brand': 'Texas Instruments',
  239. 'variant': 'OMAPL137BPTPH',
  240. 'list': 'Refine',
  241. 'position': '20'
  242. });
  243. ga('ec:addImpression', {
  244. 'id': '584-ADSP21060LKSZ160',
  245. 'name': 'Digital Signal Processors \u0026 Controllers - DSP, DSC 40MHz 120 MFLOPS 5V Floating Point',
  246. 'category': 'Digital Signal Processors \u0026 Controllers - DSP, DSC',
  247. 'brand': 'Analog Devices',
  248. 'variant': 'ADSP-21060LKSZ-160',
  249. 'list': 'Refine',
  250. 'position': '21'
  251. });
  252. ga('ec:addImpression', {
  253. 'id': '595-66AK2H14BAAW24',
  254. 'name': 'Digital Signal Processors \u0026 Controllers - DSP, DSC Mulitcore DSP+ARM Keystone II SoC',
  255. 'category': 'Digital Signal Processors \u0026 Controllers - DSP, DSC',
  256. 'brand': 'Texas Instruments',
  257. 'variant': '66AK2H14BAAW24',
  258. 'list': 'Refine',
  259. 'position': '22'
  260. });
  261. ga('ec:addImpression', {
  262. 'id': '595-66AK2H12BAAWA24',
  263. 'name': 'Digital Signal Processors \u0026 Controllers - DSP, DSC Mulitcore DSP+ARM Keystone II SoC',
  264. 'category': 'Digital Signal Processors \u0026 Controllers - DSP, DSC',
  265. 'brand': 'Texas Instruments',
  266. 'variant': '66AK2H12BAAWA24',
  267. 'list': 'Refine',
  268. 'position': '23'
  269. });
  270. ga('ec:addImpression', {
  271. 'id': '579-PIC33256MU806IPT',
  272. 'name': 'Digital Signal Processors \u0026 Controllers - DSP, DSC 64P 256KB Flash 28KB RAM 60MHz USB',
  273. 'category': 'Digital Signal Processors \u0026 Controllers - DSP, DSC',
  274. 'brand': 'Microchip Technology',
  275. 'variant': 'DSPIC33EP256MU806-I/PT',
  276. 'list': 'Refine',
  277. 'position': '24'
  278. });
  279. ga('ec:addImpression', {
  280. 'id': '579-PIC33256MU810IPF',
  281. 'name': 'Digital Signal Processors \u0026 Controllers - DSP, DSC 100P 256KB Flsh 28KB RAM 60MHz USB',
  282. 'category': 'Digital Signal Processors \u0026 Controllers - DSP, DSC',
  283. 'brand': 'Microchip Technology',
  284. 'variant': 'DSPIC33EP256MU810-I/PF',
  285. 'list': 'Refine',
  286. 'position': '25'
  287. });
  288. ga('set','dimension1','zh-CN');
  289. ga('set','dimension30','deHRkp5bOZBnpXE86fb2WjIjjCxAufeZVOWB+R3bRaw=');
  290. ga('set','dimension31','9a94ed0c-a843-4bd0-8d4d-f09108df77f3');
  291. ga('set','dimension13','163AA125AA96AA68');
  292. ga('set','metric2',3753);
  293. ga('set','dimension5','Digital Signal Processors \u0026 Controllers - DSP, DSC');
  294. ga('set','dimension48','a86c0');
  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/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/?No=25" rel="next" content="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/?No=25" /><link href="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0" rel="canonical" content="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0" /><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/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="de-AT" href="http://www.mouser.at/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="en-AU" href="http://au.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="fr-BE" href="http://www.mouser.be/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="en-BG" href="http://www.mouser.bg/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="pt-BR" href="http://br.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="en-CA" href="http://ca.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="de-CH" href="http://www.mouser.ch/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="es-CL" href="http://www.mouser.cl/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="zh-Hans-CN" href="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="es-CO" href="http://co.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="es-CR" href="http://www.mouser.co.cr/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="cs-CZ" href="http://cz.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="de-DE" href="http://www.mouser.de/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="en-DK" href="http://www.mouser.dk/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="es-DO" href="http://www.mouser.do/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="es-EC" href="http://www.mouser.ec/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="en-EE" href="http://www.mouser.ee/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="es-ES" href="http://www.mouser.es/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="en-FI" href="http://www.mouser.fi/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="fr-FR" href="http://www.mouser.fr/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="en-GB" href="http://www.mouser.co.uk/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="en-GR" href="http://gr.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="es-GT" href="http://www.mouser.com.gt/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="zh-Hant-HK" href="http://www.mouser.hk/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="es-HN" href="http://www.mouser.hn/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="en-HR" href="http://hr.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="en-HU" href="http://hu.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="en-ID" href="http://www.mouser.co.id/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="en-IE" href="http://www.mouser.ie/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="en-IL" href="http://www.mouser.co.il/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="en-IN" href="http://www.mouser.in/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="it-IT" href="http://www.mouser.it/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="ja-JP" href="http://www.mouser.jp/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="ko-KR" href="http://kr.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="de-LI" href="http://www.mouser.li/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="fr-LU" href="http://www.mouser.lu/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="es-MX" href="http://www.mouser.mx/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="en-MY" href="http://my.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="nl-NL" href="http://nl.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="en-NO" href="http://no.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="en-NZ" href="http://nz.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="es-PE" href="http://www.mouser.pe/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="en-PH" href="http://www.mouser.ph/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="en-PL" href="http://pl.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="es-PR" href="http://www.mouser.pr/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="pt-PT" href="http://pt.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="en-RO" href="http://ro.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="ru-RU" href="http://ru.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="sv-SE" href="http://www.mouser.se/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="en-SG" href="http://www.mouser.sg/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="en-SK" href="http://www.mouser.sk/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="th-TH" href="http://th.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="en-TR" href="http://www.mouser.com.tr/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="zh-Hant-TW" href="http://www.mouser.tw/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="es-UY" href="http://uy.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="es-VE" href="http://ve.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="en-VN" href="http://www.mouser.vn/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="en-US" href="http://www.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="en-ZA" href="http://www.mouser.co.za/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="pt" href="http://br.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="zh-Hans" href="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="cs" href="http://cz.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="de" href="http://www.mouser.de/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="fr" href="http://www.mouser.fr/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="it" href="http://www.mouser.it/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="ja" href="http://www.mouser.jp/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="ko" href="http://kr.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="es" href="http://www.mouser.mx/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="nl" href="http://nl.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="ru" href="http://ru.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="sv" href="http://www.mouser.se/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="th" href="http://th.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="zh-Hant" href="http://www.mouser.tw/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><link rel="alternate" hreflang="en" href="http://www.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" /><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/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/" 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='17177616';
  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='17177616';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><a href="xxrrtbuu.html" style="display: none;" rel="file" id="yxezcaswaauztuaqaww">ubqtbausacydzezvysubqtb</a>
  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%252bTwQdvE13pxfphKosdXpnNn82gE7BAaTfqQJ2%2fv68NZbfhwrgjTZMD0ODKnnTYtZKYOEV6wdbwNVw6%2frlP2JVpU2aiZwXYttJ16j">更改国家</a>
  437. <a id="ctl00_gab1_A6" title="更改位置" class="tdFlag topPadding" href="http://www.mouser.cn/localsites.aspx?qs=0gZ0gv0KDwvP7WQAo8iqDRfsfSMqyvMLMMwfxyI2u5%2f4qc5ce9IXZBtQkqWv2G7D%2fzEbCxVZR9TMbhabil8UazR0wvsJ%252bTwQdvE13pxfphKosdXpnNn82gE7BAaTfqQJ2%2fv68NZbfhwrgjTZMD0ODKnnTYtZKYOEV6wdbwNVw6%2frlP2JVpU2aiZwXYttJ16j"><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 = '9a94ed0c-a843-4bd0-8d4d-f09108df77f3';
  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%252bTwQdvE13pxfphKosdXpnNn82gE7BAaTfqQJ2%2fv68NZbfhwrgjTZMD0ODKnnTYtZKYOEV6wdbwNVw6%2frlP2JVpU2aiZwXYttJ16j">登录</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;">数字信号处理器和控制器 - DSP, DSC</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> 数字信号处理器和控制器 - DSP, DSC</h1></a>
  848. <img id="ctl00_ContentMain_imageCat" class="category-img" src="../../../../../../images/DisplayCategories/17177616.png" alt="数字信号处理器和控制器 - DSP, DSC" />
  849. <!--Marketing Content-->
  850. <table id="ctl00_ContentMain_tbl5">
  851. <tr>
  852. <td>
  853. <div class="marketing-content2">
  854. <span style="font-size: 14px;"><strong>数字信号处理器和控制器(DSP &amp; DSC)</strong>,应有尽有。Mouser Electronics(贸泽电子)提供多家业界顶尖制造商的数字信号处理器&amp;控制器。Mouser Electronics(贸泽电子)是众多数字信号处理器和控制器原厂的授权分销商,其中包括Cirrus Logic、 Freescale(飞思卡尔)、 Maxim Integrated(美信)、Microchip(微芯)、NXP(恩智浦)、Texas Instruments(TI/德州仪器)......等多家知名厂商。想了解更多数字信号处理器和控制器产品,请浏览下列产品分类。</span>
  855. </div>
  856. </td>
  857. </tr>
  858. </table>
  859. <div id="ctl00_ContentMain_refinemfglogo">
  860. </div>
  861. </div><!--.category-content-->
  862. </div>
  863. </td>
  864. </tr>
  865. <tr>
  866. <td>
  867. </td>
  868. </tr>
  869. <tr>
  870. <td>
  871. <div id="refine-page2">
  872. </div>
  873. </td>
  874. </tr>
  875. </table>
  876. <div id="ctl00_ContentMain_divTabs" class="row">
  877. <div class="col-xs-12">
  878. <div id="tabsNavigation" >
  879. <ul>
  880. <li id="ctl00_ContentMain_liProductsTab" class="active">
  881. <a id="ctl00_ContentMain_liProductsLink" class="aspNetDisabled">产品<span id="ctl00_ContentMain_lblProductCount" class="item-counts">(3,753)</span></a>
  882. </li>
  883. <li id="ctl00_ContentMain_liDatasheetsTab" class="">
  884. <a id="ctl00_ContentMain_liDatasheetsLink" onclick="SendGATracking(&#39;Refine Tab Click&#39;, &#39;Datasheets&#39;, &#39;Digital Signal Processors &amp; Controllers - DSP, DSC&#39;);" href="../../Datasheets/_/N-a86c0">数据表<sup class="superscript">BETA</sup><span id="ctl00_ContentMain_lblDatasheetCount" class="item-counts">(415)</span></a>
  885. </li>
  886. <li id="ctl00_ContentMain_liImagesTab" class="">
  887. <a id="ctl00_ContentMain_liImagesLink" onclick="SendGATracking(&#39;Refine Tab Click&#39;, &#39;Images&#39;, &#39;Digital Signal Processors &amp; Controllers - DSP, DSC&#39;);" href="../../Images/_/N-a86c0">图片<sup class="superscript">BETA</sup><span id="ctl00_ContentMain_lblImagesCount" class="item-counts">(294)</span></a>
  888. </li>
  889. <li id="ctl00_ContentMain_liNewestTab" class="">
  890. <a id="ctl00_ContentMain_liNewestProdLink" onclick="SendGATracking(&#39;Refine Tab Click&#39;, &#39;Newest Products&#39;, &#39;Digital Signal Processors &amp; Controllers - DSP, DSC&#39;);" href="../../Newest-Products/_/N-a86c0">最新产品</a>
  891. </li>
  892. </ul>
  893. </div>
  894. </div>
  895. </div>
  896. <div id="tabDivs" class="tab-divs">
  897. <script type="text/javascript">
  898. //<![CDATA[
  899. Sys.WebForms.PageRequestManager._initialize('ctl00$ContentMain$ScriptManager1', 'aspnetForm', [], [], [], 90, 'ctl00');
  900. //]]>
  901. </script>
  902. <div id="ctl00_ContentMain_liProducts">
  903. <div id="refineSearchDiv">
  904. <div id="ctl00_ContentMain_pnlRefineSearchBar" class="refine-search-bar-2">
  905. <div id="refine-keyword-search-2">
  906. <div id="ctl00_ContentMain_uc2_BoxSearch" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_uc2_btnSearch&#39;)">
  907. <div id="boxPartSearch2">
  908. <table id="ctl00_ContentMain_uc2_tblSearch" class="tblSearch2">
  909. <tr>
  910. <td rowspan="3" style="vertical-align: middle">
  911. <div id="searchPartNumberBox" class="search-box" >
  912. <input name="ctl00$ContentMain$uc2$txtPartKeywordSearch" type="text" id="ctl00_ContentMain_uc2_txtPartKeywordSearch" title="物料编号/关键字" class="search-txt" />
  913. <input type="submit" name="ctl00$ContentMain$uc2$btnSearch" value="" onclick="return attributecount();" id="ctl00_ContentMain_uc2_btnSearch" title="搜索" class="searchbutton" class="Empty" />
  914. </div>
  915. </td>
  916. </tr>
  917. <tr>
  918. <td class="chk-Search">
  919. <span title="选中时,搜索将只返回库存的产品。"><input id="ctl00_ContentMain_uc2_chkStocked" type="checkbox" name="ctl00$ContentMain$uc2$chkStocked" /><label for="ctl00_ContentMain_uc2_chkStocked">有库存</label></span>
  920. </td>
  921. </tr>
  922. <tr>
  923. <td class="chk-Search">
  924. <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>
  925. </td>
  926. </tr>
  927. </table>
  928. <input type="hidden" name="ctl00$ContentMain$uc2$searchWithinResults" id="ctl00_ContentMain_uc2_searchWithinResults" value="在结果中搜索" />
  929. </div>
  930. <script type="text/javascript" src='../../../../../../flash/js/Placeholders.min.js'></script>
  931. <script type="text/javascript" src='../../../../../../flash/js/watermark.js'></script>
  932. </div>
  933. </div>
  934. <div id="refine-mfg-select-2">
  935. </div>
  936. <div class="clear">
  937. </div>
  938. <table class="SearchParametricTable2">
  939. <tr>
  940. <td>
  941. <div id="AttributesDiv2">
  942. <div id="ctl00_ContentMain_uc5_categorySearchLimitsDiv" style="padding-top: 5px;">
  943. <div class="categorySearchLimits">
  944. <div id="ctl00_ContentMain_uc5_CategorySearchLimits_pnlCategorySearchLimits">
  945. <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_chkbx17177616|Digital Signal Processors &amp; Controllers - DSP, DSC&#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_chkbx17177616|Digital Signal Processors &amp; Controllers - DSP, DSC&#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_chkbx17177616|Digital Signal Processors &amp; Controllers - DSP, DSC&#39;).checked = false;" /></span>&nbsp;<b>嵌入式处理器和控制器</b>&nbsp;&#62;&nbsp;<span title="数字信号处理器和控制器 - DSP, DSC"><input id="ctl00_ContentMain_uc5_CategorySearchLimits_chkbx17177616|Digital Signal Processors & Controllers - DSP, DSC" type="checkbox" name="ctl00$ContentMain$uc5$CategorySearchLimits$chkbx17177616|Digital Signal Processors & Controllers - DSP, DSC" 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>数字信号处理器和控制器 - DSP, DSC</b>
  946. </div>
  947. </div>
  948. <hr/>
  949. </div>
  950. <div id="ctl00_ContentMain_uc5_availableFiltersDiv">
  951. <p class="applied-filter-lbl">
  952. <span id="ctl00_ContentMain_uc5_lblAvailableFilters" class="availableFilters">可用过滤器</span>
  953. <span id="ctl00_ContentMain_uc5_lblreccount">3,753 匹配</span>
  954. &nbsp;<span id="ctl00_ContentMain_uc5_lblajaxcount" class="error"></span>
  955. </p>
  956. <div id="ctl00_ContentMain_uc5_SmartFilterDiv2" class="hidden">
  957. <input id="ctl00_ContentMain_uc5_ckSmartFilter" type="checkbox" name="ctl00$ContentMain$uc5$ckSmartFilter" />&nbsp;
  958. <span id="ctl00_ContentMain_uc5_lblSmartFilter">启用智能过滤</span>&nbsp;
  959. <img id="ctl00_ContentMain_uc5_imgSmartFilter" title="当您选择下述一个或多个参数过滤器时,智能过滤将即时禁用未选中的数值,可能导致查找不到相关结果。" class="smartFilterImg" src="../../../../../../images/icon_tooltip.png" />
  960. <br />
  961. </div>
  962. </div>
  963. <table id="tb1" style="width: 100%;">
  964. <tr>
  965. <td>
  966. <table id="ctl00_ContentMain_uc5_AttributeCategoryList" class="bottom" cellspacing="0" style="border-collapse:collapse;">
  967. <tr>
  968. <td>
  969. <table cellpadding="0" cellspacing="0">
  970. <tr>
  971. <td>
  972. <table>
  973. <tr>
  974. <td>
  975. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_lblheader" style="font-weight:bold;white-space:normal;">制造商</span>
  976. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_RangePnl">
  977. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  978. of parametric ids sent on the query string after the seo url is generated and redirected to.
  979. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  980. sorted parametric attributes from an endeca attribute group --->
  981. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_hdnRange" />
  982. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_hdnDimId" value="1000000411" />
  983. &nbsp;
  984. </div>
  985. </td>
  986. </tr>
  987. <tr>
  988. <td>
  989. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$1000000411" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_1000000411">
  990. <option value="4290538360">Analog Devices Inc.</option>
  991. <option value="4292499325">Intersil</option>
  992. <option value="4294758776">Microchip</option>
  993. <option value="4294758758">NJR</option>
  994. <option value="4294758971">NXP</option>
  995. <option value="4294759663">ON Semiconductor</option>
  996. <option value="4294005660">ROHM Semiconductor</option>
  997. <option value="4294764375">STMicroelectronics</option>
  998. <option value="4294759686">Texas Instruments</option>
  999. <option value="4294759235">ZiLOG</option>
  1000. <option value="4292495909">ZMDI</option>
  1001. </select>
  1002. </td>
  1003. </tr>
  1004. <tr>
  1005. <td>
  1006. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1007. </td>
  1008. </tr>
  1009. </table>
  1010. </td>
  1011. <td valign="bottom" style="width: 15px;">
  1012. &nbsp;
  1013. </td>
  1014. </tr>
  1015. </table>
  1016. </td><td>
  1017. <table cellpadding="0" cellspacing="0">
  1018. <tr>
  1019. <td>
  1020. <table>
  1021. <tr>
  1022. <td>
  1023. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_lblheader" style="font-weight:bold;white-space:normal;">产品</span>
  1024. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_RangePnl">
  1025. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1026. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1027. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1028. sorted parametric attributes from an endeca attribute group --->
  1029. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_hdnRange" />
  1030. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_hdnDimId" value="688640" />
  1031. &nbsp;
  1032. </div>
  1033. </td>
  1034. </tr>
  1035. <tr>
  1036. <td>
  1037. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$688640" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_688640">
  1038. <option value="4294689324">DSCs</option>
  1039. <option value="4294686863">DSPs</option>
  1040. </select>
  1041. </td>
  1042. </tr>
  1043. <tr>
  1044. <td>
  1045. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1046. </td>
  1047. </tr>
  1048. </table>
  1049. </td>
  1050. <td valign="bottom" style="width: 15px;">
  1051. &nbsp;
  1052. </td>
  1053. </tr>
  1054. </table>
  1055. </td><td>
  1056. <table cellpadding="0" cellspacing="0">
  1057. <tr>
  1058. <td>
  1059. <table>
  1060. <tr>
  1061. <td>
  1062. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_lblheader" style="font-weight:bold;white-space:normal;">核心</span>
  1063. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_RangePnl">
  1064. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1065. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1066. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1067. sorted parametric attributes from an endeca attribute group --->
  1068. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_hdnRange" />
  1069. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_hdnDimId" value="1000000656" />
  1070. &nbsp;
  1071. </div>
  1072. </td>
  1073. </tr>
  1074. <tr>
  1075. <td>
  1076. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$1000000656" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_1000000656">
  1077. <option value="4285402772">1 C54x</option>
  1078. <option value="4285400048">1 C66x</option>
  1079. <option value="4285402538">1 C67x</option>
  1080. <option value="4285399995">2 C66x</option>
  1081. <option value="4285402460">4 C54x</option>
  1082. <option value="4285400741">4 C66x</option>
  1083. <option value="4285400211">8 C66x</option>
  1084. <option value="4292835846">56000</option>
  1085. <option value="4292835848">56300</option>
  1086. <option value="4292835954">56800</option>
  1087. <option value="4292835956">56800E</option>
  1088. <option value="4288725211">-</option>
  1089. <option value="4290381540">56800EX</option>
  1090. <option value="4292568877">56F8xx</option>
  1091. <option value="4292568872">56F8xxx</option>
  1092. <option value="4277636809">ARM Cortex A8, HDVICP2</option>
  1093. <option value="4292798526">ARM Cortex M4</option>
  1094. <option value="4292764903">ARM9+C64x+DaVinci Video</option>
  1095. <option value="4290474626">ARM926</option>
  1096. <option value="4292835772">ARM926EJ-S</option>
  1097. <option value="4292852754">ARM926EJS</option>
  1098. <option value="4290561281">Blackfin</option>
  1099. <option value="4285743643">Blackfin+</option>
  1100. <option value="4292589194">C2000</option>
  1101. <option value="4285402533">C24x</option>
  1102. <option value="4292836479">C28</option>
  1103. <option value="4292795352">C28x</option>
  1104. <option value="4277596256">C50</option>
  1105. <option value="4292764882">C55x</option>
  1106. <option value="4291885595">C55x DSP</option>
  1107. <option value="4292507472">C55xDSP</option>
  1108. <option value="4292498068">C6457</option>
  1109. <option value="4271867834">C6474</option>
  1110. <option value="4292764881">C64x</option>
  1111. <option value="4292507476">C64x DSP</option>
  1112. <option value="4277596235">C6701</option>
  1113. <option value="4292561962">C672x</option>
  1114. <option value="4292833307">C674x</option>
  1115. <option value="4292823348">DSP56300</option>
  1116. <option value="4292836040">dsPIC</option>
  1117. <option value="4292570673">dsPIC DSC</option>
  1118. <option value="4292568895">dsPIC30</option>
  1119. <option value="4292568724">dSPIC33</option>
  1120. <option value="4292507461">dsPIC33E</option>
  1121. <option value="4292690483">dsPIC33EP64GP504</option>
  1122. <option value="4292690482">dsPIC33EP64GP506</option>
  1123. <option value="4292690481">dsPIC33EP64MC204</option>
  1124. <option value="4292690480">dsPIC33EP64MC206</option>
  1125. <option value="4292690479">dsPIC33EP64MC504</option>
  1126. <option value="4292690478">dsPIC33EP64MC506</option>
  1127. <option value="4292575603">dsPIC33F</option>
  1128. <option value="4290561365">Enhanced Harvard</option>
  1129. <option value="4288393899">Modified Harvard</option>
  1130. <option value="4277714847">Rcore</option>
  1131. <option value="4292839390">RISC</option>
  1132. <option value="4277716452">SC1400</option>
  1133. <option value="4292835446">SC3850</option>
  1134. <option value="4290563446">SHARC</option>
  1135. <option value="4290561232">TigerSHARC</option>
  1136. <option value="4292835893">TMS320</option>
  1137. <option value="4292566937">TMS320C28x</option>
  1138. <option value="4292588294">TMS320C55x</option>
  1139. <option value="4277651769">TMS320C55x, ARM9TDMI</option>
  1140. <option value="4292490508">TMS320C64x</option>
  1141. <option value="4290060305">TMS320C64x DSP</option>
  1142. <option value="4277647548">TMS320C64x, ARM Cortex A8</option>
  1143. <option value="4271661314">TMS320C64x, ARM926EJ-S</option>
  1144. <option value="4271409159">TMS320C66x, ARM Cortex-A15</option>
  1145. <option value="4291142695">TMS320C6745</option>
  1146. <option value="4291142693">TMS320C6747</option>
  1147. <option value="4292489622">TMS320C674x, ARM Cortex A8</option>
  1148. <option value="4277648096">TMS320C674x, ARM926EJ-S</option>
  1149. <option value="4291142744">TMS320DM816x</option>
  1150. <option value="4292686924">TMS320F28332</option>
  1151. <option value="4292686921">TMS320F28334</option>
  1152. <option value="4292836141">Z893</option>
  1153. </select>
  1154. </td>
  1155. </tr>
  1156. <tr>
  1157. <td>
  1158. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1159. </td>
  1160. </tr>
  1161. </table>
  1162. </td>
  1163. <td valign="bottom" style="width: 15px;">
  1164. &nbsp;
  1165. </td>
  1166. </tr>
  1167. </table>
  1168. </td><td>
  1169. <table cellpadding="0" cellspacing="0">
  1170. <tr>
  1171. <td>
  1172. <table>
  1173. <tr>
  1174. <td>
  1175. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_lblheader" style="font-weight:bold;white-space:normal;">最大时钟频率</span>
  1176. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_RangePnl">
  1177. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1178. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1179. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1180. sorted parametric attributes from an endeca attribute group --->
  1181. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_hdnRange" />
  1182. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_hdnDimId" value="1000000389" />
  1183. &nbsp;
  1184. </div>
  1185. </td>
  1186. </tr>
  1187. <tr>
  1188. <td>
  1189. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$1000000389" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_1000000389">
  1190. <option value="4290606185">1 kHz</option>
  1191. <option value="4291793135">32 kHz</option>
  1192. <option value="4290604418">50 kHz</option>
  1193. <option value="4277714845">1.28 MHz</option>
  1194. <option value="4294425050">7.37 MHz</option>
  1195. <option value="4291088707">7.37 MHz, 32 kHz</option>
  1196. <option value="4273581944">8.8 MHz</option>
  1197. <option value="4294459669">15 MHz</option>
  1198. <option value="4294604783">20 MHz</option>
  1199. <option value="4294604721">30 MHz</option>
  1200. <option value="4294592370">30 MIPS</option>
  1201. <option value="4294601667">32 MHz</option>
  1202. <option value="4294604686">33 MHz</option>
  1203. <option value="4292900333">38 MHz</option>
  1204. <option value="4294604597">40 MHz</option>
  1205. <option value="4292512093">44 MHz</option>
  1206. <option value="4294604169">50 MHz</option>
  1207. <option value="4290561313">52 MHz</option>
  1208. <option value="4294594310">57 MHz</option>
  1209. <option value="4294602402">60 MHz</option>
  1210. <option value="4294601659">66 MHz</option>
  1211. <option value="4294587949">70 MHz</option>
  1212. <option value="4294601046">75 MHz</option>
  1213. <option value="4294601678">80 MHz</option>
  1214. <option value="4294601742">100 MHz</option>
  1215. <option value="4294441532">108 MHz</option>
  1216. <option value="4294594305">117.96 MHz</option>
  1217. <option value="4294604810">120 MHz</option>
  1218. <option value="4294025374">125 MHz</option>
  1219. <option value="4294600464">133 MHz</option>
  1220. <option value="4294592942">135 MHz</option>
  1221. <option value="4279320211">149.33 MHz</option>
  1222. <option value="4294601681">150 MHz</option>
  1223. <option value="4294595144">160 MHz</option>
  1224. <option value="4294594376">167 MHz</option>
  1225. <option value="4294594298">173 MHz</option>
  1226. <option value="4292840006">181 MHz</option>
  1227. <option value="4294601703">200 MHz</option>
  1228. <option value="4276852760">216 MHz</option>
  1229. <option value="4294601665">220 MHz</option>
  1230. <option value="4294594290">225 MHz</option>
  1231. <option value="4294594301">233 MHz</option>
  1232. <option value="4294601663">240 MHz</option>
  1233. <option value="4294596905">250 MHz</option>
  1234. <option value="4294601693">266 MHz</option>
  1235. <option value="4294441309">270 MHz</option>
  1236. <option value="4294601650">275 MHz</option>
  1237. <option value="4294601698">300 MHz</option>
  1238. <option value="4294601690">333 MHz</option>
  1239. <option value="4292564934">340 MHz</option>
  1240. <option value="4292511254">345 MHz</option>
  1241. <option value="4294601704">350 MHz</option>
  1242. <option value="4294436804">375 MHz</option>
  1243. <option value="4277592490">375 MHz, 375 MHz</option>
  1244. <option value="4294601664">400 MHz</option>
  1245. <option value="4292589516">432 MHz</option>
  1246. <option value="4294595572">450 MHz</option>
  1247. <option value="4269091436">450 MHz, 1 GHz</option>
  1248. <option value="4292753117">456 MHz</option>
  1249. <option value="4277592489">456 MHz, 456 MHz</option>
  1250. <option value="4294594380">500 MHz</option>
  1251. <option value="4271475827">500 MHz, 600 MHz</option>
  1252. <option value="4285400928">500 MHz, 625 MHz, 700 MHz</option>
  1253. <option value="4271541760">513 MHz, 256 MHz</option>
  1254. <option value="4294593015">533 MHz</option>
  1255. <option value="4271661312">594 MHz, 297 MHz</option>
  1256. <option value="4294594355">600 MHz</option>
  1257. <option value="4271475826">600 MHz, 1 GHz</option>
  1258. <option value="4271477045">600 MHz, 720 MHz</option>
  1259. <option value="4292900255">660 MHz</option>
  1260. <option value="4294028037">700 MHz</option>
  1261. <option value="4271477044">700 MHz, 1 GHz</option>
  1262. <option value="4294594295">720 MHz</option>
  1263. <option value="4277636806">720 MHz, 290 MHz</option>
  1264. <option value="4271483081">729 MHz, 364.5 MHz</option>
  1265. <option value="4271477043">750 MHz, 1 GHz</option>
  1266. <option value="4271416258">750 MHz, 930 MHz</option>
  1267. <option value="4294406333">800 MHz</option>
  1268. <option value="4277647546">800 MHz, 1 GHz</option>
  1269. <option value="4277647399">800 MHz, 800 MHz</option>
  1270. <option value="4294594367">850 MHz</option>
  1271. <option value="4285401678">850 MHz, 1000 MHz, 1200 MHz</option>
  1272. <option value="4294590736">900 MHz</option>
  1273. <option value="4271415770">930 MHz, 1.1 GHz</option>
  1274. <option value="4277636535">970 MHz, 410 MHz</option>
  1275. <option value="4294588405">1 GHz</option>
  1276. <option value="4271412874">1 GHz, 1.2 GHz</option>
  1277. <option value="4277636534">1 GHz, 450 MHz</option>
  1278. <option value="4294594365">1000 MHz</option>
  1279. <option value="4285400738">1000 MHz, 1200 MHz</option>
  1280. <option value="4285400209">1000 MHz, 1250 MHz</option>
  1281. <option value="4285399992">1000 MHz, 1250 MHz, 1500 MHz</option>
  1282. <option value="4292856852">1.2 GHz</option>
  1283. <option value="4271409154">1.2 GHz / 1.4 GHz</option>
  1284. <option value="4292498067">1.2 GHz, 1 GHz, 0.85 GHz</option>
  1285. <option value="4291142742">1.35 GHz</option>
  1286. <option value="4285878666">-</option>
  1287. </select>
  1288. </td>
  1289. </tr>
  1290. <tr>
  1291. <td>
  1292. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1293. </td>
  1294. </tr>
  1295. </table>
  1296. </td>
  1297. <td valign="bottom" style="width: 15px;">
  1298. &nbsp;
  1299. </td>
  1300. </tr>
  1301. </table>
  1302. </td><td>
  1303. <table cellpadding="0" cellspacing="0">
  1304. <tr>
  1305. <td>
  1306. <table>
  1307. <tr>
  1308. <td>
  1309. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_lblheader" style="font-weight:bold;white-space:normal;">L1缓存指令存储器</span>
  1310. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_RangePnl">
  1311. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1312. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1313. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1314. sorted parametric attributes from an endeca attribute group --->
  1315. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_hdnRange" />
  1316. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_hdnDimId" value="1000001066" />
  1317. &nbsp;
  1318. </div>
  1319. </td>
  1320. </tr>
  1321. <tr>
  1322. <td>
  1323. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$1000001066" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_1000001066">
  1324. <option value="4276869825">16 kB</option>
  1325. <option value="4271725994">16 kB, 32 kB</option>
  1326. <option value="4276869070">24 kB, 16 kB</option>
  1327. <option value="4276869088">32 kB</option>
  1328. <option value="4276865745">32 kB, 16 kB</option>
  1329. <option value="4276864345">32 kB, 32 kB</option>
  1330. <option value="4276869052">64 kB</option>
  1331. <option value="4276853428">80 kB</option>
  1332. <option value="4276869908">-</option>
  1333. </select>
  1334. </td>
  1335. </tr>
  1336. <tr>
  1337. <td>
  1338. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1339. </td>
  1340. </tr>
  1341. </table>
  1342. </td>
  1343. <td valign="bottom" style="width: 15px;">
  1344. &nbsp;
  1345. </td>
  1346. </tr>
  1347. </table>
  1348. </td><td>
  1349. <table cellpadding="0" cellspacing="0">
  1350. <tr>
  1351. <td>
  1352. <table>
  1353. <tr>
  1354. <td>
  1355. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_lblheader" style="font-weight:bold;white-space:normal;">L1缓存数据存储器</span>
  1356. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_RangePnl">
  1357. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1358. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1359. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1360. sorted parametric attributes from an endeca attribute group --->
  1361. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_hdnRange" />
  1362. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_hdnDimId" value="1000001067" />
  1363. &nbsp;
  1364. </div>
  1365. </td>
  1366. </tr>
  1367. <tr>
  1368. <td>
  1369. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$1000001067" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_1000001067">
  1370. <option value="4276869822">8 kB</option>
  1371. <option value="4276869826">16 kB</option>
  1372. <option value="4276869089">32 kB</option>
  1373. <option value="4276865746">32 kB, 16 kB</option>
  1374. <option value="4276855182">32 kB, 32 kB</option>
  1375. <option value="4271483977">32 kB, 8 kB</option>
  1376. <option value="4276854279">64 kB</option>
  1377. <option value="4271597867">80 kB</option>
  1378. <option value="4276864346">80 kB, 32 kB</option>
  1379. <option value="4275209139">80 kB, 8 kB</option>
  1380. <option value="4276869909">-</option>
  1381. </select>
  1382. </td>
  1383. </tr>
  1384. <tr>
  1385. <td>
  1386. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1387. </td>
  1388. </tr>
  1389. </table>
  1390. </td>
  1391. <td valign="bottom" style="width: 15px;">
  1392. &nbsp;
  1393. </td>
  1394. </tr>
  1395. </table>
  1396. </td><td>
  1397. <table cellpadding="0" cellspacing="0">
  1398. <tr>
  1399. <td>
  1400. <table>
  1401. <tr>
  1402. <td>
  1403. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_lblheader" style="font-weight:bold;white-space:normal;">程序存储器大小</span>
  1404. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_RangePnl">
  1405. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1406. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1407. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1408. sorted parametric attributes from an endeca attribute group --->
  1409. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl06$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_hdnRange" />
  1410. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl06$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_hdnDimId" value="1000000128" />
  1411. &nbsp;
  1412. </div>
  1413. </td>
  1414. </tr>
  1415. <tr>
  1416. <td>
  1417. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl06$1000000128" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_1000000128">
  1418. <option value="4288143080">1 k</option>
  1419. <option value="4288139933">4 k Words</option>
  1420. <option value="4291132839">4 kB</option>
  1421. <option value="4288834158">6 kB</option>
  1422. <option value="4288139931">8 k Words</option>
  1423. <option value="4291793133">8 kB</option>
  1424. <option value="4288139783">9 kB</option>
  1425. <option value="4291121825">12 kB</option>
  1426. <option value="4288139935">13 kB</option>
  1427. <option value="4291122345">14 kB</option>
  1428. <option value="4288139936">16 k Words</option>
  1429. <option value="4291962342">16 kB</option>
  1430. <option value="4291121824">24 kB</option>
  1431. <option value="4288139929">32 k Words</option>
  1432. <option value="4291883615">32 kB</option>
  1433. <option value="4288139927">48 k Words</option>
  1434. <option value="4291132029">48 kB</option>
  1435. <option value="4288141497">52 kB</option>
  1436. <option value="4288142588">54 kB</option>
  1437. <option value="4292005690">64 kB</option>
  1438. <option value="4288833786">66 kB</option>
  1439. <option value="4289776334">68 kB</option>
  1440. <option value="4288142029">84 kB</option>
  1441. <option value="4291132427">96 kB</option>
  1442. <option value="4288141932">100 kB</option>
  1443. <option value="4294594307">112 KB</option>
  1444. <option value="4288142554">116 kB</option>
  1445. <option value="4288146260">120 kB</option>
  1446. <option value="4291962314">128 kB</option>
  1447. <option value="4288833785">132 kB</option>
  1448. <option value="4288834156">144 kB</option>
  1449. <option value="4288139924">148 kB</option>
  1450. <option value="4290318730">192 kB</option>
  1451. <option value="4288141760">196 kB</option>
  1452. <option value="4291962182">256 kB</option>
  1453. <option value="4288139921">260 kB</option>
  1454. <option value="4290318101">280 kB</option>
  1455. <option value="4288139753">296 kB</option>
  1456. <option value="4288139923">308 kB</option>
  1457. <option value="4288374400">320 kB</option>
  1458. <option value="4287837694">324 kB</option>
  1459. <option value="4291122514">384 kB</option>
  1460. <option value="4290561351">0.5 MB</option>
  1461. <option value="4291929576">512 kB</option>
  1462. <option value="4290318099">536 kB</option>
  1463. <option value="4294604108">1 MB</option>
  1464. <option value="4271409156">1.024 MB, 4 MB</option>
  1465. <option value="4294604142">2 MB</option>
  1466. <option value="4288142569">2048 kB</option>
  1467. <option value="4292904755">3 MB</option>
  1468. <option value="4271867828">3.125 MB</option>
  1469. <option value="4294586345">4 MB</option>
  1470. <option value="4290561326">5 MB</option>
  1471. <option value="4292476617">6 MB</option>
  1472. <option value="4290561225">12 MB</option>
  1473. <option value="4292589708">16 MB</option>
  1474. <option value="4287494988">16 Mbit</option>
  1475. <option value="4285709560">-</option>
  1476. </select>
  1477. </td>
  1478. </tr>
  1479. <tr>
  1480. <td>
  1481. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1482. </td>
  1483. </tr>
  1484. </table>
  1485. </td>
  1486. <td valign="bottom" style="width: 15px;">
  1487. &nbsp;
  1488. </td>
  1489. </tr>
  1490. </table>
  1491. </td><td>
  1492. <table cellpadding="0" cellspacing="0">
  1493. <tr>
  1494. <td>
  1495. <table>
  1496. <tr>
  1497. <td>
  1498. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl07_lblheader" style="font-weight:bold;white-space:normal;">数据 RAM 大小</span>
  1499. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl07_RangePnl">
  1500. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1501. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1502. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1503. sorted parametric attributes from an endeca attribute group --->
  1504. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl07$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl07_hdnRange" />
  1505. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl07$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl07_hdnDimId" value="1000000048" />
  1506. &nbsp;
  1507. </div>
  1508. </td>
  1509. </tr>
  1510. <tr>
  1511. <td>
  1512. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl07$1000000048" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl07_1000000048">
  1513. <option value="4287814501">32 K</option>
  1514. <option value="4294604650">256 B</option>
  1515. <option value="4294602362">512 B</option>
  1516. <option value="4291132562">1 kB</option>
  1517. <option value="4294602389">1024 B</option>
  1518. <option value="4292854443">1088 B</option>
  1519. <option value="4292005691">2 kB</option>
  1520. <option value="4294600585">2048 B</option>
  1521. <option value="4288139934">4 k Words</option>
  1522. <option value="4291131872">4 kB</option>
  1523. <option value="4294594906">4096 B</option>
  1524. <option value="4288146259">5 kB</option>
  1525. <option value="4291132428">6 kB</option>
  1526. <option value="4288139932">8 k Words</option>
  1527. <option value="4291962331">8 kB</option>
  1528. <option value="4294597916">8192 B</option>
  1529. <option value="4288146254">9 kB</option>
  1530. <option value="4292786760">9280 B</option>
  1531. <option value="4291121858">10 kB</option>
  1532. <option value="4291132210">12 kB</option>
  1533. <option value="4288139937">16 k Words</option>
  1534. <option value="4291132513">16 kB</option>
  1535. <option value="4290199546">20 kB</option>
  1536. <option value="4277596255">20.06 kB</option>
  1537. <option value="4292854438">20544 B</option>
  1538. <option value="4291122515">24 kB</option>
  1539. <option value="4288143092">26 kB</option>
  1540. <option value="4291122513">28 kB</option>
  1541. <option value="4290198821">30 kB</option>
  1542. <option value="4288139930">32 k Words</option>
  1543. <option value="4291962183">32 kB</option>
  1544. <option value="4288142124">34 kB</option>
  1545. <option value="4288143513">36 kB</option>
  1546. <option value="4288143512">40 kB</option>
  1547. <option value="4288374401">42 kB</option>
  1548. <option value="4277714846">43.188 kB</option>
  1549. <option value="4288139926">48 k Words</option>
  1550. <option value="4291687586">48 kB</option>
  1551. <option value="4290318100">52 kB</option>
  1552. <option value="4288142589">54 kB</option>
  1553. <option value="4288139928">56 k Words</option>
  1554. <option value="4292703019">64 kB</option>
  1555. <option value="4291132847">68 kB</option>
  1556. <option value="4288146261">69 kB</option>
  1557. <option value="4288143659">80 kB</option>
  1558. <option value="4292703017">128 kB</option>
  1559. <option value="4288143079">136 kB</option>
  1560. <option value="4288143063">192 kB</option>
  1561. <option value="4288141415">196 kB</option>
  1562. <option value="4291929580">256 kB</option>
  1563. <option value="4288141520">260 kB</option>
  1564. <option value="4288142590">264 kB</option>
  1565. <option value="4288143511">320 kB</option>
  1566. <option value="4277651768">352 kB</option>
  1567. <option value="4288146256">384 kB</option>
  1568. <option value="4289774181">512 kB</option>
  1569. <option value="4288141519">516 kB</option>
  1570. <option value="4288143064">544 kB</option>
  1571. <option value="4277707472">544 kbit</option>
  1572. <option value="4288146257">576 kB</option>
  1573. <option value="4288141697">640 kB</option>
  1574. <option value="4287495313">768 kB</option>
  1575. <option value="4288143065">896 kB</option>
  1576. <option value="4294441843">1 MB</option>
  1577. <option value="4277707478">1 Mbit</option>
  1578. <option value="4288142576">1024 kB</option>
  1579. <option value="4288143060">1280 kB</option>
  1580. <option value="4290699613">1.5 MB</option>
  1581. <option value="4294575681">2 MB</option>
  1582. <option value="4277707475">2 Mbit</option>
  1583. <option value="4290561229">3 MB</option>
  1584. <option value="4289188812">3 Mbit</option>
  1585. <option value="4290561360">4 MB</option>
  1586. <option value="4277758325">4 Mbit</option>
  1587. <option value="4285400047">4.5 MB</option>
  1588. <option value="4285399994">5 MB</option>
  1589. <option value="4282466550">5 Mbit</option>
  1590. <option value="4285400740">6 MB</option>
  1591. <option value="4292511669">8 MB</option>
  1592. <option value="4294592646">16 MB</option>
  1593. <option value="4277707443">24 Mbit</option>
  1594. </select>
  1595. </td>
  1596. </tr>
  1597. <tr>
  1598. <td>
  1599. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl07_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1600. </td>
  1601. </tr>
  1602. </table>
  1603. </td>
  1604. <td valign="bottom" style="width: 15px;">
  1605. &nbsp;
  1606. </td>
  1607. </tr>
  1608. </table>
  1609. </td><td>
  1610. <table cellpadding="0" cellspacing="0">
  1611. <tr>
  1612. <td>
  1613. <table>
  1614. <tr>
  1615. <td>
  1616. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl08_lblheader" style="font-weight:bold;white-space:normal;">工作电源电压</span>
  1617. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl08_RangePnl">
  1618. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1619. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1620. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1621. sorted parametric attributes from an endeca attribute group --->
  1622. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl08$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl08_hdnRange" />
  1623. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl08$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl08_hdnDimId" value="1000000393" />
  1624. &nbsp;
  1625. </div>
  1626. </td>
  1627. </tr>
  1628. <tr>
  1629. <td>
  1630. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl08$1000000393" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl08_1000000393">
  1631. <option value="4271409158">800 mV, 1.1 V</option>
  1632. <option value="4277636804">830 mV to 1.35 V</option>
  1633. <option value="4285400737">900 mV to 1.1 V</option>
  1634. <option value="4271867829">900 mV to 1.2 V</option>
  1635. <option value="4294595635">1 V</option>
  1636. <option value="4282466424">1 V to 1.15 V, 3.3 V</option>
  1637. <option value="4269090199">1 V, 1.1 V, 1.2 V, 1.3 V</option>
  1638. <option value="4294593038">1.05 V</option>
  1639. <option value="4291256625">1.05 V to 1.16 V</option>
  1640. <option value="4292588293">1.05 V to 3.3 V</option>
  1641. <option value="4294440962">1.05 V, 1.2 V</option>
  1642. <option value="4292786463">1.05 V, 1.2 V, 1.8 V, 3.3 V</option>
  1643. <option value="4292785994">1.05 V, 1.8 V, 3.3 V</option>
  1644. <option value="4294593073">1.1 V</option>
  1645. <option value="4290561280">1.1 V to 1.47 V</option>
  1646. <option value="4289875807">1.1 V, 1.2 V, 3.3 V</option>
  1647. <option value="4292785980">1.1 V, 1.8 V</option>
  1648. <option value="4292785945">1.1 V, 1.8 V, 3.3 V</option>
  1649. <option value="4292786749">1.1 V, 3.3 V</option>
  1650. <option value="4277647545">1.14 V</option>
  1651. <option value="4294592437">1.14 V to 1.26 V</option>
  1652. <option value="4292574788">1.14 V to 1.32 V</option>
  1653. <option value="4294604096">1.2 V</option>
  1654. <option value="4292786742">1.2 V, 1.26 V</option>
  1655. <option value="4292795332">1.2 V, 1.8 V, 3.3 V</option>
  1656. <option value="4292524456">1.2 V, 2.5 V, 3.3 V</option>
  1657. <option value="4292795339">1.2 V, 3.3 V</option>
  1658. <option value="4291885594">1.24 V to 1.43 V</option>
  1659. <option value="4294594379">1.25 V</option>
  1660. <option value="4292561959">1.25 V to 1.35 V</option>
  1661. <option value="4288262863">1.25 V, 1.8 V, 3.3 V</option>
  1662. <option value="4292755149">1.25 V, 2.5 V, 3.3 V</option>
  1663. <option value="4292786673">1.25 V, 3.3 V</option>
  1664. <option value="4294594374">1.26 V</option>
  1665. <option value="4292786735">1.26 V, 3.3 V</option>
  1666. <option value="4294629310">1.3 V</option>
  1667. <option value="4292507468">1.3 V, 1.8 V, 2.5 V, 2.75 V, 3.3 V</option>
  1668. <option value="4292507471">1.3 V, 2.5 V, 2.75 V, 3.3 V</option>
  1669. <option value="4292727415">1.35 V</option>
  1670. <option value="4294594354">1.4 V</option>
  1671. <option value="4292789701">1.4 V, 3.3 V</option>
  1672. <option value="4294629384">1.5 V</option>
  1673. <option value="4292554593">1.5 V, 1.8 V, 3.3 V</option>
  1674. <option value="4292792931">1.5 V, 3.3 V</option>
  1675. <option value="4294629295">1.6 V</option>
  1676. <option value="4292865793">1.6 V, 1.35 V, 1.2 V</option>
  1677. <option value="4292894083">1.6 V, 3.3 V</option>
  1678. <option value="4292786753">1.7 V, 3.3 V</option>
  1679. <option value="4292580868">1.71 V to 1.89 V</option>
  1680. <option value="4294604809">1.8 V</option>
  1681. <option value="4285732700">1.8 V, 2.5 V, 2.75 V, 3.3 V</option>
  1682. <option value="4294593605">1.8 V, 2.5 V, 3.3 V</option>
  1683. <option value="4293987368">1.8 V, 3.3 V</option>
  1684. <option value="4271409155">1.8 V, 950 mV</option>
  1685. <option value="4294595146">1.9 V</option>
  1686. <option value="4292686923">1.9 V to 3.3 V</option>
  1687. <option value="4292795350">1.9 V, 3.3 V</option>
  1688. <option value="4294590970">2.25 V to 3.6 V</option>
  1689. <option value="4290573595">2.37 V to 2.63 V</option>
  1690. <option value="4294627904">2.5 V</option>
  1691. <option value="4294627930">2.5 V to 5.5 V</option>
  1692. <option value="4294592120">2.5 V, 3.3 V</option>
  1693. <option value="4294627748">2.7 V to 3.6 V</option>
  1694. <option value="4294627811">2.95 V to 3.6 V</option>
  1695. <option value="4294629911">3 V to 3.6 V</option>
  1696. <option value="4294629160">3 V to 5.5 V</option>
  1697. <option value="4294629989">3.3 V</option>
  1698. <option value="4294594351">3.3 V, 5 V</option>
  1699. <option value="4294629970">3.6 V</option>
  1700. <option value="4292764416">3.6 V, 3.9 V</option>
  1701. <option value="4294630355">4.5 V to 5.5 V</option>
  1702. <option value="4294628563">4.75 V to 5.25 V</option>
  1703. <option value="4294630592">5 V</option>
  1704. <option value="4294629993">5.5 V</option>
  1705. <option value="4292764422">5.5 V, 5.8 V</option>
  1706. </select>
  1707. </td>
  1708. </tr>
  1709. <tr>
  1710. <td>
  1711. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl08_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1712. </td>
  1713. </tr>
  1714. </table>
  1715. </td>
  1716. <td valign="bottom" style="width: 15px;">
  1717. &nbsp;
  1718. </td>
  1719. </tr>
  1720. </table>
  1721. </td><td>
  1722. <table cellpadding="0" cellspacing="0">
  1723. <tr>
  1724. <td>
  1725. <table>
  1726. <tr>
  1727. <td>
  1728. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl09_lblheader" style="font-weight:bold;white-space:normal;">最大工作温度</span>
  1729. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl09_RangePnl">
  1730. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl09_lnklesseq" title="Select less or equal values." class="lesseq">&#8804;</a>
  1731. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl09_lnkgreatereq" title="Select greater or equal values." class="greatereq">&#8805;</a>
  1732. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1733. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1734. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1735. sorted parametric attributes from an endeca attribute group --->
  1736. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl09$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl09_hdnRange" />
  1737. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl09$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl09_hdnDimId" value="1000000314" />
  1738. </div>
  1739. </td>
  1740. </tr>
  1741. <tr>
  1742. <td>
  1743. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl09$1000000314" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl09_1000000314">
  1744. <option value="4294574814">+ 55 C</option>
  1745. <option value="4294629996">+ 70 C</option>
  1746. <option value="4294630005">+ 85 C</option>
  1747. <option value="4294575688">+ 90 C</option>
  1748. <option value="4294031282">+ 95 C</option>
  1749. <option value="4294629968">+ 100 C</option>
  1750. <option value="4294568129">+ 105 C</option>
  1751. <option value="4294592637">+ 110 C</option>
  1752. <option value="4294441852">+ 115 C</option>
  1753. <option value="4294631245">+ 125 C</option>
  1754. <option value="4294575997">+ 140 C</option>
  1755. <option value="4294630283">+ 150 C</option>
  1756. <option value="4293982691">+ 210 C</option>
  1757. <option value="4293988085">+ 220 C</option>
  1758. </select>
  1759. </td>
  1760. </tr>
  1761. <tr>
  1762. <td>
  1763. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl09_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1764. </td>
  1765. </tr>
  1766. </table>
  1767. </td>
  1768. <td valign="bottom" style="width: 15px;">
  1769. &nbsp;
  1770. </td>
  1771. </tr>
  1772. </table>
  1773. </td><td>
  1774. <table cellpadding="0" cellspacing="0">
  1775. <tr>
  1776. <td>
  1777. <table>
  1778. <tr>
  1779. <td>
  1780. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl10_lblheader" style="font-weight:bold;white-space:normal;">安装风格</span>
  1781. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl10_RangePnl">
  1782. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1783. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1784. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1785. sorted parametric attributes from an endeca attribute group --->
  1786. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl10$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl10_hdnRange" />
  1787. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl10$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl10_hdnDimId" value="1323044" />
  1788. &nbsp;
  1789. </div>
  1790. </td>
  1791. </tr>
  1792. <tr>
  1793. <td>
  1794. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl10$1323044" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl10_1323044">
  1795. <option value="4294741457">SMD/SMT</option>
  1796. <option value="4294739373">Through Hole</option>
  1797. </select>
  1798. </td>
  1799. </tr>
  1800. <tr>
  1801. <td>
  1802. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl10_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1803. </td>
  1804. </tr>
  1805. </table>
  1806. </td>
  1807. <td valign="bottom" style="width: 15px;">
  1808. &nbsp;
  1809. </td>
  1810. </tr>
  1811. </table>
  1812. </td><td>
  1813. <table cellpadding="0" cellspacing="0">
  1814. <tr>
  1815. <td>
  1816. <table>
  1817. <tr>
  1818. <td>
  1819. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl11_lblheader" style="font-weight:bold;white-space:normal;">封装 / 箱体</span>
  1820. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl11_RangePnl">
  1821. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1822. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1823. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1824. sorted parametric attributes from an endeca attribute group --->
  1825. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl11$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl11_hdnRange" />
  1826. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl11$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl11_hdnDimId" value="688606" />
  1827. &nbsp;
  1828. </div>
  1829. </td>
  1830. </tr>
  1831. <tr>
  1832. <td>
  1833. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl11$688606" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl11_688606">
  1834. <option value="4294694469">BGA</option>
  1835. <option value="4287878231">BGA-100 Microstar</option>
  1836. <option value="4268795989">BGA-1089</option>
  1837. <option value="4290561344">BGA-136</option>
  1838. <option value="4294688763">BGA-144</option>
  1839. <option value="4287878194">BGA-144 Microstar</option>
  1840. <option value="4294675826">BGA-160</option>
  1841. <option value="4294670667">BGA-168</option>
  1842. <option value="4294672631">BGA-169</option>
  1843. <option value="4287878182">BGA-169 Microstar</option>
  1844. <option value="4294675588">BGA-176</option>
  1845. <option value="4287878230">BGA-179 Microstar</option>
  1846. <option value="4290561249">BGA-182</option>
  1847. <option value="4292995062">BGA-184</option>
  1848. <option value="4294677007">BGA-196</option>
  1849. <option value="4287878209">BGA-201 Microstar</option>
  1850. <option value="4294649446">BGA-208</option>
  1851. <option value="4288440382">BGA-212</option>
  1852. <option value="4292986877">BGA-225</option>
  1853. <option value="4287878229">BGA-240 Microstar</option>
  1854. <option value="4294680905">BGA-256</option>
  1855. <option value="4290561271">BGA-260</option>
  1856. <option value="4294675883">BGA-272</option>
  1857. <option value="4287878254">BGA-288 Microstar</option>
  1858. <option value="4294677008">BGA-289</option>
  1859. <option value="4290561235">BGA-297</option>
  1860. <option value="4290561242">BGA-316</option>
  1861. <option value="4294671333">BGA-324</option>
  1862. <option value="4294668919">BGA-337</option>
  1863. <option value="4289624121">BGA-349</option>
  1864. <option value="4294672634">BGA-361</option>
  1865. <option value="4294670786">BGA-376</option>
  1866. <option value="4292908022">BGA-400</option>
  1867. <option value="4290391561">BGA-419</option>
  1868. <option value="4294675857">BGA-484</option>
  1869. <option value="4287878205">BGA-548</option>
  1870. <option value="4287877942">BGA-561</option>
  1871. <option value="4290561228">BGA-576</option>
  1872. <option value="4290391567">BGA-609</option>
  1873. <option value="4290561231">BGA-625</option>
  1874. <option value="4275051915">BGA-Microstar-169</option>
  1875. <option value="4275052485">BGA-Microstar-201</option>
  1876. <option value="4275047096">BGA-Microstar-205</option>
  1877. <option value="4275053025">BGA-Microstar-240</option>
  1878. <option value="4275052497">BGA-Microstar-288</option>
  1879. <option value="4294686326">BQFP-132</option>
  1880. <option value="4294649480">CABGA</option>
  1881. <option value="4292508016">CFP-172</option>
  1882. <option value="4289875678">CFP-256</option>
  1883. <option value="4292767677">CPGA-181</option>
  1884. <option value="4292863726">CPGA-325</option>
  1885. <option value="4287878189">CPGA-68</option>
  1886. <option value="4294671686">CQFP-240</option>
  1887. <option value="4286005709">CQFP-308</option>
  1888. <option value="4290539897">CSP-BGA</option>
  1889. <option value="4278717639">CSPBGA-316</option>
  1890. <option value="4294459363">Die</option>
  1891. <option value="4294688765">DIP-28</option>
  1892. <option value="4294688811">DIP-40</option>
  1893. <option value="4294441840">FC/CSP-384</option>
  1894. <option value="4294668920">FC/CSP-532</option>
  1895. <option value="4287547210">FC/CSP-548</option>
  1896. <option value="4287546338">FC/CSP-609</option>
  1897. <option value="4292703930">FCBGA-1031</option>
  1898. <option value="4290223998">FCBGA-1517</option>
  1899. <option value="4294675651">FCBGA-288</option>
  1900. <option value="4294675775">FCBGA-352</option>
  1901. <option value="4287547211">FCBGA-384</option>
  1902. <option value="4294670680">FCBGA-529</option>
  1903. <option value="4294675649">FCBGA-532</option>
  1904. <option value="4294675635">FCBGA-548</option>
  1905. <option value="4287547058">FCBGA-561</option>
  1906. <option value="4275039320">FCBGA-609</option>
  1907. <option value="4292475204">FCBGA-625</option>
  1908. <option value="4285566267">FCBGA-648</option>
  1909. <option value="4292503049">FCBGA-684</option>
  1910. <option value="4292498066">FCBGA-688</option>
  1911. <option value="4294672636">FCBGA-697</option>
  1912. <option value="4287546972">FCBGA-737</option>
  1913. <option value="4292799329">FCBGA-841</option>
  1914. <option value="4290224000">FCBGA-900</option>
  1915. <option value="4292795349">HLQFP-176</option>
  1916. <option value="4292865797">HLQFP-208</option>
  1917. <option value="4294673493">HTQFP-144</option>
  1918. <option value="4294683266">LFBGA</option>
  1919. <option value="4293982658">LFCSP EP</option>
  1920. <option value="4290563343">LFCSP-64</option>
  1921. <option value="4290562284">LFCSP-88</option>
  1922. <option value="4294689638">LQFP</option>
  1923. <option value="4293996888">LQFP EP</option>
  1924. <option value="4294688832">LQFP-100</option>
  1925. <option value="4292830279">LQFP-120</option>
  1926. <option value="4294685151">LQFP-128</option>
  1927. <option value="4294688778">LQFP-144</option>
  1928. <option value="4294683494">LQFP-176</option>
  1929. <option value="4294677148">LQFP-208</option>
  1930. <option value="4294689560">LQFP-32</option>
  1931. <option value="4292570682">MAP-BGA-196</option>
  1932. <option value="4277716448">MAP-BGA-400</option>
  1933. <option value="4292758483">MAPBGA-160</option>
  1934. <option value="4292795320">MAPBGA-196</option>
  1935. <option value="4292795327">MAPBGA-400</option>
  1936. <option value="4292845993">Mini-BGA</option>
  1937. <option value="4292775516">MQFP-128</option>
  1938. <option value="4292775472">MQFP-240</option>
  1939. <option value="4287546997">nFBGA-196</option>
  1940. <option value="4292503005">NFBGA-337</option>
  1941. <option value="4292589514">NFBGA-338</option>
  1942. <option value="4287547149">nFBGA-361</option>
  1943. <option value="4292570687">NFBGA-361</option>
  1944. <option value="4294677674">PBGA-225</option>
  1945. <option value="4292759214">PBGA-361</option>
  1946. <option value="4292873522">PBGA-400</option>
  1947. <option value="4293983043">PBGA-783</option>
  1948. <option value="4294688825">PDIP-18</option>
  1949. <option value="4294688827">PDIP-20</option>
  1950. <option value="4294688823">PDIP-28</option>
  1951. <option value="4294720783">PDIP-40</option>
  1952. <option value="4294720779">PLCC-44</option>
  1953. <option value="4294688798">PLCC-68</option>
  1954. <option value="4294688805">PQFP-80</option>
  1955. <option value="4292907672">PQFP-R1</option>
  1956. <option value="4294671306">QFN EP</option>
  1957. <option value="4292785825">QFN EP-28</option>
  1958. <option value="4292785824">QFN EP-44</option>
  1959. <option value="4294025902">QFN-18</option>
  1960. <option value="4294687848">QFN-24</option>
  1961. <option value="4294689635">QFN-28</option>
  1962. <option value="4294719691">QFN-32</option>
  1963. <option value="4294686108">QFN-44</option>
  1964. <option value="4294686204">QFN-64</option>
  1965. <option value="4292881008">QFN-80</option>
  1966. <option value="4284637539">QFN-EP-44</option>
  1967. <option value="4292905275">QFN-S EP</option>
  1968. <option value="4292764415">QFN-S EP-28</option>
  1969. <option value="4294720937">QFP-100</option>
  1970. <option value="4294718158">QFP-128</option>
  1971. <option value="4294685157">QFP-144</option>
  1972. <option value="4294677664">QFP-160</option>
  1973. <option value="4294677143">QFP-208</option>
  1974. <option value="4291430746">QFP-240</option>
  1975. <option value="4294685718">QFP-32</option>
  1976. <option value="4294718071">QFP-44</option>
  1977. <option value="4294688770">QFP-48</option>
  1978. <option value="4294677353">QFP-52</option>
  1979. <option value="4294685171">QFP-64</option>
  1980. <option value="4294720941">QFP-80</option>
  1981. <option value="4290504266">SBGA-256</option>
  1982. <option value="4294738489">SOIC-16</option>
  1983. <option value="4294688839">SOIC-18</option>
  1984. <option value="4294687169">SOIC-18 Wide</option>
  1985. <option value="4294687576">SOIC-20 Wide</option>
  1986. <option value="4294689807">SOIC-28</option>
  1987. <option value="4294689289">SOIC-28 Wide</option>
  1988. <option value="4284625361">SOIC-Wide-28</option>
  1989. <option value="4277647239">sPBGA-423</option>
  1990. <option value="4292562869">sPBGA-515</option>
  1991. <option value="4294684633">SPDIP</option>
  1992. <option value="4294680707">SPDIP-28</option>
  1993. <option value="4294740937">SSOP-20</option>
  1994. <option value="4294689666">SSOP-28</option>
  1995. <option value="4292843232">TBGA-480</option>
  1996. <option value="4292995539">TFBGA-100</option>
  1997. <option value="4294719931">TQFP</option>
  1998. <option value="4294673079">TQFP 14x14</option>
  1999. <option value="4294718154">TQFP-100</option>
  2000. <option value="4294718152">TQFP-128</option>
  2001. <option value="4294688334">TQFP-144</option>
  2002. <option value="4294686335">TQFP-44</option>
  2003. <option value="4294686753">TQFP-48</option>
  2004. <option value="4294718155">TQFP-64</option>
  2005. <option value="4294685179">TQFP-80</option>
  2006. <option value="4292795344">UQFN-28</option>
  2007. <option value="4285709615">uQFN-48</option>
  2008. <option value="4279320212">VFBGA-176</option>
  2009. <option value="4292575604">VTLA-36</option>
  2010. <option value="4292575605">VTLA-44</option>
  2011. </select>
  2012. </td>
  2013. </tr>
  2014. <tr>
  2015. <td>
  2016. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl11_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  2017. </td>
  2018. </tr>
  2019. </table>
  2020. </td>
  2021. <td valign="bottom" style="width: 15px;">
  2022. &nbsp;
  2023. </td>
  2024. </tr>
  2025. </table>
  2026. </td>
  2027. </tr>
  2028. </table>
  2029. <table class="ApplyFilter">
  2030. <tr>
  2031. <td class="ApplyFilterColumn1">
  2032. <input type="submit" name="ctl00$ContentMain$uc5$btnfilter1" value="应用过滤器" onclick="return submitClick();" id="ctl00_ContentMain_uc5_btnfilter1" title="点击以应用选定的过滤器,或删除未选中的过滤器。" class="button-white" />
  2033. </td>
  2034. <td class="ApplyFilterColumn2">
  2035. <span id="ctl00_ContentMain_uc5_lblZeroResultHint" class="error" style="display:inline-block;width:1px;display: none;">请修改您的搜索,这样它会返回结果。</span>
  2036. </td>
  2037. <td class="ApplyFilterColumn2_5">
  2038. <span id="ctl00_ContentMain_uc5_lblInvalidRangeHint" class="error" style="display:inline-block;width:1px;display: none;">所选过滤条件不再可用,搜索结果已改变。请重试搜索。</span>
  2039. </td>
  2040. <td class="ApplyFilterColumn3">
  2041. <input type="submit" name="ctl00$ContentMain$uc5$btnfilter2" value="应用过滤器" onclick="return submitClick();" id="ctl00_ContentMain_uc5_btnfilter2" title="点击以应用选定的过滤器,或删除未选中的过滤器。" class="button-white" />
  2042. </td>
  2043. </tr>
  2044. </table>
  2045. </td>
  2046. </tr>
  2047. </table>
  2048. </div>
  2049. </td>
  2050. </tr>
  2051. </table>
  2052. <div id='WarningPopup' style='text-align: center; position: absolute; width: 430px;
  2053. height: 70px; display: none; background: white; border: 1px solid #000;'>
  2054. <br />
  2055. <span id="ctl00_ContentMain_uc5_Label1">要使用小于或大于功能,请首先选择一个值。</span><br />
  2056. <br />
  2057. <div style="text-align: right; margin-right: 15; padding-right: 15;">
  2058. <!--Close Window-->
  2059. <a href="javascript:closeWarningPopup();" id="ctl00_ContentMain_uc5_linkCloseWindow" class="close" title="关闭窗口">
  2060. <span id="ctl00_ContentMain_uc5_lblClose">关闭窗口</span>
  2061. </a>&nbsp;&nbsp;</div>
  2062. </div>
  2063. <div id ="VisualAttributePopup" class="hidden" >
  2064. <div id="ctl00_ContentMain_uc5_VisualParametricsSelector_visualAttributePopup">
  2065. <div id="divAttributeGroup" data-bind="if: hasGroupDescription ">
  2066. <div class="visualAttGroupDesc" data-bind="text: AttributeGroupDescription"></div>
  2067. </div>
  2068. <div><img data-bind="visible: !loadFinished()" class="visualAttSpinnerImg" id="loadingimgspinner" src="/Images/spinner2.gif" /></div>
  2069. <div class="visualAttValues" data-bind="visible: attributes().length > 0 " >
  2070. <table id="tblAttributes" >
  2071. <tbody data-bind="foreach: attributes, visible: loadFinished()">
  2072. <tr data-bind="click: $root.toggleSelection, css: { 'selectedAttribute': IsSelected }, hoverToggle: 'highlightedAttribute', attr: {'attValueId': AttributeValueID} ">
  2073. <td class="visualAttributeImage">
  2074. <div data-bind="if: AttributeValueImage"><img data-bind="attr: {src: 'data:image/gif;base64,' + AttributeValueImage}" class="visualAttImage" alt="" /></div>
  2075. <div data-bind="ifnot: AttributeValueImage" ><div data-bind="css: { 'visualAttRelatedImageDiv': RelatedImgFound, 'visualAttNoImageDiv': !RelatedImgFound } " ><span data-bind="text: NoImageMsg" class="visualAttributeMsg" ></span></div></div>
  2076. </td>
  2077. <td>
  2078. <table class="visualAttValueDesc">
  2079. <tr>
  2080. <td data-bind="text: AttributeValue" class="visualAttValue" colspan="3"></td>
  2081. </tr>
  2082. <tr>
  2083. <td data-bind="text: AttributeDesc" class="visualAttDescription" colspan="3"></td>
  2084. </tr>
  2085. <tr data-bind="if: ImagePath1 ">
  2086. <td class="visualAttRelatedImage"><div data-bind="if: ImagePath1"><img data-bind="attr: {src: ImagePath1}" class="visualAttRelatedImgs" /></div></td>
  2087. <td class="visualAttRelatedImage"><div data-bind="if: ImagePath2"><img data-bind="attr: {src: ImagePath2}" class="visualAttRelatedImgs" /></div></td>
  2088. <td class="visualAttRelatedImage"><div data-bind="if: ImagePath3"><img data-bind="attr: {src: ImagePath3}" class="visualAttRelatedImgs" /></div></td>
  2089. </tr>
  2090. </table>
  2091. </td>
  2092. </tr>
  2093. <tr data-bind="if: ($index() !== ($parent.attributes().length - 1)) "><td colspan="3"><div class="visualAttValueBorder" ></div></td></tr>
  2094. </tbody>
  2095. </table>
  2096. <img data-bind="visible: !moreLoadFinished()" class="visualAttSpinnerImg" id="Img1" src="/Images/spinner2.gif" />
  2097. <div data-bind="if: hasMoreOptions" align="center">
  2098. <input type="submit" name="ctl00$ContentMain$uc5$VisualParametricsSelector$btnShowMore" value="显示更多" id="ctl00_ContentMain_uc5_VisualParametricsSelector_btnShowMore" class="button" data-bind="click: showMore" />
  2099. </div>
  2100. </div>
  2101. <div data-bind="visible: attributes().length > 0" class="visualAttributesBtnBorder"></div>
  2102. <div class="visualAttributesBtnDiv">
  2103. <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" />
  2104. <a id="ctl00_ContentMain_uc5_VisualParametricsSelector_lnkCancel" class="cancel-link-button" data-bind="visible: attributes().length > 0" onclick="javascript:ClosePopup();">取消</a>
  2105. <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" />
  2106. </div>
  2107. </div>
  2108. <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>
  2109. <script type="text/javascript" src='/JavaScript/VisualParametricAttributes.js'></script>
  2110. <script type="text/javascript" src='/flash/js/knockout-2.2.1.js'></script>
  2111. </div>
  2112. <script type="text/javascript" src='/JavaScript/jquery.ckie.js'></script>
  2113. <script type="text/javascript" src='/JavaScript/multimanufacturerselectionlist.js'></script>
  2114. <script src='../../../../../../flash/js/AttributeSelectionControl2.js?v=3.0.20160304.2' type="text/javascript"></script>
  2115. <script type="text/javascript" src='/JavaScript/VisualParametricAttributes.js'></script>
  2116. <script type="text/javascript">
  2117. $().ready(function () {
  2118. ko.applyBindings(new DisplayAttributesModel());
  2119. ko.bindingHandlers.hoverToggle = {
  2120. update: function (element, valueAccessor) {
  2121. var css = valueAccessor();
  2122. var isSelected = $(element).hasClass("selectedAttribute");
  2123. if (!isSelected) {
  2124. ko.utils.registerEventHandler(element, "mouseenter", function () {
  2125. ko.utils.toggleDomNodeCssClass(element, ko.utils.unwrapObservable(css), true);
  2126. });
  2127. ko.utils.registerEventHandler(element, "mouseleave", function () {
  2128. ko.utils.toggleDomNodeCssClass(element, ko.utils.unwrapObservable(css), false);
  2129. });
  2130. }
  2131. }
  2132. };
  2133. });
  2134. </script>
  2135. </div>
  2136. <div id="refine-mfg-logo2">
  2137. </div>
  2138. </div>
  2139. <br />
  2140. <table border="0" width="100%">
  2141. <tr>
  2142. <td>
  2143. </td>
  2144. </tr>
  2145. <tr>
  2146. <td>
  2147. <!--- Search Features --->
  2148. </td>
  2149. </tr>
  2150. <tr>
  2151. <td>
  2152. <div id="refine-page">
  2153. </div>
  2154. </td>
  2155. </tr>
  2156. <tr>
  2157. <td class="refine-show-products">
  2158. <span class="redtextb">
  2159. </span> <span class="redtextb">
  2160. </span> <span class="redtextb">
  2161. </span> <span class="redtextb">
  2162. </span>
  2163. <span class="redtextb">
  2164. </span>
  2165. </td>
  2166. </tr>
  2167. <tr>
  2168. <td>
  2169. </td>
  2170. </tr>
  2171. <tr>
  2172. <td>
  2173. <!--- Special Order Parts New --->
  2174. <!-- SOP Section 1 -->
  2175. </td>
  2176. </tr>
  2177. </table>
  2178. <div id="searchResultsTbl">
  2179. <table id="ctl00_ContentMain_tbl2" class="no-pad">
  2180. <tr>
  2181. <td class="tdSearchResultsPagingTop">
  2182. <table id="ctl00_ContentMain_tbl3" class="SearchResultsPaging">
  2183. <tr>
  2184. <td>
  2185. <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" />
  2186. </td>
  2187. <td>
  2188. <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" />
  2189. </td>
  2190. <td>
  2191. <span id="ctl00_ContentMain_lbl10" title="您可选择至多20 个零件单次进行对比。若您选择更多,则仅20件距离最近的所选零件会被对比。" class="bold">至多对比 20 零件.</span>
  2192. </td>
  2193. <td style="padding-left: 40px;">
  2194. <div class="floatrightpager">
  2195. <span class="bold">
  2196. 页面:
  2197. </span>
  2198. <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/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/?No=25">2</a><a id="ctl00_ContentMain_PagerTop_2" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/?No=50">3</a><a id="ctl00_ContentMain_PagerTop_3" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/?No=75">4</a><a id="ctl00_ContentMain_PagerTop_4" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/?No=100">5</a><a id="ctl00_ContentMain_PagerTop_5" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/?No=125">6</a><a id="ctl00_ContentMain_PagerTop_6" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/?No=150">7</a><a id="ctl00_ContentMain_PagerTop_7" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/?No=175">8</a><a id="ctl00_ContentMain_PagerTop_8" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/?No=200">9</a><a id="ctl00_ContentMain_PagerTop_9" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/?No=225">10</a><a id="ctl00_ContentMain_PagerTop_lnkNextSet" class="ellipsis" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/?No=250">...</a><a id="ctl00_ContentMain_PagerTop_150" class="first-last" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/?No=3750">151</a><a id="ctl00_ContentMain_PagerTop_lnkNext" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/?No=25">下一页</a></span>
  2199. </div>
  2200. </td>
  2201. </tr>
  2202. </table>
  2203. </td>
  2204. </tr>
  2205. <tr>
  2206. <td>
  2207. <div>
  2208. <table class="SearchResultsTable" cellspacing="1" cellpadding="2" rules="all" border="1" id="ctl00_ContentMain_SearchResultsGrid_grid" style="width:100%;">
  2209. <tr class="SearchResultColumnHeading" valign="top" style="font-weight:bold;height:100%;">
  2210. <th class="td-select" scope="col" style="width:35px;">
  2211. 选择
  2212. </th><th class="SearchResultParametricColumnHeading" scope="col">图像</th><th scope="col">Mouser 零件编号
  2213. </th><th scope="col">制造商 零件编号
  2214. </th><th scope="col">制造商
  2215. </th><th scope="col">描述
  2216. </th><th scope="col"><img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl01_ctl05_imgHeader" src="../../../../../../Images/Search/pdf.gif" alt="文件" />
  2217. </th><th scope="col">供货情况
  2218. </th><th scope="col">单价(含17%增值税)
  2219. <br />
  2220. </th><th class="SearchResultsBuyColumnHeading" scope="col">数量
  2221. </th><th class="SearchResultParametricColumnHeading" scope="col">RoHS
  2222. </th><th class="SearchResultParametricColumnHeading" scope="col">产品
  2223. </th><th class="SearchResultParametricColumnHeading" scope="col">核心
  2224. </th><th class="SearchResultParametricColumnHeading" scope="col">最大时钟频率
  2225. </th><th class="SearchResultParametricColumnHeading" scope="col">L1缓存指令存储器
  2226. </th><th class="SearchResultParametricColumnHeading" scope="col">L1缓存数据存储器
  2227. </th><th class="SearchResultParametricColumnHeading" scope="col">程序存储器大小
  2228. </th><th class="SearchResultParametricColumnHeading" scope="col">数据 RAM 大小
  2229. </th><th class="SearchResultParametricColumnHeading" scope="col">工作电源电压
  2230. </th><th class="SearchResultParametricColumnHeading" scope="col">最大工作温度
  2231. </th><th class="SearchResultParametricColumnHeading" scope="col">安装风格
  2232. </th><th class="SearchResultParametricColumnHeading" scope="col">封装 / 箱体
  2233. </th>
  2234. </tr><tr class="SearchResultsSortCell">
  2235. <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$Product>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$Product>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$Maximum Clock Frequency>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$Maximum Clock Frequency>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$L1 Cache Instruction Memory>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl52&#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$ctl54&#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$ctl56&#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$ctl58&#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$Program Memory Size>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl60&#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$Program Memory Size>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl62&#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 RAM Size>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl64&#39;,&#39;&#39;)"><img title="按 数据 RAM 大小 Ascending 排序" src="../../../../../../Images/Search/btn_Sort_Up.gif" alt="按 数据 RAM 大小 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Data RAM Size>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl66&#39;,&#39;&#39;)"><img title="按 数据 RAM 大小 Descending 排序" src="../../../../../../Images/Search/btn_Sort_Down.gif" alt="按 数据 RAM 大小 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>
  2236. </tr><tr class="SearchResultsRowOdd" data-partnumber="584-ADSP-BF706BCPZ-4" data-index="3">
  2237. <td class="td-select" align="center">
  2238. <div style="padding: 5px 5px 0 5px;">
  2239. <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>
  2240. </div>
  2241. </td><td><a href='/ProductDetail/Analog-Devices/ADSP-BF706BCPZ-4/?qs=sGAEpiMZZMsP8C4Nc3wJdwL3s8pZodZScRqe6gtp3qw28%2fQeVnVVPA%3d%3d'><img title='Analog Devices ADSP-BF706BCPZ-4' alt='Analog Devices ADSP-BF706BCPZ-4' id=1589508846 src='/images/adi/sm/LFCSP_88_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/adi/images/LFCSP_88_t.jpg</div></a></td><td>
  2242. <div style="text-align:left;">
  2243. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Analog-Devices/ADSP-BF706BCPZ-4/?qs=sGAEpiMZZMsP8C4Nc3wJdwL3s8pZodZScRqe6gtp3qw28%2fQeVnVVPA%3d%3d">584-ADSP-BF706BCPZ-4</a><br />
  2244. <br />
  2245. <br />
  2246. </div></td><td>
  2247. <div class="mfrDiv">
  2248. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Analog-Devices/ADSP-BF706BCPZ-4/?qs=sGAEpiMZZMsP8C4Nc3wJdwL3s8pZodZScRqe6gtp3qw28%2fQeVnVVPA%3d%3d">ADSP-BF706BCPZ-4</a><br />
  2249. <br />
  2250. <div style="width: 100%; text-align: center;">
  2251. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2252. </div>
  2253. <div style="width: 100%; text-align: center;">
  2254. </div>
  2255. </div>
  2256. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl03_lnkSupplier" href="../../../../../../Analog-Devices">Analog Devices</a>
  2257. </td><td>数字信号处理器和控制器 - DSP, DSC Low Cost sngl core BF+ w/larg int l mem
  2258. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2259. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../adi-adsp-bf706/">了解更多</a>
  2260. </div>
  2261. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2262. </div>
  2263. </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;Analog Devices&quot;,&quot;584-ADSP-BF706BCPZ-4 | ADSP-BF706BCPZ-4&quot;]);" href="http://www.mouser.com/ds/2/609/ADSP-BF700_BF701_BF702_BF703_BF704_BF705_BF706_BF7-768930.pdf" target="_blank">数据表</a>
  2264. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl06_lnkAvailability">90<br/>有库存</span>
  2265. <table>
  2266. <tr align="center">
  2267. <td style="padding-top: 5px">
  2268. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl06_lnkFootNote" title="更多信息可用 " href="../../../../../../ProductDetail/Analog-Devices/ADSP-BF706BCPZ-4/?qs=sGAEpiMZZMsP8C4Nc3wJdwL3s8pZodZScRqe6gtp3qw28%2fQeVnVVPA%3d%3d">更多信息可用 </a>
  2269. </td>
  2270. </tr>
  2271. <tr align="center">
  2272. <td style="padding-top: 5px; padding-bottom: 5px">
  2273. </td>
  2274. </tr>
  2275. </table></td><td>
  2276. <table class="PriceBreaks" cellspacing="0" border="0">
  2277. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2278. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2279. </td>
  2280. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2281. </td>
  2282. </tr>
  2283. <tr>
  2284. <td class="PriceBreakQuantity">
  2285. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(1,1);">1:</a>
  2286. </td>
  2287. <td class="PriceBreakPrice">
  2288. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥140.5404</span>
  2289. </td>
  2290. </tr>
  2291. <tr>
  2292. <td class="PriceBreakQuantity">
  2293. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(1,5);">5:</a>
  2294. </td>
  2295. <td class="PriceBreakPrice">
  2296. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥131.6133</span>
  2297. </td>
  2298. </tr>
  2299. <tr>
  2300. <td class="PriceBreakQuantity">
  2301. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(1,10);">10:</a>
  2302. </td>
  2303. <td class="PriceBreakPrice">
  2304. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥127.764</span>
  2305. </td>
  2306. </tr>
  2307. <tr>
  2308. <td class="PriceBreakQuantity">
  2309. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(1,25);">25:</a>
  2310. </td>
  2311. <td class="PriceBreakPrice">
  2312. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥118.2051</span>
  2313. </td>
  2314. </tr>
  2315. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  2316. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2317. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(1,50);">50:</a>
  2318. </td>
  2319. <td class="PriceBreakPrice">
  2320. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Analog-Devices/ADSP-BF706BCPZ-4/?qs=sGAEpiMZZMsP8C4Nc3wJdwL3s8pZodZScRqe6gtp3qw28%2fQeVnVVPA%3d%3d">查看</a>
  2321. </td>
  2322. </tr>
  2323. <tr>
  2324. <td><br /></td>
  2325. </tr>
  2326. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_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_ctl03_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl08_btnBuy&#39;)">
  2332. <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 />
  2333. <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="购买 ADSP-BF706BCPZ-4" 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_ctl03_ctl10_pnlCompliant">
  2354. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2355. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=%2fc%2fzyBDFaxfRleBMpC%252bhDQ%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=%2fc%2fzyBDFaxfRleBMpC%252bhDQ%3d%3d" target="_blank">详细信息</a>
  2356. </div>
  2357. </td><td>DSPs
  2358. </td><td>Blackfin+
  2359. </td><td>400 MHz
  2360. </td><td>64 kB
  2361. </td><td>64 kB
  2362. </td><td>-
  2363. </td><td>64 kB
  2364. </td><td>1.1 V, 1.8 V, 3.3 V
  2365. </td><td>+ 85 C
  2366. </td><td>SMD/SMT
  2367. </td><td>LFCSP-88
  2368. </td>
  2369. </tr><tr class="SearchResultsRowEven" data-partnumber="584-ADSP-BF707BBCZ-4" data-index="4">
  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_ctl04_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl04$chkSelect" onclick="javascript:RowSelected(4, this.checked);" /></span>
  2373. </div>
  2374. </td><td><a href='/ProductDetail/Analog-Devices/ADSP-BF707BBCZ-4/?qs=sGAEpiMZZMsP8C4Nc3wJdwL3s8pZodZSL2qbqZDIt%252bFj62VOxlN9fQ%3d%3d'><img title='Analog Devices ADSP-BF707BBCZ-4' alt='Analog Devices ADSP-BF707BBCZ-4' id=1589508854 src='/images/adi/sm/CSPBGA_184_DSL.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/adi/images/CSPBGA_184_DSL.jpg</div></a></td><td>
  2375. <div style="text-align:left;">
  2376. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Analog-Devices/ADSP-BF707BBCZ-4/?qs=sGAEpiMZZMsP8C4Nc3wJdwL3s8pZodZSL2qbqZDIt%252bFj62VOxlN9fQ%3d%3d">584-ADSP-BF707BBCZ-4</a><br />
  2377. <br />
  2378. <br />
  2379. </div></td><td>
  2380. <div class="mfrDiv">
  2381. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Analog-Devices/ADSP-BF707BBCZ-4/?qs=sGAEpiMZZMsP8C4Nc3wJdwL3s8pZodZSL2qbqZDIt%252bFj62VOxlN9fQ%3d%3d">ADSP-BF707BBCZ-4</a><br />
  2382. <br />
  2383. <div style="width: 100%; text-align: center;">
  2384. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2385. </div>
  2386. <div style="width: 100%; text-align: center;">
  2387. </div>
  2388. </div>
  2389. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl03_lnkSupplier" href="../../../../../../Analog-Devices">Analog Devices</a>
  2390. </td><td>数字信号处理器和控制器 - DSP, DSC Low Cost sngl core BF+w/Large int l mem
  2391. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2392. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../new/Analog-Devices/adi-adsp-bf707/">了解更多</a>
  2393. </div>
  2394. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2395. </div>
  2396. </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;Analog Devices&quot;,&quot;584-ADSP-BF707BBCZ-4 | ADSP-BF707BBCZ-4&quot;]);" href="http://www.mouser.com/ds/2/609/ADSP-BF700_BF701_BF702_BF703_BF704_BF705_BF706_BF7-768930.pdf" target="_blank">数据表</a>
  2397. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl06_lnkAvailability">24<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_ctl04_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_ctl04_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(2,1);">1:</a>
  2418. </td>
  2419. <td class="PriceBreakPrice">
  2420. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥149.3973</span>
  2421. </td>
  2422. </tr>
  2423. <tr>
  2424. <td class="PriceBreakQuantity">
  2425. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(2,5);">5:</a>
  2426. </td>
  2427. <td class="PriceBreakPrice">
  2428. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥142.6932</span>
  2429. </td>
  2430. </tr>
  2431. <tr>
  2432. <td class="PriceBreakQuantity">
  2433. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(2,10);">10:</a>
  2434. </td>
  2435. <td class="PriceBreakPrice">
  2436. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥138.1536</span>
  2437. </td>
  2438. </tr>
  2439. <tr>
  2440. <td class="PriceBreakQuantity">
  2441. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(2,25);">25:</a>
  2442. </td>
  2443. <td class="PriceBreakPrice">
  2444. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥126.9918</span>
  2445. </td>
  2446. </tr>
  2447. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  2448. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2449. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(2,50);">50:</a>
  2450. </td>
  2451. <td class="PriceBreakPrice">
  2452. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Analog-Devices/ADSP-BF707BBCZ-4/?qs=sGAEpiMZZMsP8C4Nc3wJdwL3s8pZodZSL2qbqZDIt%252bFj62VOxlN9fQ%3d%3d">查看</a>
  2453. </td>
  2454. </tr>
  2455. <tr>
  2456. <td><br /></td>
  2457. </tr>
  2458. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2459. <td colspan="2" style="text-align: center;">
  2460. </td>
  2461. </tr>
  2462. </table>
  2463. </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;)">
  2464. <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 />
  2465. <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="购买 ADSP-BF707BBCZ-4" class="buy-button" /><br />
  2466. <table cellspacing="0" border="0" style="width: 100%;">
  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. <tr>
  2476. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2477. 多个:
  2478. </td>
  2479. <td style="padding-left: 2px; text-align: left;">
  2480. 1
  2481. </td>
  2482. </tr>
  2483. </table>
  2484. </div>
  2485. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_pnlCompliant">
  2486. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2487. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=%2fc%2fzyBDFaxeSe9gdMACFBw%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=%2fc%2fzyBDFaxeSe9gdMACFBw%3d%3d" target="_blank">详细信息</a>
  2488. </div>
  2489. </td><td>DSPs
  2490. </td><td>Blackfin+
  2491. </td><td>400 MHz
  2492. </td><td>64 kB
  2493. </td><td>64 kB
  2494. </td><td>-
  2495. </td><td>64 kB
  2496. </td><td>1.1 V, 1.8 V, 3.3 V
  2497. </td><td>+ 85 C
  2498. </td><td>SMD/SMT
  2499. </td><td>BGA-184
  2500. </td>
  2501. </tr><tr class="SearchResultsRowOdd" data-partnumber="584-ADSP-BF707KBCZ-4" data-index="5">
  2502. <td class="td-select" align="center">
  2503. <div style="padding: 5px 5px 0 5px;">
  2504. <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>
  2505. </div>
  2506. </td><td><a href='/ProductDetail/Analog-Devices/ADSP-BF707KBCZ-4/?qs=sGAEpiMZZMsP8C4Nc3wJdwL3s8pZodZST%252bFD%252bc41pMwp%252bFAvoC2XhA%3d%3d'><img title='Analog Devices ADSP-BF707KBCZ-4' alt='Analog Devices ADSP-BF707KBCZ-4' id=1589508858 src='/images/adi/sm/ADSPBF707KBCZ4_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/adi/images/ADSPBF707KBCZ4_t.jpg</div></a></td><td>
  2507. <div style="text-align:left;">
  2508. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Analog-Devices/ADSP-BF707KBCZ-4/?qs=sGAEpiMZZMsP8C4Nc3wJdwL3s8pZodZST%252bFD%252bc41pMwp%252bFAvoC2XhA%3d%3d">584-ADSP-BF707KBCZ-4</a><br />
  2509. <br />
  2510. <br />
  2511. </div></td><td>
  2512. <div class="mfrDiv">
  2513. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Analog-Devices/ADSP-BF707KBCZ-4/?qs=sGAEpiMZZMsP8C4Nc3wJdwL3s8pZodZST%252bFD%252bc41pMwp%252bFAvoC2XhA%3d%3d">ADSP-BF707KBCZ-4</a><br />
  2514. <br />
  2515. <div style="width: 100%; text-align: center;">
  2516. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2517. </div>
  2518. <div style="width: 100%; text-align: center;">
  2519. </div>
  2520. </div>
  2521. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl03_lnkSupplier" href="../../../../../../Analog-Devices">Analog Devices</a>
  2522. </td><td>数字信号处理器和控制器 - DSP, DSC Low Cost sngl core BF+w/Large int l mem
  2523. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2524. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../new/Analog-Devices/adi-adsp-bf707/">了解更多</a>
  2525. </div>
  2526. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2527. </div>
  2528. </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;Analog Devices&quot;,&quot;584-ADSP-BF707KBCZ-4 | ADSP-BF707KBCZ-4&quot;]);" href="http://www.mouser.com/ds/2/609/ADSP-BF700_BF701_BF702_BF703_BF704_BF705_BF706_BF7-768930.pdf" target="_blank">数据表</a>
  2529. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl06_lnkAvailability">49<br/>有库存</span>
  2530. <table>
  2531. <tr align="center">
  2532. <td style="padding-top: 5px">
  2533. </td>
  2534. </tr>
  2535. <tr align="center">
  2536. <td style="padding-top: 5px; padding-bottom: 5px">
  2537. </td>
  2538. </tr>
  2539. </table></td><td>
  2540. <table class="PriceBreaks" cellspacing="0" border="0">
  2541. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2542. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2543. </td>
  2544. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2545. </td>
  2546. </tr>
  2547. <tr>
  2548. <td class="PriceBreakQuantity">
  2549. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(3,1);">1:</a>
  2550. </td>
  2551. <td class="PriceBreakPrice">
  2552. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥146.7765</span>
  2553. </td>
  2554. </tr>
  2555. <tr>
  2556. <td class="PriceBreakQuantity">
  2557. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(3,5);">5:</a>
  2558. </td>
  2559. <td class="PriceBreakPrice">
  2560. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥137.4633</span>
  2561. </td>
  2562. </tr>
  2563. <tr>
  2564. <td class="PriceBreakQuantity">
  2565. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(3,10);">10:</a>
  2566. </td>
  2567. <td class="PriceBreakPrice">
  2568. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥133.4619</span>
  2569. </td>
  2570. </tr>
  2571. <tr>
  2572. <td class="PriceBreakQuantity">
  2573. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(3,25);">25:</a>
  2574. </td>
  2575. <td class="PriceBreakPrice">
  2576. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥123.4467</span>
  2577. </td>
  2578. </tr>
  2579. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  2580. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2581. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(3,50);">50:</a>
  2582. </td>
  2583. <td class="PriceBreakPrice">
  2584. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Analog-Devices/ADSP-BF707KBCZ-4/?qs=sGAEpiMZZMsP8C4Nc3wJdwL3s8pZodZST%252bFD%252bc41pMwp%252bFAvoC2XhA%3d%3d">查看</a>
  2585. </td>
  2586. </tr>
  2587. <tr>
  2588. <td><br /></td>
  2589. </tr>
  2590. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2591. <td colspan="2" style="text-align: center;">
  2592. </td>
  2593. </tr>
  2594. </table>
  2595. </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;)">
  2596. <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 />
  2597. <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="购买 ADSP-BF707KBCZ-4" class="buy-button" /><br />
  2598. <table cellspacing="0" border="0" style="width: 100%;">
  2599. <tr>
  2600. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2601. 最低:
  2602. </td>
  2603. <td style="padding-left: 2px; text-align: left;">
  2604. 1
  2605. </td>
  2606. </tr>
  2607. <tr>
  2608. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2609. 多个:
  2610. </td>
  2611. <td style="padding-left: 2px; text-align: left;">
  2612. 1
  2613. </td>
  2614. </tr>
  2615. </table>
  2616. </div>
  2617. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_pnlCompliant">
  2618. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2619. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=%2fc%2fzyBDFaxevAjbdSUbR9w%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=%2fc%2fzyBDFaxevAjbdSUbR9w%3d%3d" target="_blank">详细信息</a>
  2620. </div>
  2621. </td><td>DSPs
  2622. </td><td>Blackfin+
  2623. </td><td>400 MHz
  2624. </td><td>64 kB
  2625. </td><td>64 kB
  2626. </td><td>-
  2627. </td><td>64 kB
  2628. </td><td>1.1 V, 1.8 V, 3.3 V
  2629. </td><td>+ 70 C
  2630. </td><td>SMD/SMT
  2631. </td><td>BGA-184
  2632. </td>
  2633. </tr><tr class="SearchResultsRowEven" data-partnumber="584-ADSP-BF704BCPZ-4" data-index="6">
  2634. <td class="td-select" align="center">
  2635. <div style="padding: 5px 5px 0 5px;">
  2636. <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>
  2637. </div>
  2638. </td><td></td><td>
  2639. <div style="text-align:left;">
  2640. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Analog-Devices/ADSP-BF704BCPZ-4/?qs=sGAEpiMZZMsP8C4Nc3wJdwL3s8pZodZSeC2AWC%2fdpkxF0GbOiO1mkA%3d%3d">584-ADSP-BF704BCPZ-4</a><br />
  2641. <br />
  2642. <br />
  2643. </div></td><td>
  2644. <div class="mfrDiv">
  2645. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Analog-Devices/ADSP-BF704BCPZ-4/?qs=sGAEpiMZZMsP8C4Nc3wJdwL3s8pZodZSeC2AWC%2fdpkxF0GbOiO1mkA%3d%3d">ADSP-BF704BCPZ-4</a><br />
  2646. <br />
  2647. <div style="width: 100%; text-align: center;">
  2648. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2649. </div>
  2650. <div style="width: 100%; text-align: center;">
  2651. </div>
  2652. </div>
  2653. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl03_lnkSupplier" href="../../../../../../Analog-Devices">Analog Devices</a>
  2654. </td><td>数字信号处理器和控制器 - DSP, DSC Low Cost sngl core BF+ w/larg int l mem
  2655. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2656. </div>
  2657. </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;Analog Devices&quot;,&quot;584-ADSP-BF704BCPZ-4 | ADSP-BF704BCPZ-4&quot;]);" href="http://www.mouser.com/ds/2/609/ADSP-BF700_BF701_BF702_BF703_BF704_BF705_BF706_BF7-768930.pdf" target="_blank">数据表</a>
  2658. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl06_lnkAvailability">29<br/>有库存</span>
  2659. <table>
  2660. <tr align="center">
  2661. <td style="padding-top: 5px">
  2662. </td>
  2663. </tr>
  2664. <tr align="center">
  2665. <td style="padding-top: 5px; padding-bottom: 5px">
  2666. </td>
  2667. </tr>
  2668. </table></td><td>
  2669. <table class="PriceBreaks" cellspacing="0" border="0">
  2670. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2671. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2672. </td>
  2673. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2674. </td>
  2675. </tr>
  2676. <tr>
  2677. <td class="PriceBreakQuantity">
  2678. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(4,1);">1:</a>
  2679. </td>
  2680. <td class="PriceBreakPrice">
  2681. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥127.764</span>
  2682. </td>
  2683. </tr>
  2684. <tr>
  2685. <td class="PriceBreakQuantity">
  2686. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(4,5);">5:</a>
  2687. </td>
  2688. <td class="PriceBreakPrice">
  2689. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥119.5974</span>
  2690. </td>
  2691. </tr>
  2692. <tr>
  2693. <td class="PriceBreakQuantity">
  2694. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(4,10);">10:</a>
  2695. </td>
  2696. <td class="PriceBreakPrice">
  2697. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥116.1342</span>
  2698. </td>
  2699. </tr>
  2700. <tr>
  2701. <td class="PriceBreakQuantity">
  2702. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(4,25);">25:</a>
  2703. </td>
  2704. <td class="PriceBreakPrice">
  2705. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥107.4294</span>
  2706. </td>
  2707. </tr>
  2708. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  2709. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2710. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(4,50);">50:</a>
  2711. </td>
  2712. <td class="PriceBreakPrice">
  2713. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Analog-Devices/ADSP-BF704BCPZ-4/?qs=sGAEpiMZZMsP8C4Nc3wJdwL3s8pZodZSeC2AWC%2fdpkxF0GbOiO1mkA%3d%3d">查看</a>
  2714. </td>
  2715. </tr>
  2716. <tr>
  2717. <td><br /></td>
  2718. </tr>
  2719. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2720. <td colspan="2" style="text-align: center;">
  2721. </td>
  2722. </tr>
  2723. </table>
  2724. </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;)">
  2725. <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 />
  2726. <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="购买 ADSP-BF704BCPZ-4" class="buy-button" /><br />
  2727. <table cellspacing="0" border="0" style="width: 100%;">
  2728. <tr>
  2729. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2730. 最低:
  2731. </td>
  2732. <td style="padding-left: 2px; text-align: left;">
  2733. 1
  2734. </td>
  2735. </tr>
  2736. <tr>
  2737. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2738. 多个:
  2739. </td>
  2740. <td style="padding-left: 2px; text-align: left;">
  2741. 1
  2742. </td>
  2743. </tr>
  2744. </table>
  2745. </div>
  2746. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_pnlCompliant">
  2747. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2748. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=%2fc%2fzyBDFaxfL8moz0Ax4bA%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=%2fc%2fzyBDFaxfL8moz0Ax4bA%3d%3d" target="_blank">详细信息</a>
  2749. </div>
  2750. </td><td>
  2751. </td><td>
  2752. </td><td>
  2753. </td><td>
  2754. </td><td>
  2755. </td><td>
  2756. </td><td>
  2757. </td><td>
  2758. </td><td>
  2759. </td><td>
  2760. </td><td>
  2761. </td>
  2762. </tr><tr class="SearchResultsRowOdd" data-partnumber="584-ADSP-BF706KCPZ-4" data-index="7">
  2763. <td class="td-select" align="center">
  2764. <div style="padding: 5px 5px 0 5px;">
  2765. <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>
  2766. </div>
  2767. </td><td><a href='/ProductDetail/Analog-Devices/ADSP-BF706KCPZ-4/?qs=sGAEpiMZZMsP8C4Nc3wJdwL3s8pZodZSd%252b4YjgbmJ678eM%252bCOy1z1A%3d%3d'><img title='Analog Devices ADSP-BF706KCPZ-4' alt='Analog Devices ADSP-BF706KCPZ-4' id=1589508850 src='/images/adi/sm/LFCSP_88_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/adi/images/LFCSP_88_t.jpg</div></a></td><td>
  2768. <div style="text-align:left;">
  2769. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Analog-Devices/ADSP-BF706KCPZ-4/?qs=sGAEpiMZZMsP8C4Nc3wJdwL3s8pZodZSd%252b4YjgbmJ678eM%252bCOy1z1A%3d%3d">584-ADSP-BF706KCPZ-4</a><br />
  2770. <br />
  2771. <br />
  2772. </div></td><td>
  2773. <div class="mfrDiv">
  2774. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Analog-Devices/ADSP-BF706KCPZ-4/?qs=sGAEpiMZZMsP8C4Nc3wJdwL3s8pZodZSd%252b4YjgbmJ678eM%252bCOy1z1A%3d%3d">ADSP-BF706KCPZ-4</a><br />
  2775. <br />
  2776. <div style="width: 100%; text-align: center;">
  2777. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2778. </div>
  2779. <div style="width: 100%; text-align: center;">
  2780. </div>
  2781. </div>
  2782. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl03_lnkSupplier" href="../../../../../../Analog-Devices">Analog Devices</a>
  2783. </td><td>数字信号处理器和控制器 - DSP, DSC Low Cost sngl core BF+ w/larg int l mem
  2784. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2785. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../adi-adsp-bf706/">了解更多</a>
  2786. </div>
  2787. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2788. </div>
  2789. </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;Analog Devices&quot;,&quot;584-ADSP-BF706KCPZ-4 | ADSP-BF706KCPZ-4&quot;]);" href="http://www.mouser.com/ds/2/609/ADSP-BF700_BF701_BF702_BF703_BF704_BF705_BF706_BF7-768930.pdf" target="_blank">数据表</a>
  2790. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl06_lnkAvailability">43<br/>有库存</span>
  2791. <table>
  2792. <tr align="center">
  2793. <td style="padding-top: 5px">
  2794. </td>
  2795. </tr>
  2796. <tr align="center">
  2797. <td style="padding-top: 5px; padding-bottom: 5px">
  2798. </td>
  2799. </tr>
  2800. </table></td><td>
  2801. <table class="PriceBreaks" cellspacing="0" border="0">
  2802. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2803. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2804. </td>
  2805. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2806. </td>
  2807. </tr>
  2808. <tr>
  2809. <td class="PriceBreakQuantity">
  2810. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(5,1);">1:</a>
  2811. </td>
  2812. <td class="PriceBreakPrice">
  2813. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥125.4474</span>
  2814. </td>
  2815. </tr>
  2816. <tr>
  2817. <td class="PriceBreakQuantity">
  2818. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(5,5);">5:</a>
  2819. </td>
  2820. <td class="PriceBreakPrice">
  2821. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥117.4446</span>
  2822. </td>
  2823. </tr>
  2824. <tr>
  2825. <td class="PriceBreakQuantity">
  2826. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(5,10);">10:</a>
  2827. </td>
  2828. <td class="PriceBreakPrice">
  2829. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥114.0516</span>
  2830. </td>
  2831. </tr>
  2832. <tr>
  2833. <td class="PriceBreakQuantity">
  2834. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(5,25);">25:</a>
  2835. </td>
  2836. <td class="PriceBreakPrice">
  2837. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥105.4989</span>
  2838. </td>
  2839. </tr>
  2840. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  2841. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2842. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(5,50);">50:</a>
  2843. </td>
  2844. <td class="PriceBreakPrice">
  2845. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Analog-Devices/ADSP-BF706KCPZ-4/?qs=sGAEpiMZZMsP8C4Nc3wJdwL3s8pZodZSd%252b4YjgbmJ678eM%252bCOy1z1A%3d%3d">查看</a>
  2846. </td>
  2847. </tr>
  2848. <tr>
  2849. <td><br /></td>
  2850. </tr>
  2851. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2852. <td colspan="2" style="text-align: center;">
  2853. </td>
  2854. </tr>
  2855. </table>
  2856. </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;)">
  2857. <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 />
  2858. <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="购买 ADSP-BF706KCPZ-4" class="buy-button" /><br />
  2859. <table cellspacing="0" border="0" style="width: 100%;">
  2860. <tr>
  2861. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2862. 最低:
  2863. </td>
  2864. <td style="padding-left: 2px; text-align: left;">
  2865. 1
  2866. </td>
  2867. </tr>
  2868. <tr>
  2869. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2870. 多个:
  2871. </td>
  2872. <td style="padding-left: 2px; text-align: left;">
  2873. 1
  2874. </td>
  2875. </tr>
  2876. </table>
  2877. </div>
  2878. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_pnlCompliant">
  2879. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2880. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=%2fc%2fzyBDFaxeTdoClTq8KKQ%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=%2fc%2fzyBDFaxeTdoClTq8KKQ%3d%3d" target="_blank">详细信息</a>
  2881. </div>
  2882. </td><td>DSPs
  2883. </td><td>Blackfin+
  2884. </td><td>400 MHz
  2885. </td><td>64 kB
  2886. </td><td>64 kB
  2887. </td><td>-
  2888. </td><td>64 kB
  2889. </td><td>1.1 V, 1.8 V, 3.3 V
  2890. </td><td>+ 70 C
  2891. </td><td>SMD/SMT
  2892. </td><td>LFCSP-88
  2893. </td>
  2894. </tr><tr class="SearchResultsRowEven" data-partnumber="584-ADSP-BF706BCPZ-3" data-index="8">
  2895. <td class="td-select" align="center">
  2896. <div style="padding: 5px 5px 0 5px;">
  2897. <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>
  2898. </div>
  2899. </td><td><a href='/ProductDetail/Analog-Devices/ADSP-BF706BCPZ-3/?qs=sGAEpiMZZMsP8C4Nc3wJdwL3s8pZodZSZMzOy%252bUGBDQ54LTig1CAhA%3d%3d'><img title='Analog Devices ADSP-BF706BCPZ-3' alt='Analog Devices ADSP-BF706BCPZ-3' id=1589508844 src='/images/adi/sm/LFCSP_88_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/adi/images/LFCSP_88_t.jpg</div></a></td><td>
  2900. <div style="text-align:left;">
  2901. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Analog-Devices/ADSP-BF706BCPZ-3/?qs=sGAEpiMZZMsP8C4Nc3wJdwL3s8pZodZSZMzOy%252bUGBDQ54LTig1CAhA%3d%3d">584-ADSP-BF706BCPZ-3</a><br />
  2902. <br />
  2903. <br />
  2904. </div></td><td>
  2905. <div class="mfrDiv">
  2906. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Analog-Devices/ADSP-BF706BCPZ-3/?qs=sGAEpiMZZMsP8C4Nc3wJdwL3s8pZodZSZMzOy%252bUGBDQ54LTig1CAhA%3d%3d">ADSP-BF706BCPZ-3</a><br />
  2907. <br />
  2908. <div style="width: 100%; text-align: center;">
  2909. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2910. </div>
  2911. <div style="width: 100%; text-align: center;">
  2912. </div>
  2913. </div>
  2914. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl03_lnkSupplier" href="../../../../../../Analog-Devices">Analog Devices</a>
  2915. </td><td>数字信号处理器和控制器 - DSP, DSC Low Cost sngl core BF+ w/larg int l mem
  2916. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2917. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../adi-adsp-bf706/">了解更多</a>
  2918. </div>
  2919. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2920. </div>
  2921. </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;Analog Devices&quot;,&quot;584-ADSP-BF706BCPZ-3 | ADSP-BF706BCPZ-3&quot;]);" href="http://www.mouser.com/ds/2/609/ADSP-BF700_BF701_BF702_BF703_BF704_BF705_BF706_BF7-768930.pdf" target="_blank">数据表</a>
  2922. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl06_lnkAvailability">18<br/>有库存</span>
  2923. <table>
  2924. <tr align="center">
  2925. <td style="padding-top: 5px">
  2926. </td>
  2927. </tr>
  2928. <tr align="center">
  2929. <td style="padding-top: 5px; padding-bottom: 5px">
  2930. </td>
  2931. </tr>
  2932. </table></td><td>
  2933. <table class="PriceBreaks" cellspacing="0" border="0">
  2934. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2935. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2936. </td>
  2937. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2938. </td>
  2939. </tr>
  2940. <tr>
  2941. <td class="PriceBreakQuantity">
  2942. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(6,1);">1:</a>
  2943. </td>
  2944. <td class="PriceBreakPrice">
  2945. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥127.764</span>
  2946. </td>
  2947. </tr>
  2948. <tr>
  2949. <td class="PriceBreakQuantity">
  2950. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(6,5);">5:</a>
  2951. </td>
  2952. <td class="PriceBreakPrice">
  2953. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥119.5974</span>
  2954. </td>
  2955. </tr>
  2956. <tr>
  2957. <td class="PriceBreakQuantity">
  2958. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(6,10);">10:</a>
  2959. </td>
  2960. <td class="PriceBreakPrice">
  2961. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥116.1342</span>
  2962. </td>
  2963. </tr>
  2964. <tr>
  2965. <td class="PriceBreakQuantity">
  2966. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(6,25);">25:</a>
  2967. </td>
  2968. <td class="PriceBreakPrice">
  2969. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥107.4294</span>
  2970. </td>
  2971. </tr>
  2972. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  2973. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2974. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(6,50);">50:</a>
  2975. </td>
  2976. <td class="PriceBreakPrice">
  2977. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Analog-Devices/ADSP-BF706BCPZ-3/?qs=sGAEpiMZZMsP8C4Nc3wJdwL3s8pZodZSZMzOy%252bUGBDQ54LTig1CAhA%3d%3d">查看</a>
  2978. </td>
  2979. </tr>
  2980. <tr>
  2981. <td><br /></td>
  2982. </tr>
  2983. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2984. <td colspan="2" style="text-align: center;">
  2985. </td>
  2986. </tr>
  2987. </table>
  2988. </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;)">
  2989. <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 />
  2990. <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="购买 ADSP-BF706BCPZ-3" class="buy-button" /><br />
  2991. <table cellspacing="0" border="0" style="width: 100%;">
  2992. <tr>
  2993. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2994. 最低:
  2995. </td>
  2996. <td style="padding-left: 2px; text-align: left;">
  2997. 1
  2998. </td>
  2999. </tr>
  3000. <tr>
  3001. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3002. 多个:
  3003. </td>
  3004. <td style="padding-left: 2px; text-align: left;">
  3005. 1
  3006. </td>
  3007. </tr>
  3008. </table>
  3009. </div>
  3010. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_pnlCompliant">
  3011. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3012. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=%2fc%2fzyBDFaxdI9Kfy%2fJXp9g%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=%2fc%2fzyBDFaxdI9Kfy%2fJXp9g%3d%3d" target="_blank">详细信息</a>
  3013. </div>
  3014. </td><td>DSPs
  3015. </td><td>Blackfin+
  3016. </td><td>300 MHz
  3017. </td><td>64 kB
  3018. </td><td>64 kB
  3019. </td><td>-
  3020. </td><td>64 kB
  3021. </td><td>1.1 V, 1.8 V, 3.3 V
  3022. </td><td>+ 85 C
  3023. </td><td>SMD/SMT
  3024. </td><td>LFCSP-88
  3025. </td>
  3026. </tr><tr class="SearchResultsRowOdd" data-partnumber="584-ADSP-BF707BBCZ-3" data-index="9">
  3027. <td class="td-select" align="center">
  3028. <div style="padding: 5px 5px 0 5px;">
  3029. <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>
  3030. </div>
  3031. </td><td><a href='/ProductDetail/Analog-Devices/ADSP-BF707BBCZ-3/?qs=sGAEpiMZZMsP8C4Nc3wJdwL3s8pZodZSEJfpa9%252bmr3wMyA0FX2mDBg%3d%3d'><img title='Analog Devices ADSP-BF707BBCZ-3' alt='Analog Devices ADSP-BF707BBCZ-3' id=1589508852 src='/images/adi/sm/CSPBGA_184_DSL.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/adi/images/CSPBGA_184_DSL.jpg</div></a></td><td>
  3032. <div style="text-align:left;">
  3033. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Analog-Devices/ADSP-BF707BBCZ-3/?qs=sGAEpiMZZMsP8C4Nc3wJdwL3s8pZodZSEJfpa9%252bmr3wMyA0FX2mDBg%3d%3d">584-ADSP-BF707BBCZ-3</a><br />
  3034. <br />
  3035. <br />
  3036. </div></td><td>
  3037. <div class="mfrDiv">
  3038. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Analog-Devices/ADSP-BF707BBCZ-3/?qs=sGAEpiMZZMsP8C4Nc3wJdwL3s8pZodZSEJfpa9%252bmr3wMyA0FX2mDBg%3d%3d">ADSP-BF707BBCZ-3</a><br />
  3039. <br />
  3040. <div style="width: 100%; text-align: center;">
  3041. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3042. </div>
  3043. <div style="width: 100%; text-align: center;">
  3044. </div>
  3045. </div>
  3046. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl03_lnkSupplier" href="../../../../../../Analog-Devices">Analog Devices</a>
  3047. </td><td>数字信号处理器和控制器 - DSP, DSC Low Cost sngl core BF+w/Large int l mem
  3048. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3049. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../new/Analog-Devices/adi-adsp-bf707/">了解更多</a>
  3050. </div>
  3051. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3052. </div>
  3053. </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;Analog Devices&quot;,&quot;584-ADSP-BF707BBCZ-3 | ADSP-BF707BBCZ-3&quot;]);" href="http://www.mouser.com/ds/2/609/ADSP-BF700_BF701_BF702_BF703_BF704_BF705_BF706_BF7-768930.pdf" target="_blank">数据表</a>
  3054. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl06_lnkAvailability">25<br/>有库存</span>
  3055. <table>
  3056. <tr align="center">
  3057. <td style="padding-top: 5px">
  3058. </td>
  3059. </tr>
  3060. <tr align="center">
  3061. <td style="padding-top: 5px; padding-bottom: 5px">
  3062. </td>
  3063. </tr>
  3064. </table></td><td>
  3065. <table class="PriceBreaks" cellspacing="0" border="0">
  3066. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3067. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3068. </td>
  3069. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3070. </td>
  3071. </tr>
  3072. <tr>
  3073. <td class="PriceBreakQuantity">
  3074. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(7,1);">1:</a>
  3075. </td>
  3076. <td class="PriceBreakPrice">
  3077. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥149.3973</span>
  3078. </td>
  3079. </tr>
  3080. <tr>
  3081. <td class="PriceBreakQuantity">
  3082. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(7,5);">5:</a>
  3083. </td>
  3084. <td class="PriceBreakPrice">
  3085. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥139.8501</span>
  3086. </td>
  3087. </tr>
  3088. <tr>
  3089. <td class="PriceBreakQuantity">
  3090. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(7,10);">10:</a>
  3091. </td>
  3092. <td class="PriceBreakPrice">
  3093. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥135.7668</span>
  3094. </td>
  3095. </tr>
  3096. <tr>
  3097. <td class="PriceBreakQuantity">
  3098. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(7,25);">25:</a>
  3099. </td>
  3100. <td class="PriceBreakPrice">
  3101. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥125.5995</span>
  3102. </td>
  3103. </tr>
  3104. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  3105. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3106. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(7,50);">50:</a>
  3107. </td>
  3108. <td class="PriceBreakPrice">
  3109. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Analog-Devices/ADSP-BF707BBCZ-3/?qs=sGAEpiMZZMsP8C4Nc3wJdwL3s8pZodZSEJfpa9%252bmr3wMyA0FX2mDBg%3d%3d">查看</a>
  3110. </td>
  3111. </tr>
  3112. <tr>
  3113. <td><br /></td>
  3114. </tr>
  3115. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3116. <td colspan="2" style="text-align: center;">
  3117. </td>
  3118. </tr>
  3119. </table>
  3120. </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;)">
  3121. <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 />
  3122. <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="购买 ADSP-BF707BBCZ-3" class="buy-button" /><br />
  3123. <table cellspacing="0" border="0" style="width: 100%;">
  3124. <tr>
  3125. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3126. 最低:
  3127. </td>
  3128. <td style="padding-left: 2px; text-align: left;">
  3129. 1
  3130. </td>
  3131. </tr>
  3132. <tr>
  3133. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3134. 多个:
  3135. </td>
  3136. <td style="padding-left: 2px; text-align: left;">
  3137. 1
  3138. </td>
  3139. </tr>
  3140. </table>
  3141. </div>
  3142. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_pnlCompliant">
  3143. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3144. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=%2fc%2fzyBDFaxdbqvUdo0UB4w%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=%2fc%2fzyBDFaxdbqvUdo0UB4w%3d%3d" target="_blank">详细信息</a>
  3145. </div>
  3146. </td><td>DSPs
  3147. </td><td>Blackfin+
  3148. </td><td>300 MHz
  3149. </td><td>64 kB
  3150. </td><td>64 kB
  3151. </td><td>-
  3152. </td><td>64 kB
  3153. </td><td>1.1 V, 1.8 V, 3.3 V
  3154. </td><td>+ 85 C
  3155. </td><td>SMD/SMT
  3156. </td><td>BGA-184
  3157. </td>
  3158. </tr><tr class="SearchResultsRowEven" data-partnumber="584-ADSP-CM408CSWZAF" data-index="10">
  3159. <td class="td-select" align="center">
  3160. <div style="padding: 5px 5px 0 5px;">
  3161. <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>
  3162. </div>
  3163. </td><td><a href='/ProductDetail/Analog-Devices/ADSP-CM408CSWZ-AF/?qs=sGAEpiMZZMsP8C4Nc3wJd1%252bM2xxROGp05g76AMINT9V5J8qbFunO1Q%3d%3d'><img title='Analog Devices ADSP-CM408CSWZ-AF' alt='Analog Devices ADSP-CM408CSWZ-AF' id=1600951795 src='/images/mouserimages/sm/LQFP_176_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/LQFP_176_t.jpg</div></a></td><td>
  3164. <div style="text-align:left;">
  3165. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Analog-Devices/ADSP-CM408CSWZ-AF/?qs=sGAEpiMZZMsP8C4Nc3wJd1%252bM2xxROGp05g76AMINT9V5J8qbFunO1Q%3d%3d">584-ADSP-CM408CSWZAF</a><br />
  3166. <br />
  3167. <br />
  3168. </div></td><td>
  3169. <div class="mfrDiv">
  3170. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Analog-Devices/ADSP-CM408CSWZ-AF/?qs=sGAEpiMZZMsP8C4Nc3wJd1%252bM2xxROGp05g76AMINT9V5J8qbFunO1Q%3d%3d">ADSP-CM408CSWZ-AF</a><br />
  3171. <br />
  3172. <div style="width: 100%; text-align: center;">
  3173. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3174. </div>
  3175. <div style="width: 100%; text-align: center;">
  3176. </div>
  3177. </div>
  3178. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl03_lnkSupplier" href="../../../../../../Analog-Devices">Analog Devices</a>
  3179. </td><td>数字信号处理器和控制器 - DSP, DSC ARM CORTEX M4 FLASH 13+ ENOB DC 240MHz
  3180. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3181. </div>
  3182. </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;Analog Devices&quot;,&quot;584-ADSP-CM408CSWZAF | ADSP-CM408CSWZ-AF&quot;]);" href="http://www.analog.com/media/en/technical-documentation/data-sheets/ADSP-CM402F_CM403F_CM407F_CM408F_CM409F.pdf" target="_blank">数据表</a>
  3183. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl06_lnkAvailability">26<br/>有库存</span>
  3184. <table>
  3185. <tr align="center">
  3186. <td style="padding-top: 5px">
  3187. </td>
  3188. </tr>
  3189. <tr align="center">
  3190. <td style="padding-top: 5px; padding-bottom: 5px">
  3191. </td>
  3192. </tr>
  3193. </table></td><td>
  3194. <table class="PriceBreaks" cellspacing="0" border="0">
  3195. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3196. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3197. </td>
  3198. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3199. </td>
  3200. </tr>
  3201. <tr>
  3202. <td class="PriceBreakQuantity">
  3203. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(8,1);">1:</a>
  3204. </td>
  3205. <td class="PriceBreakPrice">
  3206. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥190.827</span>
  3207. </td>
  3208. </tr>
  3209. <tr>
  3210. <td class="PriceBreakQuantity">
  3211. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(8,5);">5:</a>
  3212. </td>
  3213. <td class="PriceBreakPrice">
  3214. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥182.286</span>
  3215. </td>
  3216. </tr>
  3217. <tr>
  3218. <td class="PriceBreakQuantity">
  3219. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(8,10);">10:</a>
  3220. </td>
  3221. <td class="PriceBreakPrice">
  3222. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥176.5062</span>
  3223. </td>
  3224. </tr>
  3225. <tr>
  3226. <td class="PriceBreakQuantity">
  3227. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(8,25);">25:</a>
  3228. </td>
  3229. <td class="PriceBreakPrice">
  3230. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥162.1854</span>
  3231. </td>
  3232. </tr>
  3233. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  3234. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3235. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(8,50);">50:</a>
  3236. </td>
  3237. <td class="PriceBreakPrice">
  3238. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Analog-Devices/ADSP-CM408CSWZ-AF/?qs=sGAEpiMZZMsP8C4Nc3wJd1%252bM2xxROGp05g76AMINT9V5J8qbFunO1Q%3d%3d">查看</a>
  3239. </td>
  3240. </tr>
  3241. <tr>
  3242. <td><br /></td>
  3243. </tr>
  3244. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3245. <td colspan="2" style="text-align: center;">
  3246. </td>
  3247. </tr>
  3248. </table>
  3249. </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;)">
  3250. <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 />
  3251. <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="购买 ADSP-CM408CSWZ-AF" class="buy-button" /><br />
  3252. <table cellspacing="0" border="0" style="width: 100%;">
  3253. <tr>
  3254. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3255. 最低:
  3256. </td>
  3257. <td style="padding-left: 2px; text-align: left;">
  3258. 1
  3259. </td>
  3260. </tr>
  3261. <tr>
  3262. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3263. 多个:
  3264. </td>
  3265. <td style="padding-left: 2px; text-align: left;">
  3266. 1
  3267. </td>
  3268. </tr>
  3269. </table>
  3270. </div>
  3271. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_pnlCompliant">
  3272. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3273. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=DIKJny3a4BenYd93WfTJhw%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=DIKJny3a4BenYd93WfTJhw%3d%3d" target="_blank">详细信息</a>
  3274. </div>
  3275. </td><td>DSPs
  3276. </td><td>ARM Cortex M4
  3277. </td><td>240 MHz
  3278. </td><td>16 kB
  3279. </td><td>-
  3280. </td><td>-
  3281. </td><td>
  3282. </td><td>1.2 V, 3.3 V
  3283. </td><td>+ 105 C
  3284. </td><td>SMD/SMT
  3285. </td><td>LQFP-176
  3286. </td>
  3287. </tr><tr class="SearchResultsRowOdd" data-partnumber="584-ADSP-BF706KCPZ-3" data-index="11">
  3288. <td class="td-select" align="center">
  3289. <div style="padding: 5px 5px 0 5px;">
  3290. <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>
  3291. </div>
  3292. </td><td><a href='/ProductDetail/Analog-Devices/ADSP-BF706KCPZ-3/?qs=sGAEpiMZZMsP8C4Nc3wJdwL3s8pZodZS3G9l7bd0UPUKOTFChvWcmQ%3d%3d'><img title='Analog Devices ADSP-BF706KCPZ-3' alt='Analog Devices ADSP-BF706KCPZ-3' id=1589508848 src='/images/adi/sm/LFCSP_88_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/adi/images/LFCSP_88_t.jpg</div></a></td><td>
  3293. <div style="text-align:left;">
  3294. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Analog-Devices/ADSP-BF706KCPZ-3/?qs=sGAEpiMZZMsP8C4Nc3wJdwL3s8pZodZS3G9l7bd0UPUKOTFChvWcmQ%3d%3d">584-ADSP-BF706KCPZ-3</a><br />
  3295. <br />
  3296. <br />
  3297. </div></td><td>
  3298. <div class="mfrDiv">
  3299. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Analog-Devices/ADSP-BF706KCPZ-3/?qs=sGAEpiMZZMsP8C4Nc3wJdwL3s8pZodZS3G9l7bd0UPUKOTFChvWcmQ%3d%3d">ADSP-BF706KCPZ-3</a><br />
  3300. <br />
  3301. <div style="width: 100%; text-align: center;">
  3302. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3303. </div>
  3304. <div style="width: 100%; text-align: center;">
  3305. </div>
  3306. </div>
  3307. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl03_lnkSupplier" href="../../../../../../Analog-Devices">Analog Devices</a>
  3308. </td><td>数字信号处理器和控制器 - DSP, DSC Low Cost sngl core BF+ w/larg int l mem
  3309. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3310. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../adi-adsp-bf706/">了解更多</a>
  3311. </div>
  3312. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3313. </div>
  3314. </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;Analog Devices&quot;,&quot;584-ADSP-BF706KCPZ-3 | ADSP-BF706KCPZ-3&quot;]);" href="http://www.mouser.com/ds/2/609/ADSP-BF700_BF701_BF702_BF703_BF704_BF705_BF706_BF7-768930.pdf" target="_blank">数据表</a>
  3315. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl06_lnkAvailability">33<br/>有库存</span>
  3316. <table>
  3317. <tr align="center">
  3318. <td style="padding-top: 5px">
  3319. </td>
  3320. </tr>
  3321. <tr align="center">
  3322. <td style="padding-top: 5px; padding-bottom: 5px">
  3323. </td>
  3324. </tr>
  3325. </table></td><td>
  3326. <table class="PriceBreaks" cellspacing="0" border="0">
  3327. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3328. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3329. </td>
  3330. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3331. </td>
  3332. </tr>
  3333. <tr>
  3334. <td class="PriceBreakQuantity">
  3335. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(9,1);">1:</a>
  3336. </td>
  3337. <td class="PriceBreakPrice">
  3338. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥114.0516</span>
  3339. </td>
  3340. </tr>
  3341. <tr>
  3342. <td class="PriceBreakQuantity">
  3343. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(9,5);">5:</a>
  3344. </td>
  3345. <td class="PriceBreakPrice">
  3346. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥106.7391</span>
  3347. </td>
  3348. </tr>
  3349. <tr>
  3350. <td class="PriceBreakQuantity">
  3351. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(9,10);">10:</a>
  3352. </td>
  3353. <td class="PriceBreakPrice">
  3354. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥103.6503</span>
  3355. </td>
  3356. </tr>
  3357. <tr>
  3358. <td class="PriceBreakQuantity">
  3359. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(9,25);">25:</a>
  3360. </td>
  3361. <td class="PriceBreakPrice">
  3362. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥95.8815</span>
  3363. </td>
  3364. </tr>
  3365. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  3366. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3367. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(9,50);">50:</a>
  3368. </td>
  3369. <td class="PriceBreakPrice">
  3370. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Analog-Devices/ADSP-BF706KCPZ-3/?qs=sGAEpiMZZMsP8C4Nc3wJdwL3s8pZodZS3G9l7bd0UPUKOTFChvWcmQ%3d%3d">查看</a>
  3371. </td>
  3372. </tr>
  3373. <tr>
  3374. <td><br /></td>
  3375. </tr>
  3376. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3377. <td colspan="2" style="text-align: center;">
  3378. </td>
  3379. </tr>
  3380. </table>
  3381. </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;)">
  3382. <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 />
  3383. <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="购买 ADSP-BF706KCPZ-3" class="buy-button" /><br />
  3384. <table cellspacing="0" border="0" style="width: 100%;">
  3385. <tr>
  3386. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3387. 最低:
  3388. </td>
  3389. <td style="padding-left: 2px; text-align: left;">
  3390. 1
  3391. </td>
  3392. </tr>
  3393. <tr>
  3394. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3395. 多个:
  3396. </td>
  3397. <td style="padding-left: 2px; text-align: left;">
  3398. 1
  3399. </td>
  3400. </tr>
  3401. </table>
  3402. </div>
  3403. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_pnlCompliant">
  3404. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3405. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=%2fc%2fzyBDFaxcWhq7w0YUHzQ%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=%2fc%2fzyBDFaxcWhq7w0YUHzQ%3d%3d" target="_blank">详细信息</a>
  3406. </div>
  3407. </td><td>DSPs
  3408. </td><td>Blackfin+
  3409. </td><td>300 MHz
  3410. </td><td>64 kB
  3411. </td><td>64 kB
  3412. </td><td>-
  3413. </td><td>64 kB
  3414. </td><td>1.1 V, 1.8 V, 3.3 V
  3415. </td><td>+ 70 C
  3416. </td><td>SMD/SMT
  3417. </td><td>LFCSP-88
  3418. </td>
  3419. </tr><tr class="SearchResultsRowEven" data-partnumber="584-ADSP-CM403CSWZCF" data-index="12">
  3420. <td class="td-select" align="center">
  3421. <div style="padding: 5px 5px 0 5px;">
  3422. <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>
  3423. </div>
  3424. </td><td><a href='/ProductDetail/Analog-Devices/ADSP-CM403CSWZ-CF/?qs=sGAEpiMZZMsP8C4Nc3wJd1%252bM2xxROGp0qwYgy5KOa4ij2vabjhTveA%3d%3d'><img title='Analog Devices ADSP-CM403CSWZ-CF' alt='Analog Devices ADSP-CM403CSWZ-CF' id=1600951783 src='/images/mouserimages/sm/LQFP_120_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/LQFP_120_t.jpg</div></a></td><td>
  3425. <div style="text-align:left;">
  3426. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Analog-Devices/ADSP-CM403CSWZ-CF/?qs=sGAEpiMZZMsP8C4Nc3wJd1%252bM2xxROGp0qwYgy5KOa4ij2vabjhTveA%3d%3d">584-ADSP-CM403CSWZCF</a><br />
  3427. <br />
  3428. <br />
  3429. </div></td><td>
  3430. <div class="mfrDiv">
  3431. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Analog-Devices/ADSP-CM403CSWZ-CF/?qs=sGAEpiMZZMsP8C4Nc3wJd1%252bM2xxROGp0qwYgy5KOa4ij2vabjhTveA%3d%3d">ADSP-CM403CSWZ-CF</a><br />
  3432. <br />
  3433. <div style="width: 100%; text-align: center;">
  3434. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3435. </div>
  3436. <div style="width: 100%; text-align: center;">
  3437. </div>
  3438. </div>
  3439. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl03_lnkSupplier" href="../../../../../../Analog-Devices">Analog Devices</a>
  3440. </td><td>数字信号处理器和控制器 - DSP, DSC ARM CORTEX M4 FLASH 13+ ENOB DC 240MHz
  3441. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3442. </div>
  3443. </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;Analog Devices&quot;,&quot;584-ADSP-CM403CSWZCF | ADSP-CM403CSWZ-CF&quot;]);" href="http://www.analog.com/media/en/technical-documentation/data-sheets/ADSP-CM402F_CM403F_CM407F_CM408F_CM409F.pdf" target="_blank">数据表</a>
  3444. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl06_lnkAvailability">16<br/>有库存</span>
  3445. <table>
  3446. <tr align="center">
  3447. <td style="padding-top: 5px">
  3448. </td>
  3449. </tr>
  3450. <tr align="center">
  3451. <td style="padding-top: 5px; padding-bottom: 5px">
  3452. </td>
  3453. </tr>
  3454. </table></td><td>
  3455. <table class="PriceBreaks" cellspacing="0" border="0">
  3456. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3457. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3458. </td>
  3459. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3460. </td>
  3461. </tr>
  3462. <tr>
  3463. <td class="PriceBreakQuantity">
  3464. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(10,1);">1:</a>
  3465. </td>
  3466. <td class="PriceBreakPrice">
  3467. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥164.7945</span>
  3468. </td>
  3469. </tr>
  3470. <tr>
  3471. <td class="PriceBreakQuantity">
  3472. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(10,5);">5:</a>
  3473. </td>
  3474. <td class="PriceBreakPrice">
  3475. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥157.4118</span>
  3476. </td>
  3477. </tr>
  3478. <tr>
  3479. <td class="PriceBreakQuantity">
  3480. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(10,10);">10:</a>
  3481. </td>
  3482. <td class="PriceBreakPrice">
  3483. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥152.4042</span>
  3484. </td>
  3485. </tr>
  3486. <tr>
  3487. <td class="PriceBreakQuantity">
  3488. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(10,25);">25:</a>
  3489. </td>
  3490. <td class="PriceBreakPrice">
  3491. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥140.0841</span>
  3492. </td>
  3493. </tr>
  3494. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  3495. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3496. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(10,50);">50:</a>
  3497. </td>
  3498. <td class="PriceBreakPrice">
  3499. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Analog-Devices/ADSP-CM403CSWZ-CF/?qs=sGAEpiMZZMsP8C4Nc3wJd1%252bM2xxROGp0qwYgy5KOa4ij2vabjhTveA%3d%3d">查看</a>
  3500. </td>
  3501. </tr>
  3502. <tr>
  3503. <td><br /></td>
  3504. </tr>
  3505. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3506. <td colspan="2" style="text-align: center;">
  3507. </td>
  3508. </tr>
  3509. </table>
  3510. </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;)">
  3511. <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 />
  3512. <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="购买 ADSP-CM403CSWZ-CF" class="buy-button" /><br />
  3513. <table cellspacing="0" border="0" style="width: 100%;">
  3514. <tr>
  3515. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3516. 最低:
  3517. </td>
  3518. <td style="padding-left: 2px; text-align: left;">
  3519. 1
  3520. </td>
  3521. </tr>
  3522. <tr>
  3523. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3524. 多个:
  3525. </td>
  3526. <td style="padding-left: 2px; text-align: left;">
  3527. 1
  3528. </td>
  3529. </tr>
  3530. </table>
  3531. </div>
  3532. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_pnlCompliant">
  3533. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3534. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=DIKJny3a4BdH5ykwSrbkow%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=DIKJny3a4BdH5ykwSrbkow%3d%3d" target="_blank">详细信息</a>
  3535. </div>
  3536. </td><td>DSPs
  3537. </td><td>ARM Cortex M4
  3538. </td><td>240 MHz
  3539. </td><td>16 kB
  3540. </td><td>-
  3541. </td><td>-
  3542. </td><td>
  3543. </td><td>1.2 V, 3.3 V
  3544. </td><td>+ 105 C
  3545. </td><td>SMD/SMT
  3546. </td><td>LQFP-120
  3547. </td>
  3548. </tr><tr class="SearchResultsRowOdd" data-partnumber="584-ADSP-CM408CSWZBF" data-index="13">
  3549. <td class="td-select" align="center">
  3550. <div style="padding: 5px 5px 0 5px;">
  3551. <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>
  3552. </div>
  3553. </td><td><a href='/ProductDetail/Analog-Devices/ADSP-CM408CSWZ-BF/?qs=sGAEpiMZZMsP8C4Nc3wJd1%252bM2xxROGp0eLqNxZaYMFquSwpRO3GBbQ%3d%3d'><img title='Analog Devices ADSP-CM408CSWZ-BF' alt='Analog Devices ADSP-CM408CSWZ-BF' id=1600951797 src='/images/mouserimages/sm/LQFP_176_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/LQFP_176_t.jpg</div></a></td><td>
  3554. <div style="text-align:left;">
  3555. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Analog-Devices/ADSP-CM408CSWZ-BF/?qs=sGAEpiMZZMsP8C4Nc3wJd1%252bM2xxROGp0eLqNxZaYMFquSwpRO3GBbQ%3d%3d">584-ADSP-CM408CSWZBF</a><br />
  3556. <br />
  3557. <br />
  3558. </div></td><td>
  3559. <div class="mfrDiv">
  3560. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Analog-Devices/ADSP-CM408CSWZ-BF/?qs=sGAEpiMZZMsP8C4Nc3wJd1%252bM2xxROGp0eLqNxZaYMFquSwpRO3GBbQ%3d%3d">ADSP-CM408CSWZ-BF</a><br />
  3561. <br />
  3562. <div style="width: 100%; text-align: center;">
  3563. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3564. </div>
  3565. <div style="width: 100%; text-align: center;">
  3566. </div>
  3567. </div>
  3568. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl03_lnkSupplier" href="../../../../../../Analog-Devices">Analog Devices</a>
  3569. </td><td>数字信号处理器和控制器 - DSP, DSC ARM CORTEX M4 FLASH 13+ ENOB DC 240MHz
  3570. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3571. </div>
  3572. </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;Analog Devices&quot;,&quot;584-ADSP-CM408CSWZBF | ADSP-CM408CSWZ-BF&quot;]);" href="http://www.analog.com/media/en/technical-documentation/data-sheets/ADSP-CM402F_CM403F_CM407F_CM408F_CM409F.pdf" target="_blank">数据表</a>
  3573. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl06_lnkAvailability">15<br/>有库存</span>
  3574. <table>
  3575. <tr align="center">
  3576. <td style="padding-top: 5px">
  3577. </td>
  3578. </tr>
  3579. <tr align="center">
  3580. <td style="padding-top: 5px; padding-bottom: 5px">
  3581. </td>
  3582. </tr>
  3583. </table></td><td>
  3584. <table class="PriceBreaks" cellspacing="0" border="0">
  3585. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3586. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3587. </td>
  3588. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3589. </td>
  3590. </tr>
  3591. <tr>
  3592. <td class="PriceBreakQuantity">
  3593. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(11,1);">1:</a>
  3594. </td>
  3595. <td class="PriceBreakPrice">
  3596. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥182.2041</span>
  3597. </td>
  3598. </tr>
  3599. <tr>
  3600. <td class="PriceBreakQuantity">
  3601. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(11,5);">5:</a>
  3602. </td>
  3603. <td class="PriceBreakPrice">
  3604. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥174.0375</span>
  3605. </td>
  3606. </tr>
  3607. <tr>
  3608. <td class="PriceBreakQuantity">
  3609. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(11,10);">10:</a>
  3610. </td>
  3611. <td class="PriceBreakPrice">
  3612. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥168.5736</span>
  3613. </td>
  3614. </tr>
  3615. <tr>
  3616. <td class="PriceBreakQuantity">
  3617. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(11,25);">25:</a>
  3618. </td>
  3619. <td class="PriceBreakPrice">
  3620. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥154.8612</span>
  3621. </td>
  3622. </tr>
  3623. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  3624. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3625. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(11,50);">50:</a>
  3626. </td>
  3627. <td class="PriceBreakPrice">
  3628. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Analog-Devices/ADSP-CM408CSWZ-BF/?qs=sGAEpiMZZMsP8C4Nc3wJd1%252bM2xxROGp0eLqNxZaYMFquSwpRO3GBbQ%3d%3d">查看</a>
  3629. </td>
  3630. </tr>
  3631. <tr>
  3632. <td><br /></td>
  3633. </tr>
  3634. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3635. <td colspan="2" style="text-align: center;">
  3636. </td>
  3637. </tr>
  3638. </table>
  3639. </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;)">
  3640. <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 />
  3641. <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="购买 ADSP-CM408CSWZ-BF" class="buy-button" /><br />
  3642. <table cellspacing="0" border="0" style="width: 100%;">
  3643. <tr>
  3644. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3645. 最低:
  3646. </td>
  3647. <td style="padding-left: 2px; text-align: left;">
  3648. 1
  3649. </td>
  3650. </tr>
  3651. <tr>
  3652. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3653. 多个:
  3654. </td>
  3655. <td style="padding-left: 2px; text-align: left;">
  3656. 1
  3657. </td>
  3658. </tr>
  3659. </table>
  3660. </div>
  3661. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_pnlCompliant">
  3662. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3663. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=DIKJny3a4Bf5abSEds5JDA%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=DIKJny3a4Bf5abSEds5JDA%3d%3d" target="_blank">详细信息</a>
  3664. </div>
  3665. </td><td>DSPs
  3666. </td><td>ARM Cortex M4
  3667. </td><td>240 MHz
  3668. </td><td>16 kB
  3669. </td><td>-
  3670. </td><td>-
  3671. </td><td>
  3672. </td><td>1.2 V, 3.3 V
  3673. </td><td>+ 105 C
  3674. </td><td>SMD/SMT
  3675. </td><td>LQFP-176
  3676. </td>
  3677. </tr><tr class="SearchResultsRowEven" data-partnumber="584-ADSP-BF707KBCZ-3" data-index="14">
  3678. <td class="td-select" align="center">
  3679. <div style="padding: 5px 5px 0 5px;">
  3680. <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>
  3681. </div>
  3682. </td><td><a href='/ProductDetail/Analog-Devices/ADSP-BF707KBCZ-3/?qs=sGAEpiMZZMsP8C4Nc3wJdwL3s8pZodZSs4nRmzecTz9NvUBV41ujsA%3d%3d'><img title='Analog Devices ADSP-BF707KBCZ-3' alt='Analog Devices ADSP-BF707KBCZ-3' id=1589508856 src='/images/adi/sm/CSPBGA_184_DSL.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/adi/images/CSPBGA_184_DSL.jpg</div></a></td><td>
  3683. <div style="text-align:left;">
  3684. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Analog-Devices/ADSP-BF707KBCZ-3/?qs=sGAEpiMZZMsP8C4Nc3wJdwL3s8pZodZSs4nRmzecTz9NvUBV41ujsA%3d%3d">584-ADSP-BF707KBCZ-3</a><br />
  3685. <br />
  3686. <br />
  3687. </div></td><td>
  3688. <div class="mfrDiv">
  3689. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Analog-Devices/ADSP-BF707KBCZ-3/?qs=sGAEpiMZZMsP8C4Nc3wJdwL3s8pZodZSs4nRmzecTz9NvUBV41ujsA%3d%3d">ADSP-BF707KBCZ-3</a><br />
  3690. <br />
  3691. <div style="width: 100%; text-align: center;">
  3692. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3693. </div>
  3694. <div style="width: 100%; text-align: center;">
  3695. </div>
  3696. </div>
  3697. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl03_lnkSupplier" href="../../../../../../Analog-Devices">Analog Devices</a>
  3698. </td><td>数字信号处理器和控制器 - DSP, DSC Low Cost sngl core BF+w/Large int l mem
  3699. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3700. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../new/Analog-Devices/adi-adsp-bf707/">了解更多</a>
  3701. </div>
  3702. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3703. </div>
  3704. </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;Analog Devices&quot;,&quot;584-ADSP-BF707KBCZ-3 | ADSP-BF707KBCZ-3&quot;]);" href="http://www.mouser.com/ds/2/609/ADSP-BF700_BF701_BF702_BF703_BF704_BF705_BF706_BF7-768930.pdf" target="_blank">数据表</a>
  3705. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl06_lnkAvailability">28<br/>有库存</span>
  3706. <table>
  3707. <tr align="center">
  3708. <td style="padding-top: 5px">
  3709. </td>
  3710. </tr>
  3711. <tr align="center">
  3712. <td style="padding-top: 5px; padding-bottom: 5px">
  3713. </td>
  3714. </tr>
  3715. </table></td><td>
  3716. <table class="PriceBreaks" cellspacing="0" border="0">
  3717. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3718. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3719. </td>
  3720. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3721. </td>
  3722. </tr>
  3723. <tr>
  3724. <td class="PriceBreakQuantity">
  3725. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(12,1);">1:</a>
  3726. </td>
  3727. <td class="PriceBreakPrice">
  3728. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥133.38</span>
  3729. </td>
  3730. </tr>
  3731. <tr>
  3732. <td class="PriceBreakQuantity">
  3733. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(12,5);">5:</a>
  3734. </td>
  3735. <td class="PriceBreakPrice">
  3736. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥124.9092</span>
  3737. </td>
  3738. </tr>
  3739. <tr>
  3740. <td class="PriceBreakQuantity">
  3741. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(12,10);">10:</a>
  3742. </td>
  3743. <td class="PriceBreakPrice">
  3744. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥121.212</span>
  3745. </td>
  3746. </tr>
  3747. <tr>
  3748. <td class="PriceBreakQuantity">
  3749. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(12,25);">25:</a>
  3750. </td>
  3751. <td class="PriceBreakPrice">
  3752. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥112.1211</span>
  3753. </td>
  3754. </tr>
  3755. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  3756. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3757. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(12,50);">50:</a>
  3758. </td>
  3759. <td class="PriceBreakPrice">
  3760. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Analog-Devices/ADSP-BF707KBCZ-3/?qs=sGAEpiMZZMsP8C4Nc3wJdwL3s8pZodZSs4nRmzecTz9NvUBV41ujsA%3d%3d">查看</a>
  3761. </td>
  3762. </tr>
  3763. <tr>
  3764. <td><br /></td>
  3765. </tr>
  3766. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3767. <td colspan="2" style="text-align: center;">
  3768. </td>
  3769. </tr>
  3770. </table>
  3771. </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;)">
  3772. <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 />
  3773. <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="购买 ADSP-BF707KBCZ-3" class="buy-button" /><br />
  3774. <table cellspacing="0" border="0" style="width: 100%;">
  3775. <tr>
  3776. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3777. 最低:
  3778. </td>
  3779. <td style="padding-left: 2px; text-align: left;">
  3780. 1
  3781. </td>
  3782. </tr>
  3783. <tr>
  3784. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3785. 多个:
  3786. </td>
  3787. <td style="padding-left: 2px; text-align: left;">
  3788. 1
  3789. </td>
  3790. </tr>
  3791. </table>
  3792. </div>
  3793. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_pnlCompliant">
  3794. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3795. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=%2fc%2fzyBDFaxfxtYN1fPxNwQ%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=%2fc%2fzyBDFaxfxtYN1fPxNwQ%3d%3d" target="_blank">详细信息</a>
  3796. </div>
  3797. </td><td>DSPs
  3798. </td><td>Blackfin+
  3799. </td><td>300 MHz
  3800. </td><td>64 kB
  3801. </td><td>64 kB
  3802. </td><td>-
  3803. </td><td>64 kB
  3804. </td><td>1.1 V, 1.8 V, 3.3 V
  3805. </td><td>+ 70 C
  3806. </td><td>SMD/SMT
  3807. </td><td>BGA-184
  3808. </td>
  3809. </tr><tr class="SearchResultsRowOdd" data-partnumber="584-ADSP-CM407CSWZDF" data-index="15">
  3810. <td class="td-select" align="center">
  3811. <div style="padding: 5px 5px 0 5px;">
  3812. <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>
  3813. </div>
  3814. </td><td><a href='/ProductDetail/Analog-Devices/ADSP-CM407CSWZ-DF/?qs=sGAEpiMZZMsP8C4Nc3wJd1%252bM2xxROGp00LBYlolWDdZwynShIdrSIg%3d%3d'><img title='Analog Devices ADSP-CM407CSWZ-DF' alt='Analog Devices ADSP-CM407CSWZ-DF' id=1600951793 src='/images/mouserimages/sm/LQFP_176_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/LQFP_176_t.jpg</div></a></td><td>
  3815. <div style="text-align:left;">
  3816. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Analog-Devices/ADSP-CM407CSWZ-DF/?qs=sGAEpiMZZMsP8C4Nc3wJd1%252bM2xxROGp00LBYlolWDdZwynShIdrSIg%3d%3d">584-ADSP-CM407CSWZDF</a><br />
  3817. <br />
  3818. <br />
  3819. </div></td><td>
  3820. <div class="mfrDiv">
  3821. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Analog-Devices/ADSP-CM407CSWZ-DF/?qs=sGAEpiMZZMsP8C4Nc3wJd1%252bM2xxROGp00LBYlolWDdZwynShIdrSIg%3d%3d">ADSP-CM407CSWZ-DF</a><br />
  3822. <br />
  3823. <div style="width: 100%; text-align: center;">
  3824. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3825. </div>
  3826. <div style="width: 100%; text-align: center;">
  3827. </div>
  3828. </div>
  3829. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl03_lnkSupplier" href="../../../../../../Analog-Devices">Analog Devices</a>
  3830. </td><td>数字信号处理器和控制器 - DSP, DSC ARM CORTEX M4 FLASH 11+ ENOB DC 1500MHz
  3831. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3832. </div>
  3833. </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;Analog Devices&quot;,&quot;584-ADSP-CM407CSWZDF | ADSP-CM407CSWZ-DF&quot;]);" href="http://www.analog.com/media/en/technical-documentation/data-sheets/ADSP-CM402F_CM403F_CM407F_CM408F_CM409F.pdf" target="_blank">数据表</a>
  3834. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl06_lnkAvailability">40<br/>有库存</span>
  3835. <table>
  3836. <tr align="center">
  3837. <td style="padding-top: 5px">
  3838. </td>
  3839. </tr>
  3840. <tr align="center">
  3841. <td style="padding-top: 5px; padding-bottom: 5px">
  3842. </td>
  3843. </tr>
  3844. </table></td><td>
  3845. <table class="PriceBreaks" cellspacing="0" border="0">
  3846. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3847. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3848. </td>
  3849. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3850. </td>
  3851. </tr>
  3852. <tr>
  3853. <td class="PriceBreakQuantity">
  3854. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(13,1);">1:</a>
  3855. </td>
  3856. <td class="PriceBreakPrice">
  3857. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥124.0668</span>
  3858. </td>
  3859. </tr>
  3860. <tr>
  3861. <td class="PriceBreakQuantity">
  3862. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(13,5);">5:</a>
  3863. </td>
  3864. <td class="PriceBreakPrice">
  3865. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥116.2044</span>
  3866. </td>
  3867. </tr>
  3868. <tr>
  3869. <td class="PriceBreakQuantity">
  3870. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(13,10);">10:</a>
  3871. </td>
  3872. <td class="PriceBreakPrice">
  3873. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥112.8231</span>
  3874. </td>
  3875. </tr>
  3876. <tr>
  3877. <td class="PriceBreakQuantity">
  3878. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(13,25);">25:</a>
  3879. </td>
  3880. <td class="PriceBreakPrice">
  3881. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥104.3523</span>
  3882. </td>
  3883. </tr>
  3884. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  3885. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3886. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(13,50);">50:</a>
  3887. </td>
  3888. <td class="PriceBreakPrice">
  3889. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Analog-Devices/ADSP-CM407CSWZ-DF/?qs=sGAEpiMZZMsP8C4Nc3wJd1%252bM2xxROGp00LBYlolWDdZwynShIdrSIg%3d%3d">查看</a>
  3890. </td>
  3891. </tr>
  3892. <tr>
  3893. <td><br /></td>
  3894. </tr>
  3895. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3896. <td colspan="2" style="text-align: center;">
  3897. </td>
  3898. </tr>
  3899. </table>
  3900. </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;)">
  3901. <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 />
  3902. <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="购买 ADSP-CM407CSWZ-DF" class="buy-button" /><br />
  3903. <table cellspacing="0" border="0" style="width: 100%;">
  3904. <tr>
  3905. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3906. 最低:
  3907. </td>
  3908. <td style="padding-left: 2px; text-align: left;">
  3909. 1
  3910. </td>
  3911. </tr>
  3912. <tr>
  3913. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3914. 多个:
  3915. </td>
  3916. <td style="padding-left: 2px; text-align: left;">
  3917. 1
  3918. </td>
  3919. </tr>
  3920. </table>
  3921. </div>
  3922. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_pnlCompliant">
  3923. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3924. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=DIKJny3a4BdDbVpumia%252bhw%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=DIKJny3a4BdDbVpumia%252bhw%3d%3d" target="_blank">详细信息</a>
  3925. </div>
  3926. </td><td>DSPs
  3927. </td><td>ARM Cortex M4
  3928. </td><td>150 MHz
  3929. </td><td>16 kB
  3930. </td><td>-
  3931. </td><td>-
  3932. </td><td>
  3933. </td><td>1.2 V, 3.3 V
  3934. </td><td>+ 105 C
  3935. </td><td>SMD/SMT
  3936. </td><td>LQFP-176
  3937. </td>
  3938. </tr><tr class="SearchResultsRowEven" data-partnumber="584-ADSP-CM402CSWZEF" data-index="16">
  3939. <td class="td-select" align="center">
  3940. <div style="padding: 5px 5px 0 5px;">
  3941. <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>
  3942. </div>
  3943. </td><td><a href='/ProductDetail/Analog-Devices/ADSP-CM402CSWZ-EF/?qs=sGAEpiMZZMsP8C4Nc3wJd1%252bM2xxROGp0UBKT95ussdl%2fxMSBLIItIw%3d%3d'><img title='Analog Devices ADSP-CM402CSWZ-EF' alt='Analog Devices ADSP-CM402CSWZ-EF' id=1600951779 src='/images/mouserimages/sm/LQFP_120_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/LQFP_120_t.jpg</div></a></td><td>
  3944. <div style="text-align:left;">
  3945. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Analog-Devices/ADSP-CM402CSWZ-EF/?qs=sGAEpiMZZMsP8C4Nc3wJd1%252bM2xxROGp0UBKT95ussdl%2fxMSBLIItIw%3d%3d">584-ADSP-CM402CSWZEF</a><br />
  3946. <br />
  3947. <br />
  3948. </div></td><td>
  3949. <div class="mfrDiv">
  3950. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Analog-Devices/ADSP-CM402CSWZ-EF/?qs=sGAEpiMZZMsP8C4Nc3wJd1%252bM2xxROGp0UBKT95ussdl%2fxMSBLIItIw%3d%3d">ADSP-CM402CSWZ-EF</a><br />
  3951. <br />
  3952. <div style="width: 100%; text-align: center;">
  3953. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3954. </div>
  3955. <div style="width: 100%; text-align: center;">
  3956. </div>
  3957. </div>
  3958. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl03_lnkSupplier" href="../../../../../../Analog-Devices">Analog Devices</a>
  3959. </td><td>数字信号处理器和控制器 - DSP, DSC ARM CORTEX M4 FLASH 11+ ENOB DC 150MHz
  3960. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3961. </div>
  3962. </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;Analog Devices&quot;,&quot;584-ADSP-CM402CSWZEF | ADSP-CM402CSWZ-EF&quot;]);" href="http://www.analog.com/media/en/technical-documentation/data-sheets/ADSP-CM402F_CM403F_CM407F_CM408F_CM409F.pdf" target="_blank">数据表</a>
  3963. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl06_lnkAvailability">28<br/>有库存</span>
  3964. <table>
  3965. <tr align="center">
  3966. <td style="padding-top: 5px">
  3967. </td>
  3968. </tr>
  3969. <tr align="center">
  3970. <td style="padding-top: 5px; padding-bottom: 5px">
  3971. </td>
  3972. </tr>
  3973. </table></td><td>
  3974. <table class="PriceBreaks" cellspacing="0" border="0">
  3975. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3976. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3977. </td>
  3978. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3979. </td>
  3980. </tr>
  3981. <tr>
  3982. <td class="PriceBreakQuantity">
  3983. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(14,1);">1:</a>
  3984. </td>
  3985. <td class="PriceBreakPrice">
  3986. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥133.5321</span>
  3987. </td>
  3988. </tr>
  3989. <tr>
  3990. <td class="PriceBreakQuantity">
  3991. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(14,5);">5:</a>
  3992. </td>
  3993. <td class="PriceBreakPrice">
  3994. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥125.0613</span>
  3995. </td>
  3996. </tr>
  3997. <tr>
  3998. <td class="PriceBreakQuantity">
  3999. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(14,10);">10:</a>
  4000. </td>
  4001. <td class="PriceBreakPrice">
  4002. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥121.3641</span>
  4003. </td>
  4004. </tr>
  4005. <tr>
  4006. <td class="PriceBreakQuantity">
  4007. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(14,25);">25:</a>
  4008. </td>
  4009. <td class="PriceBreakPrice">
  4010. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥112.2849</span>
  4011. </td>
  4012. </tr>
  4013. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  4014. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  4015. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(14,50);">50:</a>
  4016. </td>
  4017. <td class="PriceBreakPrice">
  4018. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Analog-Devices/ADSP-CM402CSWZ-EF/?qs=sGAEpiMZZMsP8C4Nc3wJd1%252bM2xxROGp0UBKT95ussdl%2fxMSBLIItIw%3d%3d">查看</a>
  4019. </td>
  4020. </tr>
  4021. <tr>
  4022. <td><br /></td>
  4023. </tr>
  4024. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4025. <td colspan="2" style="text-align: center;">
  4026. </td>
  4027. </tr>
  4028. </table>
  4029. </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;)">
  4030. <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 />
  4031. <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="购买 ADSP-CM402CSWZ-EF" class="buy-button" /><br />
  4032. <table cellspacing="0" border="0" style="width: 100%;">
  4033. <tr>
  4034. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4035. 最低:
  4036. </td>
  4037. <td style="padding-left: 2px; text-align: left;">
  4038. 1
  4039. </td>
  4040. </tr>
  4041. <tr>
  4042. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4043. 多个:
  4044. </td>
  4045. <td style="padding-left: 2px; text-align: left;">
  4046. 1
  4047. </td>
  4048. </tr>
  4049. </table>
  4050. </div>
  4051. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_pnlCompliant">
  4052. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4053. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=DIKJny3a4BdXOK%2f8uFIxTQ%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=DIKJny3a4BdXOK%2f8uFIxTQ%3d%3d" target="_blank">详细信息</a>
  4054. </div>
  4055. </td><td>DSPs
  4056. </td><td>ARM Cortex M4
  4057. </td><td>150 MHz
  4058. </td><td>16 kB
  4059. </td><td>-
  4060. </td><td>-
  4061. </td><td>
  4062. </td><td>1.2 V, 3.3 V
  4063. </td><td>+ 105 C
  4064. </td><td>SMD/SMT
  4065. </td><td>LQFP-120
  4066. </td>
  4067. </tr><tr class="SearchResultsRowOdd" data-partnumber="584-ADSP-CM403CSWZFF" data-index="17">
  4068. <td class="td-select" align="center">
  4069. <div style="padding: 5px 5px 0 5px;">
  4070. <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>
  4071. </div>
  4072. </td><td><a href='/ProductDetail/Analog-Devices/ADSP-CM403CSWZ-FF/?qs=sGAEpiMZZMsP8C4Nc3wJd1%252bM2xxROGp0erKLM32QNxqCdkvT0KwvyQ%3d%3d'><img title='Analog Devices ADSP-CM403CSWZ-FF' alt='Analog Devices ADSP-CM403CSWZ-FF' id=1600951787 src='/images/mouserimages/sm/LQFP_120_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/LQFP_120_t.jpg</div></a></td><td>
  4073. <div style="text-align:left;">
  4074. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Analog-Devices/ADSP-CM403CSWZ-FF/?qs=sGAEpiMZZMsP8C4Nc3wJd1%252bM2xxROGp0erKLM32QNxqCdkvT0KwvyQ%3d%3d">584-ADSP-CM403CSWZFF</a><br />
  4075. <br />
  4076. <br />
  4077. </div></td><td>
  4078. <div class="mfrDiv">
  4079. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Analog-Devices/ADSP-CM403CSWZ-FF/?qs=sGAEpiMZZMsP8C4Nc3wJd1%252bM2xxROGp0erKLM32QNxqCdkvT0KwvyQ%3d%3d">ADSP-CM403CSWZ-FF</a><br />
  4080. <br />
  4081. <div style="width: 100%; text-align: center;">
  4082. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  4083. </div>
  4084. <div style="width: 100%; text-align: center;">
  4085. </div>
  4086. </div>
  4087. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl03_lnkSupplier" href="../../../../../../Analog-Devices">Analog Devices</a>
  4088. </td><td>数字信号处理器和控制器 - DSP, DSC ARM CORTEX M4 FLASH 13+ ENOB DC 100MHz
  4089. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4090. </div>
  4091. </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;Analog Devices&quot;,&quot;584-ADSP-CM403CSWZFF | ADSP-CM403CSWZ-FF&quot;]);" href="http://www.analog.com/media/en/technical-documentation/data-sheets/ADSP-CM402F_CM403F_CM407F_CM408F_CM409F.pdf" target="_blank">数据表</a>
  4092. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl06_lnkAvailability">26<br/>有库存</span>
  4093. <table>
  4094. <tr align="center">
  4095. <td style="padding-top: 5px">
  4096. </td>
  4097. </tr>
  4098. <tr align="center">
  4099. <td style="padding-top: 5px; padding-bottom: 5px">
  4100. </td>
  4101. </tr>
  4102. </table></td><td>
  4103. <table class="PriceBreaks" cellspacing="0" border="0">
  4104. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4105. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4106. </td>
  4107. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4108. </td>
  4109. </tr>
  4110. <tr>
  4111. <td class="PriceBreakQuantity">
  4112. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(15,1);">1:</a>
  4113. </td>
  4114. <td class="PriceBreakPrice">
  4115. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥143.1612</span>
  4116. </td>
  4117. </tr>
  4118. <tr>
  4119. <td class="PriceBreakQuantity">
  4120. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(15,5);">5:</a>
  4121. </td>
  4122. <td class="PriceBreakPrice">
  4123. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥134.0001</span>
  4124. </td>
  4125. </tr>
  4126. <tr>
  4127. <td class="PriceBreakQuantity">
  4128. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(15,10);">10:</a>
  4129. </td>
  4130. <td class="PriceBreakPrice">
  4131. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥130.1508</span>
  4132. </td>
  4133. </tr>
  4134. <tr>
  4135. <td class="PriceBreakQuantity">
  4136. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(15,25);">25:</a>
  4137. </td>
  4138. <td class="PriceBreakPrice">
  4139. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥120.3696</span>
  4140. </td>
  4141. </tr>
  4142. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  4143. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  4144. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(15,50);">50:</a>
  4145. </td>
  4146. <td class="PriceBreakPrice">
  4147. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Analog-Devices/ADSP-CM403CSWZ-FF/?qs=sGAEpiMZZMsP8C4Nc3wJd1%252bM2xxROGp0erKLM32QNxqCdkvT0KwvyQ%3d%3d">查看</a>
  4148. </td>
  4149. </tr>
  4150. <tr>
  4151. <td><br /></td>
  4152. </tr>
  4153. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4154. <td colspan="2" style="text-align: center;">
  4155. </td>
  4156. </tr>
  4157. </table>
  4158. </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;)">
  4159. <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 />
  4160. <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="购买 ADSP-CM403CSWZ-FF" class="buy-button" /><br />
  4161. <table cellspacing="0" border="0" style="width: 100%;">
  4162. <tr>
  4163. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4164. 最低:
  4165. </td>
  4166. <td style="padding-left: 2px; text-align: left;">
  4167. 1
  4168. </td>
  4169. </tr>
  4170. <tr>
  4171. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4172. 多个:
  4173. </td>
  4174. <td style="padding-left: 2px; text-align: left;">
  4175. 1
  4176. </td>
  4177. </tr>
  4178. </table>
  4179. </div>
  4180. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_pnlCompliant">
  4181. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4182. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=DIKJny3a4Bckcixd36zzdA%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=DIKJny3a4Bckcixd36zzdA%3d%3d" target="_blank">详细信息</a>
  4183. </div>
  4184. </td><td>DSPs
  4185. </td><td>ARM Cortex M4
  4186. </td><td>100 MHz
  4187. </td><td>16 kB
  4188. </td><td>-
  4189. </td><td>-
  4190. </td><td>
  4191. </td><td>1.2 V, 3.3 V
  4192. </td><td>+ 105 C
  4193. </td><td>SMD/SMT
  4194. </td><td>LQFP-120
  4195. </td>
  4196. </tr><tr class="SearchResultsRowEven" data-partnumber="584-ADSP-CM407CSWZBF" data-index="18">
  4197. <td class="td-select" align="center">
  4198. <div style="padding: 5px 5px 0 5px;">
  4199. <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>
  4200. </div>
  4201. </td><td><a href='/ProductDetail/Analog-Devices/ADSP-CM407CSWZ-BF/?qs=sGAEpiMZZMsP8C4Nc3wJd1%252bM2xxROGp06%2f6RC6flRhV5O7MKD1VxoA%3d%3d'><img title='Analog Devices ADSP-CM407CSWZ-BF' alt='Analog Devices ADSP-CM407CSWZ-BF' id=1600951791 src='/images/mouserimages/sm/LQFP_176_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/LQFP_176_t.jpg</div></a></td><td>
  4202. <div style="text-align:left;">
  4203. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Analog-Devices/ADSP-CM407CSWZ-BF/?qs=sGAEpiMZZMsP8C4Nc3wJd1%252bM2xxROGp06%2f6RC6flRhV5O7MKD1VxoA%3d%3d">584-ADSP-CM407CSWZBF</a><br />
  4204. <br />
  4205. <br />
  4206. </div></td><td>
  4207. <div class="mfrDiv">
  4208. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Analog-Devices/ADSP-CM407CSWZ-BF/?qs=sGAEpiMZZMsP8C4Nc3wJd1%252bM2xxROGp06%2f6RC6flRhV5O7MKD1VxoA%3d%3d">ADSP-CM407CSWZ-BF</a><br />
  4209. <br />
  4210. <div style="width: 100%; text-align: center;">
  4211. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  4212. </div>
  4213. <div style="width: 100%; text-align: center;">
  4214. </div>
  4215. </div>
  4216. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl03_lnkSupplier" href="../../../../../../Analog-Devices">Analog Devices</a>
  4217. </td><td>数字信号处理器和控制器 - DSP, DSC ARM CORTEX M4 FLASH 11+ ENOB DC 240MHz
  4218. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4219. </div>
  4220. </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;Analog Devices&quot;,&quot;584-ADSP-CM407CSWZBF | ADSP-CM407CSWZ-BF&quot;]);" href="http://www.analog.com/media/en/technical-documentation/data-sheets/ADSP-CM402F_CM403F_CM407F_CM408F_CM409F.pdf" target="_blank">数据表</a>
  4221. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl06_lnkAvailability">21<br/>有库存</span>
  4222. <table>
  4223. <tr align="center">
  4224. <td style="padding-top: 5px">
  4225. </td>
  4226. </tr>
  4227. <tr align="center">
  4228. <td style="padding-top: 5px; padding-bottom: 5px">
  4229. </td>
  4230. </tr>
  4231. </table></td><td>
  4232. <table class="PriceBreaks" cellspacing="0" border="0">
  4233. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4234. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4235. </td>
  4236. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4237. </td>
  4238. </tr>
  4239. <tr>
  4240. <td class="PriceBreakQuantity">
  4241. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(16,1);">1:</a>
  4242. </td>
  4243. <td class="PriceBreakPrice">
  4244. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥164.7945</span>
  4245. </td>
  4246. </tr>
  4247. <tr>
  4248. <td class="PriceBreakQuantity">
  4249. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(16,5);">5:</a>
  4250. </td>
  4251. <td class="PriceBreakPrice">
  4252. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥157.4118</span>
  4253. </td>
  4254. </tr>
  4255. <tr>
  4256. <td class="PriceBreakQuantity">
  4257. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(16,10);">10:</a>
  4258. </td>
  4259. <td class="PriceBreakPrice">
  4260. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥152.4042</span>
  4261. </td>
  4262. </tr>
  4263. <tr>
  4264. <td class="PriceBreakQuantity">
  4265. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(16,25);">25:</a>
  4266. </td>
  4267. <td class="PriceBreakPrice">
  4268. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥140.0841</span>
  4269. </td>
  4270. </tr>
  4271. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  4272. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  4273. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(16,50);">50:</a>
  4274. </td>
  4275. <td class="PriceBreakPrice">
  4276. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Analog-Devices/ADSP-CM407CSWZ-BF/?qs=sGAEpiMZZMsP8C4Nc3wJd1%252bM2xxROGp06%2f6RC6flRhV5O7MKD1VxoA%3d%3d">查看</a>
  4277. </td>
  4278. </tr>
  4279. <tr>
  4280. <td><br /></td>
  4281. </tr>
  4282. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4283. <td colspan="2" style="text-align: center;">
  4284. </td>
  4285. </tr>
  4286. </table>
  4287. </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;)">
  4288. <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 />
  4289. <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="购买 ADSP-CM407CSWZ-BF" class="buy-button" /><br />
  4290. <table cellspacing="0" border="0" style="width: 100%;">
  4291. <tr>
  4292. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4293. 最低:
  4294. </td>
  4295. <td style="padding-left: 2px; text-align: left;">
  4296. 1
  4297. </td>
  4298. </tr>
  4299. <tr>
  4300. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4301. 多个:
  4302. </td>
  4303. <td style="padding-left: 2px; text-align: left;">
  4304. 1
  4305. </td>
  4306. </tr>
  4307. </table>
  4308. </div>
  4309. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_pnlCompliant">
  4310. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4311. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=DIKJny3a4BekulVYaGh4Xw%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=DIKJny3a4BekulVYaGh4Xw%3d%3d" target="_blank">详细信息</a>
  4312. </div>
  4313. </td><td>DSPs
  4314. </td><td>ARM Cortex M4
  4315. </td><td>240 MHz
  4316. </td><td>16 kB
  4317. </td><td>-
  4318. </td><td>-
  4319. </td><td>
  4320. </td><td>1.2 V, 3.3 V
  4321. </td><td>+ 105 C
  4322. </td><td>SMD/SMT
  4323. </td><td>LQFP-176
  4324. </td>
  4325. </tr><tr class="SearchResultsRowOdd" data-partnumber="584-ADSP-CM407CSWZAF" data-index="19">
  4326. <td class="td-select" align="center">
  4327. <div style="padding: 5px 5px 0 5px;">
  4328. <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>
  4329. </div>
  4330. </td><td><a href='/ProductDetail/Analog-Devices/ADSP-CM407CSWZ-AF/?qs=sGAEpiMZZMsP8C4Nc3wJd1%252bM2xxROGp0v0o%252bU5s2Kv8KRxxKUkH4mQ%3d%3d'><img title='Analog Devices ADSP-CM407CSWZ-AF' alt='Analog Devices ADSP-CM407CSWZ-AF' id=1600951789 src='/images/mouserimages/sm/LQFP_176_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/LQFP_176_t.jpg</div></a></td><td>
  4331. <div style="text-align:left;">
  4332. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Analog-Devices/ADSP-CM407CSWZ-AF/?qs=sGAEpiMZZMsP8C4Nc3wJd1%252bM2xxROGp0v0o%252bU5s2Kv8KRxxKUkH4mQ%3d%3d">584-ADSP-CM407CSWZAF</a><br />
  4333. <br />
  4334. <br />
  4335. </div></td><td>
  4336. <div class="mfrDiv">
  4337. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Analog-Devices/ADSP-CM407CSWZ-AF/?qs=sGAEpiMZZMsP8C4Nc3wJd1%252bM2xxROGp0v0o%252bU5s2Kv8KRxxKUkH4mQ%3d%3d">ADSP-CM407CSWZ-AF</a><br />
  4338. <br />
  4339. <div style="width: 100%; text-align: center;">
  4340. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  4341. </div>
  4342. <div style="width: 100%; text-align: center;">
  4343. </div>
  4344. </div>
  4345. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl03_lnkSupplier" href="../../../../../../Analog-Devices">Analog Devices</a>
  4346. </td><td>数字信号处理器和控制器 - DSP, DSC ARM CORTEX M4 FLASH 11+ ENOB DC 240MHz
  4347. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4348. </div>
  4349. </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;Analog Devices&quot;,&quot;584-ADSP-CM407CSWZAF | ADSP-CM407CSWZ-AF&quot;]);" href="http://www.analog.com/media/en/technical-documentation/data-sheets/ADSP-CM402F_CM403F_CM407F_CM408F_CM409F.pdf" target="_blank">数据表</a>
  4350. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl06_lnkAvailability">19<br/>有库存</span>
  4351. <table>
  4352. <tr align="center">
  4353. <td style="padding-top: 5px">
  4354. </td>
  4355. </tr>
  4356. <tr align="center">
  4357. <td style="padding-top: 5px; padding-bottom: 5px">
  4358. </td>
  4359. </tr>
  4360. </table></td><td>
  4361. <table class="PriceBreaks" cellspacing="0" border="0">
  4362. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4363. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4364. </td>
  4365. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4366. </td>
  4367. </tr>
  4368. <tr>
  4369. <td class="PriceBreakQuantity">
  4370. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(17,1);">1:</a>
  4371. </td>
  4372. <td class="PriceBreakPrice">
  4373. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥173.4993</span>
  4374. </td>
  4375. </tr>
  4376. <tr>
  4377. <td class="PriceBreakQuantity">
  4378. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(17,5);">5:</a>
  4379. </td>
  4380. <td class="PriceBreakPrice">
  4381. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥165.7188</span>
  4382. </td>
  4383. </tr>
  4384. <tr>
  4385. <td class="PriceBreakQuantity">
  4386. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(17,10);">10:</a>
  4387. </td>
  4388. <td class="PriceBreakPrice">
  4389. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥160.4889</span>
  4390. </td>
  4391. </tr>
  4392. <tr>
  4393. <td class="PriceBreakQuantity">
  4394. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(17,25);">25:</a>
  4395. </td>
  4396. <td class="PriceBreakPrice">
  4397. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥147.4785</span>
  4398. </td>
  4399. </tr>
  4400. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  4401. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  4402. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(17,50);">50:</a>
  4403. </td>
  4404. <td class="PriceBreakPrice">
  4405. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Analog-Devices/ADSP-CM407CSWZ-AF/?qs=sGAEpiMZZMsP8C4Nc3wJd1%252bM2xxROGp0v0o%252bU5s2Kv8KRxxKUkH4mQ%3d%3d">查看</a>
  4406. </td>
  4407. </tr>
  4408. <tr>
  4409. <td><br /></td>
  4410. </tr>
  4411. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4412. <td colspan="2" style="text-align: center;">
  4413. </td>
  4414. </tr>
  4415. </table>
  4416. </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;)">
  4417. <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 />
  4418. <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="购买 ADSP-CM407CSWZ-AF" class="buy-button" /><br />
  4419. <table cellspacing="0" border="0" style="width: 100%;">
  4420. <tr>
  4421. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4422. 最低:
  4423. </td>
  4424. <td style="padding-left: 2px; text-align: left;">
  4425. 1
  4426. </td>
  4427. </tr>
  4428. <tr>
  4429. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4430. 多个:
  4431. </td>
  4432. <td style="padding-left: 2px; text-align: left;">
  4433. 1
  4434. </td>
  4435. </tr>
  4436. </table>
  4437. </div>
  4438. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_pnlCompliant">
  4439. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4440. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=DIKJny3a4BcEhi5neZaS0A%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=DIKJny3a4BcEhi5neZaS0A%3d%3d" target="_blank">详细信息</a>
  4441. </div>
  4442. </td><td>DSPs
  4443. </td><td>ARM Cortex M4
  4444. </td><td>240 MHz
  4445. </td><td>16 kB
  4446. </td><td>-
  4447. </td><td>-
  4448. </td><td>
  4449. </td><td>1.2 V, 3.3 V
  4450. </td><td>+ 105 C
  4451. </td><td>SMD/SMT
  4452. </td><td>LQFP-176
  4453. </td>
  4454. </tr><tr class="SearchResultsRowEven" data-partnumber="595-TMS320C6678ACYPA" data-index="20">
  4455. <td class="td-select" align="center">
  4456. <div style="padding: 5px 5px 0 5px;">
  4457. <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>
  4458. </div>
  4459. </td><td><a href='/ProductDetail/Texas-Instruments/TMS320C6678ACYPA/?qs=sGAEpiMZZMsP8C4Nc3wJd1klaJCoaDqeL1NZO%2fsQ1QI%3d'><img title='Texas Instruments TMS320C6678ACYPA' alt='Texas Instruments TMS320C6678ACYPA' id=718510825 src='/images/texasinstruments/sm/TI_FCBGA_841.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_841.jpg</div></a></td><td>
  4460. <div style="text-align:left;">
  4461. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Texas-Instruments/TMS320C6678ACYPA/?qs=sGAEpiMZZMsP8C4Nc3wJd1klaJCoaDqeL1NZO%2fsQ1QI%3d">595-TMS320C6678ACYPA</a><br />
  4462. <br />
  4463. <br />
  4464. </div></td><td>
  4465. <div class="mfrDiv">
  4466. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Texas-Instruments/TMS320C6678ACYPA/?qs=sGAEpiMZZMsP8C4Nc3wJd1klaJCoaDqeL1NZO%2fsQ1QI%3d">TMS320C6678ACYPA</a><br />
  4467. <br />
  4468. <div style="width: 100%; text-align: center;">
  4469. </div>
  4470. <div style="width: 100%; text-align: center;">
  4471. </div>
  4472. </div>
  4473. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl03_lnkSupplier" href="../../../../../../Texas-Instruments">Texas Instruments</a>
  4474. </td><td>数字信号处理器和控制器 - DSP, DSC Multicore Fix/Float Pt Dig Sig Proc
  4475. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4476. </div>
  4477. </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;Texas Instruments&quot;,&quot;595-TMS320C6678ACYPA | TMS320C6678ACYPA&quot;]);" href="http://www.mouser.com/ds/2/405/tms320c6678-315676.pdf" target="_blank">数据表</a>
  4478. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl06_lnkAvailability">79<br/>有库存</span>
  4479. <table>
  4480. <tr align="center">
  4481. <td style="padding-top: 5px">
  4482. </td>
  4483. </tr>
  4484. <tr align="center">
  4485. <td style="padding-top: 5px; padding-bottom: 5px">
  4486. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl06_lnkAlternativePackaging" title="备用包装 | 595-TMS320C6678ACYPA" class="thickbox" href="../../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YRtMBIx%2fOihX%2f5rDgXFZQxrwpV9YqDo5YnvrSuVJqGjgPqTf3ZnI%2fPjfMfrFuEmNZMDh0PLg3TAfQOznw5nXV1vJ04pJE%252budRTvoci3CBfWc70Ytg5DdjPf9C2Nd82ouE%2fpFlGSmX%252bk6Z1nXkELz23F&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  4487. </td>
  4488. </tr>
  4489. </table></td><td>
  4490. <table class="PriceBreaks" cellspacing="0" border="0">
  4491. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4492. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4493. </td>
  4494. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4495. </td>
  4496. </tr>
  4497. <tr>
  4498. <td class="PriceBreakQuantity">
  4499. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(18,1);">1:</a>
  4500. </td>
  4501. <td class="PriceBreakPrice">
  4502. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥2,187.0693</span>
  4503. </td>
  4504. </tr>
  4505. <tr>
  4506. <td class="PriceBreakQuantity">
  4507. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(18,5);">5:</a>
  4508. </td>
  4509. <td class="PriceBreakPrice">
  4510. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥2,147.5584</span>
  4511. </td>
  4512. </tr>
  4513. <tr>
  4514. <td class="PriceBreakQuantity">
  4515. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(18,10);">10:</a>
  4516. </td>
  4517. <td class="PriceBreakPrice">
  4518. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥2,087.1045</span>
  4519. </td>
  4520. </tr>
  4521. <tr>
  4522. <td class="PriceBreakQuantity">
  4523. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(18,25);">25:</a>
  4524. </td>
  4525. <td class="PriceBreakPrice">
  4526. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥2,072.0934</span>
  4527. </td>
  4528. </tr>
  4529. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  4530. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  4531. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(18,50);">50:</a>
  4532. </td>
  4533. <td class="PriceBreakPrice">
  4534. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Texas-Instruments/TMS320C6678ACYPA/?qs=sGAEpiMZZMsP8C4Nc3wJd1klaJCoaDqeL1NZO%2fsQ1QI%3d">查看</a>
  4535. </td>
  4536. </tr>
  4537. <tr>
  4538. <td><br /></td>
  4539. </tr>
  4540. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4541. <td colspan="2" style="text-align: center;">
  4542. </td>
  4543. </tr>
  4544. </table>
  4545. </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;)">
  4546. <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 />
  4547. <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="购买 TMS320C6678ACYPA" class="buy-button" /><br />
  4548. <table cellspacing="0" border="0" style="width: 100%;">
  4549. <tr>
  4550. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4551. 最低:
  4552. </td>
  4553. <td style="padding-left: 2px; text-align: left;">
  4554. 1
  4555. </td>
  4556. </tr>
  4557. <tr>
  4558. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4559. 多个:
  4560. </td>
  4561. <td style="padding-left: 2px; text-align: left;">
  4562. 1
  4563. </td>
  4564. </tr>
  4565. </table>
  4566. </div>
  4567. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_pnlCompliant">
  4568. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4569. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=89sKHCGWihib%2fP9hmdulYw%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=89sKHCGWihib%2fP9hmdulYw%3d%3d" target="_blank">详细信息</a>
  4570. </div>
  4571. </td><td>DSPs
  4572. </td><td>8 C66x
  4573. </td><td>1000 MHz, 1250 MHz
  4574. </td><td>
  4575. </td><td>
  4576. </td><td>512 kB
  4577. </td><td>8 MB
  4578. </td><td>900 mV to 1.1 V
  4579. </td><td>+ 85 C
  4580. </td><td>SMD/SMT
  4581. </td><td>FCBGA-841
  4582. </td>
  4583. </tr><tr class="SearchResultsRowOdd" data-partnumber="841-MC56F8037VLH" data-index="21">
  4584. <td class="td-select" align="center">
  4585. <div style="padding: 5px 5px 0 5px;">
  4586. <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>
  4587. </div>
  4588. </td><td><a href='/ProductDetail/NXP-Freescale/MC56F8037VLH/?qs=sGAEpiMZZMsP8C4Nc3wJdyEASLbRlk%252bm9i73vIACgpk%3d'><img title='NXP / Freescale MC56F8037VLH' alt='NXP / Freescale MC56F8037VLH' id=104038220 src='/images/freescale/sm/tqfp-64.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/tqfp-64.jpg</div></a></td><td>
  4589. <div style="text-align:left;">
  4590. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/NXP-Freescale/MC56F8037VLH/?qs=sGAEpiMZZMsP8C4Nc3wJdyEASLbRlk%252bm9i73vIACgpk%3d">841-MC56F8037VLH</a><br />
  4591. <br />
  4592. <br />
  4593. </div></td><td>
  4594. <div class="mfrDiv">
  4595. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/NXP-Freescale/MC56F8037VLH/?qs=sGAEpiMZZMsP8C4Nc3wJdyEASLbRlk%252bm9i73vIACgpk%3d">MC56F8037VLH</a><br />
  4596. <br />
  4597. <div style="width: 100%; text-align: center;">
  4598. </div>
  4599. <div style="width: 100%; text-align: center;">
  4600. </div>
  4601. </div>
  4602. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl03_lnkSupplier" href="../../../../../../Freescale-Semiconductor">NXP / Freescale</a>
  4603. </td><td>数字信号处理器和控制器 - DSP, DSC 16 BIT DSPHC
  4604. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4605. </div>
  4606. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;NXP / Freescale&quot;,&quot;841-MC56F8037VLH | MC56F8037VLH&quot;]);" href="http://www.mouser.com/ds/2/302/MC56F8037-783218.pdf" target="_blank">数据表</a>
  4607. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl06_lnkAvailability">3,183<br/>有库存</span>
  4608. <table>
  4609. <tr align="center">
  4610. <td style="padding-top: 5px">
  4611. </td>
  4612. </tr>
  4613. <tr align="center">
  4614. <td style="padding-top: 5px; padding-bottom: 5px">
  4615. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl06_lnkAlternativePackaging" title="备用包装 | 841-MC56F8037VLH" class="thickbox" href="../../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YRpsRVHBcVXJjTXQJvetb2mTJnwlxtGddkyyEtbA7vz9VslDH5FfSYalHxSCjTsM5iRFOt1xebM6CVRG%252bnJtWEB%2freFdOwhrPehdb1iLRkqQRkLtpxErR7bwLHLvhQd6Fk%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  4616. </td>
  4617. </tr>
  4618. </table></td><td>
  4619. <table class="PriceBreaks" cellspacing="0" border="0">
  4620. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4621. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4622. </td>
  4623. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4624. </td>
  4625. </tr>
  4626. <tr>
  4627. <td class="PriceBreakQuantity">
  4628. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(19,1);">1:</a>
  4629. </td>
  4630. <td class="PriceBreakPrice">
  4631. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥61.5303</span>
  4632. </td>
  4633. </tr>
  4634. <tr>
  4635. <td class="PriceBreakQuantity">
  4636. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(19,10);">10:</a>
  4637. </td>
  4638. <td class="PriceBreakPrice">
  4639. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥58.0671</span>
  4640. </td>
  4641. </tr>
  4642. <tr>
  4643. <td class="PriceBreakQuantity">
  4644. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(19,25);">25:</a>
  4645. </td>
  4646. <td class="PriceBreakPrice">
  4647. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥54.6741</span>
  4648. </td>
  4649. </tr>
  4650. <tr>
  4651. <td class="PriceBreakQuantity">
  4652. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(19,100);">100:</a>
  4653. </td>
  4654. <td class="PriceBreakPrice">
  4655. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥40.9734</span>
  4656. </td>
  4657. </tr>
  4658. <tr>
  4659. <td><br /></td>
  4660. </tr>
  4661. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4662. <td colspan="2" style="text-align: center;">
  4663. </td>
  4664. </tr>
  4665. </table>
  4666. </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;)">
  4667. <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 />
  4668. <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="购买 MC56F8037VLH" class="buy-button" /><br />
  4669. <table cellspacing="0" border="0" style="width: 100%;">
  4670. <tr>
  4671. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4672. 最低:
  4673. </td>
  4674. <td style="padding-left: 2px; text-align: left;">
  4675. 1
  4676. </td>
  4677. </tr>
  4678. <tr>
  4679. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4680. 多个:
  4681. </td>
  4682. <td style="padding-left: 2px; text-align: left;">
  4683. 1
  4684. </td>
  4685. </tr>
  4686. </table>
  4687. </div>
  4688. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_pnlCompliant">
  4689. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4690. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=8qTixgVsehU0kXmRznbR%252bA%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=8qTixgVsehU0kXmRznbR%252bA%3d%3d" target="_blank">详细信息</a>
  4691. </div>
  4692. </td><td>DSCs
  4693. </td><td>56800E
  4694. </td><td>32 MHz
  4695. </td><td>
  4696. </td><td>
  4697. </td><td>64 kB
  4698. </td><td>8 kB
  4699. </td><td>2.5 V
  4700. </td><td>+ 105 C
  4701. </td><td>SMD/SMT
  4702. </td><td>QFP-64
  4703. </td>
  4704. </tr><tr class="SearchResultsRowEven" data-partnumber="595-OMAPL137BPTPH" data-index="22">
  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_ctl22_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl22$chkSelect" onclick="javascript:RowSelected(22, this.checked);" /></span>
  4708. </div>
  4709. </td><td><a href='/ProductDetail/Texas-Instruments/OMAPL137BPTPH/?qs=sGAEpiMZZMsP8C4Nc3wJd3XSk46ENPFB3y9iYPSF5L8%3d'><img title='Texas Instruments OMAPL137BPTPH' alt='Texas Instruments OMAPL137BPTPH' id=671897883 src='/images/texasinstruments/sm/TI_HLQFP_176.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_HLQFP_176.jpg</div></a></td><td>
  4710. <div style="text-align:left;">
  4711. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Texas-Instruments/OMAPL137BPTPH/?qs=sGAEpiMZZMsP8C4Nc3wJd3XSk46ENPFB3y9iYPSF5L8%3d">595-OMAPL137BPTPH</a><br />
  4712. <br />
  4713. <br />
  4714. </div></td><td>
  4715. <div class="mfrDiv">
  4716. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Texas-Instruments/OMAPL137BPTPH/?qs=sGAEpiMZZMsP8C4Nc3wJd3XSk46ENPFB3y9iYPSF5L8%3d">OMAPL137BPTPH</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_ctl22_ctl03_lnkSupplier" href="../../../../../../Texas-Instruments">Texas Instruments</a>
  4724. </td><td>数字信号处理器和控制器 - DSP, DSC High Temp Low Power App Proc
  4725. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4726. <img src="/Images/icon_ar_red.gif" alt='根据美国政府的出口法规规定,Mouser无法将此产品销售到您所在的国家。' title='根据美国政府的出口法规规定,Mouser无法将此产品销售到您所在的国家。' />
  4727. </div>
  4728. </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;Texas Instruments&quot;,&quot;595-OMAPL137BPTPH | OMAPL137BPTPH&quot;]);" href="http://www.mouser.com/ds/2/405/omapl137-ht-441797.pdf" target="_blank">数据表</a>
  4729. </td><td>
  4730. <table>
  4731. <tr align="center">
  4732. <td style="padding-top: 5px">
  4733. </td>
  4734. </tr>
  4735. <tr align="center">
  4736. <td style="padding-top: 5px; padding-bottom: 5px">
  4737. </td>
  4738. </tr>
  4739. </table></td><td>
  4740. </td><td class="SearchResultsBuyColumn">
  4741. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl08_pnlRestricted">
  4742. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=China&ECCN_Restricted=yes&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
  4743. </div>
  4744. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_pnlCompliant">
  4745. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4746. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=0elb8rMzoKggQf6S0WFw7Q%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=0elb8rMzoKggQf6S0WFw7Q%3d%3d" target="_blank">详细信息</a>
  4747. </div>
  4748. </td><td>DSPs
  4749. </td><td>
  4750. </td><td>
  4751. </td><td>
  4752. </td><td>
  4753. </td><td>
  4754. </td><td>
  4755. </td><td>
  4756. </td><td>
  4757. </td><td>SMD/SMT
  4758. </td><td>HLQFP-176
  4759. </td>
  4760. </tr><tr class="SearchResultsRowOdd" data-partnumber="584-ADSP21060LKSZ160" data-index="23">
  4761. <td class="td-select" align="center">
  4762. <div style="padding: 5px 5px 0 5px;">
  4763. <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>
  4764. </div>
  4765. </td><td><a href='/ProductDetail/Analog-Devices/ADSP-21060LKSZ-160/?qs=sGAEpiMZZMsP8C4Nc3wJd4iKpK4SUnVGeoom4TykUx4%3d'><img title='Analog Devices ADSP-21060LKSZ-160' alt='Analog Devices ADSP-21060LKSZ-160' id=940132842 src='/images/adi/sm/ADI_QFP_240.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/adi/images/ADI_QFP_240.jpg</div></a></td><td>
  4766. <div style="text-align:left;">
  4767. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Analog-Devices/ADSP-21060LKSZ-160/?qs=sGAEpiMZZMsP8C4Nc3wJd4iKpK4SUnVGeoom4TykUx4%3d">584-ADSP21060LKSZ160</a><br />
  4768. <br />
  4769. <br />
  4770. </div></td><td>
  4771. <div class="mfrDiv">
  4772. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Analog-Devices/ADSP-21060LKSZ-160/?qs=sGAEpiMZZMsP8C4Nc3wJd4iKpK4SUnVGeoom4TykUx4%3d">ADSP-21060LKSZ-160</a><br />
  4773. <br />
  4774. <div style="width: 100%; text-align: center;">
  4775. </div>
  4776. <div style="width: 100%; text-align: center;">
  4777. </div>
  4778. </div>
  4779. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl03_lnkSupplier" href="../../../../../../Analog-Devices">Analog Devices</a>
  4780. </td><td>数字信号处理器和控制器 - DSP, DSC 40MHz 120 MFLOPS 5V Floating Point
  4781. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4782. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../adi-sharc-processors/">了解更多</a>
  4783. </div>
  4784. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4785. </div>
  4786. </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;Analog Devices&quot;,&quot;584-ADSP21060LKSZ160 | ADSP-21060LKSZ-160&quot;]);" href="http://www.mouser.com/ds/2/609/ADSP-21060_21060L_21062_21062L_21060C_21060LC-878927.pdf" target="_blank">数据表</a>
  4787. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl06_lnkAvailability">39<br/>有库存</span>
  4788. <table>
  4789. <tr align="center">
  4790. <td style="padding-top: 5px">
  4791. </td>
  4792. </tr>
  4793. <tr align="center">
  4794. <td style="padding-top: 5px; padding-bottom: 5px">
  4795. </td>
  4796. </tr>
  4797. </table></td><td>
  4798. <table class="PriceBreaks" cellspacing="0" border="0">
  4799. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4800. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4801. </td>
  4802. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4803. </td>
  4804. </tr>
  4805. <tr>
  4806. <td class="PriceBreakQuantity">
  4807. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(21,1);">1:</a>
  4808. </td>
  4809. <td class="PriceBreakPrice">
  4810. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥4,018.6575</span>
  4811. </td>
  4812. </tr>
  4813. <tr>
  4814. <td class="PriceBreakQuantity">
  4815. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(21,5);">5:</a>
  4816. </td>
  4817. <td class="PriceBreakPrice">
  4818. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥3,891.0573</span>
  4819. </td>
  4820. </tr>
  4821. <tr>
  4822. <td><br /></td>
  4823. </tr>
  4824. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl03_trMouserReel">
  4825. <td colspan="2" style="text-align: center;">
  4826. </td>
  4827. </tr>
  4828. </table>
  4829. </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;)">
  4830. <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 />
  4831. <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="购买 ADSP-21060LKSZ-160" class="buy-button" /><br />
  4832. <table cellspacing="0" border="0" style="width: 100%;">
  4833. <tr>
  4834. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4835. 最低:
  4836. </td>
  4837. <td style="padding-left: 2px; text-align: left;">
  4838. 1
  4839. </td>
  4840. </tr>
  4841. <tr>
  4842. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4843. 多个:
  4844. </td>
  4845. <td style="padding-left: 2px; text-align: left;">
  4846. 1
  4847. </td>
  4848. </tr>
  4849. </table>
  4850. </div>
  4851. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_pnlCompliant">
  4852. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4853. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=cPhwM5YKegrTw4k2FOdFtQ%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=cPhwM5YKegrTw4k2FOdFtQ%3d%3d" target="_blank">详细信息</a>
  4854. </div>
  4855. </td><td>DSPs
  4856. </td><td>SHARC
  4857. </td><td>40 MHz
  4858. </td><td>-
  4859. </td><td>-
  4860. </td><td>
  4861. </td><td>4 Mbit
  4862. </td><td>3.3 V
  4863. </td><td>+ 85 C
  4864. </td><td>SMD/SMT
  4865. </td><td>MQFP-240
  4866. </td>
  4867. </tr><tr class="SearchResultsRowEven" data-partnumber="595-66AK2H14BAAW24" data-index="24">
  4868. <td class="td-select" align="center">
  4869. <div style="padding: 5px 5px 0 5px;">
  4870. <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>
  4871. </div>
  4872. </td><td><a href='/ProductDetail/Texas-Instruments/66AK2H14BAAW24/?qs=sGAEpiMZZMsP8C4Nc3wJd8zTLopCLtYT%252bAV%252bu82dnTmBOsEBG5kZsw%3d%3d'><img title='Texas Instruments 66AK2H14BAAW24' alt='Texas Instruments 66AK2H14BAAW24' id=1401396632 src='/images/texasinstruments/sm/TI_FCBGA_1517_DSL.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_1517_DSL.jpg</div></a></td><td>
  4873. <div style="text-align:left;">
  4874. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Texas-Instruments/66AK2H14BAAW24/?qs=sGAEpiMZZMsP8C4Nc3wJd8zTLopCLtYT%252bAV%252bu82dnTmBOsEBG5kZsw%3d%3d">595-66AK2H14BAAW24</a><br />
  4875. <br />
  4876. <br />
  4877. </div></td><td>
  4878. <div class="mfrDiv">
  4879. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Texas-Instruments/66AK2H14BAAW24/?qs=sGAEpiMZZMsP8C4Nc3wJd8zTLopCLtYT%252bAV%252bu82dnTmBOsEBG5kZsw%3d%3d">66AK2H14BAAW24</a><br />
  4880. <br />
  4881. <div style="width: 100%; text-align: center;">
  4882. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  4883. </div>
  4884. <div style="width: 100%; text-align: center;">
  4885. </div>
  4886. </div>
  4887. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl03_lnkSupplier" href="../../../../../../Texas-Instruments">Texas Instruments</a>
  4888. </td><td>数字信号处理器和控制器 - DSP, DSC Mulitcore DSP+ARM Keystone II SoC
  4889. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4890. </div>
  4891. </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;Texas Instruments&quot;,&quot;595-66AK2H14BAAW24 | 66AK2H14BAAW24&quot;]);" href="http://www.mouser.com/ds/2/405/66ak2h14-438819.pdf" target="_blank">数据表</a>
  4892. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl06_lnkAvailability">20<br/>有库存</span>
  4893. <table>
  4894. <tr align="center">
  4895. <td style="padding-top: 5px">
  4896. </td>
  4897. </tr>
  4898. <tr align="center">
  4899. <td style="padding-top: 5px; padding-bottom: 5px">
  4900. </td>
  4901. </tr>
  4902. </table></td><td>
  4903. <table class="PriceBreaks" cellspacing="0" border="0">
  4904. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4905. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4906. </td>
  4907. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4908. </td>
  4909. </tr>
  4910. <tr>
  4911. <td class="PriceBreakQuantity">
  4912. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(22,1);">1:</a>
  4913. </td>
  4914. <td class="PriceBreakPrice">
  4915. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥6,621.966</span>
  4916. </td>
  4917. </tr>
  4918. <tr>
  4919. <td class="PriceBreakQuantity">
  4920. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(22,2);">2:</a>
  4921. </td>
  4922. <td class="PriceBreakPrice">
  4923. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥6,579.2259</span>
  4924. </td>
  4925. </tr>
  4926. <tr>
  4927. <td class="PriceBreakQuantity">
  4928. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(22,5);">5:</a>
  4929. </td>
  4930. <td class="PriceBreakPrice">
  4931. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥6,553.8135</span>
  4932. </td>
  4933. </tr>
  4934. <tr>
  4935. <td class="PriceBreakQuantity">
  4936. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(22,10);">10:</a>
  4937. </td>
  4938. <td class="PriceBreakPrice">
  4939. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥6,520.2345</span>
  4940. </td>
  4941. </tr>
  4942. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  4943. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  4944. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(22,25);">25:</a>
  4945. </td>
  4946. <td class="PriceBreakPrice">
  4947. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Texas-Instruments/66AK2H14BAAW24/?qs=sGAEpiMZZMsP8C4Nc3wJd8zTLopCLtYT%252bAV%252bu82dnTmBOsEBG5kZsw%3d%3d">查看</a>
  4948. </td>
  4949. </tr>
  4950. <tr>
  4951. <td><br /></td>
  4952. </tr>
  4953. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4954. <td colspan="2" style="text-align: center;">
  4955. </td>
  4956. </tr>
  4957. </table>
  4958. </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;)">
  4959. <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 />
  4960. <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="购买 66AK2H14BAAW24" class="buy-button" /><br />
  4961. <table cellspacing="0" border="0" style="width: 100%;">
  4962. <tr>
  4963. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4964. 最低:
  4965. </td>
  4966. <td style="padding-left: 2px; text-align: left;">
  4967. 1
  4968. </td>
  4969. </tr>
  4970. <tr>
  4971. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4972. 多个:
  4973. </td>
  4974. <td style="padding-left: 2px; text-align: left;">
  4975. 1
  4976. </td>
  4977. </tr>
  4978. </table>
  4979. </div>
  4980. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_pnlCompliant">
  4981. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4982. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=OjAl5UaKXL1g8tBpaKWM3Q%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=OjAl5UaKXL1g8tBpaKWM3Q%3d%3d" target="_blank">详细信息</a>
  4983. </div>
  4984. </td><td>DSPs
  4985. </td><td>TMS320C66x, ARM Cortex-A15
  4986. </td><td>1.2 GHz / 1.4 GHz
  4987. </td><td>32 kB, 32 kB
  4988. </td><td>32 kB, 32 kB
  4989. </td><td>1.024 MB, 4 MB
  4990. </td><td>
  4991. </td><td>1.8 V, 950 mV
  4992. </td><td>+ 85 C
  4993. </td><td>SMD/SMT
  4994. </td><td>FCBGA-1517
  4995. </td>
  4996. </tr><tr class="SearchResultsRowOdd" data-partnumber="595-66AK2H12BAAWA24" data-index="25">
  4997. <td class="td-select" align="center">
  4998. <div style="padding: 5px 5px 0 5px;">
  4999. <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>
  5000. </div>
  5001. </td><td><a href='/ProductDetail/Texas-Instruments/66AK2H12BAAWA24/?qs=sGAEpiMZZMsP8C4Nc3wJd8zTLopCLtYTqgOsSaqT5%252bX5D64M4IrLrQ%3d%3d'><img title='Texas Instruments 66AK2H12BAAWA24' alt='Texas Instruments 66AK2H12BAAWA24' id=1401396628 src='/images/texasinstruments/sm/66AK2H12BAAWA24_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/texasinstruments/images/66AK2H12BAAWA24_t.jpg</div></a></td><td>
  5002. <div style="text-align:left;">
  5003. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Texas-Instruments/66AK2H12BAAWA24/?qs=sGAEpiMZZMsP8C4Nc3wJd8zTLopCLtYTqgOsSaqT5%252bX5D64M4IrLrQ%3d%3d">595-66AK2H12BAAWA24</a><br />
  5004. <br />
  5005. <br />
  5006. </div></td><td>
  5007. <div class="mfrDiv">
  5008. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Texas-Instruments/66AK2H12BAAWA24/?qs=sGAEpiMZZMsP8C4Nc3wJd8zTLopCLtYTqgOsSaqT5%252bX5D64M4IrLrQ%3d%3d">66AK2H12BAAWA24</a><br />
  5009. <br />
  5010. <div style="width: 100%; text-align: center;">
  5011. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  5012. </div>
  5013. <div style="width: 100%; text-align: center;">
  5014. </div>
  5015. </div>
  5016. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl03_lnkSupplier" href="../../../../../../Texas-Instruments">Texas Instruments</a>
  5017. </td><td>数字信号处理器和控制器 - DSP, DSC Mulitcore DSP+ARM Keystone II SoC
  5018. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  5019. </div>
  5020. </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;Texas Instruments&quot;,&quot;595-66AK2H12BAAWA24 | 66AK2H12BAAWA24&quot;]);" href="http://www.mouser.com/ds/2/405/66ak2h12-484259.pdf" target="_blank">数据表</a>
  5021. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl06_lnkAvailability">22<br/>有库存</span>
  5022. <table>
  5023. <tr align="center">
  5024. <td style="padding-top: 5px">
  5025. </td>
  5026. </tr>
  5027. <tr align="center">
  5028. <td style="padding-top: 5px; padding-bottom: 5px">
  5029. </td>
  5030. </tr>
  5031. </table></td><td>
  5032. <table class="PriceBreaks" cellspacing="0" border="0">
  5033. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  5034. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5035. </td>
  5036. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5037. </td>
  5038. </tr>
  5039. <tr>
  5040. <td class="PriceBreakQuantity">
  5041. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(23,1);">1:</a>
  5042. </td>
  5043. <td class="PriceBreakPrice">
  5044. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥5,960.6001</span>
  5045. </td>
  5046. </tr>
  5047. <tr>
  5048. <td class="PriceBreakQuantity">
  5049. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(23,5);">5:</a>
  5050. </td>
  5051. <td class="PriceBreakPrice">
  5052. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥5,924.3301</span>
  5053. </td>
  5054. </tr>
  5055. <tr>
  5056. <td class="PriceBreakQuantity">
  5057. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(23,10);">10:</a>
  5058. </td>
  5059. <td class="PriceBreakPrice">
  5060. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥5,600.6613</span>
  5061. </td>
  5062. </tr>
  5063. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl04_trViewMore">
  5064. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  5065. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl04_lnkViewMoreQuantity" href="javascript:SelectQuantity(23,25);">25:</a>
  5066. </td>
  5067. <td class="PriceBreakPrice">
  5068. <a onclick="javascript:window.location=&quot;../../../../../../Quote/quote.aspx?mouserpartnumber=595-66AK2H12BAAWA24&amp;quantity=25&quot;;_gaq.push([&#39;_trackEvent&#39;,&#39;Quote Request&#39;,&quot;Texas Instruments&quot;,&quot;595-66AK2H12BAAWA24&quot;,1]);return false;" href="../../../../../../Quote/quote.aspx">报价</a>
  5069. </td>
  5070. </tr>
  5071. <tr>
  5072. <td><br /></td>
  5073. </tr>
  5074. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl04_trMouserReel">
  5075. <td colspan="2" style="text-align: center;">
  5076. </td>
  5077. </tr>
  5078. </table>
  5079. </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;)">
  5080. <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 />
  5081. <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="购买 66AK2H12BAAWA24" class="buy-button" /><br />
  5082. <table cellspacing="0" border="0" style="width: 100%;">
  5083. <tr>
  5084. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5085. 最低:
  5086. </td>
  5087. <td style="padding-left: 2px; text-align: left;">
  5088. 1
  5089. </td>
  5090. </tr>
  5091. <tr>
  5092. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5093. 多个:
  5094. </td>
  5095. <td style="padding-left: 2px; text-align: left;">
  5096. 1
  5097. </td>
  5098. </tr>
  5099. </table>
  5100. </div>
  5101. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_pnlCompliant">
  5102. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  5103. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=OjAl5UaKXL2OPC8vvsY9Wg%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=OjAl5UaKXL2OPC8vvsY9Wg%3d%3d" target="_blank">详细信息</a>
  5104. </div>
  5105. </td><td>DSPs
  5106. </td><td>TMS320C66x, ARM Cortex-A15
  5107. </td><td>1.2 GHz / 1.4 GHz
  5108. </td><td>32 kB, 32 kB
  5109. </td><td>32 kB, 32 kB
  5110. </td><td>1.024 MB, 4 MB
  5111. </td><td>
  5112. </td><td>1.8 V, 950 mV
  5113. </td><td>+ 100 C
  5114. </td><td>SMD/SMT
  5115. </td><td>FCBGA-1517
  5116. </td>
  5117. </tr><tr class="SearchResultsRowEven" data-partnumber="579-PIC33256MU806IPT" data-index="26">
  5118. <td class="td-select" align="center">
  5119. <div style="padding: 5px 5px 0 5px;">
  5120. <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>
  5121. </div>
  5122. </td><td><a href='/ProductDetail/Microchip-Technology/DSPIC33EP256MU806-I-PT/?qs=sGAEpiMZZMsP8C4Nc3wJdwYt%252b2Eorh0I8JByBtwyQsg%3d'><img title='Microchip Technology DSPIC33EP256MU806-I/PT' alt='Microchip Technology DSPIC33EP256MU806-I/PT' id=960052307 src='/images/microchiptechnology/sm/tqfp-64.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/microchiptechnology/images/tqfp-64.jpg</div></a></td><td>
  5123. <div style="text-align:left;">
  5124. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Microchip-Technology/DSPIC33EP256MU806-I-PT/?qs=sGAEpiMZZMsP8C4Nc3wJdwYt%252b2Eorh0I8JByBtwyQsg%3d">579-PIC33256MU806IPT</a><br />
  5125. <br />
  5126. <br />
  5127. </div></td><td>
  5128. <div class="mfrDiv">
  5129. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Microchip-Technology/DSPIC33EP256MU806-I-PT/?qs=sGAEpiMZZMsP8C4Nc3wJdwYt%252b2Eorh0I8JByBtwyQsg%3d">DSPIC33EP256MU806-I/PT</a><br />
  5130. <br />
  5131. <div style="width: 100%; text-align: center;">
  5132. </div>
  5133. <div style="width: 100%; text-align: center;">
  5134. <span class="MultisimBlue"><a href="/multisimblue" target="blank" onclick="ga('send', 'event', 'Internal Click', 'MultiSIM Blue Icon', 'Refine Page');" ><img src="/images/MSB-Icon-19x19.png" alt=" MultiSIM BLUE有货" /></a></span><br/>
  5135. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl02_lnkMultiSIMBlue" title=" MultiSIM BLUE有货" class="MultisimBlue" onclick="ga(&#39;send&#39;, &#39;event&#39;, &#39;Internal Click&#39;, &#39;MultiSIM Blue Link&#39;, &#39;Refine Page&#39;);" href="../../../../../../multisimblue" target="_blank"> MultiSIM BLUE有货</a>
  5136. </div>
  5137. </div>
  5138. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl03_lnkSupplier" href="../../../../../../microchip">Microchip Technology</a>
  5139. </td><td>数字信号处理器和控制器 - DSP, DSC 64P 256KB Flash 28KB RAM 60MHz USB
  5140. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  5141. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../new/microchip/microchipdspic33epxxxmc20x50x/">了解更多</a>
  5142. </div>
  5143. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  5144. </div>
  5145. </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;Microchip Technology&quot;,&quot;579-PIC33256MU806IPT | DSPIC33EP256MU806-I/PT&quot;]);" href="http://www.mouser.com/ds/2/268/70616F-66816.pdf" target="_blank">数据表</a>
  5146. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl06_lnkAvailability">1,433<br/>有库存</span>
  5147. <table>
  5148. <tr align="center">
  5149. <td style="padding-top: 5px">
  5150. </td>
  5151. </tr>
  5152. <tr align="center">
  5153. <td style="padding-top: 5px; padding-bottom: 5px">
  5154. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl06_lnkAlternativePackaging" title="备用包装 | 579-PIC33256MU806IPT" class="thickbox" href="../../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YSr1aLHGoiLFEL3ILgxuEYf0wUUjmnkymYwqIjOHj2gIng0qa%252bVK3I7jpHnr9VQQUWGm%2fBf9m3wg6BszJB8WFJLc5Hl27Eo6ObogPPnnrj7uussD0DK3PJbFpELqsOO61hRbqvOCkNMtv1idnQoU6oYEiuAyB0aDsQ%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  5155. </td>
  5156. </tr>
  5157. </table></td><td>
  5158. <table class="PriceBreaks" cellspacing="0" border="0">
  5159. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  5160. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5161. </td>
  5162. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5163. </td>
  5164. </tr>
  5165. <tr>
  5166. <td class="PriceBreakQuantity">
  5167. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(24,1);">1:</a>
  5168. </td>
  5169. <td class="PriceBreakPrice">
  5170. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥63.765</span>
  5171. </td>
  5172. </tr>
  5173. <tr>
  5174. <td class="PriceBreakQuantity">
  5175. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(24,10);">10:</a>
  5176. </td>
  5177. <td class="PriceBreakPrice">
  5178. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥53.1414</span>
  5179. </td>
  5180. </tr>
  5181. <tr>
  5182. <td class="PriceBreakQuantity">
  5183. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(24,25);">25:</a>
  5184. </td>
  5185. <td class="PriceBreakPrice">
  5186. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥48.672</span>
  5187. </td>
  5188. </tr>
  5189. <tr>
  5190. <td class="PriceBreakQuantity">
  5191. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(24,100);">100:</a>
  5192. </td>
  5193. <td class="PriceBreakPrice">
  5194. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥44.1207</span>
  5195. </td>
  5196. </tr>
  5197. <tr>
  5198. <td><br /></td>
  5199. </tr>
  5200. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  5201. <td colspan="2" style="text-align: center;">
  5202. </td>
  5203. </tr>
  5204. </table>
  5205. </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;)">
  5206. <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 />
  5207. <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="购买 DSPIC33EP256MU806-I/PT" class="buy-button" /><br />
  5208. <table cellspacing="0" border="0" style="width: 100%;">
  5209. <tr>
  5210. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5211. 最低:
  5212. </td>
  5213. <td style="padding-left: 2px; text-align: left;">
  5214. 1
  5215. </td>
  5216. </tr>
  5217. <tr>
  5218. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5219. 多个:
  5220. </td>
  5221. <td style="padding-left: 2px; text-align: left;">
  5222. 1
  5223. </td>
  5224. </tr>
  5225. </table>
  5226. </div>
  5227. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_pnlCompliant">
  5228. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  5229. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=mxhSj%252bXvuAV6yOv%252bP2shDQ%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=mxhSj%252bXvuAV6yOv%252bP2shDQ%3d%3d" target="_blank">详细信息</a>
  5230. </div>
  5231. </td><td>DSCs
  5232. </td><td>dsPIC
  5233. </td><td>340 MHz
  5234. </td><td>
  5235. </td><td>
  5236. </td><td>256 kB
  5237. </td><td>28 kB
  5238. </td><td>3 V to 3.6 V
  5239. </td><td>+ 85 C
  5240. </td><td>SMD/SMT
  5241. </td><td>TQFP-64
  5242. </td>
  5243. </tr><tr class="SearchResultsRowOdd" data-partnumber="579-PIC33256MU810IPF" data-index="27">
  5244. <td class="td-select" align="center">
  5245. <div style="padding: 5px 5px 0 5px;">
  5246. <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>
  5247. </div>
  5248. </td><td><a href='/ProductDetail/Microchip-Technology/DSPIC33EP256MU810-I-PF/?qs=sGAEpiMZZMsP8C4Nc3wJdwYt%252b2Eorh0IQ2a5EyJC3uY%3d'><img title='Microchip Technology DSPIC33EP256MU810-I/PF' alt='Microchip Technology DSPIC33EP256MU810-I/PF' id=960052317 src='/images/microchiptechnology/sm/inhouse_dspic33ep256mu810ipf_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/microchiptechnology/images/inhouse_dspic33ep256mu810ipf_t.jpg</div></a></td><td>
  5249. <div style="text-align:left;">
  5250. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Microchip-Technology/DSPIC33EP256MU810-I-PF/?qs=sGAEpiMZZMsP8C4Nc3wJdwYt%252b2Eorh0IQ2a5EyJC3uY%3d">579-PIC33256MU810IPF</a><br />
  5251. <br />
  5252. <br />
  5253. </div></td><td>
  5254. <div class="mfrDiv">
  5255. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Microchip-Technology/DSPIC33EP256MU810-I-PF/?qs=sGAEpiMZZMsP8C4Nc3wJdwYt%252b2Eorh0IQ2a5EyJC3uY%3d">DSPIC33EP256MU810-I/PF</a><br />
  5256. <br />
  5257. <div style="width: 100%; text-align: center;">
  5258. </div>
  5259. <div style="width: 100%; text-align: center;">
  5260. <span class="MultisimBlue"><a href="/multisimblue" target="blank" onclick="ga('send', 'event', 'Internal Click', 'MultiSIM Blue Icon', 'Refine Page');" ><img src="/images/MSB-Icon-19x19.png" alt=" MultiSIM BLUE有货" /></a></span><br/>
  5261. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl02_lnkMultiSIMBlue" title=" MultiSIM BLUE有货" class="MultisimBlue" onclick="ga(&#39;send&#39;, &#39;event&#39;, &#39;Internal Click&#39;, &#39;MultiSIM Blue Link&#39;, &#39;Refine Page&#39;);" href="../../../../../../multisimblue" target="_blank"> MultiSIM BLUE有货</a>
  5262. </div>
  5263. </div>
  5264. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl03_lnkSupplier" href="../../../../../../microchip">Microchip Technology</a>
  5265. </td><td>数字信号处理器和控制器 - DSP, DSC 100P 256KB Flsh 28KB RAM 60MHz USB
  5266. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  5267. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../new/microchip/microchipdspic33epxxxmc20x50x/">了解更多</a>
  5268. </div>
  5269. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  5270. </div>
  5271. </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;Microchip Technology&quot;,&quot;579-PIC33256MU810IPF | DSPIC33EP256MU810-I/PF&quot;]);" href="http://www.mouser.com/ds/2/268/70616g-218024.pdf" target="_blank">数据表</a>
  5272. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl06_lnkAvailability">1,156<br/>有库存</span>
  5273. <table>
  5274. <tr align="center">
  5275. <td style="padding-top: 5px">
  5276. </td>
  5277. </tr>
  5278. <tr align="center">
  5279. <td style="padding-top: 5px; padding-bottom: 5px">
  5280. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl06_lnkAlternativePackaging" title="备用包装 | 579-PIC33256MU810IPF" class="thickbox" href="../../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YSr1aLHGoiLFEL3ILgxuEYffT2ohuscF55E%252blNWgF69t4CzwkUK1soCNAWOWCYCS0iLuuhjscyQ57hpC5JM7eE%2fRJcwHJ6HgA4awYymxAp1P2haPgA4JZQHQrwdR%2ftlRU8WvjTjnyQfwktIITpvq0mny24WUtB9WCc%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  5281. </td>
  5282. </tr>
  5283. </table></td><td>
  5284. <table class="PriceBreaks" cellspacing="0" border="0">
  5285. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  5286. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5287. </td>
  5288. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5289. </td>
  5290. </tr>
  5291. <tr>
  5292. <td class="PriceBreakQuantity">
  5293. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(25,1);">1:</a>
  5294. </td>
  5295. <td class="PriceBreakPrice">
  5296. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥74.3184</span>
  5297. </td>
  5298. </tr>
  5299. <tr>
  5300. <td class="PriceBreakQuantity">
  5301. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(25,10);">10:</a>
  5302. </td>
  5303. <td class="PriceBreakPrice">
  5304. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥61.9164</span>
  5305. </td>
  5306. </tr>
  5307. <tr>
  5308. <td class="PriceBreakQuantity">
  5309. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(25,25);">25:</a>
  5310. </td>
  5311. <td class="PriceBreakPrice">
  5312. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥56.7567</span>
  5313. </td>
  5314. </tr>
  5315. <tr>
  5316. <td class="PriceBreakQuantity">
  5317. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(25,100);">100:</a>
  5318. </td>
  5319. <td class="PriceBreakPrice">
  5320. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥51.363</span>
  5321. </td>
  5322. </tr>
  5323. <tr>
  5324. <td><br /></td>
  5325. </tr>
  5326. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  5327. <td colspan="2" style="text-align: center;">
  5328. </td>
  5329. </tr>
  5330. </table>
  5331. </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;)">
  5332. <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 />
  5333. <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="购买 DSPIC33EP256MU810-I/PF" class="buy-button" /><br />
  5334. <table cellspacing="0" border="0" style="width: 100%;">
  5335. <tr>
  5336. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5337. 最低:
  5338. </td>
  5339. <td style="padding-left: 2px; text-align: left;">
  5340. 1
  5341. </td>
  5342. </tr>
  5343. <tr>
  5344. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5345. 多个:
  5346. </td>
  5347. <td style="padding-left: 2px; text-align: left;">
  5348. 1
  5349. </td>
  5350. </tr>
  5351. </table>
  5352. </div>
  5353. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_pnlCompliant">
  5354. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  5355. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=mxhSj%252bXvuAXcFYo9%252bTa0KQ%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=mxhSj%252bXvuAXcFYo9%252bTa0KQ%3d%3d" target="_blank">详细信息</a>
  5356. </div>
  5357. </td><td>DSCs
  5358. </td><td>dsPIC
  5359. </td><td>340 MHz
  5360. </td><td>
  5361. </td><td>
  5362. </td><td>256 kB
  5363. </td><td>28 kB
  5364. </td><td>3 V to 3.6 V
  5365. </td><td>+ 85 C
  5366. </td><td>SMD/SMT
  5367. </td><td>TQFP-100
  5368. </td>
  5369. </tr>
  5370. </table>
  5371. </div>
  5372. </td>
  5373. </tr>
  5374. <tr>
  5375. <td class="tdSearchResultsPagingBottom">
  5376. <table id="ctl00_ContentMain_tbl4" class="SearchResultsPaging">
  5377. <tr>
  5378. <td>
  5379. <input type="submit" name="ctl00$ContentMain$btn3" value="购买所选商品" onclick="javascript:return MiniCart.AddToCartNShowCart(MiniCart.source);" id="ctl00_ContentMain_btn3" title="购买所选商品" class="buy-button" />
  5380. </td>
  5381. <td>
  5382. <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" />
  5383. </td>
  5384. <td>
  5385. <span id="ctl00_ContentMain_lbl12" title="您可选择至多20 个零件单次进行对比。若您选择更多,则仅20件距离最近的所选零件会被对比。" class="bold">至多对比 20 零件.</span>
  5386. </td>
  5387. <td style="padding-left: 40px;">
  5388. <div class="floatrightpager">
  5389. <span class="bold">
  5390. 页面:
  5391. </span>
  5392. <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/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/?No=25">2</a><a id="ctl00_ContentMain_PagerBottom_2" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/?No=50">3</a><a id="ctl00_ContentMain_PagerBottom_3" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/?No=75">4</a><a id="ctl00_ContentMain_PagerBottom_4" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/?No=100">5</a><a id="ctl00_ContentMain_PagerBottom_5" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/?No=125">6</a><a id="ctl00_ContentMain_PagerBottom_6" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/?No=150">7</a><a id="ctl00_ContentMain_PagerBottom_7" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/?No=175">8</a><a id="ctl00_ContentMain_PagerBottom_8" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/?No=200">9</a><a id="ctl00_ContentMain_PagerBottom_9" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/?No=225">10</a><a id="ctl00_ContentMain_PagerBottom_lnkNextSet" class="ellipsis" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/?No=250">...</a><a id="ctl00_ContentMain_PagerBottom_150" class="first-last" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/?No=3750">151</a><a id="ctl00_ContentMain_PagerBottom_lnkNext" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/?No=25">下一页</a></span>
  5393. </div>
  5394. </td>
  5395. </tr>
  5396. </table>
  5397. </td>
  5398. </tr>
  5399. <tr>
  5400. <td>
  5401. <!--- Search Tips --->
  5402. </td>
  5403. </tr>
  5404. <tr>
  5405. <td>
  5406. <!-- SOP Section 2 -->
  5407. </td>
  5408. </tr>
  5409. </table>
  5410. </div>
  5411. </div><!-- #liProducts-->
  5412. <!-- Datasheets tab -->
  5413. <!-- #liDatasheets-->
  5414. <!-- Images tab -->
  5415. <!-- #liImages-->
  5416. <!-- Newest Products tab -->
  5417. <!-- #liProducts-->
  5418. </div>
  5419. <div id="ctl00_ContentMain_popSearch_pnlPopularSearches">
  5420. <div>
  5421. <span class="popular-searches-label">热门搜索:</span>
  5422. <span class="popular-searches-links"><a href='/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0?P=1z0w28cZ1z0vw15&pop=nolj' onclick="ga('send','event','Popular Search Refine Click','Digital Signal Processors & Controllers - DSP, DSC','4 MB 500 MHz Digital Signal Processors & Controllers - DSP, DSC')">4 MB 500 MHz 数字信号处理器和控制器 - DSP, DSC</a> , <a href='/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0?P=1z0w172&pop=noli' onclick="ga('send','event','Popular Search Refine Click','Digital Signal Processors & Controllers - DSP, DSC','1.05 V Digital Signal Processors & Controllers - DSP, DSC')">1.05 V 数字信号处理器和控制器 - DSP, DSC</a> , <a href='/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/SHARC-Core/_/N-a86c0?P=1yyhnxyZ1z0vw15&pop=nolk' onclick="ga('send','event','Popular Search Refine Click','Digital Signal Processors & Controllers - DSP, DSC','4 MB SHARC Digital Signal Processors & Controllers - DSP, DSC')">4 MB SHARC 数字信号处理器和控制器 - DSP, DSC</a> , <a href='/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0?P=1yyu2xi&pop=jw9' onclick="ga('send','event','Popular Search Refine Click','Digital Signal Processors & Controllers - DSP, DSC','1.35 GHz Digital Signal Processors & Controllers - DSP, DSC')">1.35 GHz 数字信号处理器和控制器 - DSP, DSC</a></span>
  5423. </div>
  5424. </div>
  5425. <div style="visibility: hidden;">
  5426. <input name="ctl00$ContentMain$lblTrdTerm" type="text" id="ctl00_ContentMain_lblTrdTerm" style="height:1px;" />
  5427. <input name="ctl00$ContentMain$lblIsNewTerm" type="text" id="ctl00_ContentMain_lblIsNewTerm" style="height:1px;" />
  5428. <span id="SearchResultCount">3753</span>
  5429. <div id="disclaimer">
  5430. 图像仅供参考<br/>请参阅产品规格</div>
  5431. </div>
  5432. <input type="hidden" name="ctl00$ContentMain$hfBreadcrumbTemplates" id="ctl00_ContentMain_hfBreadcrumbTemplates" value="Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Digital-Signal-Processors-Controllers-DSP-DSC" />
  5433. <script type="text/javascript" src='../../../../../../javascript/ProductImage.js'></script>
  5434. <script type="text/javascript" src='../../../../../../flash/js/mb.zoomify.js?v=3.0.20160304.2'></script>
  5435. <script type="text/javascript" src='../../../../../../flash/js/refine2.js?v=3.0.20160304.2'></script>
  5436. <!--[if gte IE 9]><!-->
  5437. <script type="text/javascript" src='../../../../../../flash/js/angular.min.js?v=3.0.20160304.2'></script>
  5438. <!--<![endif]-->
  5439. <!--[if lt IE 9]>
  5440. <script type="text/javascript" src='../../../../../../flash/js/angular-1.2.min.js?v=3.0.20160304.2'></script>
  5441. <![endif]-->
  5442. <script type="text/javascript" src='../../../../../../flash/js/catalog-nav-2.js?v=3.0.20160304.2'></script>
  5443. <script type="text/javascript">
  5444. var subdomain = 'cn2';
  5445. </script>
  5446. </div>
  5447. <div class="aspNetHidden">
  5448. <input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="1BDFFD94" />
  5449. <input type="hidden" name="__SCROLLPOSITIONX" id="__SCROLLPOSITIONX" value="0" />
  5450. <input type="hidden" name="__SCROLLPOSITIONY" id="__SCROLLPOSITIONY" value="0" />
  5451. <input type="hidden" name="__PREVIOUSPAGE" id="__PREVIOUSPAGE" value="sCwL_pxdoj0XSK04yfSNwmk7SAHGSbiByRjA1dnwtKBk-nBbIRlJWZQvencUkJ0sBD6NabQ8CPhwqV6J9lNk9NKWVfo1" />
  5452. </div>
  5453. <script type="text/javascript">
  5454. //<![CDATA[
  5455. var mfrIDsArray = new Array;
  5456. //]]>
  5457. </script>
  5458. <script src='../../../../../../flash/js/Minicart.js?v=3.0.20160304.2' type='text/javascript'></script>
  5459. <script type="text/javascript">
  5460. //<![CDATA[
  5461. var auOnMsg='打开建议';var auOffMsg='关闭建议';var autoSuggestionEnabled='1';var lblMoreParts ='更多零件';var enableNewTypeAhead='1';var enableAtaTypeAhead='1';var enableAtaGATrackingEstimatedAjaxCalls='1';//]]>
  5462. </script>
  5463. <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>
  5464. <script type="text/javascript">
  5465. //<![CDATA[
  5466. maxAllowedAttributeSelection =150; currentParametricCount =0; maxSelectionAllowedPerGroupBeforeConversion =10; enableRangeLists = 1; maxWarningMessage = '由于应用的过滤条件太多,您的搜索无法完成。请去除一些选择,然后重试。';
  5467. <!-- Google Code for Conversion Page Remarketing List -->
  5468. <!--
  5469. var google_conversion_id = 1046090287;
  5470. var google_conversion_language = "en";
  5471. var google_conversion_format = "3";
  5472. var google_conversion_color = "666666";
  5473. var google_conversion_label = "9WmrCMOVxQEQr6To8gM";
  5474. var google_conversion_value = 0;
  5475. //-->
  5476. </script>
  5477. <div class="ga-remarketing">
  5478. <script type="text/javascript" src="http://www.googleadservices.com/pagead/conversion.js">
  5479. </script>
  5480. </div>
  5481. <noscript>
  5482. <div style="display:inline;">
  5483. <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" />
  5484. </div>
  5485. </noscript>
  5486. <script type="text/javascript">
  5487. //]]>
  5488. </script>
  5489. <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>
  5490. <script type="text/javascript">
  5491. //<![CDATA[
  5492. groupAttributeSelectionIds ='ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$1000000411^ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$688640^ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$1000000656^ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$1000000389^ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$1000001066^ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$1000001067^ctl00$ContentMain$uc5$AttributeCategoryList$ctl06$1000000128^ctl00$ContentMain$uc5$AttributeCategoryList$ctl07$1000000048^ctl00$ContentMain$uc5$AttributeCategoryList$ctl08$1000000393^ctl00$ContentMain$uc5$AttributeCategoryList$ctl09$1000000314^ctl00$ContentMain$uc5$AttributeCategoryList$ctl10$1323044^ctl00$ContentMain$uc5$AttributeCategoryList$ctl11$688606';
  5493. theForm.oldSubmit = theForm.submit;
  5494. theForm.submit = WebForm_SaveScrollPositionSubmit;
  5495. theForm.oldOnSubmit = theForm.onsubmit;
  5496. theForm.onsubmit = WebForm_SaveScrollPositionOnSubmit;
  5497. //]]>
  5498. </script>
  5499. </form>
  5500. <div id="content-container2" class="hidden">
  5501. <div id="content-fixed-width2" class="content-fixed-width">
  5502. </div>
  5503. </div>
  5504. <div id="wideFooter" class="wideFooter">
  5505. <div id="footer" class="container">
  5506. <input name="ctl00$Footer1$sb" type="hidden" id="ctl00_Footer1_sb" value="TXWEB10|20160304.2" />
  5507. <div id="ft_table1">
  5508. <div class="row">
  5509. <div class="col-xs-12">
  5510. <div id="ctl00_Footer1_pnlEmailSignup" class="ft_signup hidden-xs">
  5511. <div class="floatleft padding5right">
  5512. <strong class="h3">
  5513. 快速电子邮件注册</strong>&nbsp;&nbsp;
  5514. <input type="text" id="txtQuickSubsEmail" maxlength="48" style="width: 200px" tooltip="eMail Address" />
  5515. </div>
  5516. <a id="lnkBox" class="thickbox blue-button" onclick="return QuickSignUp();">
  5517. 提交
  5518. </a>
  5519. </div>
  5520. <div id="ft_icons" class="ft_icons">
  5521. <div id="ft_social">
  5522. <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>
  5523. <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>
  5524. <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>
  5525. <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">
  5526. <div class="ico-social fb"></div>
  5527. </a>
  5528. <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">
  5529. <div class="ico-social tw"></div>
  5530. </a>
  5531. <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">
  5532. <div class="ico-social rss"></div>
  5533. </a>
  5534. <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">
  5535. <div class="ico-social yt"></div>
  5536. </a>
  5537. <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">
  5538. <div class="ico-social gp"></div>
  5539. </a>
  5540. <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">
  5541. <div class="ico-social ln"></div>
  5542. </a>
  5543. <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">
  5544. <div class="ico-social sb"></div>
  5545. </a>
  5546. <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">
  5547. <div class="ico-social blog"></div>
  5548. </a>
  5549. </div>
  5550. </div>
  5551. </div>
  5552. </div>
  5553. </div>
  5554. <div id="ft_box" itemscope itemtype="http://schema.org/WPFooter">
  5555. <div class="ft_wrapper">
  5556. <div id="ft_links" class="row">
  5557. <div class="col-xs-3 paddingBtm10 hidden-xs">
  5558. <strong class="paddingTopBtm10 inline-block">
  5559. 公司</strong>
  5560. <ul>
  5561. <li>
  5562. <a id="ctl00_Footer1_lnk26" href="../../../../../../aboutus/">关于我们</a></li>
  5563. <li>
  5564. <a id="ctl00_Footer1_lnk28" href="../../../../../../educationalsales/">教育销售</a></li>
  5565. <li>
  5566. <a id="ctl00_Footer1_lnk31" href="../../../../../../pressroom/">新闻中心</a></li>
  5567. <li>
  5568. <a id="ctl00_Footer1_lnk32" href="../../../../../../careers/">Mouser 工作机会</a></li>
  5569. <li>
  5570. <a id="ctl00_Footer1_lnk29" href="../../../../../../quality/">品质保证</a></li>
  5571. <li>
  5572. <a id="ctl00_Footer1_lnk30" href="../../../../../../environmental/">环境保护</a></li>
  5573. </ul>
  5574. </div>
  5575. <div class="col-xs-3 hidden-xs">
  5576. <strong class="paddingTopBtm10 inline-block">
  5577. 快速链接</strong>
  5578. <ul>
  5579. <li><a id="A7" href="/blog">
  5580. Mouser博客</a></li>
  5581. <li>
  5582. <a id="ctl00_Footer1_hlnk1" href="../../../../../../new/">最新产品</a></li>
  5583. <li>
  5584. <a id="ctl00_Footer1_hlnk2" href="../../../../../../new/products/">新产品</a></li>
  5585. <li>
  5586. <a id="ctl00_Footer1_hlnk3" href="../../../../../../applications/">新技术</a></li>
  5587. </ul>
  5588. </div>
  5589. <div class="col-xs-12 col-sm-3">
  5590. <strong class="paddingTopBtm10 inline-block">
  5591. 支持</strong>
  5592. <ul>
  5593. <li><a id="A3" href="/feedback.aspx">
  5594. 反馈</a></li>
  5595. <li class="hidden-xs"><a id="A4" href="/Help/help.aspx">
  5596. 帮助</a></li>
  5597. <li>
  5598. <a id="ctl00_Footer1_lnk27" href="../../../../../../contact/">联系我们</a></li>
  5599. <li class="hidden-xs"><a id="A5" href="/browsersupport/">
  5600. 浏览器支持</a></li>
  5601. <li><a id="A6" href="/cookie-policy/">
  5602. Cookie政策</a></li>
  5603. </ul>
  5604. </div>
  5605. <div class="col-xs-12 col-sm-3">
  5606. <strong class="paddingTopBtm10 inline-block">
  5607. 昴氏(上海)电子贸易有限公司</strong>
  5608. <ul>
  5609. <li>
  5610. <h4>
  5611. 中国上海市长宁区娄山关路555号<br />长房国际广场办公楼2506-2510室<br />邮编200051<br/><br/>400-821-6111</h4>
  5612. </li>
  5613. </ul>
  5614. </div>
  5615. </div>
  5616. </div>
  5617. </div>
  5618. <div class="row">
  5619. <div id="ctl00_Footer1_pn1" class="ft_copy_pos2 col-xs-12 col-sm-5">
  5620. <div id="ft_copy">
  5621. <span class="ft_terms">
  5622. <a id="A1" href="/privacypolicy/">
  5623. 隐私政策</a>
  5624. &nbsp;&nbsp;|&nbsp;&nbsp;
  5625. <a id="href3" href="/saleterms/">
  5626. 销售条款</a>
  5627. <br />
  5628. </span>
  5629. <span class="ft_copyright">
  5630. 版权所有©2016 Mouser Electronics, Inc
  5631. |
  5632. 沪ICP备15042575号-1
  5633. <br />
  5634. </span>
  5635. <span class="ft_trade">
  5636. Mouser® 和 Mouser Electronics® 是 Mouser Electronics, Inc 的注册商标。
  5637. </span>
  5638. <span class="ft_hq">
  5639. Corporate headquarters and logistics center in Mansfield, Texas USA.
  5640. </span>
  5641. <br />
  5642. <span class="ft_ClassicMobile">
  5643. <strong>
  5644. <a id="ctl00_Footer1_lbtn1" class="ft-mobile" href="../../../../../../m_Home.aspx">通过移动设备查看</a></strong>
  5645. </span>
  5646. </div>
  5647. </div>
  5648. <div id="ft_cert" class="col-xs-7 align-right hidden-xs">
  5649. <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>
  5650. <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>
  5651. <a id="link" title="IESA" class="ft_cert_padding ft_ecia" href="/ecia/">
  5652. <img id="imgIESA" src="/Images/footer/logo-IESA_small.png" alt="IESA">
  5653. </a>
  5654. <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>
  5655. <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;
  5656. </a>
  5657. </div>
  5658. <div id="ft_cert_2" class="col-xs-7 align-right hidden-xs">
  5659. <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>
  5660. <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>
  5661. <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>
  5662. <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>
  5663. </div>
  5664. </div>
  5665. <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>
  5666. <script type="text/javascript">
  5667. var quickSignUpUrl = 'https://sub.info.mouser.com/quick-signup-sc';
  5668. </script>
  5669. </div>
  5670. </div>
  5671. <script src="../../../../../../flash/AC_RunActiveContent.js" type="text/javascript"></script>
  5672. <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>
  5673. </body>
  5674. </html>