34.html 329 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278
  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_5e358c8f-9dd0-4042-99b2-e034a9f2724b-47872-322920';</script>
  34. <!-- AppInternalsXpert BMX Integration End -->
  35. <title>
  36. 嵌入式处理器和控制器 | Mouser
  37. </title><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><meta id="ctl00_metaDesc" name="Description" content="目前,Mouser Electronics可供应嵌入式处理器和控制器 。Mouser提供嵌入式处理器和控制器 的库存、定价和数据表。" /><meta id="ctl00_metaKeywords" name="Keywords" content="嵌入式处理器和控制器" /><meta name="verify-v1" content="bhrmPa5uloYbiuM+lDu4z+y0qUGeKGW5FfFMprQAqlU=" /><meta name="viewport" content="width=1000, initial-scale=1" /><meta name="SKYPE_TOOLBAR" content="SKYPE_TOOLBAR_PARSER_COMPATIBLE" />
  38. <!-- BASE STYLE SHEET -->
  39. <link rel="shortcut icon" href="../../../../../favicon.ico" /><link rel="alternate" type="application/rss+xml" title="RSS" href="../../../../../rss/rss.xml" />
  40. <!--[if IE 7]>
  41. <link rel="stylesheet" type="text/css" href="../../../../../css/ie7.css" />
  42. <![endif]-->
  43. <!--[if IE 8]>
  44. <link rel="stylesheet" type="text/css" href="../../../../../css/ie8.css" />
  45. <![endif]-->
  46. <!--[if IE 9]>
  47. <link rel="stylesheet" type="text/css" href="../../../../../css/ie9.css" />
  48. <![endif]-->
  49. <script type="text/javascript">
  50. function OpenBackordered(URL) {
  51. var MsgWindow;
  52. MsgWindow = window.open(URL, "MsgWindow", "scrollbars=1,height=500,width=650,menubar=0,resizable=1");
  53. }
  54. </script>
  55. <script type="text/javascript"> var _gaq = _gaq || [];var pluginUrl ='//www.google-analytics.com/plugins/ga/inpage_linkid.js';_gaq.push(['_require', 'inpage_linkid', pluginUrl]); _gaq.push(['_setAccount', "UA-521079-1"]);_gaq.push(['_setDomainName', "mouser.cn"]);_gaq.push(['_setAllowLinker', true]);_gaq.push(['_setAllowAnchor', true]);_gaq.push(["_setCustomVar",1,"Language","zh-CN",3]);_gaq.push(["_setCustomVar",30,"s35h","O9uBwcviwT5mA9Qx65u/+8ujc3PgEXSnTqCj9LSIvGg=",2]);_gaq.push(["_setCustomVar",31,"Cart","9c8e6f1f-efab-40c0-aa83-63fa31c92313",2]);
  56. _gaq.push(["_setCustomVar",15,"TriColor PO1010","163AA125AA126AA144",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': '595-CC2640F128RHBR',
  65. 'name': 'RF Microcontrollers - MCU SimpleLink ultra-low power wireless MCU for Bluetooth Smart 32-VQFN -40 to 85',
  66. 'category': 'RF Microcontrollers - MCU',
  67. 'brand': 'Texas Instruments',
  68. 'variant': 'CC2640F128RHBR',
  69. 'list': 'Refine',
  70. 'position': '1'
  71. });
  72. ga('ec:addImpression', {
  73. 'id': '595-CC2640F128RSMT',
  74. 'name': 'RF Microcontrollers - MCU SimpleLink Ultra LP Wireless MCU',
  75. 'category': 'RF Microcontrollers - MCU',
  76. 'brand': 'Texas Instruments',
  77. 'variant': 'CC2640F128RSMT',
  78. 'list': 'Refine',
  79. 'position': '2'
  80. });
  81. ga('ec:addImpression', {
  82. 'id': '511-STM32F746NGH6',
  83. 'name': 'ARM Microcontrollers - MCU High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbytes Flash, 200 MHz CPU, Art Accelerator, L1 cache, SDRAM',
  84. 'category': 'ARM Microcontrollers - MCU',
  85. 'brand': 'STMicroelectronics',
  86. 'variant': 'STM32F746NGH6',
  87. 'list': 'Refine',
  88. 'position': '3'
  89. });
  90. ga('ec:addImpression', {
  91. 'id': '511-STM32F746IGT6',
  92. 'name': 'ARM Microcontrollers - MCU High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM,',
  93. 'category': 'ARM Microcontrollers - MCU',
  94. 'brand': 'STMicroelectronics',
  95. 'variant': 'STM32F746IGT6',
  96. 'list': 'Refine',
  97. 'position': '4'
  98. });
  99. ga('ec:addImpression', {
  100. 'id': '595-CC1310F128RGZR',
  101. 'name': 'RF Microcontrollers - MCU SimpleLink? Sub-1 GHz Ultra-Low Power Wireless Microcontroller 48-VQFN -40 to 85',
  102. 'category': 'RF Microcontrollers - MCU',
  103. 'brand': 'Texas Instruments',
  104. 'variant': 'CC1310F128RGZR',
  105. 'list': 'Refine',
  106. 'position': '5'
  107. });
  108. ga('ec:addImpression', {
  109. 'id': '595-CC2650F128RHBR',
  110. 'name': 'RF Microcontrollers - MCU SimpleLink multi-standard 2.4 GHz ultra-low power wireless MCU 32-VQFN -40 to 85',
  111. 'category': 'RF Microcontrollers - MCU',
  112. 'brand': 'Texas Instruments',
  113. 'variant': 'CC2650F128RHBR',
  114. 'list': 'Refine',
  115. 'position': '6'
  116. });
  117. ga('ec:addImpression', {
  118. 'id': '595-CC1310F32RGZR',
  119. 'name': 'RF Microcontrollers - MCU SimpleLink? Sub-1 GHz Ultra-Low Power Wireless Microcontroller 48-VQFN -40 to 85',
  120. 'category': 'RF Microcontrollers - MCU',
  121. 'brand': 'Texas Instruments',
  122. 'variant': 'CC1310F32RGZR',
  123. 'list': 'Refine',
  124. 'position': '7'
  125. });
  126. ga('ec:addImpression', {
  127. 'id': '989-10M02DCV36C8G',
  128. 'name': 'FPGA - Field Programmable Gate Array non-volatile FPGA, 27 I/O, 36WLCSP',
  129. 'category': 'FPGA - Field Programmable Gate Array',
  130. 'brand': 'Altera Corporation',
  131. 'variant': '10M02DCV36C8G',
  132. 'list': 'Refine',
  133. 'position': '8'
  134. });
  135. ga('ec:addImpression', {
  136. 'id': '595-CC2640F128RHBT',
  137. 'name': 'RF Microcontrollers - MCU SimpleLink ultra-low power wireless MCU for Bluetooth Smart 32-VQFN -40 to 85',
  138. 'category': 'RF Microcontrollers - MCU',
  139. 'brand': 'Texas Instruments',
  140. 'variant': 'CC2640F128RHBT',
  141. 'list': 'Refine',
  142. 'position': '9'
  143. });
  144. ga('ec:addImpression', {
  145. 'id': '511-STM32L476RGT6',
  146. 'name': 'ARM Microcontrollers - MCU Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, LCD, USB OTG',
  147. 'category': 'ARM Microcontrollers - MCU',
  148. 'brand': 'STMicroelectronics',
  149. 'variant': 'STM32L476RGT6',
  150. 'list': 'Refine',
  151. 'position': '10'
  152. });
  153. ga('ec:addImpression', {
  154. 'id': '511-STM32F746VGT6',
  155. 'name': 'ARM Microcontrollers - MCU High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM,',
  156. 'category': 'ARM Microcontrollers - MCU',
  157. 'brand': 'STMicroelectronics',
  158. 'variant': 'STM32F746VGT6',
  159. 'list': 'Refine',
  160. 'position': '11'
  161. });
  162. ga('ec:addImpression', {
  163. 'id': '511-STM32F746ZGT6',
  164. 'name': 'ARM Microcontrollers - MCU High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbytes Flash, 200 MHz CPU, Art Accelerator, L1 cache, SDRAM',
  165. 'category': 'ARM Microcontrollers - MCU',
  166. 'brand': 'STMicroelectronics',
  167. 'variant': 'STM32F746ZGT6',
  168. 'list': 'Refine',
  169. 'position': '12'
  170. });
  171. ga('ec:addImpression', {
  172. 'id': '989-10M08SCE144I7G',
  173. 'name': 'FPGA - Field Programmable Gate Array non-volatile FPGA, 101 I/O, 144EQFP',
  174. 'category': 'FPGA - Field Programmable Gate Array',
  175. 'brand': 'Altera Corporation',
  176. 'variant': '10M08SCE144I7G',
  177. 'list': 'Refine',
  178. 'position': '13'
  179. });
  180. ga('ec:addImpression', {
  181. 'id': '511-STM32F746BGT6',
  182. 'name': 'ARM Microcontrollers - MCU High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM,',
  183. 'category': 'ARM Microcontrollers - MCU',
  184. 'brand': 'STMicroelectronics',
  185. 'variant': 'STM32F746BGT6',
  186. 'list': 'Refine',
  187. 'position': '14'
  188. });
  189. ga('ec:addImpression', {
  190. 'id': '989-10M02SCM153I7G',
  191. 'name': 'FPGA - Field Programmable Gate Array non-volatile FPGA, 112 I/O, 153MBGA',
  192. 'category': 'FPGA - Field Programmable Gate Array',
  193. 'brand': 'Altera Corporation',
  194. 'variant': '10M02SCM153I7G',
  195. 'list': 'Refine',
  196. 'position': '15'
  197. });
  198. ga('ec:addImpression', {
  199. 'id': '841-MK81FN256VDC15',
  200. 'name': 'ARM Microcontrollers - MCU Kinetis K Series 32-bit MCU, ARM Cortex-M4F core, 256KB Flash, 256KB SRAM, 150MHz, Serial NOR flash',
  201. 'category': 'ARM Microcontrollers - MCU',
  202. 'brand': 'NXP / Freescale',
  203. 'variant': 'MK81FN256VDC15',
  204. 'list': 'Refine',
  205. 'position': '16'
  206. });
  207. ga('ec:addImpression', {
  208. 'id': '989-10M08SCU169I7G',
  209. 'name': 'FPGA - Field Programmable Gate Array non-volatile FPGA, 130 I/O, 169UBGA',
  210. 'category': 'FPGA - Field Programmable Gate Array',
  211. 'brand': 'Altera Corporation',
  212. 'variant': '10M08SCU169I7G',
  213. 'list': 'Refine',
  214. 'position': '17'
  215. });
  216. ga('ec:addImpression', {
  217. 'id': '595-CC2650F128RHBT',
  218. 'name': 'RF Microcontrollers - MCU SimpleLink multi-standard 2.4 GHz ultra-low power wireless MCU 32-VQFN -40 to 85',
  219. 'category': 'RF Microcontrollers - MCU',
  220. 'brand': 'Texas Instruments',
  221. 'variant': 'CC2650F128RHBT',
  222. 'list': 'Refine',
  223. 'position': '18'
  224. });
  225. ga('ec:addImpression', {
  226. 'id': '989-10M50SAE144C8G',
  227. 'name': 'FPGA - Field Programmable Gate Array non-volatile FPGA, 101 I/O, 144EQFP',
  228. 'category': 'FPGA - Field Programmable Gate Array',
  229. 'brand': 'Altera Corporation',
  230. 'variant': '10M50SAE144C8G',
  231. 'list': 'Refine',
  232. 'position': '19'
  233. });
  234. ga('ec:addImpression', {
  235. 'id': '511-STM32F410RBT6',
  236. 'name': 'ARM Microcontrollers - MCU STM32 Dynamic Efficiency MCU with BAM, High-performance and DSP with FPU, ARM Cortex-M4 MCU with 128 Kbytes Flash, 100 M',
  237. 'category': 'ARM Microcontrollers - MCU',
  238. 'brand': 'STMicroelectronics',
  239. 'variant': 'STM32F410RBT6',
  240. 'list': 'Refine',
  241. 'position': '20'
  242. });
  243. ga('ec:addImpression', {
  244. 'id': '511-STM32F756ZGT6',
  245. 'name': 'ARM Microcontrollers - MCU High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, HW crypto, SDRAM, TFT',
  246. 'category': 'ARM Microcontrollers - MCU',
  247. 'brand': 'STMicroelectronics',
  248. 'variant': 'STM32F756ZGT6',
  249. 'list': 'Refine',
  250. 'position': '21'
  251. });
  252. ga('ec:addImpression', {
  253. 'id': '511-STM32L476VET6',
  254. 'name': 'ARM Microcontrollers - MCU Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, LCD, USB OTG',
  255. 'category': 'ARM Microcontrollers - MCU',
  256. 'brand': 'STMicroelectronics',
  257. 'variant': 'STM32L476VET6',
  258. 'list': 'Refine',
  259. 'position': '22'
  260. });
  261. ga('ec:addImpression', {
  262. 'id': '511-STM32F746IGK6',
  263. 'name': 'ARM Microcontrollers - MCU High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM,',
  264. 'category': 'ARM Microcontrollers - MCU',
  265. 'brand': 'STMicroelectronics',
  266. 'variant': 'STM32F746IGK6',
  267. 'list': 'Refine',
  268. 'position': '23'
  269. });
  270. ga('ec:addImpression', {
  271. 'id': '841-MCIMX6G3DVM05AA',
  272. 'name': 'Processors - Application Specialized i.MX 32-bit MPU, ARM Cortex-A7 core, 500MHz, 289BGA',
  273. 'category': 'Processors - Application Specialized',
  274. 'brand': 'NXP / Freescale',
  275. 'variant': 'MCIMX6G3DVM05AA',
  276. 'list': 'Refine',
  277. 'position': '24'
  278. });
  279. ga('ec:addImpression', {
  280. 'id': '511-STM32F469IIT6',
  281. 'name': 'ARM Microcontrollers - MCU High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbytes Flash, 180 MHz CPU, ART Accelerator, Chrom',
  282. 'category': 'ARM Microcontrollers - MCU',
  283. 'brand': 'STMicroelectronics',
  284. 'variant': 'STM32F469IIT6',
  285. 'list': 'Refine',
  286. 'position': '25'
  287. });
  288. ga('set','dimension1','zh-CN');
  289. ga('set','dimension30','O9uBwcviwT5mA9Qx65u/+8ujc3PgEXSnTqCj9LSIvGg=');
  290. ga('set','dimension31','9c8e6f1f-efab-40c0-aa83-63fa31c92313');
  291. ga('set','dimension13','163AA125AA126AA144');
  292. ga('set','metric2',52608);
  293. ga('set','dimension5','Embedded Processors \u0026 Controllers');
  294. ga('set','dimension48','a86bc');
  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/_/N-a86bc/?No=25" rel="next" content="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/?No=25" /><link href="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc" rel="canonical" content="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc" /><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/_/N-a86bc/" /><link rel="alternate" hreflang="de-AT" href="http://www.mouser.at/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="en-AU" href="http://au.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="fr-BE" href="http://www.mouser.be/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="en-BG" href="http://www.mouser.bg/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="pt-BR" href="http://br.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="en-CA" href="http://ca.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="de-CH" href="http://www.mouser.ch/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="es-CL" href="http://www.mouser.cl/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="zh-Hans-CN" href="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="es-CO" href="http://co.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="es-CR" href="http://www.mouser.co.cr/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="cs-CZ" href="http://cz.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="de-DE" href="http://www.mouser.de/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="en-DK" href="http://www.mouser.dk/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="es-DO" href="http://www.mouser.do/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="es-EC" href="http://www.mouser.ec/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="en-EE" href="http://www.mouser.ee/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="es-ES" href="http://www.mouser.es/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="en-FI" href="http://www.mouser.fi/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="fr-FR" href="http://www.mouser.fr/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="en-GB" href="http://www.mouser.co.uk/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="en-GR" href="http://gr.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="es-GT" href="http://www.mouser.com.gt/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="zh-Hant-HK" href="http://www.mouser.hk/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="es-HN" href="http://www.mouser.hn/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="en-HR" href="http://hr.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="en-HU" href="http://hu.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="en-ID" href="http://www.mouser.co.id/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="en-IE" href="http://www.mouser.ie/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="en-IL" href="http://www.mouser.co.il/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="en-IN" href="http://www.mouser.in/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="it-IT" href="http://www.mouser.it/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="ja-JP" href="http://www.mouser.jp/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="ko-KR" href="http://kr.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="de-LI" href="http://www.mouser.li/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="fr-LU" href="http://www.mouser.lu/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="es-MX" href="http://www.mouser.mx/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="en-MY" href="http://my.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="nl-NL" href="http://nl.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="en-NO" href="http://no.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="en-NZ" href="http://nz.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="es-PE" href="http://www.mouser.pe/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="en-PH" href="http://www.mouser.ph/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="en-PL" href="http://pl.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="es-PR" href="http://www.mouser.pr/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="pt-PT" href="http://pt.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="en-RO" href="http://ro.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="ru-RU" href="http://ru.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="sv-SE" href="http://www.mouser.se/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="en-SG" href="http://www.mouser.sg/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="en-SK" href="http://www.mouser.sk/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="th-TH" href="http://th.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="en-TR" href="http://www.mouser.com.tr/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="zh-Hant-TW" href="http://www.mouser.tw/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="es-UY" href="http://uy.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="es-VE" href="http://ve.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="en-VN" href="http://www.mouser.vn/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="en-US" href="http://www.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="en-ZA" href="http://www.mouser.co.za/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="pt" href="http://br.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="zh-Hans" href="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="cs" href="http://cz.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="de" href="http://www.mouser.de/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="fr" href="http://www.mouser.fr/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="it" href="http://www.mouser.it/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="ja" href="http://www.mouser.jp/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="ko" href="http://kr.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="es" href="http://www.mouser.mx/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="nl" href="http://nl.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="ru" href="http://ru.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="sv" href="http://www.mouser.se/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="th" href="http://th.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="zh-Hant" href="http://www.mouser.tw/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><link rel="alternate" hreflang="en" href="http://www.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/" /><script type="text/javascript" src="/msrqqqqxsqb.js" defer></script><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></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/_/N-a86bc/" 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='17177592';
  335. function attributecount() { return true; }
  336. var subdomainname = '.mouser.cn';
  337. var lang = 'zh-CN';
  338. var country = 'CN';
  339. var shippingCountry = 'CN';
  340. var usdSubdomain = 'www';
  341. var subdomain = 'cn2';
  342. var navids='17177592';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%252bTwQdvE13pxfphLGaIv9nhHQO3e%252bKpVFYpdS5ThKOz%252bEEr8%3d">更改国家</a>
  437. <a id="ctl00_gab1_A6" title="更改位置" class="tdFlag topPadding" href="http://www.mouser.cn/localsites.aspx?qs=0gZ0gv0KDwvP7WQAo8iqDRfsfSMqyvMLMMwfxyI2u5%2f4qc5ce9IXZBtQkqWv2G7D%2fzEbCxVZR9TMbhabil8UazR0wvsJ%252bTwQdvE13pxfphLGaIv9nhHQO3e%252bKpVFYpdS5ThKOz%252bEEr8%3d"><img id="ctl00_gab1_img7" class="visualAttributeImage" src="../../../../../images/international/flags/cn2.gif" alt="更改位置" style="border-width: 1px;" /></a>
  438. <input type="hidden" name="ctl00$gab1$hidSelectedCurrency" id="ctl00_gab1_hidSelectedCurrency" value="-1" />
  439. <span id="ctl00_gab1_lbl1">RMB</span>
  440. </div>
  441. </div>
  442. </div>
  443. </div>
  444. <div style="clear: both;"></div>
  445. <a href="#TB_inline?height=440&width=400&inlineId=divCurrencyPopup&modal=true" id="tblink"
  446. class="thickbox"></a>
  447. <div id="divCurrencyPopup" class="currency-popup">
  448. <div class="currency-close">
  449. <a href="javascript:void(0)" title="Close Window" onclick="javascript:CloseCurrencyPopup();">&nbsp;</a>
  450. </div>
  451. <div>
  452. <div id="popupHeader" style="width:auto;"><img id="ctl00_gab1_uc1_imgFlag" src="../../../../../images/international/flags/cn2.gif" alt="中国" />&nbsp;<span id="ctl00_gab1_uc1_lblCountry">中国</span></div>
  453. <br/>
  454. <div style="padding: 0 20px 0 20px">
  455. <span id="ctl00_gab1_uc1_lblInstructions">请确认您选择的货币:</span><br />
  456. <br />
  457. <table width="95%">
  458. <tr>
  459. <td width="20%">
  460. <input type="submit" name="ctl00$gab1$uc1$rptCurrencies$ctl00$btnCurrency" value="RMB" id="ctl00_gab1_uc1_rptCurrencies_ctl00_btnCurrency" class="button" />
  461. </td>
  462. <td>
  463. <strong><span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblCurrencyPluralName">人民币</span></strong>
  464. <br/>
  465. <span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblIncoterms">国际贸易术语:DDP<br /></span>
  466. <span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblShippingTerms">All prices <u>include</u> duty and customs fees.<br /></span>
  467. <span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblFreeShipping"></span>
  468. <span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblPaymentTerms"></span>
  469. </td>
  470. </tr>
  471. </table>
  472. </div>
  473. </div>
  474. </div>
  475. <div id="cartDialog" class="CartDialog" style="display: none;">
  476. <table id="miniCartOnly">
  477. <tr id="divall">
  478. <td id="tdCart">
  479. <table style="width: 100%; padding: 0px; border: 0px">
  480. <tr>
  481. <td id="divCartSummText" style="width: 50%; padding-top: 3px; padding-bottom: 3px">
  482. <span id="ctl00_gab1_ucmini_lblCartSummary" class="summaryTxt">购物车小结</span>
  483. </td>
  484. <td id="tdSchedul" class="tdScheduleOrder" style="display: none">
  485. <span id="ctl00_gab1_ucmini_lblScheduledError" class="scheduleOrderTxt" style="float: left;">购物车包含定期发货商品</span>
  486. </td>
  487. </tr>
  488. </table>
  489. <table id="tableMiniCartItms">
  490. <tr id="trCart">
  491. <td>
  492. <hr id="ctl00_gab1_ucmini_hrSeparatorTop" style="padding: 0px; display: none; margin: 0px !important;"></hr>
  493. <table id="tblMiniCart">
  494. <thead>
  495. <tr>
  496. <th class="miniCartColumn">制造商</th>
  497. <th class="miniCartColumn MiniCartHdBg">制造商。 编号:</th>
  498. <th class="miniCartColumn MiniCartHdBg">数量</th>
  499. <th class="MiniCartHdStyle MiniCartHdBg">总价(含17%增值税)</th>
  500. </tr>
  501. </thead>
  502. </table>
  503. <script type="text/javascript">
  504. var miniCartResources = {"YourCartIsEmpty":"您的购物车是空的。","CartSubTotal":"订单总计(含17%增值税)","lblCart":"购物车","SelectionRequiredToBuy":"请选择希望购买的产品。","AddedToCart":"添加至购物车","CartSummary":"购物车小结","items":"项目","item":"项目"};
  505. var currentGuid = '9c8e6f1f-efab-40c0-aa83-63fa31c92313';
  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%252bTwQdvE13pxfphLGaIv9nhHQO3e%252bKpVFYpdS5ThKOz%252bEEr8%3d">登录</a>
  635. </li>
  636. <li>
  637. </li>
  638. <li>
  639. <a id="ctl00_NavHeader_hlnk5" title="新用户注册" href="https://www.mouser.cn/MyMouser/CreateAccount.aspx">新用户注册</a>
  640. </li>
  641. <li>
  642. <a id="ctl00_NavHeader_hlnk7" title="订单历史" href="http://www.mouser.cn/OrderHistory/OrderHistoryLogin.aspx">订单历史</a>
  643. </li>
  644. <li>
  645. <!-- Mush:TBC -->
  646. <a id="ctl00_NavHeader_hlnk6" title="订阅" onclick="javascript:return SaveSubscriptionURL();" href="https://sub.info.mouser.com/subscription-newsletter-catalog-sc" target="_blank">订阅</a>
  647. </li>
  648. </ul>
  649. </div>
  650. </div>
  651. <div id="navArea" class="row">
  652. <div class="col-xs-12">
  653. <div id="navMain" class="inline-block">
  654. <div class="navbar">
  655. <ul class="topnav">
  656. <li>
  657. <a id="ctl00_NavHeader_RepeaterNav_ctl00_hyperHeaderNav" href="/Electronic-Components/">产品</a>
  658. <ul class="subnav" id="subnav">
  659. <li>
  660. <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/Electronic-Components/">所有产品</a>
  661. </li>
  662. <li>
  663. <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/new/">最新产品</a>
  664. </li>
  665. <li>
  666. <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/new/products">按类别划分的新产品</a>
  667. </li>
  668. <li>
  669. <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/applications/">新技术</a>
  670. </li>
  671. </ul>
  672. </li>
  673. <li>
  674. <a id="ctl00_NavHeader_RepeaterNav_ctl01_hyperHeaderNav" href="/supplierpage/">制造商</a>
  675. <ul class="subnav" id="subnav">
  676. <li>
  677. <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/supplierpage/">所有制造商A-Z</a>
  678. </li>
  679. <li>
  680. <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/newsuppliers/">新制造商</a>
  681. </li>
  682. <li>
  683. <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/suppliercategory/">制造商(按产品类别分类)</a>
  684. </li>
  685. <li>
  686. <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/catalogRequest/catalogdownloads.aspx">下载线卡</a>
  687. </li>
  688. </ul>
  689. </li>
  690. <li>
  691. <a id="ctl00_NavHeader_RepeaterNav_ctl02_hyperHeaderNav" href="/applications/">应用</a>
  692. <ul class="subnav" id="subnav">
  693. <li>
  694. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/blog">Mouser博客</a>
  695. </li>
  696. <li>
  697. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/applications/audio_applications">音频</a>
  698. </li>
  699. <li>
  700. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/applications/automotive-applications">汽车</a>
  701. </li>
  702. <li>
  703. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/applications/industrial_applications">工业</a>
  704. </li>
  705. <li>
  706. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl05_hyperHeaderNavChild" href="/applications/internet-of-things">物联网</a>
  707. </li>
  708. <li>
  709. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl06_hyperHeaderNavChild" href="/applications/lighting">照明</a>
  710. </li>
  711. <li>
  712. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl07_hyperHeaderNavChild" href="/applications/open-source-hardware">开源硬件</a>
  713. </li>
  714. <li>
  715. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl08_hyperHeaderNavChild" href="/applications/rf-wireless-technology">无线射频</a>
  716. </li>
  717. <li>
  718. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl09_hyperHeaderNavChild" href="/applications/sensor_technology">传感器技术</a>
  719. </li>
  720. <li>
  721. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl10_hyperHeaderNavChild" href="/applications/usb-technology">USB技术</a>
  722. </li>
  723. <li>
  724. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl11_hyperHeaderNavChild" href="/applications/">更多应用</a>
  725. </li>
  726. </ul>
  727. </li>
  728. <li>
  729. <a id="ctl00_NavHeader_RepeaterNav_ctl03_hyperHeaderNav" href="/servicesandtools/">服务和工具</a>
  730. <ul class="subnav" id="subnav">
  731. <li>
  732. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/MyMouser/AccountSummary.aspx">登录/创建账户</a>
  733. </li>
  734. <li>
  735. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/EZBuy/EZBuy.aspx">简易订购工具</a>
  736. </li>
  737. <li>
  738. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/OrderHistory/ProjectsView.aspx">项目管理器</a>
  739. </li>
  740. <li>
  741. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/bomtool/">BOM工具</a>
  742. </li>
  743. <li>
  744. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl05_hyperHeaderNavChild" href="/Tools/part-list-import.aspx">零件清单导入器</a>
  745. </li>
  746. <li>
  747. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl06_hyperHeaderNavChild" href="/accelerator/">搜索加速器</a>
  748. </li>
  749. <li>
  750. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl07_hyperHeaderNavChild" href="/Quote/Quote.aspx">请求报价</a>
  751. </li>
  752. <li>
  753. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl08_hyperHeaderNavChild" href="https://sub.info.mouser.com/subscription-newsletter-catalog-sc" target="_blank">订阅电子邮件</a>
  754. </li>
  755. <li>
  756. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl09_hyperHeaderNavChild" href="/blog">Mouser博客</a>
  757. </li>
  758. <li>
  759. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl10_hyperHeaderNavChild" href="/servicesandtools/">更多服务和工具</a>
  760. </li>
  761. </ul>
  762. </li>
  763. <li>
  764. <a id="ctl00_NavHeader_RepeaterNav_ctl04_hyperHeaderNav" href="/CatalogRequest/Catalog.aspx">目录</a>
  765. <ul class="subnav" id="subnav">
  766. <li>
  767. <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/CatalogRequest/Catalog.aspx">所有目录选项</a>
  768. </li>
  769. <li>
  770. <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/catalogviewer/default.aspx">在线目录</a>
  771. </li>
  772. <li>
  773. <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/CatalogRequest/CatalogDownloads.aspx">下载 Mouser 目录</a>
  774. </li>
  775. <li>
  776. <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="https://sub.info.mouser.com/subscription-newsletter-catalog-sc" target="_blank">目录订阅</a>
  777. </li>
  778. </ul>
  779. </li>
  780. <li>
  781. <a id="ctl00_NavHeader_RepeaterNav_ctl05_hyperHeaderNav" href="/Help/Help.aspx">帮助</a>
  782. <ul class="subnav" id="subnav">
  783. <li>
  784. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/aboutus/">关于 Mouser</a>
  785. </li>
  786. <li>
  787. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/contact/">联系我们</a>
  788. </li>
  789. <li>
  790. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/feedback.aspx">反馈</a>
  791. </li>
  792. <li>
  793. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/helppage/#FAQ">常见问题</a>
  794. </li>
  795. <li>
  796. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl05_hyperHeaderNavChild" href="/Help/Help.aspx">更多幫助主題</a>
  797. </li>
  798. </ul>
  799. </li>
  800. </ul>
  801. </div>
  802. </div>
  803. <div class="onlineCatalog inline-block">
  804. <a href="/mobilecatalog.aspx" class="btnOnlineCatalog" title="在线目录"><span class="online-catalog-child inline-block">在线目录</span></a>
  805. </div>
  806. </div>
  807. </div>
  808. </div>
  809. <div style="visibility: hidden; height: 0px;">
  810. <input name="ctl00$NavHeader$lblTrdTerm" type="text" id="ctl00_NavHeader_lblTrdTerm" />
  811. <input name="ctl00$NavHeader$lblIsNewTerm" type="text" id="ctl00_NavHeader_lblIsNewTerm" />
  812. <input type="hidden" name="ctl00$NavHeader$hdQuickSingUpPage" id="ctl00_NavHeader_hdQuickSingUpPage" value="https://sub.info.mouser.com/quick-signup-sc" />
  813. </div>
  814. <script type="text/javascript">
  815. $(document).ready(function () {
  816. //* change to html5 catalog if javascript is enabled *
  817. $('a.btnOnlineCatalog').attr('href', '/catalogviewer/default.aspx');
  818. });
  819. </script>
  820. <script type="text/javascript" src='../../../../../javascript/genLib.js'></script>
  821. </div>
  822. <div id="ctl00_divWide" class="divWide">
  823. <link rel="stylesheet" type="text/css" href='../../../../../css/fontawesome/css/font-awesome.min.css' />
  824. <br />
  825. <strong></strong>
  826. <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl00_lnkBreadcrumb" href="../../../../../Electronic-Components/" style="font-size: 9pt; font-weight: bold;">所有产品</a>
  827. <strong>></strong>
  828. <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl01_lnkBreadcrumb" href="../../../../_/N-5gcb/" style="font-size: 9pt; font-weight: bold;">半导体</a>
  829. <strong>></strong>
  830. <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl02_lnkBreadcrumb" itemprop="isPartOf" href="../../../_/N-6j73k/" style="font-size: 9pt; font-weight: bold;">集成电路 - IC</a>
  831. <strong>></strong>
  832. <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl03_lnkBreadcrumb" href="./" style="font-size: 9pt; font-weight: bold;">嵌入式处理器和控制器</a>
  833. <hr />
  834. <div id="ctl00_ContentMain_categorySearchLimitsDiv" class="hidden">
  835. <div class="categorySearchLimits">
  836. <div id="ctl00_ContentMain_uc1_pnlCategorySearchLimits">
  837. <span class="subCategoryHeader">类别</span>&nbsp;&nbsp;<span title="半导体"><input id="ctl00_ContentMain_uc1_chkbx254459|Semiconductors" type="checkbox" name="ctl00$ContentMain$uc1$chkbx254459|Semiconductors" checked="checked" onclick="document.getElementById(&#39;ctl00_ContentMain_uc1_chkbx10973360|Integrated Circuits - ICs&#39;).checked = false;document.getElementById(&#39;ctl00_ContentMain_uc1_chkbx17177592|Embedded Processors &amp; Controllers&#39;).checked = false;" /></span>&nbsp;<b>半导体</b>&nbsp;&#62;&nbsp;<span title="集成电路 - IC"><input id="ctl00_ContentMain_uc1_chkbx10973360|Integrated Circuits - ICs" type="checkbox" name="ctl00$ContentMain$uc1$chkbx10973360|Integrated Circuits - ICs" checked="checked" onclick="document.getElementById(&#39;ctl00_ContentMain_uc1_chkbx254459|Semiconductors&#39;).checked = true;document.getElementById(&#39;ctl00_ContentMain_uc1_chkbx17177592|Embedded Processors &amp; Controllers&#39;).checked = false;" /></span>&nbsp;<b>集成电路 - IC</b>&nbsp;&#62;&nbsp;<span title="嵌入式处理器和控制器"><input id="ctl00_ContentMain_uc1_chkbx17177592|Embedded Processors & Controllers" type="checkbox" name="ctl00$ContentMain$uc1$chkbx17177592|Embedded Processors & Controllers" checked="checked" onclick="document.getElementById(&#39;ctl00_ContentMain_uc1_chkbx254459|Semiconductors&#39;).checked = true;document.getElementById(&#39;ctl00_ContentMain_uc1_chkbx10973360|Integrated Circuits - ICs&#39;).checked = true;" /></span>&nbsp;<b>嵌入式处理器和控制器</b>
  838. </div>
  839. </div>
  840. </div>
  841. <table border="0" width="100%">
  842. <tr>
  843. <td>
  844. <div id="ctl00_ContentMain_pnl3">
  845. <div id="category-top" class="category-content">
  846. <a id="ctl00_ContentMain_lnkCategory" class="SearchResultsTopLevelCategory"><h1>嵌入式处理器和控制器</h1></a>
  847. <!--Marketing Content-->
  848. <table id="ctl00_ContentMain_tbl5">
  849. <tr>
  850. <td>
  851. <div class="marketing-content2">
  852. <span style="font-family: simsun;"><strong>嵌入式处理器和嵌入式控制器(</strong><span style="font-size: 12px;"><strong>Embedded Processors &amp; Embedded Controllers),</strong>应有尽有。Mouser Electronics(贸泽电子)提供多家业界顶尖制造商的嵌入式处理器和嵌入式控制器。Mouser Electronics(贸泽电子)是众多嵌入式处理器和嵌入式控制器原厂的授权分销商,其中包括 Altera、Atmel(爱特梅尔半导体)、Cypress(赛普拉斯)、Freescale(飞思卡尔)、Maxim Integrated(美信)、Microchip(微芯)、NXP(恩智浦)、Silicon Labs、STMicroelectronics(意法半导体)、Texas Instruments(TI/德州仪器)、ZiLOG......等多家知名厂商。想了解更多嵌入式处理器和嵌入式控制器产品,请浏览下列产品分类。<span style="font-size: 12px;"></span></span></span>
  853. </div>
  854. </td>
  855. </tr>
  856. </table>
  857. <div id="ctl00_ContentMain_refinemfglogo">
  858. </div>
  859. </div><!--.category-content-->
  860. </div>
  861. </td>
  862. </tr>
  863. <tr>
  864. <td>
  865. </td>
  866. </tr>
  867. <tr>
  868. <td>
  869. <div id="refine-page2">
  870. </div>
  871. </td>
  872. </tr>
  873. </table>
  874. <div id="ctl00_ContentMain_divTabs" class="row">
  875. <div class="col-xs-12">
  876. <div id="tabsNavigation" >
  877. <ul>
  878. <li id="ctl00_ContentMain_liProductsTab" class="active">
  879. <a id="ctl00_ContentMain_liProductsLink" class="aspNetDisabled">产品<span id="ctl00_ContentMain_lblProductCount" class="item-counts">(52,608)</span></a>
  880. </li>
  881. <li id="ctl00_ContentMain_liDatasheetsTab" class="">
  882. <a id="ctl00_ContentMain_liDatasheetsLink" onclick="SendGATracking(&#39;Refine Tab Click&#39;, &#39;Datasheets&#39;, &#39;Embedded Processors &amp; Controllers&#39;);" href="../../Datasheets/_/N-a86bc">数据表<sup class="superscript">BETA</sup><span id="ctl00_ContentMain_lblDatasheetCount" class="item-counts">(4,467)</span></a>
  883. </li>
  884. <li id="ctl00_ContentMain_liImagesTab" class="">
  885. <a id="ctl00_ContentMain_liImagesLink" onclick="SendGATracking(&#39;Refine Tab Click&#39;, &#39;Images&#39;, &#39;Embedded Processors &amp; Controllers&#39;);" href="../../Images/_/N-a86bc">图片<sup class="superscript">BETA</sup><span id="ctl00_ContentMain_lblImagesCount" class="item-counts">(1,304)</span></a>
  886. </li>
  887. <li id="ctl00_ContentMain_liNewestTab" class="">
  888. <a id="ctl00_ContentMain_liNewestProdLink" onclick="SendGATracking(&#39;Refine Tab Click&#39;, &#39;Newest Products&#39;, &#39;Embedded Processors &amp; Controllers&#39;);" href="../../Newest-Products/_/N-a86bc">最新产品</a>
  889. </li>
  890. </ul>
  891. </div>
  892. </div>
  893. </div>
  894. <div id="tabDivs" class="tab-divs">
  895. <!-- Hide the View links if javascript is disabled -->
  896. <noscript>
  897. <style type="text/css">
  898. .list-visual
  899. {
  900. display: none;
  901. }
  902. </style>
  903. </noscript>
  904. <div id="CategoryControlTop">
  905. <table class="table-categories">
  906. <tr><td valign="top">
  907. <input type="hidden" name="ctl00$ContentMain$uc6$listCategories$ctl01$hdnCatID" id="ctl00_ContentMain_uc6_listCategories_ctl01_hdnCatID" value="17177592" />
  908. <div class="topCatTitle">
  909. <div class="col-xs-8 no-left-pad">
  910. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_lnkCategory" class="SearchResultsTopLevelCategory" href="./"><h2>嵌入式处理器和控制器类型</h2></a>
  911. </div>
  912. <div class="text-right">
  913. <div class="list-visual">
  914. <ul>
  915. <li class="right-border active">
  916. <a onclick="SendGATracking(&#39;Refine Category View Change&#39;, &#39;List&#39;, &#39;Embedded Processors &amp; Controllers&#39;); SwitchListView(); return false;" id="ctl00_ContentMain_uc6_listCategories_ctl01_lnkListView" href="javascript:__doPostBack(&#39;ctl00$ContentMain$uc6$listCategories$ctl01$lnkListView&#39;,&#39;&#39;)">
  917. <i class="fa fa-th-list"></i>&nbsp;列表</a>
  918. </li>
  919. <li>
  920. <a onclick="SendGATracking(&#39;Refine Category View Change&#39;, &#39;Visual&#39;, &#39;Embedded Processors &amp; Controllers&#39;); SwitchVisualView(); return false;" id="ctl00_ContentMain_uc6_listCategories_ctl01_lnkVisualView" href="javascript:__doPostBack(&#39;ctl00$ContentMain$uc6$listCategories$ctl01$lnkVisualView&#39;,&#39;&#39;)">
  921. <i class="fa fa-th-large"></i>&nbsp;目视</a>
  922. </li>
  923. </ul>
  924. </div>
  925. </div>
  926. </div>
  927. <ul class="sub-cats">
  928. <table id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories" cellspacing="0" style="width:100%;border-collapse:collapse;">
  929. <tr>
  930. <td>
  931. <li class="sub-cat">
  932. <div id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl00_divCategoryImage" class="hide-cat-img"><img id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl00_imgCategory" class="category-image" onerror="this.style.display = &quot;none&quot;" src="../../../../../images/DisplayCategories/18301759.png" alt="CPLD - Complex Programmable Logic Devices" /></div>
  933. <div class="div-cat-title">
  934. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl00_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../CPLD-Complex-Programmable-Logic-Devices/_/N-aw9q7/"><h3>CPLD - 复杂可编程逻辑器件</h3></a>
  935. <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl00_lblRecordCount">2,392</span>)</span>
  936. </div>
  937. </li>
  938. </td><td>
  939. <li class="sub-cat">
  940. <div id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl04_divCategoryImage" class="hide-cat-img"><img id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl04_imgCategory" class="category-image" onerror="this.style.display = &quot;none&quot;" src="../../../../../images/DisplayCategories/18301904.png" alt="FPGA - Configuration Memory" /></div>
  941. <div class="div-cat-title">
  942. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl04_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../FPGA-Configuration-Memory/_/N-aw9u8/"><h3>FPGA-配置存储器</h3></a>
  943. <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl04_lblRecordCount">96</span>)</span>
  944. </div>
  945. </li>
  946. </td><td>
  947. <li class="sub-cat">
  948. <div id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl08_divCategoryImage" class="hide-cat-img"><img id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl08_imgCategory" class="category-image" onerror="this.style.display = &quot;none&quot;" src="../../../../../images/DisplayCategories/17178209.png" alt="Processors - Application Specialized" /></div>
  949. <div class="div-cat-title">
  950. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl08_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../Processors-Application-Specialized/_/N-a86sh/"><h3>处理器 - 专门应用</h3></a>
  951. <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl08_lblRecordCount">428</span>)</span>
  952. </div>
  953. </li>
  954. </td>
  955. </tr><tr>
  956. <td>
  957. <li class="sub-cat">
  958. <div id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl01_divCategoryImage" class="hide-cat-img"><img id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl01_imgCategory" class="category-image" onerror="this.style.display = &quot;none&quot;" src="../../../../../images/DisplayCategories/18976658.png" alt="CPU - Central Processing Units" /></div>
  959. <div class="div-cat-title">
  960. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl01_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../CPU-Central-Processing-Units/_/N-baqhe/"><h3>CPU - 中央处理器</h3></a>
  961. <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl01_lblRecordCount">589</span>)</span>
  962. </div>
  963. </li>
  964. </td><td>
  965. <li class="sub-cat">
  966. <div id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl05_divCategoryImage" class="hide-cat-img"><img id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl05_imgCategory" class="category-image" onerror="this.style.display = &quot;none&quot;" src="../../../../../images/DisplayCategories/18301963.png" alt="FPGA - Field Programmable Gate Array" /></div>
  967. <div class="div-cat-title">
  968. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl05_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/"><h3>FPGA - 现场可编程门阵列</h3></a>
  969. <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl05_lblRecordCount">13,841</span>)</span>
  970. </div>
  971. </li>
  972. </td><td>
  973. <li class="sub-cat">
  974. <div id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl09_divCategoryImage" class="hide-cat-img"><img id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl09_imgCategory" class="category-image" onerror="this.style.display = &quot;none&quot;" src="../../../../../images/DisplayCategories/17530967.png" alt="RF System on a Chip - SoC" /></div>
  975. <div class="div-cat-title">
  976. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl09_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../RF-System-on-a-Chip-SoC/_/N-afqzb/"><h3>RF片上系统 - SoC</h3></a>
  977. <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl09_lblRecordCount">290</span>)</span>
  978. </div>
  979. </li>
  980. </td>
  981. </tr><tr>
  982. <td>
  983. <li class="sub-cat">
  984. <div id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl02_divCategoryImage" class="hide-cat-img"><img id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl02_imgCategory" class="category-image" onerror="this.style.display = &quot;none&quot;" src="../../../../../images/DisplayCategories/17177616.png" alt="Digital Signal Processors &amp; Controllers - DSP, DSC" /></div>
  985. <div class="div-cat-title">
  986. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl02_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../Digital-Signal-Processors-Controllers-DSP-DSC/_/N-a86c0/"><h3>数字信号处理器和控制器 - DSP, DSC</h3></a>
  987. <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl02_lblRecordCount">3,753</span>)</span>
  988. </div>
  989. </li>
  990. </td><td>
  991. <li class="sub-cat">
  992. <div id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl06_divCategoryImage" class="hide-cat-img"><img id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl06_imgCategory" class="category-image" onerror="this.style.display = &quot;none&quot;" src="../../../../../images/DisplayCategories/17177774.png" alt="Microcontrollers - MCU" /></div>
  993. <div class="div-cat-title">
  994. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl06_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../Microcontrollers-MCU/_/N-a86ge/"><h3>微控制器 - MCU</h3></a>
  995. <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl06_lblRecordCount">28,803</span>)</span>
  996. </div>
  997. </li>
  998. </td><td>
  999. <li class="sub-cat">
  1000. <div id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl10_divCategoryImage" class="hide-cat-img"><img id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl10_imgCategory" class="category-image" onerror="this.style.display = &quot;none&quot;" src="../../../../../images/DisplayCategories/18302081.png" alt="SPLD - Simple Programmable Logic Devices" /></div>
  1001. <div class="div-cat-title">
  1002. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl10_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../SPLD-Simple-Programmable-Logic-Devices/_/N-aw9z5/"><h3>SPLD - 简单可编程逻辑器件</h3></a>
  1003. <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl10_lblRecordCount">29</span>)</span>
  1004. </div>
  1005. </li>
  1006. </td>
  1007. </tr><tr>
  1008. <td>
  1009. <li class="sub-cat">
  1010. <div id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl03_divCategoryImage" class="hide-cat-img"><img id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl03_imgCategory" class="category-image" onerror="this.style.display = &quot;none&quot;" src="../../../../../images/DisplayCategories/18301816.png" alt="EEPLD - Electronically Erasable Programmable Logic Devices" /></div>
  1011. <div class="div-cat-title">
  1012. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl03_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../EEPLD-Electronically-Erasable-Programmable-Logic-Devices/_/N-aw9rs/"><h3>EEPLD - 电子擦除可编程逻辑设备</h3></a>
  1013. <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl03_lblRecordCount">27</span>)</span>
  1014. </div>
  1015. </li>
  1016. </td><td>
  1017. <li class="sub-cat">
  1018. <div id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl07_divCategoryImage" class="hide-cat-img"><img id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl07_imgCategory" class="category-image" onerror="this.style.display = &quot;none&quot;" src="../../../../../images/DisplayCategories/17178155.png" alt="Microprocessors - MPU" /></div>
  1019. <div class="div-cat-title">
  1020. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl07_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../Microprocessors-MPU/_/N-a86qz/"><h3>微处理器 - MPU</h3></a>
  1021. <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl07_lblRecordCount">2,072</span>)</span>
  1022. </div>
  1023. </li>
  1024. </td><td>
  1025. <li class="sub-cat">
  1026. <div id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl11_divCategoryImage" class="hide-cat-img"><img id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl11_imgCategory" class="category-image" onerror="this.style.display = &quot;none&quot;" src="../../../../../images/DisplayCategories/17178264.png" alt="Systems on a Chip - SoC" /></div>
  1027. <div class="div-cat-title">
  1028. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl11_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../Systems-on-a-Chip-SoC/_/N-a86u0/"><h3>片上系统 - SoC</h3></a>
  1029. <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl11_lblRecordCount">288</span>)</span>
  1030. </div>
  1031. </li>
  1032. </td>
  1033. </tr>
  1034. </table></ul>
  1035. </td></tr></table>
  1036. <div id="search-left-col">
  1037. </div>
  1038. </div>
  1039. <script type="text/javascript">
  1040. //<![CDATA[
  1041. Sys.WebForms.PageRequestManager._initialize('ctl00$ContentMain$ScriptManager1', 'aspnetForm', [], [], [], 90, 'ctl00');
  1042. //]]>
  1043. </script>
  1044. <div id="ctl00_ContentMain_liProducts">
  1045. <div id="refineSearchDiv">
  1046. <div id="ctl00_ContentMain_pnlRefineSearchBar" class="refine-search-bar-2">
  1047. <div id="refine-keyword-search-2">
  1048. <div id="ctl00_ContentMain_uc2_BoxSearch" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_uc2_btnSearch&#39;)">
  1049. <div id="boxPartSearch2">
  1050. <table id="ctl00_ContentMain_uc2_tblSearch" class="tblSearch2">
  1051. <tr>
  1052. <td rowspan="3" style="vertical-align: middle">
  1053. <div id="searchPartNumberBox" class="search-box" >
  1054. <input name="ctl00$ContentMain$uc2$txtPartKeywordSearch" type="text" id="ctl00_ContentMain_uc2_txtPartKeywordSearch" title="物料编号/关键字" class="search-txt" />
  1055. <input type="submit" name="ctl00$ContentMain$uc2$btnSearch" value="" onclick="return attributecount();" id="ctl00_ContentMain_uc2_btnSearch" title="搜索" class="searchbutton" class="Empty" />
  1056. </div>
  1057. </td>
  1058. </tr>
  1059. <tr>
  1060. <td class="chk-Search">
  1061. <span title="选中时,搜索将只返回库存的产品。"><input id="ctl00_ContentMain_uc2_chkStocked" type="checkbox" name="ctl00$ContentMain$uc2$chkStocked" /><label for="ctl00_ContentMain_uc2_chkStocked">有库存</label></span>
  1062. </td>
  1063. </tr>
  1064. <tr>
  1065. <td class="chk-Search">
  1066. <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>
  1067. </td>
  1068. </tr>
  1069. </table>
  1070. <input type="hidden" name="ctl00$ContentMain$uc2$searchWithinResults" id="ctl00_ContentMain_uc2_searchWithinResults" value="在结果中搜索" />
  1071. </div>
  1072. <script type="text/javascript" src='../../../../../flash/js/Placeholders.min.js'></script>
  1073. <script type="text/javascript" src='../../../../../flash/js/watermark.js'></script>
  1074. </div>
  1075. </div>
  1076. <div id="refine-mfg-select-2">
  1077. <div id="ctl00_ContentMain_uc3_BoxManufacturer" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_uc3_btnSelectManufacturer&#39;)">
  1078. <div id="boxSuppliers">
  1079. <table id="ctl00_ContentMain_uc3_tblSuppliers" class="tblSuppliers2">
  1080. <tr>
  1081. <td valign="middle" align="left">
  1082. <table cellspacing="0" cellpadding="0" width="100%">
  1083. <tr>
  1084. <td style="vertical-align: middle;">
  1085. <select name="ctl00$ContentMain$uc3$ddlManufacturer" id="ctl00_ContentMain_uc3_ddlManufacturer" class="default">
  1086. <option selected="selected" value="0">所有制造商</option>
  1087. <option value="4292488353">4D Systems (3)</option>
  1088. <option value="4284836075">Advantech (1)</option>
  1089. <option value="4291492212">Altera (7,732)</option>
  1090. <option value="4291852130">ams (7)</option>
  1091. <option value="4294759198">Amulet Technologies (3)</option>
  1092. <option value="4290538360">Analog Devices Inc. (654)</option>
  1093. <option value="4292821466">Arduino (1)</option>
  1094. <option value="4294759229">Atmel (3,312)</option>
  1095. <option value="4285578461">Broadcom (6)</option>
  1096. <option value="4294758861">CEL (1)</option>
  1097. <option value="4294449078">Cirrus Logic (14)</option>
  1098. <option value="4294014452">Cypress Semiconductor (724)</option>
  1099. <option value="4272876899">Dialog Semiconductor (10)</option>
  1100. <option value="4294759230">Digi International (5)</option>
  1101. <option value="4291156561">ELMOS (3)</option>
  1102. <option value="4292828383">Epson (23)</option>
  1103. <option value="4293998581">Freescale / NXP (5,440)</option>
  1104. <option value="4294759009">FTDI (40)</option>
  1105. <option value="4292700835">GHI Electronics (2)</option>
  1106. <option value="4294759026">Infineon (801)</option>
  1107. <option value="4290047598">Intel (590)</option>
  1108. <option value="4292499325">Intersil (11)</option>
  1109. <option value="4294758842">Lattice (3,761)</option>
  1110. <option value="4291596096">Maxim Integrated (334)</option>
  1111. <option value="4294758776">Microchip (12,908)</option>
  1112. <option value="4292748898">Microsemi (4,721)</option>
  1113. <option value="4294758758">NJR (4)</option>
  1114. <option value="4292713435">Nordic Semiconductor (33)</option>
  1115. <option value="4294758971">NXP (6,025)</option>
  1116. <option value="4294759663">ON Semiconductor (125)</option>
  1117. <option value="4292890524">Panasonic (7)</option>
  1118. <option value="4294758655">Parallax (16)</option>
  1119. <option value="4294763909">Rabbit Semiconductor (5)</option>
  1120. <option value="4294005660">ROHM Semiconductor (19)</option>
  1121. <option value="4274281261">Semtech (1)</option>
  1122. <option value="4284568550">Silego (10)</option>
  1123. <option value="4294763905">Silicon Laboratories (2,181)</option>
  1124. <option value="4294014535">Spansion Inc. (256)</option>
  1125. <option value="4294764375">STMicroelectronics (2,218)</option>
  1126. <option value="4294759686">Texas Instruments (4,962)</option>
  1127. <option value="4294758568">Toshiba (70)</option>
  1128. <option value="4292713940">Western Design Center (WDC) (7)</option>
  1129. <option value="4292589411">WIZnet (4)</option>
  1130. <option value="4294759235">ZiLOG (995)</option>
  1131. <option value="4292495909">ZMDI (3)</option>
  1132. </select>
  1133. </td>
  1134. <td style="vertical-align: middle;">
  1135. <input type="submit" name="ctl00$ContentMain$uc3$btnSelectManufacturer" value="确定" onclick="return attributecount();" id="ctl00_ContentMain_uc3_btnSelectManufacturer" title="确定" class="button" />
  1136. </td>
  1137. </tr>
  1138. </table>
  1139. </td>
  1140. </tr>
  1141. </table>
  1142. </div>
  1143. </div>
  1144. </div>
  1145. <div class="clear">
  1146. </div>
  1147. </div>
  1148. <div id="refine-mfg-logo2">
  1149. </div>
  1150. </div>
  1151. <br />
  1152. <table border="0" width="100%">
  1153. <tr>
  1154. <td>
  1155. </td>
  1156. </tr>
  1157. <tr>
  1158. <td>
  1159. <!--- Search Features --->
  1160. </td>
  1161. </tr>
  1162. <tr>
  1163. <td>
  1164. <div id="refine-page">
  1165. </div>
  1166. </td>
  1167. </tr>
  1168. <tr>
  1169. <td class="refine-show-products">
  1170. <span class="redtextb">
  1171. </span> <span class="redtextb">
  1172. </span> <span class="redtextb">
  1173. </span> <span class="redtextb">
  1174. </span>
  1175. <span class="redtextb">
  1176. </span>
  1177. </td>
  1178. </tr>
  1179. <tr>
  1180. <td>
  1181. </td>
  1182. </tr>
  1183. <tr>
  1184. <td>
  1185. <!--- Special Order Parts New --->
  1186. <!-- SOP Section 1 -->
  1187. </td>
  1188. </tr>
  1189. </table>
  1190. <div id="searchResultsTbl">
  1191. <table id="ctl00_ContentMain_tbl2" class="no-pad">
  1192. <tr>
  1193. <td class="tdSearchResultsPagingTop">
  1194. <table id="ctl00_ContentMain_tbl3" class="SearchResultsPaging">
  1195. <tr>
  1196. <td>
  1197. <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" />
  1198. </td>
  1199. <td>
  1200. <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" />
  1201. </td>
  1202. <td>
  1203. <span id="ctl00_ContentMain_lbl10" title="您可选择至多20 个零件单次进行对比。若您选择更多,则仅20件距离最近的所选零件会被对比。" class="bold">至多对比 20 零件.</span>
  1204. </td>
  1205. <td style="padding-left: 40px;">
  1206. <div class="floatrightpager">
  1207. <span class="bold">
  1208. 页面:
  1209. </span>
  1210. <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/_/N-a86bc/?No=25">2</a><a id="ctl00_ContentMain_PagerTop_2" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/?No=50">3</a><a id="ctl00_ContentMain_PagerTop_3" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/?No=75">4</a><a id="ctl00_ContentMain_PagerTop_4" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/?No=100">5</a><a id="ctl00_ContentMain_PagerTop_5" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/?No=125">6</a><a id="ctl00_ContentMain_PagerTop_6" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/?No=150">7</a><a id="ctl00_ContentMain_PagerTop_7" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/?No=175">8</a><a id="ctl00_ContentMain_PagerTop_8" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/?No=200">9</a><a id="ctl00_ContentMain_PagerTop_9" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/?No=225">10</a><a id="ctl00_ContentMain_PagerTop_lnkNextSet" class="ellipsis" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/?No=250">...</a><a id="ctl00_ContentMain_PagerTop_2104" class="first-last" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/?No=52600">2105</a><a id="ctl00_ContentMain_PagerTop_lnkNext" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/?No=25">下一页</a></span>
  1211. </div>
  1212. </td>
  1213. </tr>
  1214. </table>
  1215. </td>
  1216. </tr>
  1217. <tr>
  1218. <td>
  1219. <div>
  1220. <table class="SearchResultsTable" cellspacing="1" cellpadding="2" rules="all" border="1" id="ctl00_ContentMain_SearchResultsGrid_grid" style="width:100%;">
  1221. <tr class="SearchResultColumnHeading" valign="top" style="font-weight:bold;height:100%;">
  1222. <th class="td-select" scope="col" style="width:35px;">
  1223. 选择
  1224. </th><th class="SearchResultParametricColumnHeading" scope="col">图像</th><th scope="col">Mouser 零件编号
  1225. </th><th scope="col">制造商 零件编号
  1226. </th><th scope="col">制造商
  1227. </th><th scope="col">描述
  1228. </th><th scope="col"><img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl01_ctl05_imgHeader" src="../../../../../Images/Search/pdf.gif" alt="文件" />
  1229. </th><th scope="col">供货情况
  1230. </th><th scope="col">单价(含17%增值税)
  1231. <br />
  1232. </th><th class="SearchResultsBuyColumnHeading" scope="col">数量
  1233. </th><th class="SearchResultParametricColumnHeading" scope="col">RoHS
  1234. </th>
  1235. </tr><tr class="SearchResultsSortCell">
  1236. <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$ctl11&#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$ctl13&#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_ctl15" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl15&#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$ctl17&#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$ctl19&#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$ctl21&#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$ctl23&#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$ctl25&#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$ctl27&#39;,&#39;&#39;)"><img title="按 单价(含17%增值税) Descending 排序" src="../../../../../Images/Search/btn_Sort_Down.gif" alt="按 单价(含17%增值税) Descending 排序" /></a></td><td></td><td></td>
  1237. </tr><tr class="SearchResultsRowOdd" data-partnumber="595-CC2640F128RHBR" data-index="3">
  1238. <td class="td-select" align="center">
  1239. <div style="padding: 5px 5px 0 5px;">
  1240. <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>
  1241. </div>
  1242. </td><td><a href='/ProductDetail/Texas-Instruments/CC2640F128RHBR/?qs=sGAEpiMZZMsy1LJDmo1RNu%2fyvOrgf6Etylt%252b29kw47rl5FNDRl6USQ%3d%3d'><img title='Texas Instruments CC2640F128RHBR' alt='Texas Instruments CC2640F128RHBR' id=1425627742 src='/images/mouserimages/sm/QFN_32_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/QFN_32_t.jpg</div></a></td><td>
  1243. <div style="text-align:left;">
  1244. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Texas-Instruments/CC2640F128RHBR/?qs=sGAEpiMZZMsy1LJDmo1RNu%2fyvOrgf6Etylt%252b29kw47rl5FNDRl6USQ%3d%3d">595-CC2640F128RHBR</a><br />
  1245. <br />
  1246. <br />
  1247. 要购买完整 卷轴,请订购 3000 的倍数:
  1248. </div></td><td>
  1249. <div class="mfrDiv">
  1250. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Texas-Instruments/CC2640F128RHBR/?qs=sGAEpiMZZMsy1LJDmo1RNu%2fyvOrgf6Etylt%252b29kw47rl5FNDRl6USQ%3d%3d">CC2640F128RHBR</a><br />
  1251. <br />
  1252. <div style="width: 100%; text-align: center;">
  1253. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  1254. </div>
  1255. <div style="width: 100%; text-align: center;">
  1256. </div>
  1257. </div>
  1258. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl03_lnkSupplier" href="../../../../../Texas-Instruments">Texas Instruments</a>
  1259. </td><td>射频微控制器 - MCU SimpleLink ultra-low power wireless MCU for Bluetooth Smart 32-VQFN -40 to 85
  1260. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  1261. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../ti-cc26xx-simplelink/">了解更多</a>
  1262. </div>
  1263. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  1264. </div>
  1265. </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;Texas Instruments&quot;,&quot;595-CC2640F128RHBR | CC2640F128RHBR&quot;]);" href="http://www.mouser.com/ds/2/405/cc2640-558177.pdf" target="_blank">数据表</a>
  1266. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl06_lnkAvailability">7,607<br/>有库存</span>
  1267. <table>
  1268. <tr align="center">
  1269. <td style="padding-top: 5px">
  1270. </td>
  1271. </tr>
  1272. <tr align="center">
  1273. <td style="padding-top: 5px; padding-bottom: 5px">
  1274. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl06_lnkAlternativePackaging" title="备用包装 | 595-CC2640F128RHBR" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YRbdCZx%252bEQ5VCp8S6Uae0KLQYpEKFQBxRCp%2f5lmonQQaqtiarxsWlhoNQpLIUNfL9FgtSXS57SD3Z4oyJoN6QqmrewB1MZnru6ZXMG8HZ4o90VmURKrXpMn174xPiL0PqT8H8ms2qAU2A%3d%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  1275. </td>
  1276. </tr>
  1277. </table></td><td>
  1278. <table class="PriceBreaks" cellspacing="0" border="0">
  1279. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  1280. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1281. </td>
  1282. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1283. </td>
  1284. </tr>
  1285. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  1286. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  1287. 剪切带
  1288. </td>
  1289. </tr>
  1290. <tr>
  1291. <td class="PriceBreakQuantity">
  1292. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(1,1);">1:</a>
  1293. </td>
  1294. <td class="PriceBreakPrice">
  1295. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥45.747</span>
  1296. </td>
  1297. </tr>
  1298. <tr>
  1299. <td class="PriceBreakQuantity">
  1300. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(1,10);">10:</a>
  1301. </td>
  1302. <td class="PriceBreakPrice">
  1303. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥41.3595</span>
  1304. </td>
  1305. </tr>
  1306. <tr>
  1307. <td class="PriceBreakQuantity">
  1308. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(1,25);">25:</a>
  1309. </td>
  1310. <td class="PriceBreakPrice">
  1311. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥38.2707</span>
  1312. </td>
  1313. </tr>
  1314. <tr>
  1315. <td class="PriceBreakQuantity">
  1316. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(1,100);">100:</a>
  1317. </td>
  1318. <td class="PriceBreakPrice">
  1319. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥34.2693</span>
  1320. </td>
  1321. </tr>
  1322. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  1323. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  1324. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(1,250);">250:</a>
  1325. </td>
  1326. <td class="PriceBreakPrice">
  1327. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Texas-Instruments/CC2640F128RHBR/?qs=sGAEpiMZZMsy1LJDmo1RNu%2fyvOrgf6Etylt%252b29kw47rl5FNDRl6USQ%3d%3d">查看</a>
  1328. </td>
  1329. </tr>
  1330. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  1331. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  1332. </td>
  1333. </tr>
  1334. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl05_trReel">
  1335. <td class="PriceBreakQuantity">
  1336. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl05_lnkReelQuantity" href="javascript:SelectQuantity(1,3000);" style="white-space: nowrap">3,000:</a>
  1337. </td>
  1338. <td class="PriceBreakPrice">
  1339. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl05_lblReelPrice" style="white-space: nowrap">¥23.7159</span>
  1340. </td>
  1341. </tr>
  1342. <tr>
  1343. <td><br /></td>
  1344. </tr>
  1345. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  1346. <td colspan="2" style="text-align: center;">
  1347. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl05_lnkMouseReel" class="mousereel" href="../../../../../ProductDetail/Texas-Instruments/CC2640F128RHBR/?qs=sGAEpiMZZMsy1LJDmo1RNu%2fyvOrgf6Etylt%252b29kw47rl5FNDRl6USQ%3d%3d">MouseReel 提供服务支持</a>
  1348. </td>
  1349. </tr>
  1350. </table>
  1351. </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;)">
  1352. <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 />
  1353. <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="购买 CC2640F128RHBR" class="buy-button" /><br />
  1354. <table cellspacing="0" border="0" style="width: 100%;">
  1355. <tr>
  1356. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1357. 最低:
  1358. </td>
  1359. <td style="padding-left: 2px; text-align: left;">
  1360. 1
  1361. </td>
  1362. </tr>
  1363. <tr>
  1364. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1365. 多个:
  1366. </td>
  1367. <td style="padding-left: 2px; text-align: left;">
  1368. 1
  1369. </td>
  1370. </tr>
  1371. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl08_trReel">
  1372. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1373. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(1,3000);">卷轴</a>:
  1374. </td>
  1375. <td style="padding-left: 2px; text-align: left;">
  1376. <em class="SearchResultsReel">
  1377. 3,000
  1378. </em>
  1379. </td>
  1380. </tr>
  1381. </table>
  1382. </div>
  1383. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_pnlCompliant">
  1384. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  1385. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=hwG3WDfPNhBu28wXBkTWzg%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=hwG3WDfPNhBu28wXBkTWzg%3d%3d" target="_blank">详细信息</a>
  1386. </div>
  1387. </td>
  1388. </tr><tr class="SearchResultsRowEven" data-partnumber="595-CC2640F128RSMT" data-index="4">
  1389. <td class="td-select" align="center">
  1390. <div style="padding: 5px 5px 0 5px;">
  1391. <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>
  1392. </div>
  1393. </td><td><a href='/ProductDetail/Texas-Instruments/CC2640F128RSMT/?qs=sGAEpiMZZMsy1LJDmo1RNuehT9FW2YmCJHS38Lrdwd%252bjl32CAiBQVw%3d%3d'><img title='Texas Instruments CC2640F128RSMT' alt='Texas Instruments CC2640F128RSMT' id=1442724516 src='/images/mouserimages/sm/QFN_32_EP_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/QFN_32_EP_t.jpg</div></a></td><td>
  1394. <div style="text-align:left;">
  1395. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Texas-Instruments/CC2640F128RSMT/?qs=sGAEpiMZZMsy1LJDmo1RNuehT9FW2YmCJHS38Lrdwd%252bjl32CAiBQVw%3d%3d">595-CC2640F128RSMT</a><br />
  1396. <br />
  1397. <br />
  1398. 要购买完整 卷轴,请订购 250 的倍数:
  1399. </div></td><td>
  1400. <div class="mfrDiv">
  1401. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Texas-Instruments/CC2640F128RSMT/?qs=sGAEpiMZZMsy1LJDmo1RNuehT9FW2YmCJHS38Lrdwd%252bjl32CAiBQVw%3d%3d">CC2640F128RSMT</a><br />
  1402. <br />
  1403. <div style="width: 100%; text-align: center;">
  1404. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  1405. </div>
  1406. <div style="width: 100%; text-align: center;">
  1407. </div>
  1408. </div>
  1409. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl03_lnkSupplier" href="../../../../../Texas-Instruments">Texas Instruments</a>
  1410. </td><td>射频微控制器 - MCU SimpleLink Ultra LP Wireless MCU
  1411. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  1412. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../ti-cc26xx-simplelink/">了解更多</a>
  1413. </div>
  1414. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  1415. </div>
  1416. </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;Texas Instruments&quot;,&quot;595-CC2640F128RSMT | CC2640F128RSMT&quot;]);" href="http://www.mouser.com/ds/2/405/cc2640-558177.pdf" target="_blank">数据表</a>
  1417. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl06_lnkAvailability">3,864<br/>有库存</span>
  1418. <table>
  1419. <tr align="center">
  1420. <td style="padding-top: 5px">
  1421. </td>
  1422. </tr>
  1423. <tr align="center">
  1424. <td style="padding-top: 5px; padding-bottom: 5px">
  1425. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl06_lnkAlternativePackaging" title="备用包装 | 595-CC2640F128RSMT" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YRbdCZx%252bEQ5VCp8S6Uae0KL%2fn7U9L4A6%252bXFu16XL2tnJr%2fBMYSQzDiH%2fGB6fQeYQE7TtBhHFyg2Xcj2RGYFuYYnVdqxCucjgfvWQbpmAVUSIS04F%252bB53d8K9AnUyGnrECssQjdJsDmq8g%3d%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  1426. </td>
  1427. </tr>
  1428. </table></td><td>
  1429. <table class="PriceBreaks" cellspacing="0" border="0">
  1430. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  1431. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1432. </td>
  1433. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1434. </td>
  1435. </tr>
  1436. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  1437. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  1438. 剪切带
  1439. </td>
  1440. </tr>
  1441. <tr>
  1442. <td class="PriceBreakQuantity">
  1443. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(2,1);">1:</a>
  1444. </td>
  1445. <td class="PriceBreakPrice">
  1446. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥54.4401</span>
  1447. </td>
  1448. </tr>
  1449. <tr>
  1450. <td class="PriceBreakQuantity">
  1451. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(2,10);">10:</a>
  1452. </td>
  1453. <td class="PriceBreakPrice">
  1454. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥49.2102</span>
  1455. </td>
  1456. </tr>
  1457. <tr>
  1458. <td class="PriceBreakQuantity">
  1459. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(2,25);">25:</a>
  1460. </td>
  1461. <td class="PriceBreakPrice">
  1462. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥45.5949</span>
  1463. </td>
  1464. </tr>
  1465. <tr>
  1466. <td class="PriceBreakQuantity">
  1467. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(2,100);">100:</a>
  1468. </td>
  1469. <td class="PriceBreakPrice">
  1470. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥40.7394</span>
  1471. </td>
  1472. </tr>
  1473. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  1474. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  1475. 卷轴
  1476. </td>
  1477. </tr>
  1478. <tr>
  1479. <td class="PriceBreakQuantity">
  1480. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(2,250);">250:</a>
  1481. </td>
  1482. <td class="PriceBreakPrice">
  1483. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥38.4228</span>
  1484. </td>
  1485. </tr>
  1486. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl06_trViewMore">
  1487. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  1488. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl06_lnkViewMoreQuantity" href="javascript:SelectQuantity(2,500);">500:</a>
  1489. </td>
  1490. <td class="PriceBreakPrice">
  1491. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Texas-Instruments/CC2640F128RSMT/?qs=sGAEpiMZZMsy1LJDmo1RNuehT9FW2YmCJHS38Lrdwd%252bjl32CAiBQVw%3d%3d">查看</a>
  1492. </td>
  1493. </tr>
  1494. <tr>
  1495. <td><br /></td>
  1496. </tr>
  1497. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl06_trMouserReel">
  1498. <td colspan="2" style="text-align: center;">
  1499. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl06_lnkMouseReel" class="mousereel" href="../../../../../ProductDetail/Texas-Instruments/CC2640F128RSMT/?qs=sGAEpiMZZMsy1LJDmo1RNuehT9FW2YmCJHS38Lrdwd%252bjl32CAiBQVw%3d%3d">MouseReel 提供服务支持</a>
  1500. </td>
  1501. </tr>
  1502. </table>
  1503. </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;)">
  1504. <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 />
  1505. <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="购买 CC2640F128RSMT" class="buy-button" /><br />
  1506. <table cellspacing="0" border="0" style="width: 100%;">
  1507. <tr>
  1508. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1509. 最低:
  1510. </td>
  1511. <td style="padding-left: 2px; text-align: left;">
  1512. 1
  1513. </td>
  1514. </tr>
  1515. <tr>
  1516. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1517. 多个:
  1518. </td>
  1519. <td style="padding-left: 2px; text-align: left;">
  1520. 1
  1521. </td>
  1522. </tr>
  1523. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl08_trReel">
  1524. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1525. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(2,250);">卷轴</a>:
  1526. </td>
  1527. <td style="padding-left: 2px; text-align: left;">
  1528. <em class="SearchResultsReel">
  1529. 250
  1530. </em>
  1531. </td>
  1532. </tr>
  1533. </table>
  1534. </div>
  1535. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_pnlCompliant">
  1536. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  1537. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=9m5%2fsE2O8XMj65PF2ZoQcA%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=9m5%2fsE2O8XMj65PF2ZoQcA%3d%3d" target="_blank">详细信息</a>
  1538. </div>
  1539. </td>
  1540. </tr><tr class="SearchResultsRowOdd" data-partnumber="511-STM32F746NGH6" data-index="5">
  1541. <td class="td-select" align="center">
  1542. <div style="padding: 5px 5px 0 5px;">
  1543. <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>
  1544. </div>
  1545. </td><td><a href='/ProductDetail/STMicroelectronics/STM32F746NGH6/?qs=sGAEpiMZZMsy1LJDmo1RNrsmk%252bUkYoqAc%252brb8kOtIcSOIoDivBwUig%3d%3d'><img title='STMicroelectronics STM32F746NGH6' alt='STMicroelectronics STM32F746NGH6' id=1477497323 src='/images/mouserimages/sm/BGA_216_t.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/mouserimages/images/BGA_216_t.jpg</div></a></td><td>
  1546. <div style="text-align:left;">
  1547. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/STMicroelectronics/STM32F746NGH6/?qs=sGAEpiMZZMsy1LJDmo1RNrsmk%252bUkYoqAc%252brb8kOtIcSOIoDivBwUig%3d%3d">511-STM32F746NGH6</a><br />
  1548. <br />
  1549. <br />
  1550. </div></td><td>
  1551. <div class="mfrDiv">
  1552. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/STMicroelectronics/STM32F746NGH6/?qs=sGAEpiMZZMsy1LJDmo1RNrsmk%252bUkYoqAc%252brb8kOtIcSOIoDivBwUig%3d%3d">STM32F746NGH6</a><br />
  1553. <br />
  1554. <div style="width: 100%; text-align: center;">
  1555. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  1556. </div>
  1557. <div style="width: 100%; text-align: center;">
  1558. </div>
  1559. </div>
  1560. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl03_lnkSupplier" href="../../../../../stmicroelectronics">STMicroelectronics</a>
  1561. </td><td>ARM微控制器 - MCU High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbytes Flash, 200 MHz CPU, Art Accelerator, L1 cache, SDRAM
  1562. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  1563. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../stm-stm32f7-mcu-fpu">了解更多</a>
  1564. </div>
  1565. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  1566. </div>
  1567. </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;STMicroelectronics&quot;,&quot;511-STM32F746NGH6 | STM32F746NGH6&quot;]);" href="http://www.mouser.com/ds/2/389/DM00166116-599253.pdf" target="_blank">数据表</a>
  1568. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl06_lnkAvailability">820<br/>有库存</span>
  1569. <table>
  1570. <tr align="center">
  1571. <td style="padding-top: 5px">
  1572. </td>
  1573. </tr>
  1574. <tr align="center">
  1575. <td style="padding-top: 5px; padding-bottom: 5px">
  1576. </td>
  1577. </tr>
  1578. </table></td><td>
  1579. <table class="PriceBreaks" cellspacing="0" border="0">
  1580. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  1581. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1582. </td>
  1583. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1584. </td>
  1585. </tr>
  1586. <tr>
  1587. <td class="PriceBreakQuantity">
  1588. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(3,1);">1:</a>
  1589. </td>
  1590. <td class="PriceBreakPrice">
  1591. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥144.8577</span>
  1592. </td>
  1593. </tr>
  1594. <tr>
  1595. <td class="PriceBreakQuantity">
  1596. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(3,10);">10:</a>
  1597. </td>
  1598. <td class="PriceBreakPrice">
  1599. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥133.2279</span>
  1600. </td>
  1601. </tr>
  1602. <tr>
  1603. <td class="PriceBreakQuantity">
  1604. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(3,25);">25:</a>
  1605. </td>
  1606. <td class="PriceBreakPrice">
  1607. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥127.6821</span>
  1608. </td>
  1609. </tr>
  1610. <tr>
  1611. <td class="PriceBreakQuantity">
  1612. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(3,50);">50:</a>
  1613. </td>
  1614. <td class="PriceBreakPrice">
  1615. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥120.7557</span>
  1616. </td>
  1617. </tr>
  1618. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  1619. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  1620. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(3,100);">100:</a>
  1621. </td>
  1622. <td class="PriceBreakPrice">
  1623. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/STMicroelectronics/STM32F746NGH6/?qs=sGAEpiMZZMsy1LJDmo1RNrsmk%252bUkYoqAc%252brb8kOtIcSOIoDivBwUig%3d%3d">查看</a>
  1624. </td>
  1625. </tr>
  1626. <tr>
  1627. <td><br /></td>
  1628. </tr>
  1629. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  1630. <td colspan="2" style="text-align: center;">
  1631. </td>
  1632. </tr>
  1633. </table>
  1634. </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;)">
  1635. <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 />
  1636. <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="购买 STM32F746NGH6" class="buy-button" /><br />
  1637. <table cellspacing="0" border="0" style="width: 100%;">
  1638. <tr>
  1639. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1640. 最低:
  1641. </td>
  1642. <td style="padding-left: 2px; text-align: left;">
  1643. 1
  1644. </td>
  1645. </tr>
  1646. <tr>
  1647. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1648. 多个:
  1649. </td>
  1650. <td style="padding-left: 2px; text-align: left;">
  1651. 1
  1652. </td>
  1653. </tr>
  1654. </table>
  1655. </div>
  1656. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_pnlCompliant">
  1657. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  1658. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=UR3iUpfmIbxZOvWfWlVA%2fA%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=UR3iUpfmIbxZOvWfWlVA%2fA%3d%3d" target="_blank">详细信息</a>
  1659. </div>
  1660. </td>
  1661. </tr><tr class="SearchResultsRowEven" data-partnumber="511-STM32F746IGT6" data-index="6">
  1662. <td class="td-select" align="center">
  1663. <div style="padding: 5px 5px 0 5px;">
  1664. <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>
  1665. </div>
  1666. </td><td><a href='/ProductDetail/STMicroelectronics/STM32F746IGT6/?qs=sGAEpiMZZMsy1LJDmo1RNrsmk%252bUkYoqARDyyow%252bdxq5cZsKotm343g%3d%3d'><img title='STMicroelectronics STM32F746IGT6' alt='STMicroelectronics STM32F746IGT6' id=1477497317 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>
  1667. <div style="text-align:left;">
  1668. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/STMicroelectronics/STM32F746IGT6/?qs=sGAEpiMZZMsy1LJDmo1RNrsmk%252bUkYoqARDyyow%252bdxq5cZsKotm343g%3d%3d">511-STM32F746IGT6</a><br />
  1669. <br />
  1670. <br />
  1671. </div></td><td>
  1672. <div class="mfrDiv">
  1673. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/STMicroelectronics/STM32F746IGT6/?qs=sGAEpiMZZMsy1LJDmo1RNrsmk%252bUkYoqARDyyow%252bdxq5cZsKotm343g%3d%3d">STM32F746IGT6</a><br />
  1674. <br />
  1675. <div style="width: 100%; text-align: center;">
  1676. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  1677. </div>
  1678. <div style="width: 100%; text-align: center;">
  1679. </div>
  1680. </div>
  1681. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl03_lnkSupplier" href="../../../../../stmicroelectronics">STMicroelectronics</a>
  1682. </td><td>ARM微控制器 - MCU High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM,
  1683. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  1684. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../stm-stm32f7-mcu-fpu">了解更多</a>
  1685. </div>
  1686. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  1687. </div>
  1688. </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;STMicroelectronics&quot;,&quot;511-STM32F746IGT6 | STM32F746IGT6&quot;]);" href="http://www.mouser.com/ds/2/389/DM00166116-599253.pdf" target="_blank">数据表</a>
  1689. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl06_lnkAvailability">800<br/>有库存</span>
  1690. <table>
  1691. <tr align="center">
  1692. <td style="padding-top: 5px">
  1693. </td>
  1694. </tr>
  1695. <tr align="center">
  1696. <td style="padding-top: 5px; padding-bottom: 5px">
  1697. </td>
  1698. </tr>
  1699. </table></td><td>
  1700. <table class="PriceBreaks" cellspacing="0" border="0">
  1701. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  1702. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1703. </td>
  1704. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1705. </td>
  1706. </tr>
  1707. <tr>
  1708. <td class="PriceBreakQuantity">
  1709. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(4,1);">1:</a>
  1710. </td>
  1711. <td class="PriceBreakPrice">
  1712. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥143.1612</span>
  1713. </td>
  1714. </tr>
  1715. <tr>
  1716. <td class="PriceBreakQuantity">
  1717. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(4,10);">10:</a>
  1718. </td>
  1719. <td class="PriceBreakPrice">
  1720. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥131.6835</span>
  1721. </td>
  1722. </tr>
  1723. <tr>
  1724. <td class="PriceBreakQuantity">
  1725. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(4,25);">25:</a>
  1726. </td>
  1727. <td class="PriceBreakPrice">
  1728. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥126.2196</span>
  1729. </td>
  1730. </tr>
  1731. <tr>
  1732. <td class="PriceBreakQuantity">
  1733. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(4,50);">50:</a>
  1734. </td>
  1735. <td class="PriceBreakPrice">
  1736. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥119.3634</span>
  1737. </td>
  1738. </tr>
  1739. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  1740. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  1741. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(4,100);">100:</a>
  1742. </td>
  1743. <td class="PriceBreakPrice">
  1744. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/STMicroelectronics/STM32F746IGT6/?qs=sGAEpiMZZMsy1LJDmo1RNrsmk%252bUkYoqARDyyow%252bdxq5cZsKotm343g%3d%3d">查看</a>
  1745. </td>
  1746. </tr>
  1747. <tr>
  1748. <td><br /></td>
  1749. </tr>
  1750. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  1751. <td colspan="2" style="text-align: center;">
  1752. </td>
  1753. </tr>
  1754. </table>
  1755. </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;)">
  1756. <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 />
  1757. <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="购买 STM32F746IGT6" class="buy-button" /><br />
  1758. <table cellspacing="0" border="0" style="width: 100%;">
  1759. <tr>
  1760. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1761. 最低:
  1762. </td>
  1763. <td style="padding-left: 2px; text-align: left;">
  1764. 1
  1765. </td>
  1766. </tr>
  1767. <tr>
  1768. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1769. 多个:
  1770. </td>
  1771. <td style="padding-left: 2px; text-align: left;">
  1772. 1
  1773. </td>
  1774. </tr>
  1775. </table>
  1776. </div>
  1777. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_pnlCompliant">
  1778. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  1779. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=UR3iUpfmIbxgCLEMropiQQ%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=UR3iUpfmIbxgCLEMropiQQ%3d%3d" target="_blank">详细信息</a>
  1780. </div>
  1781. </td>
  1782. </tr><tr class="SearchResultsRowOdd" data-partnumber="595-CC1310F128RGZR" data-index="7">
  1783. <td class="td-select" align="center">
  1784. <div style="padding: 5px 5px 0 5px;">
  1785. <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>
  1786. </div>
  1787. </td><td><a href='/ProductDetail/Texas-Instruments/CC1310F128RGZR/?qs=sGAEpiMZZMsy1LJDmo1RNoe92Kul6M2rbqzU9S7%2fJKyLckdObx%2f86A%3d%3d'><img title='Texas Instruments CC1310F128RGZR' alt='Texas Instruments CC1310F128RGZR' id=1581933670 src='/images/texasinstruments/sm/TI_VQFN_48.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_VQFN_48.jpg</div></a></td><td>
  1788. <div style="text-align:left;">
  1789. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Texas-Instruments/CC1310F128RGZR/?qs=sGAEpiMZZMsy1LJDmo1RNoe92Kul6M2rbqzU9S7%2fJKyLckdObx%2f86A%3d%3d">595-CC1310F128RGZR</a><br />
  1790. <br />
  1791. <br />
  1792. 要购买完整 卷轴,请订购 2500 的倍数:
  1793. </div></td><td>
  1794. <div class="mfrDiv">
  1795. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Texas-Instruments/CC1310F128RGZR/?qs=sGAEpiMZZMsy1LJDmo1RNoe92Kul6M2rbqzU9S7%2fJKyLckdObx%2f86A%3d%3d">CC1310F128RGZR</a><br />
  1796. <br />
  1797. <div style="width: 100%; text-align: center;">
  1798. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  1799. </div>
  1800. <div style="width: 100%; text-align: center;">
  1801. </div>
  1802. </div>
  1803. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl03_lnkSupplier" href="../../../../../Texas-Instruments">Texas Instruments</a>
  1804. </td><td>射频微控制器 - MCU SimpleLink? Sub-1 GHz Ultra-Low Power Wireless Microcontroller 48-VQFN -40 to 85
  1805. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  1806. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../ti-cc1310-simplelink-mcu/">了解更多</a>
  1807. </div>
  1808. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  1809. </div>
  1810. </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;Texas Instruments&quot;,&quot;595-CC1310F128RGZR | CC1310F128RGZR&quot;]);" href="http://www.mouser.com/ds/2/405/cc1310-772274.pdf" target="_blank">数据表</a>
  1811. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl06_lnkAvailability">2,212<br/>有库存</span>
  1812. <table>
  1813. <tr align="center">
  1814. <td style="padding-top: 5px">
  1815. </td>
  1816. </tr>
  1817. <tr align="center">
  1818. <td style="padding-top: 5px; padding-bottom: 5px">
  1819. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl06_lnkAlternativePackaging" title="备用包装 | 595-CC1310F128RGZR" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YQFum9dshdGzNSbFK5iPXxefubXg%252bF9G8zW0rIFjSpNe%252bpNgMr%2foI3K29rhcuKQRa8ftKow%252bRKcS%2fSBH5QHxOQ4MTHP8ZIF40F1g3ztgFRGoCrfzvnoyNU8%2fPQTXoyq9t%252bigwYfFWv10A%3d%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  1820. </td>
  1821. </tr>
  1822. </table></td><td>
  1823. <table class="PriceBreaks" cellspacing="0" border="0">
  1824. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  1825. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1826. </td>
  1827. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1828. </td>
  1829. </tr>
  1830. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  1831. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  1832. 剪切带
  1833. </td>
  1834. </tr>
  1835. <tr>
  1836. <td class="PriceBreakQuantity">
  1837. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(5,1);">1:</a>
  1838. </td>
  1839. <td class="PriceBreakPrice">
  1840. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥65.9178</span>
  1841. </td>
  1842. </tr>
  1843. <tr>
  1844. <td class="PriceBreakQuantity">
  1845. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(5,10);">10:</a>
  1846. </td>
  1847. <td class="PriceBreakPrice">
  1848. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥59.5998</span>
  1849. </td>
  1850. </tr>
  1851. <tr>
  1852. <td class="PriceBreakQuantity">
  1853. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(5,25);">25:</a>
  1854. </td>
  1855. <td class="PriceBreakPrice">
  1856. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥55.1421</span>
  1857. </td>
  1858. </tr>
  1859. <tr>
  1860. <td class="PriceBreakQuantity">
  1861. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(5,100);">100:</a>
  1862. </td>
  1863. <td class="PriceBreakPrice">
  1864. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥49.2804</span>
  1865. </td>
  1866. </tr>
  1867. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  1868. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  1869. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(5,250);">250:</a>
  1870. </td>
  1871. <td class="PriceBreakPrice">
  1872. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Texas-Instruments/CC1310F128RGZR/?qs=sGAEpiMZZMsy1LJDmo1RNoe92Kul6M2rbqzU9S7%2fJKyLckdObx%2f86A%3d%3d">查看</a>
  1873. </td>
  1874. </tr>
  1875. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  1876. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  1877. </td>
  1878. </tr>
  1879. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl05_trReel">
  1880. <td class="PriceBreakQuantity">
  1881. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl05_lnkReelQuantity" href="javascript:SelectQuantity(5,2500);" style="white-space: nowrap">2,500:</a>
  1882. </td>
  1883. <td class="PriceBreakPrice">
  1884. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl05_lblReelPrice" style="white-space: nowrap">¥34.1874</span>
  1885. </td>
  1886. </tr>
  1887. <tr>
  1888. <td><br /></td>
  1889. </tr>
  1890. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  1891. <td colspan="2" style="text-align: center;">
  1892. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl05_lnkMouseReel" class="mousereel" href="../../../../../ProductDetail/Texas-Instruments/CC1310F128RGZR/?qs=sGAEpiMZZMsy1LJDmo1RNoe92Kul6M2rbqzU9S7%2fJKyLckdObx%2f86A%3d%3d">MouseReel 提供服务支持</a>
  1893. </td>
  1894. </tr>
  1895. </table>
  1896. </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;)">
  1897. <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 />
  1898. <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="购买 CC1310F128RGZR" class="buy-button" /><br />
  1899. <table cellspacing="0" border="0" style="width: 100%;">
  1900. <tr>
  1901. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1902. 最低:
  1903. </td>
  1904. <td style="padding-left: 2px; text-align: left;">
  1905. 1
  1906. </td>
  1907. </tr>
  1908. <tr>
  1909. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1910. 多个:
  1911. </td>
  1912. <td style="padding-left: 2px; text-align: left;">
  1913. 1
  1914. </td>
  1915. </tr>
  1916. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl08_trReel">
  1917. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1918. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(5,2500);">卷轴</a>:
  1919. </td>
  1920. <td style="padding-left: 2px; text-align: left;">
  1921. <em class="SearchResultsReel">
  1922. 2,500
  1923. </em>
  1924. </td>
  1925. </tr>
  1926. </table>
  1927. </div>
  1928. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_pnlCompliant">
  1929. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  1930. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=76UNfWNKJYeabi6htpIYAw%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=76UNfWNKJYeabi6htpIYAw%3d%3d" target="_blank">详细信息</a>
  1931. </div>
  1932. </td>
  1933. </tr><tr class="SearchResultsRowEven" data-partnumber="595-CC2650F128RHBR" data-index="8">
  1934. <td class="td-select" align="center">
  1935. <div style="padding: 5px 5px 0 5px;">
  1936. <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>
  1937. </div>
  1938. </td><td></td><td>
  1939. <div style="text-align:left;">
  1940. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Texas-Instruments/CC2650F128RHBR/?qs=sGAEpiMZZMsy1LJDmo1RNuehT9FW2YmCVodZQapuwwq8KvqS1RN5Pg%3d%3d">595-CC2650F128RHBR</a><br />
  1941. <br />
  1942. <br />
  1943. 要购买完整 卷轴,请订购 3000 的倍数:
  1944. </div></td><td>
  1945. <div class="mfrDiv">
  1946. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Texas-Instruments/CC2650F128RHBR/?qs=sGAEpiMZZMsy1LJDmo1RNuehT9FW2YmCVodZQapuwwq8KvqS1RN5Pg%3d%3d">CC2650F128RHBR</a><br />
  1947. <br />
  1948. <div style="width: 100%; text-align: center;">
  1949. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  1950. </div>
  1951. <div style="width: 100%; text-align: center;">
  1952. </div>
  1953. </div>
  1954. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl03_lnkSupplier" href="../../../../../Texas-Instruments">Texas Instruments</a>
  1955. </td><td>射频微控制器 - MCU SimpleLink multi-standard 2.4 GHz ultra-low power wireless MCU 32-VQFN -40 to 85
  1956. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  1957. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../ti-cc26xx-simplelink/">了解更多</a>
  1958. </div>
  1959. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  1960. </div>
  1961. </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;Texas Instruments&quot;,&quot;595-CC2650F128RHBR | CC2650F128RHBR&quot;]);" href="http://www.mouser.com/ds/2/405/cc2650-558178.pdf" target="_blank">数据表</a>
  1962. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl06_lnkAvailability">2,979<br/>有库存</span>
  1963. <table>
  1964. <tr align="center">
  1965. <td style="padding-top: 5px">
  1966. </td>
  1967. </tr>
  1968. <tr align="center">
  1969. <td style="padding-top: 5px; padding-bottom: 5px">
  1970. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl06_lnkAlternativePackaging" title="备用包装 | 595-CC2650F128RHBR" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YRbdCZx%252bEQ5VOPkST15z3XHOio6eU1fO2RvGxZf2%252baPWPUgBEQ%252bGV%2fhxE4QHN%2f6zRTX8zKXMfldOleEDM%2fRHfZW5vPAOOdy1vAvUezNXRDta7WbsOAQbXPX8wZKZKzH0YFB3T4RD5VsHA%3d%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  1971. </td>
  1972. </tr>
  1973. </table></td><td>
  1974. <table class="PriceBreaks" cellspacing="0" border="0">
  1975. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  1976. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1977. </td>
  1978. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1979. </td>
  1980. </tr>
  1981. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  1982. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  1983. 剪切带
  1984. </td>
  1985. </tr>
  1986. <tr>
  1987. <td class="PriceBreakQuantity">
  1988. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(6,1);">1:</a>
  1989. </td>
  1990. <td class="PriceBreakPrice">
  1991. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥54.9081</span>
  1992. </td>
  1993. </tr>
  1994. <tr>
  1995. <td class="PriceBreakQuantity">
  1996. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(6,10);">10:</a>
  1997. </td>
  1998. <td class="PriceBreakPrice">
  1999. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥49.6665</span>
  2000. </td>
  2001. </tr>
  2002. <tr>
  2003. <td class="PriceBreakQuantity">
  2004. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(6,25);">25:</a>
  2005. </td>
  2006. <td class="PriceBreakPrice">
  2007. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥45.9693</span>
  2008. </td>
  2009. </tr>
  2010. <tr>
  2011. <td class="PriceBreakQuantity">
  2012. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(6,100);">100:</a>
  2013. </td>
  2014. <td class="PriceBreakPrice">
  2015. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥41.1255</span>
  2016. </td>
  2017. </tr>
  2018. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  2019. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2020. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(6,250);">250:</a>
  2021. </td>
  2022. <td class="PriceBreakPrice">
  2023. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Texas-Instruments/CC2650F128RHBR/?qs=sGAEpiMZZMsy1LJDmo1RNuehT9FW2YmCVodZQapuwwq8KvqS1RN5Pg%3d%3d">查看</a>
  2024. </td>
  2025. </tr>
  2026. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  2027. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  2028. </td>
  2029. </tr>
  2030. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl05_trReel">
  2031. <td class="PriceBreakQuantity">
  2032. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl05_lnkReelQuantity" href="javascript:SelectQuantity(6,3000);" style="white-space: nowrap">3,000:</a>
  2033. </td>
  2034. <td class="PriceBreakPrice">
  2035. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl05_lblReelPrice" style="white-space: nowrap">¥28.4895</span>
  2036. </td>
  2037. </tr>
  2038. <tr>
  2039. <td><br /></td>
  2040. </tr>
  2041. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2042. <td colspan="2" style="text-align: center;">
  2043. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl05_lnkMouseReel" class="mousereel" href="../../../../../ProductDetail/Texas-Instruments/CC2650F128RHBR/?qs=sGAEpiMZZMsy1LJDmo1RNuehT9FW2YmCVodZQapuwwq8KvqS1RN5Pg%3d%3d">MouseReel 提供服务支持</a>
  2044. </td>
  2045. </tr>
  2046. </table>
  2047. </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;)">
  2048. <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 />
  2049. <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="购买 CC2650F128RHBR" class="buy-button" /><br />
  2050. <table cellspacing="0" border="0" style="width: 100%;">
  2051. <tr>
  2052. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2053. 最低:
  2054. </td>
  2055. <td style="padding-left: 2px; text-align: left;">
  2056. 1
  2057. </td>
  2058. </tr>
  2059. <tr>
  2060. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2061. 多个:
  2062. </td>
  2063. <td style="padding-left: 2px; text-align: left;">
  2064. 1
  2065. </td>
  2066. </tr>
  2067. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl08_trReel">
  2068. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2069. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(6,3000);">卷轴</a>:
  2070. </td>
  2071. <td style="padding-left: 2px; text-align: left;">
  2072. <em class="SearchResultsReel">
  2073. 3,000
  2074. </em>
  2075. </td>
  2076. </tr>
  2077. </table>
  2078. </div>
  2079. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_pnlCompliant">
  2080. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2081. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=9m5%2fsE2O8XNWW%2fcOBHZjsg%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=9m5%2fsE2O8XNWW%2fcOBHZjsg%3d%3d" target="_blank">详细信息</a>
  2082. </div>
  2083. </td>
  2084. </tr><tr class="SearchResultsRowOdd" data-partnumber="595-CC1310F32RGZR" data-index="9">
  2085. <td class="td-select" align="center">
  2086. <div style="padding: 5px 5px 0 5px;">
  2087. <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>
  2088. </div>
  2089. </td><td></td><td>
  2090. <div style="text-align:left;">
  2091. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Texas-Instruments/CC1310F32RGZR/?qs=sGAEpiMZZMsy1LJDmo1RNrFA7ARJeUNYko4By%2fKj%252bY26%2f%252bl0GG6Iww%3d%3d">595-CC1310F32RGZR</a><br />
  2092. <br />
  2093. <br />
  2094. 要购买完整 卷轴,请订购 2500 的倍数:
  2095. </div></td><td>
  2096. <div class="mfrDiv">
  2097. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Texas-Instruments/CC1310F32RGZR/?qs=sGAEpiMZZMsy1LJDmo1RNrFA7ARJeUNYko4By%2fKj%252bY26%2f%252bl0GG6Iww%3d%3d">CC1310F32RGZR</a><br />
  2098. <br />
  2099. <div style="width: 100%; text-align: center;">
  2100. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2101. </div>
  2102. <div style="width: 100%; text-align: center;">
  2103. </div>
  2104. </div>
  2105. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl03_lnkSupplier" href="../../../../../Texas-Instruments">Texas Instruments</a>
  2106. </td><td>射频微控制器 - MCU SimpleLink? Sub-1 GHz Ultra-Low Power Wireless Microcontroller 48-VQFN -40 to 85
  2107. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2108. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../ti-cc1310-simplelink-mcu/">了解更多</a>
  2109. </div>
  2110. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2111. </div>
  2112. </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;Texas Instruments&quot;,&quot;595-CC1310F32RGZR | CC1310F32RGZR&quot;]);" href="http://www.mouser.com/ds/2/405/cc1310-772274.pdf" target="_blank">数据表</a>
  2113. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl06_lnkAvailability">2,500<br/>有库存</span>
  2114. <table>
  2115. <tr align="center">
  2116. <td style="padding-top: 5px">
  2117. </td>
  2118. </tr>
  2119. <tr align="center">
  2120. <td style="padding-top: 5px; padding-bottom: 5px">
  2121. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl06_lnkAlternativePackaging" title="备用包装 | 595-CC1310F32RGZR" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YQFum9dshdGzJ1GU22E9qvuXtx14EIoR5GYX3lQ1Xy%252bESqqDdOquTImNHvJxPUdERQ7W12%2ftvEtbPCokKd9YVNBYnr65GMDmvuueLBiPCISAqx2RIgkQ%2fBXl%2fHxO8vNITzTnr%252bjp5vqdw%3d%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  2122. </td>
  2123. </tr>
  2124. </table></td><td>
  2125. <table class="PriceBreaks" cellspacing="0" border="0">
  2126. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2127. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2128. </td>
  2129. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2130. </td>
  2131. </tr>
  2132. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  2133. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  2134. 剪切带
  2135. </td>
  2136. </tr>
  2137. <tr>
  2138. <td class="PriceBreakQuantity">
  2139. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(7,1);">1:</a>
  2140. </td>
  2141. <td class="PriceBreakPrice">
  2142. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥51.2928</span>
  2143. </td>
  2144. </tr>
  2145. <tr>
  2146. <td class="PriceBreakQuantity">
  2147. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(7,10);">10:</a>
  2148. </td>
  2149. <td class="PriceBreakPrice">
  2150. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥46.3554</span>
  2151. </td>
  2152. </tr>
  2153. <tr>
  2154. <td class="PriceBreakQuantity">
  2155. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(7,25);">25:</a>
  2156. </td>
  2157. <td class="PriceBreakPrice">
  2158. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥42.8922</span>
  2159. </td>
  2160. </tr>
  2161. <tr>
  2162. <td class="PriceBreakQuantity">
  2163. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(7,100);">100:</a>
  2164. </td>
  2165. <td class="PriceBreakPrice">
  2166. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥38.3526</span>
  2167. </td>
  2168. </tr>
  2169. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  2170. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2171. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(7,250);">250:</a>
  2172. </td>
  2173. <td class="PriceBreakPrice">
  2174. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Texas-Instruments/CC1310F32RGZR/?qs=sGAEpiMZZMsy1LJDmo1RNrFA7ARJeUNYko4By%2fKj%252bY26%2f%252bl0GG6Iww%3d%3d">查看</a>
  2175. </td>
  2176. </tr>
  2177. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  2178. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  2179. </td>
  2180. </tr>
  2181. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl05_trReel">
  2182. <td class="PriceBreakQuantity">
  2183. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl05_lnkReelQuantity" href="javascript:SelectQuantity(7,2500);" style="white-space: nowrap">2,500:</a>
  2184. </td>
  2185. <td class="PriceBreakPrice">
  2186. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl05_lblReelPrice" style="white-space: nowrap">¥26.6409</span>
  2187. </td>
  2188. </tr>
  2189. <tr>
  2190. <td><br /></td>
  2191. </tr>
  2192. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2193. <td colspan="2" style="text-align: center;">
  2194. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl05_lnkMouseReel" class="mousereel" href="../../../../../ProductDetail/Texas-Instruments/CC1310F32RGZR/?qs=sGAEpiMZZMsy1LJDmo1RNrFA7ARJeUNYko4By%2fKj%252bY26%2f%252bl0GG6Iww%3d%3d">MouseReel 提供服务支持</a>
  2195. </td>
  2196. </tr>
  2197. </table>
  2198. </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;)">
  2199. <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 />
  2200. <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="购买 CC1310F32RGZR" class="buy-button" /><br />
  2201. <table cellspacing="0" border="0" style="width: 100%;">
  2202. <tr>
  2203. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2204. 最低:
  2205. </td>
  2206. <td style="padding-left: 2px; text-align: left;">
  2207. 1
  2208. </td>
  2209. </tr>
  2210. <tr>
  2211. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2212. 多个:
  2213. </td>
  2214. <td style="padding-left: 2px; text-align: left;">
  2215. 1
  2216. </td>
  2217. </tr>
  2218. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl08_trReel">
  2219. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2220. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(7,2500);">卷轴</a>:
  2221. </td>
  2222. <td style="padding-left: 2px; text-align: left;">
  2223. <em class="SearchResultsReel">
  2224. 2,500
  2225. </em>
  2226. </td>
  2227. </tr>
  2228. </table>
  2229. </div>
  2230. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_pnlCompliant">
  2231. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2232. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=jJkN0%2fwhHYGQ4Ap1yPZaHA%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=jJkN0%2fwhHYGQ4Ap1yPZaHA%3d%3d" target="_blank">详细信息</a>
  2233. </div>
  2234. </td>
  2235. </tr><tr class="SearchResultsRowEven" data-partnumber="989-10M02DCV36C8G" data-index="10">
  2236. <td class="td-select" align="center">
  2237. <div style="padding: 5px 5px 0 5px;">
  2238. <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>
  2239. </div>
  2240. </td><td><a href='/ProductDetail/Altera-Corporation/10M02DCV36C8G/?qs=sGAEpiMZZMsy1LJDmo1RNtMlx59T97MFMNakEp4tBflO94sRytV1jw%3d%3d'><img title='Altera Corporation 10M02DCV36C8G' alt='Altera Corporation 10M02DCV36C8G' id=1431121580 src='/images/mouserimages/sm/WLCSP_36_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/WLCSP_36_t.jpg</div></a></td><td>
  2241. <div style="text-align:left;">
  2242. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Altera-Corporation/10M02DCV36C8G/?qs=sGAEpiMZZMsy1LJDmo1RNtMlx59T97MFMNakEp4tBflO94sRytV1jw%3d%3d">989-10M02DCV36C8G</a><br />
  2243. <br />
  2244. <br />
  2245. 要购买完整 卷轴,请订购 1000 的倍数:
  2246. </div></td><td>
  2247. <div class="mfrDiv">
  2248. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Altera-Corporation/10M02DCV36C8G/?qs=sGAEpiMZZMsy1LJDmo1RNtMlx59T97MFMNakEp4tBflO94sRytV1jw%3d%3d">10M02DCV36C8G</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_ctl10_ctl03_lnkSupplier" href="../../../../../altera">Altera Corporation</a>
  2257. </td><td>FPGA - 现场可编程门阵列 non-volatile FPGA, 27 I/O, 36WLCSP
  2258. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2259. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../altera-max10-fpga">了解更多</a>
  2260. </div>
  2261. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2262. </div>
  2263. </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;Altera Corporation&quot;,&quot;989-10M02DCV36C8G | 10M02DCV36C8G&quot;]);" href="http://www.mouser.com/ds/2/591/m10_overview-709317.pdf" target="_blank">数据表</a>
  2264. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl06_lnkAvailability">765<br/>有库存</span>
  2265. <table>
  2266. <tr align="center">
  2267. <td style="padding-top: 5px">
  2268. </td>
  2269. </tr>
  2270. <tr align="center">
  2271. <td style="padding-top: 5px; padding-bottom: 5px">
  2272. </td>
  2273. </tr>
  2274. </table></td><td>
  2275. <table class="PriceBreaks" cellspacing="0" border="0">
  2276. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2277. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2278. </td>
  2279. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2280. </td>
  2281. </tr>
  2282. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  2283. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  2284. 剪切带
  2285. </td>
  2286. </tr>
  2287. <tr>
  2288. <td class="PriceBreakQuantity">
  2289. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(8,1);">1:</a>
  2290. </td>
  2291. <td class="PriceBreakPrice">
  2292. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥29.1096</span>
  2293. </td>
  2294. </tr>
  2295. <tr>
  2296. <td class="PriceBreakQuantity">
  2297. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(8,25);">25:</a>
  2298. </td>
  2299. <td class="PriceBreakPrice">
  2300. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥23.2596</span>
  2301. </td>
  2302. </tr>
  2303. <tr>
  2304. <td class="PriceBreakQuantity">
  2305. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(8,100);">100:</a>
  2306. </td>
  2307. <td class="PriceBreakPrice">
  2308. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥22.7214</span>
  2309. </td>
  2310. </tr>
  2311. <tr>
  2312. <td class="PriceBreakQuantity">
  2313. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(8,500);">500:</a>
  2314. </td>
  2315. <td class="PriceBreakPrice">
  2316. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥21.8673</span>
  2317. </td>
  2318. </tr>
  2319. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  2320. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  2321. 卷轴
  2322. </td>
  2323. </tr>
  2324. <tr>
  2325. <td class="PriceBreakQuantity">
  2326. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(8,1000);">1,000:</a>
  2327. </td>
  2328. <td class="PriceBreakPrice">
  2329. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥21.8673</span>
  2330. </td>
  2331. </tr>
  2332. <tr>
  2333. <td><br /></td>
  2334. </tr>
  2335. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl06_trMouserReel">
  2336. <td colspan="2" style="text-align: center;">
  2337. </td>
  2338. </tr>
  2339. </table>
  2340. </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;)">
  2341. <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 />
  2342. <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="购买 10M02DCV36C8G" class="buy-button" /><br />
  2343. <table cellspacing="0" border="0" style="width: 100%;">
  2344. <tr>
  2345. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2346. 最低:
  2347. </td>
  2348. <td style="padding-left: 2px; text-align: left;">
  2349. 1
  2350. </td>
  2351. </tr>
  2352. <tr>
  2353. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2354. 多个:
  2355. </td>
  2356. <td style="padding-left: 2px; text-align: left;">
  2357. 1
  2358. </td>
  2359. </tr>
  2360. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl08_trReel">
  2361. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2362. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(8,1000);">卷轴</a>:
  2363. </td>
  2364. <td style="padding-left: 2px; text-align: left;">
  2365. <em class="SearchResultsReel">
  2366. 1,000
  2367. </em>
  2368. </td>
  2369. </tr>
  2370. </table>
  2371. </div>
  2372. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_pnlCompliant">
  2373. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2374. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=9nfJn4gl3B%2fkwx8I%252bxrLNw%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=9nfJn4gl3B%2fkwx8I%252bxrLNw%3d%3d" target="_blank">详细信息</a>
  2375. </div>
  2376. </td>
  2377. </tr><tr class="SearchResultsRowOdd" data-partnumber="595-CC2640F128RHBT" data-index="11">
  2378. <td class="td-select" align="center">
  2379. <div style="padding: 5px 5px 0 5px;">
  2380. <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>
  2381. </div>
  2382. </td><td><a href='/ProductDetail/Texas-Instruments/CC2640F128RHBT/?qs=sGAEpiMZZMsy1LJDmo1RNuehT9FW2YmC2zJE%2fBqLFJkTwLhg93%252bwJA%3d%3d'><img title='Texas Instruments CC2640F128RHBT' alt='Texas Instruments CC2640F128RHBT' id=1442724512 src='/images/mouserimages/sm/QFN_32_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/QFN_32_t.jpg</div></a></td><td>
  2383. <div style="text-align:left;">
  2384. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Texas-Instruments/CC2640F128RHBT/?qs=sGAEpiMZZMsy1LJDmo1RNuehT9FW2YmC2zJE%2fBqLFJkTwLhg93%252bwJA%3d%3d">595-CC2640F128RHBT</a><br />
  2385. <br />
  2386. <br />
  2387. 要购买完整 卷轴,请订购 250 的倍数:
  2388. </div></td><td>
  2389. <div class="mfrDiv">
  2390. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Texas-Instruments/CC2640F128RHBT/?qs=sGAEpiMZZMsy1LJDmo1RNuehT9FW2YmC2zJE%2fBqLFJkTwLhg93%252bwJA%3d%3d">CC2640F128RHBT</a><br />
  2391. <br />
  2392. <div style="width: 100%; text-align: center;">
  2393. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2394. </div>
  2395. <div style="width: 100%; text-align: center;">
  2396. </div>
  2397. </div>
  2398. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl03_lnkSupplier" href="../../../../../Texas-Instruments">Texas Instruments</a>
  2399. </td><td>射频微控制器 - MCU SimpleLink ultra-low power wireless MCU for Bluetooth Smart 32-VQFN -40 to 85
  2400. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2401. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../ti-cc26xx-simplelink/">了解更多</a>
  2402. </div>
  2403. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2404. </div>
  2405. </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;Texas Instruments&quot;,&quot;595-CC2640F128RHBT | CC2640F128RHBT&quot;]);" href="http://www.mouser.com/ds/2/405/cc2640-558177.pdf" target="_blank">数据表</a>
  2406. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl06_lnkAvailability">665<br/>有库存</span>
  2407. <table>
  2408. <tr align="center">
  2409. <td style="padding-top: 5px">
  2410. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl06_lnkFootNote" title="更多信息可用 " href="../../../../../ProductDetail/Texas-Instruments/CC2640F128RHBT/?qs=sGAEpiMZZMsy1LJDmo1RNuehT9FW2YmC2zJE%2fBqLFJkTwLhg93%252bwJA%3d%3d">更多信息可用 </a>
  2411. </td>
  2412. </tr>
  2413. <tr align="center">
  2414. <td style="padding-top: 5px; padding-bottom: 5px">
  2415. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl06_lnkAlternativePackaging" title="备用包装 | 595-CC2640F128RHBT" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YRbdCZx%252bEQ5VCp8S6Uae0KLnNXKFqnVc%2fUufD3dyMcfiXpE3QgkPUD4pxwp39Osn3c5uXWPATbwYV%2fCWKnZ7fy73adaPPTThcTQvEX1GTN%252byk0jiyDS%2fxawvCFgJDwVzRUVdkeVEAM%252bcA%3d%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  2416. </td>
  2417. </tr>
  2418. </table></td><td>
  2419. <table class="PriceBreaks" cellspacing="0" border="0">
  2420. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2421. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2422. </td>
  2423. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2424. </td>
  2425. </tr>
  2426. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  2427. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  2428. 剪切带
  2429. </td>
  2430. </tr>
  2431. <tr>
  2432. <td class="PriceBreakQuantity">
  2433. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(9,1);">1:</a>
  2434. </td>
  2435. <td class="PriceBreakPrice">
  2436. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥52.6032</span>
  2437. </td>
  2438. </tr>
  2439. <tr>
  2440. <td class="PriceBreakQuantity">
  2441. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(9,10);">10:</a>
  2442. </td>
  2443. <td class="PriceBreakPrice">
  2444. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥47.5956</span>
  2445. </td>
  2446. </tr>
  2447. <tr>
  2448. <td class="PriceBreakQuantity">
  2449. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(9,25);">25:</a>
  2450. </td>
  2451. <td class="PriceBreakPrice">
  2452. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥44.0505</span>
  2453. </td>
  2454. </tr>
  2455. <tr>
  2456. <td class="PriceBreakQuantity">
  2457. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(9,100);">100:</a>
  2458. </td>
  2459. <td class="PriceBreakPrice">
  2460. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥39.3471</span>
  2461. </td>
  2462. </tr>
  2463. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  2464. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  2465. 卷轴
  2466. </td>
  2467. </tr>
  2468. <tr>
  2469. <td class="PriceBreakQuantity">
  2470. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(9,250);">250:</a>
  2471. </td>
  2472. <td class="PriceBreakPrice">
  2473. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥37.1241</span>
  2474. </td>
  2475. </tr>
  2476. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl06_trViewMore">
  2477. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2478. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl06_lnkViewMoreQuantity" href="javascript:SelectQuantity(9,500);">500:</a>
  2479. </td>
  2480. <td class="PriceBreakPrice">
  2481. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Texas-Instruments/CC2640F128RHBT/?qs=sGAEpiMZZMsy1LJDmo1RNuehT9FW2YmC2zJE%2fBqLFJkTwLhg93%252bwJA%3d%3d">查看</a>
  2482. </td>
  2483. </tr>
  2484. <tr>
  2485. <td><br /></td>
  2486. </tr>
  2487. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl06_trMouserReel">
  2488. <td colspan="2" style="text-align: center;">
  2489. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl06_lnkMouseReel" class="mousereel" href="../../../../../ProductDetail/Texas-Instruments/CC2640F128RHBT/?qs=sGAEpiMZZMsy1LJDmo1RNuehT9FW2YmC2zJE%2fBqLFJkTwLhg93%252bwJA%3d%3d">MouseReel 提供服务支持</a>
  2490. </td>
  2491. </tr>
  2492. </table>
  2493. </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;)">
  2494. <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 />
  2495. <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="购买 CC2640F128RHBT" class="buy-button" /><br />
  2496. <table cellspacing="0" border="0" style="width: 100%;">
  2497. <tr>
  2498. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2499. 最低:
  2500. </td>
  2501. <td style="padding-left: 2px; text-align: left;">
  2502. 1
  2503. </td>
  2504. </tr>
  2505. <tr>
  2506. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2507. 多个:
  2508. </td>
  2509. <td style="padding-left: 2px; text-align: left;">
  2510. 1
  2511. </td>
  2512. </tr>
  2513. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl08_trReel">
  2514. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2515. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(9,250);">卷轴</a>:
  2516. </td>
  2517. <td style="padding-left: 2px; text-align: left;">
  2518. <em class="SearchResultsReel">
  2519. 250
  2520. </em>
  2521. </td>
  2522. </tr>
  2523. </table>
  2524. </div>
  2525. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_pnlCompliant">
  2526. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2527. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=9m5%2fsE2O8XNnvkQPI8%2fMVg%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=9m5%2fsE2O8XNnvkQPI8%2fMVg%3d%3d" target="_blank">详细信息</a>
  2528. </div>
  2529. </td>
  2530. </tr><tr class="SearchResultsRowEven" data-partnumber="511-STM32L476RGT6" data-index="12">
  2531. <td class="td-select" align="center">
  2532. <div style="padding: 5px 5px 0 5px;">
  2533. <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>
  2534. </div>
  2535. </td><td><a href='/ProductDetail/STMicroelectronics/STM32L476RGT6/?qs=sGAEpiMZZMsy1LJDmo1RNu%2fyvOrgf6EtjcaTMXNseAY4mY7qMk8Dew%3d%3d'><img title='STMicroelectronics STM32L476RGT6' alt='STMicroelectronics STM32L476RGT6' id=1425959603 src='/images/mouserimages/sm/LQFP_64_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_64_t.jpg</div></a></td><td>
  2536. <div style="text-align:left;">
  2537. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/STMicroelectronics/STM32L476RGT6/?qs=sGAEpiMZZMsy1LJDmo1RNu%2fyvOrgf6EtjcaTMXNseAY4mY7qMk8Dew%3d%3d">511-STM32L476RGT6</a><br />
  2538. <br />
  2539. <br />
  2540. </div></td><td>
  2541. <div class="mfrDiv">
  2542. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/STMicroelectronics/STM32L476RGT6/?qs=sGAEpiMZZMsy1LJDmo1RNu%2fyvOrgf6EtjcaTMXNseAY4mY7qMk8Dew%3d%3d">STM32L476RGT6</a><br />
  2543. <br />
  2544. <div style="width: 100%; text-align: center;">
  2545. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2546. </div>
  2547. <div style="width: 100%; text-align: center;">
  2548. </div>
  2549. </div>
  2550. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl03_lnkSupplier" href="../../../../../stmicroelectronics">STMicroelectronics</a>
  2551. </td><td>ARM微控制器 - MCU Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, LCD, USB OTG
  2552. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2553. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../stm-stm32l4-mcu-fpu">了解更多</a>
  2554. </div>
  2555. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2556. </div>
  2557. </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;STMicroelectronics&quot;,&quot;511-STM32L476RGT6 | STM32L476RGT6&quot;]);" href="http://www.mouser.com/ds/2/389/DM00108832-709789.pdf" target="_blank">数据表</a>
  2558. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl06_lnkAvailability">907<br/>有库存</span>
  2559. <table>
  2560. <tr align="center">
  2561. <td style="padding-top: 5px">
  2562. </td>
  2563. </tr>
  2564. <tr align="center">
  2565. <td style="padding-top: 5px; padding-bottom: 5px">
  2566. </td>
  2567. </tr>
  2568. </table></td><td>
  2569. <table class="PriceBreaks" cellspacing="0" border="0">
  2570. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2571. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2572. </td>
  2573. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2574. </td>
  2575. </tr>
  2576. <tr>
  2577. <td class="PriceBreakQuantity">
  2578. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(10,1);">1:</a>
  2579. </td>
  2580. <td class="PriceBreakPrice">
  2581. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥82.251</span>
  2582. </td>
  2583. </tr>
  2584. <tr>
  2585. <td class="PriceBreakQuantity">
  2586. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(10,10);">10:</a>
  2587. </td>
  2588. <td class="PriceBreakPrice">
  2589. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥74.3184</span>
  2590. </td>
  2591. </tr>
  2592. <tr>
  2593. <td class="PriceBreakQuantity">
  2594. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(10,25);">25:</a>
  2595. </td>
  2596. <td class="PriceBreakPrice">
  2597. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥70.8435</span>
  2598. </td>
  2599. </tr>
  2600. <tr>
  2601. <td class="PriceBreakQuantity">
  2602. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(10,50);">50:</a>
  2603. </td>
  2604. <td class="PriceBreakPrice">
  2605. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥65.9997</span>
  2606. </td>
  2607. </tr>
  2608. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  2609. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2610. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(10,100);">100:</a>
  2611. </td>
  2612. <td class="PriceBreakPrice">
  2613. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/STMicroelectronics/STM32L476RGT6/?qs=sGAEpiMZZMsy1LJDmo1RNu%2fyvOrgf6EtjcaTMXNseAY4mY7qMk8Dew%3d%3d">查看</a>
  2614. </td>
  2615. </tr>
  2616. <tr>
  2617. <td><br /></td>
  2618. </tr>
  2619. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2620. <td colspan="2" style="text-align: center;">
  2621. </td>
  2622. </tr>
  2623. </table>
  2624. </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;)">
  2625. <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 />
  2626. <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="购买 STM32L476RGT6" class="buy-button" /><br />
  2627. <table cellspacing="0" border="0" style="width: 100%;">
  2628. <tr>
  2629. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2630. 最低:
  2631. </td>
  2632. <td style="padding-left: 2px; text-align: left;">
  2633. 1
  2634. </td>
  2635. </tr>
  2636. <tr>
  2637. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2638. 多个:
  2639. </td>
  2640. <td style="padding-left: 2px; text-align: left;">
  2641. 1
  2642. </td>
  2643. </tr>
  2644. </table>
  2645. </div>
  2646. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_pnlCompliant">
  2647. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2648. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=bUmzaQDhY8AhC5sGmhrtRQ%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=bUmzaQDhY8AhC5sGmhrtRQ%3d%3d" target="_blank">详细信息</a>
  2649. </div>
  2650. </td>
  2651. </tr><tr class="SearchResultsRowOdd" data-partnumber="511-STM32F746VGT6" data-index="13">
  2652. <td class="td-select" align="center">
  2653. <div style="padding: 5px 5px 0 5px;">
  2654. <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>
  2655. </div>
  2656. </td><td><a href='/ProductDetail/STMicroelectronics/STM32F746VGT6/?qs=sGAEpiMZZMsy1LJDmo1RNrsmk%252bUkYoqA5nnZvwhI%2ftuTf4%2fJXTcjHA%3d%3d'><img title='STMicroelectronics STM32F746VGT6' alt='STMicroelectronics STM32F746VGT6' id=1477497325 src='/images/stmicroelectronics/sm/STM32F746VGT6_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/stmicroelectronics/images/STM32F746VGT6_t.jpg</div></a></td><td>
  2657. <div style="text-align:left;">
  2658. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/STMicroelectronics/STM32F746VGT6/?qs=sGAEpiMZZMsy1LJDmo1RNrsmk%252bUkYoqA5nnZvwhI%2ftuTf4%2fJXTcjHA%3d%3d">511-STM32F746VGT6</a><br />
  2659. <br />
  2660. <br />
  2661. </div></td><td>
  2662. <div class="mfrDiv">
  2663. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/STMicroelectronics/STM32F746VGT6/?qs=sGAEpiMZZMsy1LJDmo1RNrsmk%252bUkYoqA5nnZvwhI%2ftuTf4%2fJXTcjHA%3d%3d">STM32F746VGT6</a><br />
  2664. <br />
  2665. <div style="width: 100%; text-align: center;">
  2666. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2667. </div>
  2668. <div style="width: 100%; text-align: center;">
  2669. </div>
  2670. </div>
  2671. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl03_lnkSupplier" href="../../../../../stmicroelectronics">STMicroelectronics</a>
  2672. </td><td>ARM微控制器 - MCU High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM,
  2673. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2674. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../stm-stm32f7-mcu-fpu">了解更多</a>
  2675. </div>
  2676. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2677. </div>
  2678. </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;STMicroelectronics&quot;,&quot;511-STM32F746VGT6 | STM32F746VGT6&quot;]);" href="http://www.mouser.com/ds/2/389/DM00166116-599253.pdf" target="_blank">数据表</a>
  2679. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl06_lnkAvailability">424<br/>有库存</span>
  2680. <table>
  2681. <tr align="center">
  2682. <td style="padding-top: 5px">
  2683. </td>
  2684. </tr>
  2685. <tr align="center">
  2686. <td style="padding-top: 5px; padding-bottom: 5px">
  2687. </td>
  2688. </tr>
  2689. </table></td><td>
  2690. <table class="PriceBreaks" cellspacing="0" border="0">
  2691. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2692. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2693. </td>
  2694. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2695. </td>
  2696. </tr>
  2697. <tr>
  2698. <td class="PriceBreakQuantity">
  2699. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(11,1);">1:</a>
  2700. </td>
  2701. <td class="PriceBreakPrice">
  2702. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥128.8404</span>
  2703. </td>
  2704. </tr>
  2705. <tr>
  2706. <td class="PriceBreakQuantity">
  2707. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(11,10);">10:</a>
  2708. </td>
  2709. <td class="PriceBreakPrice">
  2710. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥118.521</span>
  2711. </td>
  2712. </tr>
  2713. <tr>
  2714. <td class="PriceBreakQuantity">
  2715. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(11,25);">25:</a>
  2716. </td>
  2717. <td class="PriceBreakPrice">
  2718. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥113.5836</span>
  2719. </td>
  2720. </tr>
  2721. <tr>
  2722. <td class="PriceBreakQuantity">
  2723. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(11,50);">50:</a>
  2724. </td>
  2725. <td class="PriceBreakPrice">
  2726. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥107.4294</span>
  2727. </td>
  2728. </tr>
  2729. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  2730. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2731. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(11,100);">100:</a>
  2732. </td>
  2733. <td class="PriceBreakPrice">
  2734. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/STMicroelectronics/STM32F746VGT6/?qs=sGAEpiMZZMsy1LJDmo1RNrsmk%252bUkYoqA5nnZvwhI%2ftuTf4%2fJXTcjHA%3d%3d">查看</a>
  2735. </td>
  2736. </tr>
  2737. <tr>
  2738. <td><br /></td>
  2739. </tr>
  2740. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2741. <td colspan="2" style="text-align: center;">
  2742. </td>
  2743. </tr>
  2744. </table>
  2745. </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;)">
  2746. <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 />
  2747. <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="购买 STM32F746VGT6" class="buy-button" /><br />
  2748. <table cellspacing="0" border="0" style="width: 100%;">
  2749. <tr>
  2750. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2751. 最低:
  2752. </td>
  2753. <td style="padding-left: 2px; text-align: left;">
  2754. 1
  2755. </td>
  2756. </tr>
  2757. <tr>
  2758. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2759. 多个:
  2760. </td>
  2761. <td style="padding-left: 2px; text-align: left;">
  2762. 1
  2763. </td>
  2764. </tr>
  2765. </table>
  2766. </div>
  2767. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_pnlCompliant">
  2768. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2769. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=UR3iUpfmIbzvmz32QNgNQw%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=UR3iUpfmIbzvmz32QNgNQw%3d%3d" target="_blank">详细信息</a>
  2770. </div>
  2771. </td>
  2772. </tr><tr class="SearchResultsRowEven" data-partnumber="511-STM32F746ZGT6" data-index="14">
  2773. <td class="td-select" align="center">
  2774. <div style="padding: 5px 5px 0 5px;">
  2775. <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>
  2776. </div>
  2777. </td><td><a href='/ProductDetail/STMicroelectronics/STM32F746ZGT6/?qs=sGAEpiMZZMsy1LJDmo1RNrsmk%252bUkYoqAyCzSaq9X6u87meQ9jPOimA%3d%3d'><img title='STMicroelectronics STM32F746ZGT6' alt='STMicroelectronics STM32F746ZGT6' id=1477497315 src='/images/mouserimages/sm/LQFP_144_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_144_t.jpg</div></a></td><td>
  2778. <div style="text-align:left;">
  2779. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/STMicroelectronics/STM32F746ZGT6/?qs=sGAEpiMZZMsy1LJDmo1RNrsmk%252bUkYoqAyCzSaq9X6u87meQ9jPOimA%3d%3d">511-STM32F746ZGT6</a><br />
  2780. <br />
  2781. <br />
  2782. </div></td><td>
  2783. <div class="mfrDiv">
  2784. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/STMicroelectronics/STM32F746ZGT6/?qs=sGAEpiMZZMsy1LJDmo1RNrsmk%252bUkYoqAyCzSaq9X6u87meQ9jPOimA%3d%3d">STM32F746ZGT6</a><br />
  2785. <br />
  2786. <div style="width: 100%; text-align: center;">
  2787. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2788. </div>
  2789. <div style="width: 100%; text-align: center;">
  2790. </div>
  2791. </div>
  2792. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl03_lnkSupplier" href="../../../../../stmicroelectronics">STMicroelectronics</a>
  2793. </td><td>ARM微控制器 - MCU High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbytes Flash, 200 MHz CPU, Art Accelerator, L1 cache, SDRAM
  2794. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2795. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../stm-stm32f7-mcu-fpu">了解更多</a>
  2796. </div>
  2797. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2798. </div>
  2799. </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;STMicroelectronics&quot;,&quot;511-STM32F746ZGT6 | STM32F746ZGT6&quot;]);" href="http://www.mouser.com/ds/2/389/DM00166116-599253.pdf" target="_blank">数据表</a>
  2800. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl06_lnkAvailability">312<br/>有库存</span>
  2801. <table>
  2802. <tr align="center">
  2803. <td style="padding-top: 5px">
  2804. </td>
  2805. </tr>
  2806. <tr align="center">
  2807. <td style="padding-top: 5px; padding-bottom: 5px">
  2808. </td>
  2809. </tr>
  2810. </table></td><td>
  2811. <table class="PriceBreaks" cellspacing="0" border="0">
  2812. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2813. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2814. </td>
  2815. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2816. </td>
  2817. </tr>
  2818. <tr>
  2819. <td class="PriceBreakQuantity">
  2820. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(12,1);">1:</a>
  2821. </td>
  2822. <td class="PriceBreakPrice">
  2823. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥139.3119</span>
  2824. </td>
  2825. </tr>
  2826. <tr>
  2827. <td class="PriceBreakQuantity">
  2828. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(12,10);">10:</a>
  2829. </td>
  2830. <td class="PriceBreakPrice">
  2831. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥128.0682</span>
  2832. </td>
  2833. </tr>
  2834. <tr>
  2835. <td class="PriceBreakQuantity">
  2836. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(12,25);">25:</a>
  2837. </td>
  2838. <td class="PriceBreakPrice">
  2839. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥122.7564</span>
  2840. </td>
  2841. </tr>
  2842. <tr>
  2843. <td class="PriceBreakQuantity">
  2844. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(12,50);">50:</a>
  2845. </td>
  2846. <td class="PriceBreakPrice">
  2847. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥116.1342</span>
  2848. </td>
  2849. </tr>
  2850. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  2851. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2852. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(12,100);">100:</a>
  2853. </td>
  2854. <td class="PriceBreakPrice">
  2855. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/STMicroelectronics/STM32F746ZGT6/?qs=sGAEpiMZZMsy1LJDmo1RNrsmk%252bUkYoqAyCzSaq9X6u87meQ9jPOimA%3d%3d">查看</a>
  2856. </td>
  2857. </tr>
  2858. <tr>
  2859. <td><br /></td>
  2860. </tr>
  2861. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2862. <td colspan="2" style="text-align: center;">
  2863. </td>
  2864. </tr>
  2865. </table>
  2866. </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;)">
  2867. <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 />
  2868. <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="购买 STM32F746ZGT6" class="buy-button" /><br />
  2869. <table cellspacing="0" border="0" style="width: 100%;">
  2870. <tr>
  2871. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2872. 最低:
  2873. </td>
  2874. <td style="padding-left: 2px; text-align: left;">
  2875. 1
  2876. </td>
  2877. </tr>
  2878. <tr>
  2879. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2880. 多个:
  2881. </td>
  2882. <td style="padding-left: 2px; text-align: left;">
  2883. 1
  2884. </td>
  2885. </tr>
  2886. </table>
  2887. </div>
  2888. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_pnlCompliant">
  2889. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2890. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=UR3iUpfmIbyi1tvOAoNRow%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=UR3iUpfmIbyi1tvOAoNRow%3d%3d" target="_blank">详细信息</a>
  2891. </div>
  2892. </td>
  2893. </tr><tr class="SearchResultsRowOdd" data-partnumber="989-10M08SCE144I7G" data-index="15">
  2894. <td class="td-select" align="center">
  2895. <div style="padding: 5px 5px 0 5px;">
  2896. <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>
  2897. </div>
  2898. </td><td><a href='/ProductDetail/Altera-Corporation/10M08SCE144I7G/?qs=sGAEpiMZZMsy1LJDmo1RNgyxY8S2kSAjLgx5kt0vdUuQPM7ojlyZ5Q%3d%3d'><img title='Altera Corporation 10M08SCE144I7G' alt='Altera Corporation 10M08SCE144I7G' id=1312005002 src='/images/mouserimages/sm/QFP_144_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/QFP_144_t.jpg</div></a></td><td>
  2899. <div style="text-align:left;">
  2900. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Altera-Corporation/10M08SCE144I7G/?qs=sGAEpiMZZMsy1LJDmo1RNgyxY8S2kSAjLgx5kt0vdUuQPM7ojlyZ5Q%3d%3d">989-10M08SCE144I7G</a><br />
  2901. <br />
  2902. <br />
  2903. </div></td><td>
  2904. <div class="mfrDiv">
  2905. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Altera-Corporation/10M08SCE144I7G/?qs=sGAEpiMZZMsy1LJDmo1RNgyxY8S2kSAjLgx5kt0vdUuQPM7ojlyZ5Q%3d%3d">10M08SCE144I7G</a><br />
  2906. <br />
  2907. <div style="width: 100%; text-align: center;">
  2908. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2909. </div>
  2910. <div style="width: 100%; text-align: center;">
  2911. </div>
  2912. </div>
  2913. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl03_lnkSupplier" href="../../../../../altera">Altera Corporation</a>
  2914. </td><td>FPGA - 现场可编程门阵列 non-volatile FPGA, 101 I/O, 144EQFP
  2915. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2916. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../altera-max10-fpga">了解更多</a>
  2917. </div>
  2918. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2919. </div>
  2920. </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;Altera Corporation&quot;,&quot;989-10M08SCE144I7G | 10M08SCE144I7G&quot;]);" href="https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/hb/max-10/m10_overview.pdf" target="_blank">数据表</a>
  2921. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl06_lnkAvailability">80<br/>有库存</span>
  2922. <table>
  2923. <tr align="center">
  2924. <td style="padding-top: 5px">
  2925. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl06_lnkFootNote" title="更多信息可用 " href="../../../../../ProductDetail/Altera-Corporation/10M08SCE144I7G/?qs=sGAEpiMZZMsy1LJDmo1RNgyxY8S2kSAjLgx5kt0vdUuQPM7ojlyZ5Q%3d%3d">更多信息可用 </a>
  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_ctl15_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_ctl15_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(13,1);">1:</a>
  2943. </td>
  2944. <td class="PriceBreakPrice">
  2945. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥179.2791</span>
  2946. </td>
  2947. </tr>
  2948. <tr>
  2949. <td class="PriceBreakQuantity">
  2950. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(13,25);">25:</a>
  2951. </td>
  2952. <td class="PriceBreakPrice">
  2953. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥143.3952</span>
  2954. </td>
  2955. </tr>
  2956. <tr>
  2957. <td class="PriceBreakQuantity">
  2958. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(13,100);">100:</a>
  2959. </td>
  2960. <td class="PriceBreakPrice">
  2961. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥139.8501</span>
  2962. </td>
  2963. </tr>
  2964. <tr>
  2965. <td class="PriceBreakQuantity">
  2966. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(13,500);">500:</a>
  2967. </td>
  2968. <td class="PriceBreakPrice">
  2969. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥134.4564</span>
  2970. </td>
  2971. </tr>
  2972. <tr>
  2973. <td><br /></td>
  2974. </tr>
  2975. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2976. <td colspan="2" style="text-align: center;">
  2977. </td>
  2978. </tr>
  2979. </table>
  2980. </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;)">
  2981. <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 />
  2982. <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="购买 10M08SCE144I7G" class="buy-button" /><br />
  2983. <table cellspacing="0" border="0" style="width: 100%;">
  2984. <tr>
  2985. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2986. 最低:
  2987. </td>
  2988. <td style="padding-left: 2px; text-align: left;">
  2989. 1
  2990. </td>
  2991. </tr>
  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. </table>
  3001. </div>
  3002. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_pnlCompliant">
  3003. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3004. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=l3zG6yga3pLuI7vNanHygw%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=l3zG6yga3pLuI7vNanHygw%3d%3d" target="_blank">详细信息</a>
  3005. </div>
  3006. </td>
  3007. </tr><tr class="SearchResultsRowEven" data-partnumber="511-STM32F746BGT6" data-index="16">
  3008. <td class="td-select" align="center">
  3009. <div style="padding: 5px 5px 0 5px;">
  3010. <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>
  3011. </div>
  3012. </td><td><a href='/ProductDetail/STMicroelectronics/STM32F746BGT6/?qs=sGAEpiMZZMsy1LJDmo1RNrsmk%252bUkYoqAjYIW6HgSv4p%252bB5D7EHzWzw%3d%3d'><img title='STMicroelectronics STM32F746BGT6' alt='STMicroelectronics STM32F746BGT6' id=1477497321 src='/images/mouserimages/sm/LQFP_208_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_208_t.jpg</div></a></td><td>
  3013. <div style="text-align:left;">
  3014. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/STMicroelectronics/STM32F746BGT6/?qs=sGAEpiMZZMsy1LJDmo1RNrsmk%252bUkYoqAjYIW6HgSv4p%252bB5D7EHzWzw%3d%3d">511-STM32F746BGT6</a><br />
  3015. <br />
  3016. <br />
  3017. </div></td><td>
  3018. <div class="mfrDiv">
  3019. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/STMicroelectronics/STM32F746BGT6/?qs=sGAEpiMZZMsy1LJDmo1RNrsmk%252bUkYoqAjYIW6HgSv4p%252bB5D7EHzWzw%3d%3d">STM32F746BGT6</a><br />
  3020. <br />
  3021. <div style="width: 100%; text-align: center;">
  3022. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3023. </div>
  3024. <div style="width: 100%; text-align: center;">
  3025. </div>
  3026. </div>
  3027. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl03_lnkSupplier" href="../../../../../stmicroelectronics">STMicroelectronics</a>
  3028. </td><td>ARM微控制器 - MCU High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM,
  3029. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3030. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../stm-stm32f7-mcu-fpu">了解更多</a>
  3031. </div>
  3032. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3033. </div>
  3034. </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;STMicroelectronics&quot;,&quot;511-STM32F746BGT6 | STM32F746BGT6&quot;]);" href="http://www.mouser.com/ds/2/389/DM00166116-599253.pdf" target="_blank">数据表</a>
  3035. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl06_lnkAvailability">414<br/>有库存</span>
  3036. <table>
  3037. <tr align="center">
  3038. <td style="padding-top: 5px">
  3039. </td>
  3040. </tr>
  3041. <tr align="center">
  3042. <td style="padding-top: 5px; padding-bottom: 5px">
  3043. </td>
  3044. </tr>
  3045. </table></td><td>
  3046. <table class="PriceBreaks" cellspacing="0" border="0">
  3047. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3048. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3049. </td>
  3050. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3051. </td>
  3052. </tr>
  3053. <tr>
  3054. <td class="PriceBreakQuantity">
  3055. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(14,1);">1:</a>
  3056. </td>
  3057. <td class="PriceBreakPrice">
  3058. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥144.8577</span>
  3059. </td>
  3060. </tr>
  3061. <tr>
  3062. <td class="PriceBreakQuantity">
  3063. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(14,10);">10:</a>
  3064. </td>
  3065. <td class="PriceBreakPrice">
  3066. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥133.2279</span>
  3067. </td>
  3068. </tr>
  3069. <tr>
  3070. <td class="PriceBreakQuantity">
  3071. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(14,25);">25:</a>
  3072. </td>
  3073. <td class="PriceBreakPrice">
  3074. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥127.6821</span>
  3075. </td>
  3076. </tr>
  3077. <tr>
  3078. <td class="PriceBreakQuantity">
  3079. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(14,50);">50:</a>
  3080. </td>
  3081. <td class="PriceBreakPrice">
  3082. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥120.7557</span>
  3083. </td>
  3084. </tr>
  3085. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  3086. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3087. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(14,100);">100:</a>
  3088. </td>
  3089. <td class="PriceBreakPrice">
  3090. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/STMicroelectronics/STM32F746BGT6/?qs=sGAEpiMZZMsy1LJDmo1RNrsmk%252bUkYoqAjYIW6HgSv4p%252bB5D7EHzWzw%3d%3d">查看</a>
  3091. </td>
  3092. </tr>
  3093. <tr>
  3094. <td><br /></td>
  3095. </tr>
  3096. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3097. <td colspan="2" style="text-align: center;">
  3098. </td>
  3099. </tr>
  3100. </table>
  3101. </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;)">
  3102. <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 />
  3103. <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="购买 STM32F746BGT6" class="buy-button" /><br />
  3104. <table cellspacing="0" border="0" style="width: 100%;">
  3105. <tr>
  3106. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3107. 最低:
  3108. </td>
  3109. <td style="padding-left: 2px; text-align: left;">
  3110. 1
  3111. </td>
  3112. </tr>
  3113. <tr>
  3114. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3115. 多个:
  3116. </td>
  3117. <td style="padding-left: 2px; text-align: left;">
  3118. 1
  3119. </td>
  3120. </tr>
  3121. </table>
  3122. </div>
  3123. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_pnlCompliant">
  3124. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3125. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=UR3iUpfmIbz9eZPecDymtQ%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=UR3iUpfmIbz9eZPecDymtQ%3d%3d" target="_blank">详细信息</a>
  3126. </div>
  3127. </td>
  3128. </tr><tr class="SearchResultsRowOdd" data-partnumber="989-10M02SCM153I7G" data-index="17">
  3129. <td class="td-select" align="center">
  3130. <div style="padding: 5px 5px 0 5px;">
  3131. <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>
  3132. </div>
  3133. </td><td><a href='/ProductDetail/Altera-Corporation/10M02SCM153I7G/?qs=sGAEpiMZZMsy1LJDmo1RNtMlx59T97MFQknilcN9Ff6uBJ4Ev4bsgA%3d%3d'><img title='Altera Corporation 10M02SCM153I7G' alt='Altera Corporation 10M02SCM153I7G' id=1431121594 src='/images/mouserimages/sm/BGA_169_t.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/mouserimages/images/BGA_169_t.jpg</div></a></td><td>
  3134. <div style="text-align:left;">
  3135. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Altera-Corporation/10M02SCM153I7G/?qs=sGAEpiMZZMsy1LJDmo1RNtMlx59T97MFQknilcN9Ff6uBJ4Ev4bsgA%3d%3d">989-10M02SCM153I7G</a><br />
  3136. <br />
  3137. <br />
  3138. </div></td><td>
  3139. <div class="mfrDiv">
  3140. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Altera-Corporation/10M02SCM153I7G/?qs=sGAEpiMZZMsy1LJDmo1RNtMlx59T97MFQknilcN9Ff6uBJ4Ev4bsgA%3d%3d">10M02SCM153I7G</a><br />
  3141. <br />
  3142. <div style="width: 100%; text-align: center;">
  3143. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3144. </div>
  3145. <div style="width: 100%; text-align: center;">
  3146. </div>
  3147. </div>
  3148. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl03_lnkSupplier" href="../../../../../altera">Altera Corporation</a>
  3149. </td><td>FPGA - 现场可编程门阵列 non-volatile FPGA, 112 I/O, 153MBGA
  3150. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3151. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../altera-max10-fpga">了解更多</a>
  3152. </div>
  3153. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3154. </div>
  3155. </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;Altera Corporation&quot;,&quot;989-10M02SCM153I7G | 10M02SCM153I7G&quot;]);" href="https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/hb/max-10/m10_overview.pdf" target="_blank">数据表</a>
  3156. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl06_lnkAvailability">276<br/>有库存</span>
  3157. <table>
  3158. <tr align="center">
  3159. <td style="padding-top: 5px">
  3160. </td>
  3161. </tr>
  3162. <tr align="center">
  3163. <td style="padding-top: 5px; padding-bottom: 5px">
  3164. </td>
  3165. </tr>
  3166. </table></td><td>
  3167. <table class="PriceBreaks" cellspacing="0" border="0">
  3168. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3169. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3170. </td>
  3171. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3172. </td>
  3173. </tr>
  3174. <tr>
  3175. <td class="PriceBreakQuantity">
  3176. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(15,1);">1:</a>
  3177. </td>
  3178. <td class="PriceBreakPrice">
  3179. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥62.8407</span>
  3180. </td>
  3181. </tr>
  3182. <tr>
  3183. <td class="PriceBreakQuantity">
  3184. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(15,25);">25:</a>
  3185. </td>
  3186. <td class="PriceBreakPrice">
  3187. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥50.2866</span>
  3188. </td>
  3189. </tr>
  3190. <tr>
  3191. <td class="PriceBreakQuantity">
  3192. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(15,100);">100:</a>
  3193. </td>
  3194. <td class="PriceBreakPrice">
  3195. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥48.9762</span>
  3196. </td>
  3197. </tr>
  3198. <tr>
  3199. <td class="PriceBreakQuantity">
  3200. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(15,500);">500:</a>
  3201. </td>
  3202. <td class="PriceBreakPrice">
  3203. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥47.1276</span>
  3204. </td>
  3205. </tr>
  3206. <tr>
  3207. <td><br /></td>
  3208. </tr>
  3209. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3210. <td colspan="2" style="text-align: center;">
  3211. </td>
  3212. </tr>
  3213. </table>
  3214. </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;)">
  3215. <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 />
  3216. <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="购买 10M02SCM153I7G" class="buy-button" /><br />
  3217. <table cellspacing="0" border="0" style="width: 100%;">
  3218. <tr>
  3219. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3220. 最低:
  3221. </td>
  3222. <td style="padding-left: 2px; text-align: left;">
  3223. 1
  3224. </td>
  3225. </tr>
  3226. <tr>
  3227. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3228. 多个:
  3229. </td>
  3230. <td style="padding-left: 2px; text-align: left;">
  3231. 1
  3232. </td>
  3233. </tr>
  3234. </table>
  3235. </div>
  3236. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_pnlCompliant">
  3237. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3238. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=9nfJn4gl3B9g%252b0Y364EuFg%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=9nfJn4gl3B9g%252b0Y364EuFg%3d%3d" target="_blank">详细信息</a>
  3239. </div>
  3240. </td>
  3241. </tr><tr class="SearchResultsRowEven" data-partnumber="841-MK81FN256VDC15" data-index="18">
  3242. <td class="td-select" align="center">
  3243. <div style="padding: 5px 5px 0 5px;">
  3244. <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>
  3245. </div>
  3246. </td><td><a href='/ProductDetail/NXP-Freescale/MK81FN256VDC15/?qs=sGAEpiMZZMsy1LJDmo1RNqw%2fBLkLC9TXeIzBfz8MU9EZSf%252bB4MbCbA%3d%3d'><img title='NXP / Freescale MK81FN256VDC15' alt='NXP / Freescale MK81FN256VDC15' id=1594220426 src='/images/mouserimages/sm/BGA_121_t.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/mouserimages/images/BGA_121_t.jpg</div></a></td><td>
  3247. <div style="text-align:left;">
  3248. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/NXP-Freescale/MK81FN256VDC15/?qs=sGAEpiMZZMsy1LJDmo1RNqw%2fBLkLC9TXeIzBfz8MU9EZSf%252bB4MbCbA%3d%3d">841-MK81FN256VDC15</a><br />
  3249. <br />
  3250. <br />
  3251. </div></td><td>
  3252. <div class="mfrDiv">
  3253. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/NXP-Freescale/MK81FN256VDC15/?qs=sGAEpiMZZMsy1LJDmo1RNqw%2fBLkLC9TXeIzBfz8MU9EZSf%252bB4MbCbA%3d%3d">MK81FN256VDC15</a><br />
  3254. <br />
  3255. <div style="width: 100%; text-align: center;">
  3256. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3257. </div>
  3258. <div style="width: 100%; text-align: center;">
  3259. </div>
  3260. </div>
  3261. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl03_lnkSupplier" href="../../../../../Freescale-Semiconductor">NXP / Freescale</a>
  3262. </td><td>ARM微控制器 - MCU Kinetis K Series 32-bit MCU, ARM Cortex-M4F core, 256KB Flash, 256KB SRAM, 150MHz, Serial NOR flash
  3263. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3264. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../freescale-kinetis-k/">了解更多</a>
  3265. </div>
  3266. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3267. </div>
  3268. </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;NXP / Freescale&quot;,&quot;841-MK81FN256VDC15 | MK81FN256VDC15&quot;]);" href="http://www.mouser.com/ds/2/302/KINETISKMCUSELGD-783953.pdf" target="_blank">数据表</a>
  3269. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl06_lnkAvailability">348<br/>有库存</span>
  3270. <table>
  3271. <tr align="center">
  3272. <td style="padding-top: 5px">
  3273. </td>
  3274. </tr>
  3275. <tr align="center">
  3276. <td style="padding-top: 5px; padding-bottom: 5px">
  3277. </td>
  3278. </tr>
  3279. </table></td><td>
  3280. <table class="PriceBreaks" cellspacing="0" border="0">
  3281. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3282. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3283. </td>
  3284. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3285. </td>
  3286. </tr>
  3287. <tr>
  3288. <td class="PriceBreakQuantity">
  3289. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(16,1);">1:</a>
  3290. </td>
  3291. <td class="PriceBreakPrice">
  3292. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥85.6323</span>
  3293. </td>
  3294. </tr>
  3295. <tr>
  3296. <td class="PriceBreakQuantity">
  3297. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(16,10);">10:</a>
  3298. </td>
  3299. <td class="PriceBreakPrice">
  3300. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥80.8587</span>
  3301. </td>
  3302. </tr>
  3303. <tr>
  3304. <td class="PriceBreakQuantity">
  3305. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(16,25);">25:</a>
  3306. </td>
  3307. <td class="PriceBreakPrice">
  3308. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥76.0851</span>
  3309. </td>
  3310. </tr>
  3311. <tr>
  3312. <td class="PriceBreakQuantity">
  3313. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(16,100);">100:</a>
  3314. </td>
  3315. <td class="PriceBreakPrice">
  3316. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥57.0609</span>
  3317. </td>
  3318. </tr>
  3319. <tr>
  3320. <td><br /></td>
  3321. </tr>
  3322. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3323. <td colspan="2" style="text-align: center;">
  3324. </td>
  3325. </tr>
  3326. </table>
  3327. </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;)">
  3328. <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 />
  3329. <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="购买 MK81FN256VDC15" class="buy-button" /><br />
  3330. <table cellspacing="0" border="0" style="width: 100%;">
  3331. <tr>
  3332. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3333. 最低:
  3334. </td>
  3335. <td style="padding-left: 2px; text-align: left;">
  3336. 1
  3337. </td>
  3338. </tr>
  3339. <tr>
  3340. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3341. 多个:
  3342. </td>
  3343. <td style="padding-left: 2px; text-align: left;">
  3344. 1
  3345. </td>
  3346. </tr>
  3347. </table>
  3348. </div>
  3349. </td><td>
  3350. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_pnlNotCompliant">
  3351. <br />
  3352. <br />
  3353. </div>
  3354. </td>
  3355. </tr><tr class="SearchResultsRowOdd" data-partnumber="989-10M08SCU169I7G" data-index="19">
  3356. <td class="td-select" align="center">
  3357. <div style="padding: 5px 5px 0 5px;">
  3358. <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>
  3359. </div>
  3360. </td><td><a href='/ProductDetail/Altera-Corporation/10M08SCU169I7G/?qs=sGAEpiMZZMsy1LJDmo1RNgyxY8S2kSAjQ9r5J0E21jB%2fhmb9QLh%2f8g%3d%3d'><img title='Altera Corporation 10M08SCU169I7G' alt='Altera Corporation 10M08SCU169I7G' id=1312005008 src='/images/mouserimages/sm/BGA_169_t.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/mouserimages/images/BGA_169_t.jpg</div></a></td><td>
  3361. <div style="text-align:left;">
  3362. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Altera-Corporation/10M08SCU169I7G/?qs=sGAEpiMZZMsy1LJDmo1RNgyxY8S2kSAjQ9r5J0E21jB%2fhmb9QLh%2f8g%3d%3d">989-10M08SCU169I7G</a><br />
  3363. <br />
  3364. <br />
  3365. </div></td><td>
  3366. <div class="mfrDiv">
  3367. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Altera-Corporation/10M08SCU169I7G/?qs=sGAEpiMZZMsy1LJDmo1RNgyxY8S2kSAjQ9r5J0E21jB%2fhmb9QLh%2f8g%3d%3d">10M08SCU169I7G</a><br />
  3368. <br />
  3369. <div style="width: 100%; text-align: center;">
  3370. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3371. </div>
  3372. <div style="width: 100%; text-align: center;">
  3373. </div>
  3374. </div>
  3375. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl03_lnkSupplier" href="../../../../../altera">Altera Corporation</a>
  3376. </td><td>FPGA - 现场可编程门阵列 non-volatile FPGA, 130 I/O, 169UBGA
  3377. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3378. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../altera-max10-fpga">了解更多</a>
  3379. </div>
  3380. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3381. </div>
  3382. </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;Altera Corporation&quot;,&quot;989-10M08SCU169I7G | 10M08SCU169I7G&quot;]);" href="https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/hb/max-10/m10_overview.pdf" target="_blank">数据表</a>
  3383. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl06_lnkAvailability">152<br/>有库存</span>
  3384. <table>
  3385. <tr align="center">
  3386. <td style="padding-top: 5px">
  3387. </td>
  3388. </tr>
  3389. <tr align="center">
  3390. <td style="padding-top: 5px; padding-bottom: 5px">
  3391. </td>
  3392. </tr>
  3393. </table></td><td>
  3394. <table class="PriceBreaks" cellspacing="0" border="0">
  3395. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3396. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3397. </td>
  3398. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3399. </td>
  3400. </tr>
  3401. <tr>
  3402. <td class="PriceBreakQuantity">
  3403. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(17,1);">1:</a>
  3404. </td>
  3405. <td class="PriceBreakPrice">
  3406. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥114.5898</span>
  3407. </td>
  3408. </tr>
  3409. <tr>
  3410. <td class="PriceBreakQuantity">
  3411. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(17,25);">25:</a>
  3412. </td>
  3413. <td class="PriceBreakPrice">
  3414. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥91.6461</span>
  3415. </td>
  3416. </tr>
  3417. <tr>
  3418. <td class="PriceBreakQuantity">
  3419. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(17,100);">100:</a>
  3420. </td>
  3421. <td class="PriceBreakPrice">
  3422. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥89.4114</span>
  3423. </td>
  3424. </tr>
  3425. <tr>
  3426. <td class="PriceBreakQuantity">
  3427. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(17,500);">500:</a>
  3428. </td>
  3429. <td class="PriceBreakPrice">
  3430. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥85.9482</span>
  3431. </td>
  3432. </tr>
  3433. <tr>
  3434. <td><br /></td>
  3435. </tr>
  3436. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3437. <td colspan="2" style="text-align: center;">
  3438. </td>
  3439. </tr>
  3440. </table>
  3441. </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;)">
  3442. <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 />
  3443. <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="购买 10M08SCU169I7G" class="buy-button" /><br />
  3444. <table cellspacing="0" border="0" style="width: 100%;">
  3445. <tr>
  3446. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3447. 最低:
  3448. </td>
  3449. <td style="padding-left: 2px; text-align: left;">
  3450. 1
  3451. </td>
  3452. </tr>
  3453. <tr>
  3454. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3455. 多个:
  3456. </td>
  3457. <td style="padding-left: 2px; text-align: left;">
  3458. 1
  3459. </td>
  3460. </tr>
  3461. </table>
  3462. </div>
  3463. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_pnlCompliant">
  3464. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3465. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=l3zG6yga3pIbpw060T%252bedQ%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=l3zG6yga3pIbpw060T%252bedQ%3d%3d" target="_blank">详细信息</a>
  3466. </div>
  3467. </td>
  3468. </tr><tr class="SearchResultsRowEven" data-partnumber="595-CC2650F128RHBT" data-index="20">
  3469. <td class="td-select" align="center">
  3470. <div style="padding: 5px 5px 0 5px;">
  3471. <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>
  3472. </div>
  3473. </td><td><a href='/ProductDetail/Texas-Instruments/CC2650F128RHBT/?qs=sGAEpiMZZMsy1LJDmo1RNuehT9FW2YmCcbo%2f9oim5rSEWK1P%252bQ1BFQ%3d%3d'><img title='Texas Instruments CC2650F128RHBT' alt='Texas Instruments CC2650F128RHBT' id=1442724520 src='/images/mouserimages/sm/QFN_32_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/QFN_32_t.jpg</div></a></td><td>
  3474. <div style="text-align:left;">
  3475. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Texas-Instruments/CC2650F128RHBT/?qs=sGAEpiMZZMsy1LJDmo1RNuehT9FW2YmCcbo%2f9oim5rSEWK1P%252bQ1BFQ%3d%3d">595-CC2650F128RHBT</a><br />
  3476. <br />
  3477. <br />
  3478. 要购买完整 卷轴,请订购 250 的倍数:
  3479. </div></td><td>
  3480. <div class="mfrDiv">
  3481. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Texas-Instruments/CC2650F128RHBT/?qs=sGAEpiMZZMsy1LJDmo1RNuehT9FW2YmCcbo%2f9oim5rSEWK1P%252bQ1BFQ%3d%3d">CC2650F128RHBT</a><br />
  3482. <br />
  3483. <div style="width: 100%; text-align: center;">
  3484. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3485. </div>
  3486. <div style="width: 100%; text-align: center;">
  3487. </div>
  3488. </div>
  3489. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl03_lnkSupplier" href="../../../../../Texas-Instruments">Texas Instruments</a>
  3490. </td><td>射频微控制器 - MCU SimpleLink multi-standard 2.4 GHz ultra-low power wireless MCU 32-VQFN -40 to 85
  3491. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3492. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../ti-cc26xx-simplelink/">了解更多</a>
  3493. </div>
  3494. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3495. </div>
  3496. </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-CC2650F128RHBT | CC2650F128RHBT&quot;]);" href="http://www.mouser.com/ds/2/405/cc2650-558178.pdf" target="_blank">数据表</a>
  3497. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl06_lnkAvailability">725<br/>有库存</span>
  3498. <table>
  3499. <tr align="center">
  3500. <td style="padding-top: 5px">
  3501. </td>
  3502. </tr>
  3503. <tr align="center">
  3504. <td style="padding-top: 5px; padding-bottom: 5px">
  3505. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl06_lnkAlternativePackaging" title="备用包装 | 595-CC2650F128RHBT" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YRbdCZx%252bEQ5VOPkST15z3XHyF9xebaXisnMyh%2feFpcFYv7%252bEGizofueRH%2foMHo%2fNh9CTXHeQyzMGuNc6A7VW2MekDO56DiYFBqkiTh9nRgDyDzmrLT1Bpcay6hcve251r1M9kd10r62Iw%3d%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  3506. </td>
  3507. </tr>
  3508. </table></td><td>
  3509. <table class="PriceBreaks" cellspacing="0" border="0">
  3510. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3511. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3512. </td>
  3513. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3514. </td>
  3515. </tr>
  3516. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  3517. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3518. 剪切带
  3519. </td>
  3520. </tr>
  3521. <tr>
  3522. <td class="PriceBreakQuantity">
  3523. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(18,1);">1:</a>
  3524. </td>
  3525. <td class="PriceBreakPrice">
  3526. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥63.1449</span>
  3527. </td>
  3528. </tr>
  3529. <tr>
  3530. <td class="PriceBreakQuantity">
  3531. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(18,10);">10:</a>
  3532. </td>
  3533. <td class="PriceBreakPrice">
  3534. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥57.0609</span>
  3535. </td>
  3536. </tr>
  3537. <tr>
  3538. <td class="PriceBreakQuantity">
  3539. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(18,25);">25:</a>
  3540. </td>
  3541. <td class="PriceBreakPrice">
  3542. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥52.8255</span>
  3543. </td>
  3544. </tr>
  3545. <tr>
  3546. <td class="PriceBreakQuantity">
  3547. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(18,100);">100:</a>
  3548. </td>
  3549. <td class="PriceBreakPrice">
  3550. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥47.2797</span>
  3551. </td>
  3552. </tr>
  3553. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  3554. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3555. 卷轴
  3556. </td>
  3557. </tr>
  3558. <tr>
  3559. <td class="PriceBreakQuantity">
  3560. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(18,250);">250:</a>
  3561. </td>
  3562. <td class="PriceBreakPrice">
  3563. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥44.5887</span>
  3564. </td>
  3565. </tr>
  3566. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl06_trViewMore">
  3567. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3568. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl06_lnkViewMoreQuantity" href="javascript:SelectQuantity(18,500);">500:</a>
  3569. </td>
  3570. <td class="PriceBreakPrice">
  3571. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Texas-Instruments/CC2650F128RHBT/?qs=sGAEpiMZZMsy1LJDmo1RNuehT9FW2YmCcbo%2f9oim5rSEWK1P%252bQ1BFQ%3d%3d">查看</a>
  3572. </td>
  3573. </tr>
  3574. <tr>
  3575. <td><br /></td>
  3576. </tr>
  3577. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl06_trMouserReel">
  3578. <td colspan="2" style="text-align: center;">
  3579. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl06_lnkMouseReel" class="mousereel" href="../../../../../ProductDetail/Texas-Instruments/CC2650F128RHBT/?qs=sGAEpiMZZMsy1LJDmo1RNuehT9FW2YmCcbo%2f9oim5rSEWK1P%252bQ1BFQ%3d%3d">MouseReel 提供服务支持</a>
  3580. </td>
  3581. </tr>
  3582. </table>
  3583. </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;)">
  3584. <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 />
  3585. <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="购买 CC2650F128RHBT" class="buy-button" /><br />
  3586. <table cellspacing="0" border="0" style="width: 100%;">
  3587. <tr>
  3588. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3589. 最低:
  3590. </td>
  3591. <td style="padding-left: 2px; text-align: left;">
  3592. 1
  3593. </td>
  3594. </tr>
  3595. <tr>
  3596. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3597. 多个:
  3598. </td>
  3599. <td style="padding-left: 2px; text-align: left;">
  3600. 1
  3601. </td>
  3602. </tr>
  3603. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl08_trReel">
  3604. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3605. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(18,250);">卷轴</a>:
  3606. </td>
  3607. <td style="padding-left: 2px; text-align: left;">
  3608. <em class="SearchResultsReel">
  3609. 250
  3610. </em>
  3611. </td>
  3612. </tr>
  3613. </table>
  3614. </div>
  3615. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_pnlCompliant">
  3616. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3617. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=9m5%2fsE2O8XN9gsAx1hm7Tg%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=9m5%2fsE2O8XN9gsAx1hm7Tg%3d%3d" target="_blank">详细信息</a>
  3618. </div>
  3619. </td>
  3620. </tr><tr class="SearchResultsRowOdd" data-partnumber="989-10M50SAE144C8G" data-index="21">
  3621. <td class="td-select" align="center">
  3622. <div style="padding: 5px 5px 0 5px;">
  3623. <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>
  3624. </div>
  3625. </td><td><a href='/ProductDetail/Altera-Corporation/10M50SAE144C8G/?qs=sGAEpiMZZMsy1LJDmo1RNtMlx59T97MFqxIA14k5nKzubd0K1fztEw%3d%3d'><img title='Altera Corporation 10M50SAE144C8G' alt='Altera Corporation 10M50SAE144C8G' id=1431121995 src='/images/mouserimages/sm/QFP_144_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/QFP_144_t.jpg</div></a></td><td>
  3626. <div style="text-align:left;">
  3627. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Altera-Corporation/10M50SAE144C8G/?qs=sGAEpiMZZMsy1LJDmo1RNtMlx59T97MFqxIA14k5nKzubd0K1fztEw%3d%3d">989-10M50SAE144C8G</a><br />
  3628. <br />
  3629. <br />
  3630. </div></td><td>
  3631. <div class="mfrDiv">
  3632. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Altera-Corporation/10M50SAE144C8G/?qs=sGAEpiMZZMsy1LJDmo1RNtMlx59T97MFqxIA14k5nKzubd0K1fztEw%3d%3d">10M50SAE144C8G</a><br />
  3633. <br />
  3634. <div style="width: 100%; text-align: center;">
  3635. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3636. </div>
  3637. <div style="width: 100%; text-align: center;">
  3638. </div>
  3639. </div>
  3640. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl03_lnkSupplier" href="../../../../../altera">Altera Corporation</a>
  3641. </td><td>FPGA - 现场可编程门阵列 non-volatile FPGA, 101 I/O, 144EQFP
  3642. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3643. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../altera-max10-fpga">了解更多</a>
  3644. </div>
  3645. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3646. </div>
  3647. </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;Altera Corporation&quot;,&quot;989-10M50SAE144C8G | 10M50SAE144C8G&quot;]);" href="https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/hb/max-10/m10_overview.pdf" target="_blank">数据表</a>
  3648. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl06_lnkAvailability">27<br/>有库存</span>
  3649. <table>
  3650. <tr align="center">
  3651. <td style="padding-top: 5px">
  3652. </td>
  3653. </tr>
  3654. <tr align="center">
  3655. <td style="padding-top: 5px; padding-bottom: 5px">
  3656. </td>
  3657. </tr>
  3658. </table></td><td>
  3659. <table class="PriceBreaks" cellspacing="0" border="0">
  3660. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3661. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3662. </td>
  3663. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3664. </td>
  3665. </tr>
  3666. <tr>
  3667. <td class="PriceBreakQuantity">
  3668. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(19,1);">1:</a>
  3669. </td>
  3670. <td class="PriceBreakPrice">
  3671. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥514.9638</span>
  3672. </td>
  3673. </tr>
  3674. <tr>
  3675. <td class="PriceBreakQuantity">
  3676. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(19,25);">25:</a>
  3677. </td>
  3678. <td class="PriceBreakPrice">
  3679. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥432.5607</span>
  3680. </td>
  3681. </tr>
  3682. <tr>
  3683. <td class="PriceBreakQuantity">
  3684. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(19,100);">100:</a>
  3685. </td>
  3686. <td class="PriceBreakPrice">
  3687. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥422.2413</span>
  3688. </td>
  3689. </tr>
  3690. <tr>
  3691. <td><br /></td>
  3692. </tr>
  3693. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl04_trMouserReel">
  3694. <td colspan="2" style="text-align: center;">
  3695. </td>
  3696. </tr>
  3697. </table>
  3698. </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;)">
  3699. <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 />
  3700. <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="购买 10M50SAE144C8G" class="buy-button" /><br />
  3701. <table cellspacing="0" border="0" style="width: 100%;">
  3702. <tr>
  3703. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3704. 最低:
  3705. </td>
  3706. <td style="padding-left: 2px; text-align: left;">
  3707. 1
  3708. </td>
  3709. </tr>
  3710. <tr>
  3711. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3712. 多个:
  3713. </td>
  3714. <td style="padding-left: 2px; text-align: left;">
  3715. 1
  3716. </td>
  3717. </tr>
  3718. </table>
  3719. </div>
  3720. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_pnlCompliant">
  3721. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3722. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=9nfJn4gl3B%2ftEMxR9C6ZPQ%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=9nfJn4gl3B%2ftEMxR9C6ZPQ%3d%3d" target="_blank">详细信息</a>
  3723. </div>
  3724. </td>
  3725. </tr><tr class="SearchResultsRowEven" data-partnumber="511-STM32F410RBT6" data-index="22">
  3726. <td class="td-select" align="center">
  3727. <div style="padding: 5px 5px 0 5px;">
  3728. <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>
  3729. </div>
  3730. </td><td><a href='/ProductDetail/STMicroelectronics/STM32F410RBT6/?qs=sGAEpiMZZMsy1LJDmo1RNoGZ08rUkao55DBw2CblOX0r0Zt%252bj22pUQ%3d%3d'><img title='STMicroelectronics STM32F410RBT6' alt='STMicroelectronics STM32F410RBT6' id=1633556287 src='/images/mouserimages/sm/LQFP_64_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_64_t.jpg</div></a></td><td>
  3731. <div style="text-align:left;">
  3732. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/STMicroelectronics/STM32F410RBT6/?qs=sGAEpiMZZMsy1LJDmo1RNoGZ08rUkao55DBw2CblOX0r0Zt%252bj22pUQ%3d%3d">511-STM32F410RBT6</a><br />
  3733. <br />
  3734. <br />
  3735. </div></td><td>
  3736. <div class="mfrDiv">
  3737. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/STMicroelectronics/STM32F410RBT6/?qs=sGAEpiMZZMsy1LJDmo1RNoGZ08rUkao55DBw2CblOX0r0Zt%252bj22pUQ%3d%3d">STM32F410RBT6</a><br />
  3738. <br />
  3739. <div style="width: 100%; text-align: center;">
  3740. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3741. </div>
  3742. <div style="width: 100%; text-align: center;">
  3743. </div>
  3744. </div>
  3745. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl03_lnkSupplier" href="../../../../../stmicroelectronics">STMicroelectronics</a>
  3746. </td><td>ARM微控制器 - MCU STM32 Dynamic Efficiency MCU with BAM, High-performance and DSP with FPU, ARM Cortex-M4 MCU with 128 Kbytes Flash, 100 M
  3747. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3748. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../stm32F4">了解更多</a>
  3749. </div>
  3750. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3751. </div>
  3752. </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;STMicroelectronics&quot;,&quot;511-STM32F410RBT6 | STM32F410RBT6&quot;]);" href="http://www.mouser.com/ds/2/389/DM00214043-888145.pdf" target="_blank">数据表</a>
  3753. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl06_lnkAvailability">761<br/>有库存</span>
  3754. <table>
  3755. <tr align="center">
  3756. <td style="padding-top: 5px">
  3757. </td>
  3758. </tr>
  3759. <tr align="center">
  3760. <td style="padding-top: 5px; padding-bottom: 5px">
  3761. </td>
  3762. </tr>
  3763. </table></td><td>
  3764. <table class="PriceBreaks" cellspacing="0" border="0">
  3765. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3766. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3767. </td>
  3768. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3769. </td>
  3770. </tr>
  3771. <tr>
  3772. <td class="PriceBreakQuantity">
  3773. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(20,1);">1:</a>
  3774. </td>
  3775. <td class="PriceBreakPrice">
  3776. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥16.2513</span>
  3777. </td>
  3778. </tr>
  3779. <tr>
  3780. <td><br /></td>
  3781. </tr>
  3782. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl02_trMouserReel">
  3783. <td colspan="2" style="text-align: center;">
  3784. </td>
  3785. </tr>
  3786. </table>
  3787. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl08_btnBuy&#39;)">
  3788. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl22$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(20,this.value);" /><br />
  3789. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl22$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 20);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl08_btnBuy" title="购买 STM32F410RBT6" class="buy-button" /><br />
  3790. <table cellspacing="0" border="0" style="width: 100%;">
  3791. <tr>
  3792. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3793. 最低:
  3794. </td>
  3795. <td style="padding-left: 2px; text-align: left;">
  3796. 1
  3797. </td>
  3798. </tr>
  3799. <tr>
  3800. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3801. 多个:
  3802. </td>
  3803. <td style="padding-left: 2px; text-align: left;">
  3804. 1
  3805. </td>
  3806. </tr>
  3807. </table>
  3808. </div>
  3809. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_pnlCompliant">
  3810. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3811. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=Z09blr9fAZONkMqXXq6TTg%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=Z09blr9fAZONkMqXXq6TTg%3d%3d" target="_blank">详细信息</a>
  3812. </div>
  3813. </td>
  3814. </tr><tr class="SearchResultsRowOdd" data-partnumber="511-STM32F756ZGT6" data-index="23">
  3815. <td class="td-select" align="center">
  3816. <div style="padding: 5px 5px 0 5px;">
  3817. <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>
  3818. </div>
  3819. </td><td><a href='/ProductDetail/STMicroelectronics/STM32F756ZGT6/?qs=sGAEpiMZZMsy1LJDmo1RNqa7iiP98TM07xexP2WIKG2DX%2fUej3%2fySw%3d%3d'><img title='STMicroelectronics STM32F756ZGT6' alt='STMicroelectronics STM32F756ZGT6' id=1503506143 src='/images/mouserimages/sm/LQFP_144_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_144_t.jpg</div></a></td><td>
  3820. <div style="text-align:left;">
  3821. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/STMicroelectronics/STM32F756ZGT6/?qs=sGAEpiMZZMsy1LJDmo1RNqa7iiP98TM07xexP2WIKG2DX%2fUej3%2fySw%3d%3d">511-STM32F756ZGT6</a><br />
  3822. <br />
  3823. <br />
  3824. </div></td><td>
  3825. <div class="mfrDiv">
  3826. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/STMicroelectronics/STM32F756ZGT6/?qs=sGAEpiMZZMsy1LJDmo1RNqa7iiP98TM07xexP2WIKG2DX%2fUej3%2fySw%3d%3d">STM32F756ZGT6</a><br />
  3827. <br />
  3828. <div style="width: 100%; text-align: center;">
  3829. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3830. </div>
  3831. <div style="width: 100%; text-align: center;">
  3832. </div>
  3833. </div>
  3834. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl03_lnkSupplier" href="../../../../../stmicroelectronics">STMicroelectronics</a>
  3835. </td><td>ARM微控制器 - MCU High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, HW crypto, SDRAM, TFT
  3836. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3837. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../stm-stm32f7-mcu-fpu">了解更多</a>
  3838. </div>
  3839. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3840. </div>
  3841. </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;STMicroelectronics&quot;,&quot;511-STM32F756ZGT6 | STM32F756ZGT6&quot;]);" href="http://www.mouser.com/ds/2/389/DM00166114-766545.pdf" target="_blank">数据表</a>
  3842. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl06_lnkAvailability">166<br/>有库存</span>
  3843. <table>
  3844. <tr align="center">
  3845. <td style="padding-top: 5px">
  3846. </td>
  3847. </tr>
  3848. <tr align="center">
  3849. <td style="padding-top: 5px; padding-bottom: 5px">
  3850. </td>
  3851. </tr>
  3852. </table></td><td>
  3853. <table class="PriceBreaks" cellspacing="0" border="0">
  3854. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3855. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3856. </td>
  3857. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3858. </td>
  3859. </tr>
  3860. <tr>
  3861. <td class="PriceBreakQuantity">
  3862. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(21,1);">1:</a>
  3863. </td>
  3864. <td class="PriceBreakPrice">
  3865. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥144.3195</span>
  3866. </td>
  3867. </tr>
  3868. <tr>
  3869. <td class="PriceBreakQuantity">
  3870. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(21,10);">10:</a>
  3871. </td>
  3872. <td class="PriceBreakPrice">
  3873. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥132.6897</span>
  3874. </td>
  3875. </tr>
  3876. <tr>
  3877. <td class="PriceBreakQuantity">
  3878. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(21,25);">25:</a>
  3879. </td>
  3880. <td class="PriceBreakPrice">
  3881. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥127.2141</span>
  3882. </td>
  3883. </tr>
  3884. <tr>
  3885. <td class="PriceBreakQuantity">
  3886. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(21,50);">50:</a>
  3887. </td>
  3888. <td class="PriceBreakPrice">
  3889. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥120.2877</span>
  3890. </td>
  3891. </tr>
  3892. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  3893. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3894. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(21,100);">100:</a>
  3895. </td>
  3896. <td class="PriceBreakPrice">
  3897. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/STMicroelectronics/STM32F756ZGT6/?qs=sGAEpiMZZMsy1LJDmo1RNqa7iiP98TM07xexP2WIKG2DX%2fUej3%2fySw%3d%3d">查看</a>
  3898. </td>
  3899. </tr>
  3900. <tr>
  3901. <td><br /></td>
  3902. </tr>
  3903. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3904. <td colspan="2" style="text-align: center;">
  3905. </td>
  3906. </tr>
  3907. </table>
  3908. </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;)">
  3909. <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 />
  3910. <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="购买 STM32F756ZGT6" class="buy-button" /><br />
  3911. <table cellspacing="0" border="0" style="width: 100%;">
  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. <tr>
  3921. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3922. 多个:
  3923. </td>
  3924. <td style="padding-left: 2px; text-align: left;">
  3925. 1
  3926. </td>
  3927. </tr>
  3928. </table>
  3929. </div>
  3930. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_pnlCompliant">
  3931. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3932. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=5sPn%2fq2e%2fvC0xwj0WwTYBw%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=5sPn%2fq2e%2fvC0xwj0WwTYBw%3d%3d" target="_blank">详细信息</a>
  3933. </div>
  3934. </td>
  3935. </tr><tr class="SearchResultsRowEven" data-partnumber="511-STM32L476VET6" data-index="24">
  3936. <td class="td-select" align="center">
  3937. <div style="padding: 5px 5px 0 5px;">
  3938. <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>
  3939. </div>
  3940. </td><td><a href='/ProductDetail/STMicroelectronics/STM32L476VET6/?qs=sGAEpiMZZMsy1LJDmo1RNu%2fyvOrgf6EtLs7sY50ZyVjl3ATqaM7QaQ%3d%3d'><img title='STMicroelectronics STM32L476VET6' alt='STMicroelectronics STM32L476VET6' id=1425959607 src='/images/mouserimages/sm/LQFP_100_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_100_t.jpg</div></a></td><td>
  3941. <div style="text-align:left;">
  3942. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/STMicroelectronics/STM32L476VET6/?qs=sGAEpiMZZMsy1LJDmo1RNu%2fyvOrgf6EtLs7sY50ZyVjl3ATqaM7QaQ%3d%3d">511-STM32L476VET6</a><br />
  3943. <br />
  3944. <br />
  3945. </div></td><td>
  3946. <div class="mfrDiv">
  3947. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/STMicroelectronics/STM32L476VET6/?qs=sGAEpiMZZMsy1LJDmo1RNu%2fyvOrgf6EtLs7sY50ZyVjl3ATqaM7QaQ%3d%3d">STM32L476VET6</a><br />
  3948. <br />
  3949. <div style="width: 100%; text-align: center;">
  3950. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3951. </div>
  3952. <div style="width: 100%; text-align: center;">
  3953. </div>
  3954. </div>
  3955. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl03_lnkSupplier" href="../../../../../stmicroelectronics">STMicroelectronics</a>
  3956. </td><td>ARM微控制器 - MCU Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, LCD, USB OTG
  3957. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3958. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../stm-stm32l4-mcu-fpu">了解更多</a>
  3959. </div>
  3960. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3961. </div>
  3962. </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;STMicroelectronics&quot;,&quot;511-STM32L476VET6 | STM32L476VET6&quot;]);" href="http://www.mouser.com/ds/2/389/DM00108832-709789.pdf" target="_blank">数据表</a>
  3963. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl06_lnkAvailability">840<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_ctl24_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_ctl24_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(22,1);">1:</a>
  3984. </td>
  3985. <td class="PriceBreakPrice">
  3986. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥78.9399</span>
  3987. </td>
  3988. </tr>
  3989. <tr>
  3990. <td class="PriceBreakQuantity">
  3991. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(22,10);">10:</a>
  3992. </td>
  3993. <td class="PriceBreakPrice">
  3994. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥71.0775</span>
  3995. </td>
  3996. </tr>
  3997. <tr>
  3998. <td class="PriceBreakQuantity">
  3999. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(22,25);">25:</a>
  4000. </td>
  4001. <td class="PriceBreakPrice">
  4002. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥64.7595</span>
  4003. </td>
  4004. </tr>
  4005. <tr>
  4006. <td class="PriceBreakQuantity">
  4007. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(22,50);">50:</a>
  4008. </td>
  4009. <td class="PriceBreakPrice">
  4010. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥60.3018</span>
  4011. </td>
  4012. </tr>
  4013. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  4014. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  4015. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(22,100);">100:</a>
  4016. </td>
  4017. <td class="PriceBreakPrice">
  4018. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/STMicroelectronics/STM32L476VET6/?qs=sGAEpiMZZMsy1LJDmo1RNu%2fyvOrgf6EtLs7sY50ZyVjl3ATqaM7QaQ%3d%3d">查看</a>
  4019. </td>
  4020. </tr>
  4021. <tr>
  4022. <td><br /></td>
  4023. </tr>
  4024. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_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_ctl24_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl08_btnBuy&#39;)">
  4030. <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 />
  4031. <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="购买 STM32L476VET6" 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_ctl24_ctl10_pnlCompliant">
  4052. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4053. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=bUmzaQDhY8DTb5m3UFQfDA%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=bUmzaQDhY8DTb5m3UFQfDA%3d%3d" target="_blank">详细信息</a>
  4054. </div>
  4055. </td>
  4056. </tr><tr class="SearchResultsRowOdd" data-partnumber="511-STM32F746IGK6" data-index="25">
  4057. <td class="td-select" align="center">
  4058. <div style="padding: 5px 5px 0 5px;">
  4059. <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>
  4060. </div>
  4061. </td><td><a href='/ProductDetail/STMicroelectronics/STM32F746IGK6/?qs=sGAEpiMZZMsy1LJDmo1RNrsmk%252bUkYoqAPVUlCLe6AdP8KO9FgU%252byoA%3d%3d'><img title='STMicroelectronics STM32F746IGK6' alt='STMicroelectronics STM32F746IGK6' id=1477497319 src='/images/mouserimages/sm/BGA_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/BGA_176_t.jpg</div></a></td><td>
  4062. <div style="text-align:left;">
  4063. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/STMicroelectronics/STM32F746IGK6/?qs=sGAEpiMZZMsy1LJDmo1RNrsmk%252bUkYoqAPVUlCLe6AdP8KO9FgU%252byoA%3d%3d">511-STM32F746IGK6</a><br />
  4064. <br />
  4065. <br />
  4066. </div></td><td>
  4067. <div class="mfrDiv">
  4068. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/STMicroelectronics/STM32F746IGK6/?qs=sGAEpiMZZMsy1LJDmo1RNrsmk%252bUkYoqAPVUlCLe6AdP8KO9FgU%252byoA%3d%3d">STM32F746IGK6</a><br />
  4069. <br />
  4070. <div style="width: 100%; text-align: center;">
  4071. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  4072. </div>
  4073. <div style="width: 100%; text-align: center;">
  4074. </div>
  4075. </div>
  4076. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl03_lnkSupplier" href="../../../../../stmicroelectronics">STMicroelectronics</a>
  4077. </td><td>ARM微控制器 - MCU High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM,
  4078. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4079. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../stm-stm32f7-mcu-fpu">了解更多</a>
  4080. </div>
  4081. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4082. </div>
  4083. </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;STMicroelectronics&quot;,&quot;511-STM32F746IGK6 | STM32F746IGK6&quot;]);" href="http://www.mouser.com/ds/2/389/DM00166116-599253.pdf" target="_blank">数据表</a>
  4084. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl06_lnkAvailability">210<br/>有库存</span>
  4085. <table>
  4086. <tr align="center">
  4087. <td style="padding-top: 5px">
  4088. </td>
  4089. </tr>
  4090. <tr align="center">
  4091. <td style="padding-top: 5px; padding-bottom: 5px">
  4092. </td>
  4093. </tr>
  4094. </table></td><td>
  4095. <table class="PriceBreaks" cellspacing="0" border="0">
  4096. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4097. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4098. </td>
  4099. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4100. </td>
  4101. </tr>
  4102. <tr>
  4103. <td class="PriceBreakQuantity">
  4104. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(23,1);">1:</a>
  4105. </td>
  4106. <td class="PriceBreakPrice">
  4107. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥143.1612</span>
  4108. </td>
  4109. </tr>
  4110. <tr>
  4111. <td class="PriceBreakQuantity">
  4112. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(23,10);">10:</a>
  4113. </td>
  4114. <td class="PriceBreakPrice">
  4115. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥131.6835</span>
  4116. </td>
  4117. </tr>
  4118. <tr>
  4119. <td class="PriceBreakQuantity">
  4120. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(23,25);">25:</a>
  4121. </td>
  4122. <td class="PriceBreakPrice">
  4123. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥126.2196</span>
  4124. </td>
  4125. </tr>
  4126. <tr>
  4127. <td class="PriceBreakQuantity">
  4128. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(23,50);">50:</a>
  4129. </td>
  4130. <td class="PriceBreakPrice">
  4131. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥119.3634</span>
  4132. </td>
  4133. </tr>
  4134. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  4135. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  4136. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(23,100);">100:</a>
  4137. </td>
  4138. <td class="PriceBreakPrice">
  4139. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/STMicroelectronics/STM32F746IGK6/?qs=sGAEpiMZZMsy1LJDmo1RNrsmk%252bUkYoqAPVUlCLe6AdP8KO9FgU%252byoA%3d%3d">查看</a>
  4140. </td>
  4141. </tr>
  4142. <tr>
  4143. <td><br /></td>
  4144. </tr>
  4145. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4146. <td colspan="2" style="text-align: center;">
  4147. </td>
  4148. </tr>
  4149. </table>
  4150. </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;)">
  4151. <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 />
  4152. <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="购买 STM32F746IGK6" class="buy-button" /><br />
  4153. <table cellspacing="0" border="0" style="width: 100%;">
  4154. <tr>
  4155. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4156. 最低:
  4157. </td>
  4158. <td style="padding-left: 2px; text-align: left;">
  4159. 1
  4160. </td>
  4161. </tr>
  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. </table>
  4171. </div>
  4172. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_pnlCompliant">
  4173. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4174. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=UR3iUpfmIbz0ipo8K%2fTgYg%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=UR3iUpfmIbz0ipo8K%2fTgYg%3d%3d" target="_blank">详细信息</a>
  4175. </div>
  4176. </td>
  4177. </tr><tr class="SearchResultsRowEven" data-partnumber="841-MCIMX6G3DVM05AA" data-index="26">
  4178. <td class="td-select" align="center">
  4179. <div style="padding: 5px 5px 0 5px;">
  4180. <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>
  4181. </div>
  4182. </td><td><a href='/ProductDetail/NXP-Freescale/MCIMX6G3DVM05AA/?qs=sGAEpiMZZMsy1LJDmo1RNqw%2fBLkLC9TXqvXso3MsC4HN2xNaRVyAew%3d%3d'><img title='NXP / Freescale MCIMX6G3DVM05AA' alt='NXP / Freescale MCIMX6G3DVM05AA' id=1594220416 src='/images/mouserimages/sm/BGA_289_t.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/mouserimages/images/BGA_289_t.jpg</div></a></td><td>
  4183. <div style="text-align:left;">
  4184. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/NXP-Freescale/MCIMX6G3DVM05AA/?qs=sGAEpiMZZMsy1LJDmo1RNqw%2fBLkLC9TXqvXso3MsC4HN2xNaRVyAew%3d%3d">841-MCIMX6G3DVM05AA</a><br />
  4185. <br />
  4186. <br />
  4187. </div></td><td>
  4188. <div class="mfrDiv">
  4189. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/NXP-Freescale/MCIMX6G3DVM05AA/?qs=sGAEpiMZZMsy1LJDmo1RNqw%2fBLkLC9TXqvXso3MsC4HN2xNaRVyAew%3d%3d">MCIMX6G3DVM05AA</a><br />
  4190. <br />
  4191. <div style="width: 100%; text-align: center;">
  4192. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  4193. </div>
  4194. <div style="width: 100%; text-align: center;">
  4195. </div>
  4196. </div>
  4197. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl03_lnkSupplier" href="../../../../../Freescale-Semiconductor">NXP / Freescale</a>
  4198. </td><td>处理器 - 专门应用 i.MX 32-bit MPU, ARM Cortex-A7 core, 500MHz, 289BGA
  4199. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4200. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../freescale-imx6-ultralite">了解更多</a>
  4201. </div>
  4202. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4203. </div>
  4204. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;NXP / Freescale&quot;,&quot;841-MCIMX6G3DVM05AA | MCIMX6G3DVM05AA&quot;]);" href="http://www.mouser.com/ds/2/302/IMX6ULCEC-782209.pdf" target="_blank">数据表</a>
  4205. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl06_lnkAvailability">310<br/>有库存</span>
  4206. <table>
  4207. <tr align="center">
  4208. <td style="padding-top: 5px">
  4209. </td>
  4210. </tr>
  4211. <tr align="center">
  4212. <td style="padding-top: 5px; padding-bottom: 5px">
  4213. </td>
  4214. </tr>
  4215. </table></td><td>
  4216. <table class="PriceBreaks" cellspacing="0" border="0">
  4217. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4218. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4219. </td>
  4220. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4221. </td>
  4222. </tr>
  4223. <tr>
  4224. <td class="PriceBreakQuantity">
  4225. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(24,1);">1:</a>
  4226. </td>
  4227. <td class="PriceBreakPrice">
  4228. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥100.8072</span>
  4229. </td>
  4230. </tr>
  4231. <tr>
  4232. <td class="PriceBreakQuantity">
  4233. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(24,10);">10:</a>
  4234. </td>
  4235. <td class="PriceBreakPrice">
  4236. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥95.1795</span>
  4237. </td>
  4238. </tr>
  4239. <tr>
  4240. <td class="PriceBreakQuantity">
  4241. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(24,25);">25:</a>
  4242. </td>
  4243. <td class="PriceBreakPrice">
  4244. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥89.6337</span>
  4245. </td>
  4246. </tr>
  4247. <tr>
  4248. <td class="PriceBreakQuantity">
  4249. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(24,100);">100:</a>
  4250. </td>
  4251. <td class="PriceBreakPrice">
  4252. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥67.2282</span>
  4253. </td>
  4254. </tr>
  4255. <tr>
  4256. <td><br /></td>
  4257. </tr>
  4258. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4259. <td colspan="2" style="text-align: center;">
  4260. </td>
  4261. </tr>
  4262. </table>
  4263. </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;)">
  4264. <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 />
  4265. <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="购买 MCIMX6G3DVM05AA" class="buy-button" /><br />
  4266. <table cellspacing="0" border="0" style="width: 100%;">
  4267. <tr>
  4268. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4269. 最低:
  4270. </td>
  4271. <td style="padding-left: 2px; text-align: left;">
  4272. 1
  4273. </td>
  4274. </tr>
  4275. <tr>
  4276. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4277. 多个:
  4278. </td>
  4279. <td style="padding-left: 2px; text-align: left;">
  4280. 1
  4281. </td>
  4282. </tr>
  4283. </table>
  4284. </div>
  4285. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_pnlCompliant">
  4286. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4287. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=%252bQjoh3SlCFCwwebTB%2f3%2f3Q%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=%252bQjoh3SlCFCwwebTB%2f3%2f3Q%3d%3d" target="_blank">详细信息</a>
  4288. </div>
  4289. </td>
  4290. </tr><tr class="SearchResultsRowOdd" data-partnumber="511-STM32F469IIT6" data-index="27">
  4291. <td class="td-select" align="center">
  4292. <div style="padding: 5px 5px 0 5px;">
  4293. <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>
  4294. </div>
  4295. </td><td><a href='/ProductDetail/STMicroelectronics/STM32F469IIT6/?qs=sGAEpiMZZMsy1LJDmo1RNkqLBx6JNk1q7A%2f4N7kl8fXNKkdEQAauFw%3d%3d'><img title='STMicroelectronics STM32F469IIT6' alt='STMicroelectronics STM32F469IIT6' id=1602029358 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>
  4296. <div style="text-align:left;">
  4297. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/STMicroelectronics/STM32F469IIT6/?qs=sGAEpiMZZMsy1LJDmo1RNkqLBx6JNk1q7A%2f4N7kl8fXNKkdEQAauFw%3d%3d">511-STM32F469IIT6</a><br />
  4298. <br />
  4299. <br />
  4300. </div></td><td>
  4301. <div class="mfrDiv">
  4302. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/STMicroelectronics/STM32F469IIT6/?qs=sGAEpiMZZMsy1LJDmo1RNkqLBx6JNk1q7A%2f4N7kl8fXNKkdEQAauFw%3d%3d">STM32F469IIT6</a><br />
  4303. <br />
  4304. <div style="width: 100%; text-align: center;">
  4305. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  4306. </div>
  4307. <div style="width: 100%; text-align: center;">
  4308. </div>
  4309. </div>
  4310. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl03_lnkSupplier" href="../../../../../stmicroelectronics">STMicroelectronics</a>
  4311. </td><td>ARM微控制器 - MCU High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbytes Flash, 180 MHz CPU, ART Accelerator, Chrom
  4312. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4313. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../stm32f4">了解更多</a>
  4314. </div>
  4315. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4316. </div>
  4317. </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;STMicroelectronics&quot;,&quot;511-STM32F469IIT6 | STM32F469IIT6&quot;]);" href="http://www.mouser.com/ds/2/389/DM00219980-888205.pdf" target="_blank">数据表</a>
  4318. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl06_lnkAvailability">238<br/>有库存</span>
  4319. <table>
  4320. <tr align="center">
  4321. <td style="padding-top: 5px">
  4322. </td>
  4323. </tr>
  4324. <tr align="center">
  4325. <td style="padding-top: 5px; padding-bottom: 5px">
  4326. </td>
  4327. </tr>
  4328. </table></td><td>
  4329. <table class="PriceBreaks" cellspacing="0" border="0">
  4330. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4331. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4332. </td>
  4333. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4334. </td>
  4335. </tr>
  4336. <tr>
  4337. <td class="PriceBreakQuantity">
  4338. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(25,1);">1:</a>
  4339. </td>
  4340. <td class="PriceBreakPrice">
  4341. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥158.2542</span>
  4342. </td>
  4343. </tr>
  4344. <tr>
  4345. <td class="PriceBreakQuantity">
  4346. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(25,10);">10:</a>
  4347. </td>
  4348. <td class="PriceBreakPrice">
  4349. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥145.4661</span>
  4350. </td>
  4351. </tr>
  4352. <tr>
  4353. <td class="PriceBreakQuantity">
  4354. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(25,25);">25:</a>
  4355. </td>
  4356. <td class="PriceBreakPrice">
  4357. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥139.464</span>
  4358. </td>
  4359. </tr>
  4360. <tr>
  4361. <td class="PriceBreakQuantity">
  4362. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(25,50);">50:</a>
  4363. </td>
  4364. <td class="PriceBreakPrice">
  4365. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥131.9175</span>
  4366. </td>
  4367. </tr>
  4368. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  4369. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  4370. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(25,100);">100:</a>
  4371. </td>
  4372. <td class="PriceBreakPrice">
  4373. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/STMicroelectronics/STM32F469IIT6/?qs=sGAEpiMZZMsy1LJDmo1RNkqLBx6JNk1q7A%2f4N7kl8fXNKkdEQAauFw%3d%3d">查看</a>
  4374. </td>
  4375. </tr>
  4376. <tr>
  4377. <td><br /></td>
  4378. </tr>
  4379. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4380. <td colspan="2" style="text-align: center;">
  4381. </td>
  4382. </tr>
  4383. </table>
  4384. </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;)">
  4385. <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 />
  4386. <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="购买 STM32F469IIT6" class="buy-button" /><br />
  4387. <table cellspacing="0" border="0" style="width: 100%;">
  4388. <tr>
  4389. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4390. 最低:
  4391. </td>
  4392. <td style="padding-left: 2px; text-align: left;">
  4393. 1
  4394. </td>
  4395. </tr>
  4396. <tr>
  4397. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4398. 多个:
  4399. </td>
  4400. <td style="padding-left: 2px; text-align: left;">
  4401. 1
  4402. </td>
  4403. </tr>
  4404. </table>
  4405. </div>
  4406. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_pnlCompliant">
  4407. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4408. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=AUSJM3sjdNno6hMDWXWzMQ%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=AUSJM3sjdNno6hMDWXWzMQ%3d%3d" target="_blank">详细信息</a>
  4409. </div>
  4410. </td>
  4411. </tr>
  4412. </table>
  4413. </div>
  4414. </td>
  4415. </tr>
  4416. <tr>
  4417. <td class="tdSearchResultsPagingBottom">
  4418. <table id="ctl00_ContentMain_tbl4" class="SearchResultsPaging">
  4419. <tr>
  4420. <td>
  4421. <input type="submit" name="ctl00$ContentMain$btn3" value="购买所选商品" onclick="javascript:return MiniCart.AddToCartNShowCart(MiniCart.source);" id="ctl00_ContentMain_btn3" title="购买所选商品" class="buy-button" />
  4422. </td>
  4423. <td>
  4424. <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" />
  4425. </td>
  4426. <td>
  4427. <span id="ctl00_ContentMain_lbl12" title="您可选择至多20 个零件单次进行对比。若您选择更多,则仅20件距离最近的所选零件会被对比。" class="bold">至多对比 20 零件.</span>
  4428. </td>
  4429. <td style="padding-left: 40px;">
  4430. <div class="floatrightpager">
  4431. <span class="bold">
  4432. 页面:
  4433. </span>
  4434. <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/_/N-a86bc/?No=25">2</a><a id="ctl00_ContentMain_PagerBottom_2" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/?No=50">3</a><a id="ctl00_ContentMain_PagerBottom_3" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/?No=75">4</a><a id="ctl00_ContentMain_PagerBottom_4" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/?No=100">5</a><a id="ctl00_ContentMain_PagerBottom_5" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/?No=125">6</a><a id="ctl00_ContentMain_PagerBottom_6" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/?No=150">7</a><a id="ctl00_ContentMain_PagerBottom_7" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/?No=175">8</a><a id="ctl00_ContentMain_PagerBottom_8" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/?No=200">9</a><a id="ctl00_ContentMain_PagerBottom_9" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/?No=225">10</a><a id="ctl00_ContentMain_PagerBottom_lnkNextSet" class="ellipsis" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/?No=250">...</a><a id="ctl00_ContentMain_PagerBottom_2104" class="first-last" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/?No=52600">2105</a><a id="ctl00_ContentMain_PagerBottom_lnkNext" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/_/N-a86bc/?No=25">下一页</a></span>
  4435. </div>
  4436. </td>
  4437. </tr>
  4438. </table>
  4439. </td>
  4440. </tr>
  4441. <tr>
  4442. <td>
  4443. <!--- Search Tips --->
  4444. </td>
  4445. </tr>
  4446. <tr>
  4447. <td>
  4448. <!-- SOP Section 2 -->
  4449. </td>
  4450. </tr>
  4451. </table>
  4452. </div>
  4453. </div><!-- #liProducts-->
  4454. <!-- Datasheets tab -->
  4455. <!-- #liDatasheets-->
  4456. <!-- Images tab -->
  4457. <!-- #liImages-->
  4458. <!-- Newest Products tab -->
  4459. <!-- #liProducts-->
  4460. </div>
  4461. <div id="ctl00_ContentMain_popSearch_pnlPopularSearches">
  4462. <div>
  4463. <span class="popular-searches-label">热门搜索:</span>
  4464. <span class="popular-searches-links"><a href='/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microcontrollers-MCU/ARM-Cortex-M0-Core/_/N-a86ge?P=1yzud1pZ1z0w8ejZ1yzbnc6&pop=umy2' onclick="ga('send','event','Popular Search Refine Click','Embedded Processors & Controllers','16 kB ARM Cortex M0 32 bit Microcontrollers - MCU')">16 kB ARM Cortex M0 32 bit 微控制器 - MCU</a> , <a href='/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microcontrollers-MCU/8-bit-Microcontrollers-MCU/_/N-a86lo?P=1z0wuod&pop=5kdd' onclick="ga('send','event','Popular Search Refine Click','Embedded Processors & Controllers','+ 125 C 8-bit Microcontrollers - MCU')">+ 125 C 8位微控制器 -MCU</a> , <a href='/半導体/集積回路-IC/組み込みプロセッサ&コントローラ/マイクロプロセッサ-MPU/_/N-a86qz/?P=1yzay25&pop=pobc' onclick="ga('send','event','Popular Search Refine Click','Embedded Processors & Controllers','ARM Cortex A9 Microprocessors - MPU')">ARM Cortex A9 微处理器 - MPU</a> , <a href='/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microcontrollers-MCU/ARM-Microcontrollers-MCU/ARM-Cortex-M4-Core/_/N-a86nc?P=1z0ypqgZ1yztkji&pop=sshs' onclick="ga('send','event','Popular Search Refine Click','Embedded Processors & Controllers','TQFP-128 ARM Cortex M4 ARM Microcontrollers - MCU')">TQFP-128 ARM Cortex M4 ARM微控制器 - MCU</a> , <a href='/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microcontrollers-MCU/ARM-Microcontrollers-MCU/_/N-a86nc?P=1z0w185&pop=l34' onclick="ga('send','event','Popular Search Refine Click','Embedded Processors & Controllers','180 MHz ARM Microcontrollers - MCU')">180 MHz ARM微控制器 - MCU</a> , <a href='/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microcontrollers-MCU/16-bit-Microcontrollers-MCU/_/N-a86gl?P=1z0z7ptZ1yz9ylb&pop=s3hu' onclick="ga('send','event','Popular Search Refine Click','Embedded Processors & Controllers','SMD/SMT 32 kB 16-bit Microcontrollers - MCU')">SMD/SMT 32 kB 16位微控制器 - MCU</a></span>
  4465. </div>
  4466. </div>
  4467. <div style="visibility: hidden;">
  4468. <input name="ctl00$ContentMain$lblTrdTerm" type="text" id="ctl00_ContentMain_lblTrdTerm" style="height:1px;" />
  4469. <input name="ctl00$ContentMain$lblIsNewTerm" type="text" id="ctl00_ContentMain_lblIsNewTerm" style="height:1px;" />
  4470. <span id="SearchResultCount">52608</span>
  4471. <div id="disclaimer">
  4472. 图像仅供参考<br/>请参阅产品规格</div>
  4473. </div>
  4474. <input type="hidden" name="ctl00$ContentMain$hfBreadcrumbTemplates" id="ctl00_ContentMain_hfBreadcrumbTemplates" value="Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers" />
  4475. <script type="text/javascript" src='../../../../../javascript/ProductImage.js'></script>
  4476. <script type="text/javascript" src='../../../../../flash/js/mb.zoomify.js?v=3.0.20160304.2'></script>
  4477. <script type="text/javascript" src='../../../../../flash/js/refine2.js?v=3.0.20160304.2'></script>
  4478. <!--[if gte IE 9]><!-->
  4479. <script type="text/javascript" src='../../../../../flash/js/angular.min.js?v=3.0.20160304.2'></script>
  4480. <!--<![endif]-->
  4481. <!--[if lt IE 9]>
  4482. <script type="text/javascript" src='../../../../../flash/js/angular-1.2.min.js?v=3.0.20160304.2'></script>
  4483. <![endif]-->
  4484. <script type="text/javascript" src='../../../../../flash/js/catalog-nav-2.js?v=3.0.20160304.2'></script>
  4485. <script type="text/javascript">
  4486. var subdomain = 'cn2';
  4487. </script>
  4488. </div>
  4489. <div class="aspNetHidden">
  4490. <input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="1BDFFD94" />
  4491. <input type="hidden" name="__SCROLLPOSITIONX" id="__SCROLLPOSITIONX" value="0" />
  4492. <input type="hidden" name="__SCROLLPOSITIONY" id="__SCROLLPOSITIONY" value="0" />
  4493. <input type="hidden" name="__PREVIOUSPAGE" id="__PREVIOUSPAGE" value="sCwL_pxdoj0XSK04yfSNwmk7SAHGSbiByRjA1dnwtKBk-nBbIRlJWZQvencUkJ0sBD6NabQ8CPhwqV6J9lNk9NKWVfo1" />
  4494. </div>
  4495. <script type="text/javascript">
  4496. //<![CDATA[
  4497. var mfrIDsArray = new Array;
  4498. //]]>
  4499. </script>
  4500. <script src='../../../../../flash/js/Minicart.js?v=3.0.20160304.2' type='text/javascript'></script>
  4501. <script type="text/javascript">
  4502. //<![CDATA[
  4503. var auOnMsg='打开建议';var auOffMsg='关闭建议';var autoSuggestionEnabled='1';var lblMoreParts ='更多零件';var enableNewTypeAhead='1';var enableAtaTypeAhead='1';var enableAtaGATrackingEstimatedAjaxCalls='1';//]]>
  4504. </script>
  4505. <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>
  4506. <script type="text/javascript">
  4507. //<![CDATA[
  4508. maxAllowedAttributeSelection =150; currentParametricCount =0; maxSelectionAllowedPerGroupBeforeConversion =10; enableRangeLists = 1; maxWarningMessage = '由于应用的过滤条件太多,您的搜索无法完成。请去除一些选择,然后重试。';
  4509. <!-- Google Code for Conversion Page Remarketing List -->
  4510. <!--
  4511. var google_conversion_id = 1046090287;
  4512. var google_conversion_language = "en";
  4513. var google_conversion_format = "3";
  4514. var google_conversion_color = "666666";
  4515. var google_conversion_label = "9WmrCMOVxQEQr6To8gM";
  4516. var google_conversion_value = 0;
  4517. //-->
  4518. </script>
  4519. <div class="ga-remarketing">
  4520. <script type="text/javascript"
  4521. src="http://www.googleadservices.com/pagead/conversion.js">
  4522. </script>
  4523. </div>
  4524. <noscript>
  4525. <div style="display:inline;">
  4526. <img height="1" width="1" style="border-style:none;" alt=""
  4527. src="http://www.googleadservices.com/pagead/conversion/1046090287/?label=9WmrCMOVxQEQr6To8gM&amp;guid=ON&amp;script=0"/>
  4528. </div>
  4529. </noscript>
  4530. <script type="text/javascript">
  4531. //]]>
  4532. </script>
  4533. <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>
  4534. <script type="text/javascript">
  4535. //<![CDATA[
  4536. theForm.oldSubmit = theForm.submit;
  4537. theForm.submit = WebForm_SaveScrollPositionSubmit;
  4538. theForm.oldOnSubmit = theForm.onsubmit;
  4539. theForm.onsubmit = WebForm_SaveScrollPositionOnSubmit;
  4540. //]]>
  4541. </script>
  4542. </form>
  4543. <div id="content-container2" class="hidden">
  4544. <div id="content-fixed-width2" class="content-fixed-width">
  4545. </div>
  4546. </div>
  4547. <div id="wideFooter" class="wideFooter">
  4548. <div id="footer" class="container">
  4549. <input name="ctl00$Footer1$sb" type="hidden" id="ctl00_Footer1_sb" value="TXWEB10|20160304.2" />
  4550. <div id="ft_table1">
  4551. <div class="row">
  4552. <div class="col-xs-12">
  4553. <div id="ctl00_Footer1_pnlEmailSignup" class="ft_signup hidden-xs">
  4554. <div class="floatleft padding5right">
  4555. <strong class="h3">
  4556. 快速电子邮件注册</strong>&nbsp;&nbsp;
  4557. <input type="text" id="txtQuickSubsEmail" maxlength="48" style="width: 200px" tooltip="eMail Address" />
  4558. </div>
  4559. <a id="lnkBox" class="thickbox blue-button" onclick="return QuickSignUp();">
  4560. 提交
  4561. </a>
  4562. </div>
  4563. <div id="ft_icons" class="ft_icons">
  4564. <div id="ft_social">
  4565. <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>
  4566. <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>
  4567. <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>
  4568. <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">
  4569. <div class="ico-social fb"></div>
  4570. </a>
  4571. <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">
  4572. <div class="ico-social tw"></div>
  4573. </a>
  4574. <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">
  4575. <div class="ico-social rss"></div>
  4576. </a>
  4577. <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">
  4578. <div class="ico-social yt"></div>
  4579. </a>
  4580. <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">
  4581. <div class="ico-social gp"></div>
  4582. </a>
  4583. <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">
  4584. <div class="ico-social ln"></div>
  4585. </a>
  4586. <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">
  4587. <div class="ico-social sb"></div>
  4588. </a>
  4589. <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">
  4590. <div class="ico-social blog"></div>
  4591. </a>
  4592. </div>
  4593. </div>
  4594. </div>
  4595. </div>
  4596. </div>
  4597. <div id="ft_box" itemscope itemtype="http://schema.org/WPFooter">
  4598. <div class="ft_wrapper">
  4599. <div id="ft_links" class="row">
  4600. <div class="col-xs-3 paddingBtm10 hidden-xs">
  4601. <strong class="paddingTopBtm10 inline-block">
  4602. 公司</strong>
  4603. <ul>
  4604. <li>
  4605. <a id="ctl00_Footer1_lnk26" href="../../../../../aboutus/">关于我们</a></li>
  4606. <li>
  4607. <a id="ctl00_Footer1_lnk28" href="../../../../../educationalsales/">教育销售</a></li>
  4608. <li>
  4609. <a id="ctl00_Footer1_lnk31" href="../../../../../pressroom/">新闻中心</a></li>
  4610. <li>
  4611. <a id="ctl00_Footer1_lnk32" href="../../../../../careers/">Mouser 工作机会</a></li>
  4612. <li>
  4613. <a id="ctl00_Footer1_lnk29" href="../../../../../quality/">品质保证</a></li>
  4614. <li>
  4615. <a id="ctl00_Footer1_lnk30" href="../../../../../environmental/">环境保护</a></li>
  4616. </ul>
  4617. </div>
  4618. <div class="col-xs-3 hidden-xs">
  4619. <strong class="paddingTopBtm10 inline-block">
  4620. 快速链接</strong>
  4621. <ul>
  4622. <li><a id="A7" href="/blog">
  4623. Mouser博客</a></li>
  4624. <li>
  4625. <a id="ctl00_Footer1_hlnk1" href="../../../../../new/">最新产品</a></li>
  4626. <li>
  4627. <a id="ctl00_Footer1_hlnk2" href="../../../../../new/products/">新产品</a></li>
  4628. <li>
  4629. <a id="ctl00_Footer1_hlnk3" href="../../../../../applications/">新技术</a></li>
  4630. </ul>
  4631. </div>
  4632. <div class="col-xs-12 col-sm-3">
  4633. <strong class="paddingTopBtm10 inline-block">
  4634. 支持</strong>
  4635. <ul>
  4636. <li><a id="A3" href="/feedback.aspx">
  4637. 反馈</a></li>
  4638. <li class="hidden-xs"><a id="A4" href="/Help/help.aspx">
  4639. 帮助</a></li>
  4640. <li>
  4641. <a id="ctl00_Footer1_lnk27" href="../../../../../contact/">联系我们</a></li>
  4642. <li class="hidden-xs"><a id="A5" href="/browsersupport/">
  4643. 浏览器支持</a></li>
  4644. <li><a id="A6" href="/cookie-policy/">
  4645. Cookie政策</a></li>
  4646. </ul>
  4647. </div>
  4648. <div class="col-xs-12 col-sm-3">
  4649. <strong class="paddingTopBtm10 inline-block">
  4650. 昴氏(上海)电子贸易有限公司</strong>
  4651. <ul>
  4652. <li>
  4653. <h4>
  4654. 中国上海市长宁区娄山关路555号<br />长房国际广场办公楼2506-2510室<br />邮编200051<br/><br/>400-821-6111</h4>
  4655. </li>
  4656. </ul>
  4657. </div>
  4658. </div>
  4659. </div>
  4660. </div>
  4661. <div class="row">
  4662. <div id="ctl00_Footer1_pn1" class="ft_copy_pos2 col-xs-12 col-sm-5">
  4663. <div id="ft_copy">
  4664. <span class="ft_terms">
  4665. <a id="A1" href="/privacypolicy/">
  4666. 隐私政策</a>
  4667. &nbsp;&nbsp;|&nbsp;&nbsp;
  4668. <a id="href3" href="/saleterms/">
  4669. 销售条款</a>
  4670. <br />
  4671. </span>
  4672. <span class="ft_copyright">
  4673. 版权所有©2016 Mouser Electronics, Inc
  4674. |
  4675. 沪ICP备15042575号-1
  4676. <br />
  4677. </span>
  4678. <span class="ft_trade">
  4679. Mouser® 和 Mouser Electronics® 是 Mouser Electronics, Inc 的注册商标。
  4680. </span>
  4681. <span class="ft_hq">
  4682. Corporate headquarters and logistics center in Mansfield, Texas USA.
  4683. </span>
  4684. <br />
  4685. <span class="ft_ClassicMobile">
  4686. <strong>
  4687. <a id="ctl00_Footer1_lbtn1" class="ft-mobile" href="../../../../../m_Home.aspx">通过移动设备查看</a></strong>
  4688. </span>
  4689. </div>
  4690. </div>
  4691. <div id="ft_cert" class="col-xs-7 align-right hidden-xs">
  4692. <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>
  4693. <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>
  4694. <a id="link" title="IESA" class="ft_cert_padding ft_ecia" href="/ecia/">
  4695. <img id="imgIESA" src="/Images/footer/logo-IESA_small.png" alt="IESA">
  4696. </a>
  4697. <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>
  4698. <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;
  4699. </a>
  4700. </div>
  4701. <div id="ft_cert_2" class="col-xs-7 align-right hidden-xs">
  4702. <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>
  4703. <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>
  4704. <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>
  4705. <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>
  4706. </div>
  4707. </div>
  4708. <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>
  4709. <script type="text/javascript">
  4710. var quickSignUpUrl = 'https://sub.info.mouser.com/quick-signup-sc';
  4711. </script>
  4712. </div>
  4713. </div>
  4714. <script src="../../../../../flash/AC_RunActiveContent.js" type="text/javascript"></script>
  4715. <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>
  4716. </body>
  4717. </html>