12.html 370 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082
  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_688f337f-d0a1-45da-88a2-d928564757dc-61840-354467';</script>
  34. <!-- AppInternalsXpert BMX Integration End -->
  35. <title>
  36. RF片上系统 - SoC | Mouser
  37. </title><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><meta id="ctl00_metaDesc" name="Description" content="目前,Mouser Electronics可供应RF片上系统 - SoC 。Mouser提供RF片上系统 - SoC 的库存、定价和数据表。" /><meta id="ctl00_metaKeywords" name="Keywords" content="RF片上系统 - SoC" /><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","05neWM651HK6hX98VigUvJUgcF4wpKzncfMMiTxVj7k=",2]);_gaq.push(["_setCustomVar",31,"Cart","ad42e474-1b52-4332-8902-694262868736",2]);
  56. _gaq.push(["_setCustomVar",15,"TriColor PO1010","163AA125AA96AA68",2]);
  57. _gaq.push(["_setCustomVar",3,"PageType","Refine",3]);
  58. _gaq.push(["_setSiteSpeedSampleRate", 10]);
  59. _gaq.push(["_trackPageview"]);
  60. (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;ga.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'stats.g.doubleclick.net/dc.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })();
  61. (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)})(window,document,'script','//www.google-analytics.com/analytics.js','ga');ga('create', 'UA-521079-20', {'cookieDomain': 'mouser.cn','allowLinker': true});
  62. ga('require', 'ec');
  63. ga('ec:addImpression', {
  64. 'id': '634-EM341-RT',
  65. 'name': 'RF System on a Chip - SoC RF4CE Remote SoC 128Kb Flash 12Kb RAM',
  66. 'category': 'RF System on a Chip - SoC',
  67. 'brand': 'Silicon Labs',
  68. 'variant': 'EM341-RT',
  69. 'list': 'Refine',
  70. 'position': '1'
  71. });
  72. ga('ec:addImpression', {
  73. 'id': '634-FG1P132F64GM32',
  74. 'name': 'RF System on a Chip - SoC EFR32FG PER,19.5dBm 64 KB FM/16 KB RAM',
  75. 'category': 'RF System on a Chip - SoC',
  76. 'brand': 'Silicon Labs',
  77. 'variant': 'EFR32FG1P132F64GM32-B0',
  78. 'list': 'Refine',
  79. 'position': '2'
  80. });
  81. ga('ec:addImpression', {
  82. 'id': '634-FG1P132F128GM48',
  83. 'name': 'RF System on a Chip - SoC EFR32FG PER,19.5dBm 128 KB FM/32 KB RAM',
  84. 'category': 'RF System on a Chip - SoC',
  85. 'brand': 'Silicon Labs',
  86. 'variant': 'EFR32FG1P132F128GM48-B0',
  87. 'list': 'Refine',
  88. 'position': '3'
  89. });
  90. ga('ec:addImpression', {
  91. 'id': '634-FG1V132F256GM48',
  92. 'name': 'RF System on a Chip - SoC EFR32FG VAL,16.5dBm 256 KB FM/32 KB RAM',
  93. 'category': 'RF System on a Chip - SoC',
  94. 'brand': 'Silicon Labs',
  95. 'variant': 'EFR32FG1V132F256GM48-B0',
  96. 'list': 'Refine',
  97. 'position': '4'
  98. });
  99. ga('ec:addImpression', {
  100. 'id': '634-FG1P132F256GM48',
  101. 'name': 'RF System on a Chip - SoC EFR32FG PER,19.5dBm 256 KB FM/32 KB RAM',
  102. 'category': 'RF System on a Chip - SoC',
  103. 'brand': 'Silicon Labs',
  104. 'variant': 'EFR32FG1P132F256GM48-B0',
  105. 'list': 'Refine',
  106. 'position': '5'
  107. });
  108. ga('ec:addImpression', {
  109. 'id': '634-FG1V132F32GM32',
  110. 'name': 'RF System on a Chip - SoC EFR32FG VAL,16.5dBm 32 KB FM/8 KB RAM',
  111. 'category': 'RF System on a Chip - SoC',
  112. 'brand': 'Silicon Labs',
  113. 'variant': 'EFR32FG1V132F32GM32-B0',
  114. 'list': 'Refine',
  115. 'position': '6'
  116. });
  117. ga('ec:addImpression', {
  118. 'id': '634-FG1V132F32GM48',
  119. 'name': 'RF System on a Chip - SoC EFR32FG VAL,16.5dBm 32 KB FM/8 KB RAM',
  120. 'category': 'RF System on a Chip - SoC',
  121. 'brand': 'Silicon Labs',
  122. 'variant': 'EFR32FG1V132F32GM48-B0',
  123. 'list': 'Refine',
  124. 'position': '7'
  125. });
  126. ga('ec:addImpression', {
  127. 'id': '634-FG1V132F64GM32',
  128. 'name': 'RF System on a Chip - SoC EFR32FG VAL,16.5dBm 64 KB FM/16 KB RAM',
  129. 'category': 'RF System on a Chip - SoC',
  130. 'brand': 'Silicon Labs',
  131. 'variant': 'EFR32FG1V132F64GM32-B0',
  132. 'list': 'Refine',
  133. 'position': '8'
  134. });
  135. ga('ec:addImpression', {
  136. 'id': '634-FG1V132F64GM48',
  137. 'name': 'RF System on a Chip - SoC EFR32FG VAL,16.5dBm 64 KB FM/16 KB RAM',
  138. 'category': 'RF System on a Chip - SoC',
  139. 'brand': 'Silicon Labs',
  140. 'variant': 'EFR32FG1V132F64GM48-B0',
  141. 'list': 'Refine',
  142. 'position': '9'
  143. });
  144. ga('ec:addImpression', {
  145. 'id': '634-FG1V132F128GM32',
  146. 'name': 'RF System on a Chip - SoC EFR32FG VAL,16.5dBm 128 KB FM/16 KB RAM',
  147. 'category': 'RF System on a Chip - SoC',
  148. 'brand': 'Silicon Labs',
  149. 'variant': 'EFR32FG1V132F128GM32-B0',
  150. 'list': 'Refine',
  151. 'position': '10'
  152. });
  153. ga('ec:addImpression', {
  154. 'id': '634-FG1V132F128GM48',
  155. 'name': 'RF System on a Chip - SoC EFR32FG VAL,16.5dBm 128 KB FM/16 KB RAM',
  156. 'category': 'RF System on a Chip - SoC',
  157. 'brand': 'Silicon Labs',
  158. 'variant': 'EFR32FG1V132F128GM48-B0',
  159. 'list': 'Refine',
  160. 'position': '11'
  161. });
  162. ga('ec:addImpression', {
  163. 'id': '634-FG1P132F64GM48',
  164. 'name': 'RF System on a Chip - SoC EFR32FG PER,19.5dBm 64 KB FM/16 KB RAM',
  165. 'category': 'RF System on a Chip - SoC',
  166. 'brand': 'Silicon Labs',
  167. 'variant': 'EFR32FG1P132F64GM48-B0',
  168. 'list': 'Refine',
  169. 'position': '12'
  170. });
  171. ga('ec:addImpression', {
  172. 'id': '634-FG1P132F128GM32',
  173. 'name': 'RF System on a Chip - SoC EFR32FG PER,19.5dBm 128 KB FM/32 KB RAM',
  174. 'category': 'RF System on a Chip - SoC',
  175. 'brand': 'Silicon Labs',
  176. 'variant': 'EFR32FG1P132F128GM32-B0',
  177. 'list': 'Refine',
  178. 'position': '13'
  179. });
  180. ga('ec:addImpression', {
  181. 'id': '634-FG1V132F256GM32',
  182. 'name': 'RF System on a Chip - SoC EFR32FG VAL,16.5dBm 256 KB FM/32 KB RAM',
  183. 'category': 'RF System on a Chip - SoC',
  184. 'brand': 'Silicon Labs',
  185. 'variant': 'EFR32FG1V132F256GM32-B0',
  186. 'list': 'Refine',
  187. 'position': '14'
  188. });
  189. ga('ec:addImpression', {
  190. 'id': '634-FG1P132F256GM32',
  191. 'name': 'RF System on a Chip - SoC EFR32FG PER,19.5dBm 256 KB FM/32 KB RAM',
  192. 'category': 'RF System on a Chip - SoC',
  193. 'brand': 'Silicon Labs',
  194. 'variant': 'EFR32FG1P132F256GM32-B0',
  195. 'list': 'Refine',
  196. 'position': '15'
  197. });
  198. ga('ec:addImpression', {
  199. 'id': '634-BG1B232F256GM32',
  200. 'name': 'RF System on a Chip - SoC EFR32 Basic,10.5 dBm 256 KB FM/32 KB RAM',
  201. 'category': 'RF System on a Chip - SoC',
  202. 'brand': 'Silicon Labs',
  203. 'variant': 'EFR32BG1B232F256GM32-B0',
  204. 'list': 'Refine',
  205. 'position': '16'
  206. });
  207. ga('ec:addImpression', {
  208. 'id': '634-BG1V132F256GM48',
  209. 'name': 'RF System on a Chip - SoC EFR32 Value, 0 dBm 256 KB FM/16 KB RAM',
  210. 'category': 'RF System on a Chip - SoC',
  211. 'brand': 'Silicon Labs',
  212. 'variant': 'EFR32BG1V132F256GM48-B0',
  213. 'list': 'Refine',
  214. 'position': '17'
  215. });
  216. ga('ec:addImpression', {
  217. 'id': '634-EM346-RT',
  218. 'name': 'RF System on a Chip - SoC RF4CE Target SoC 192Kb Flash 12Kb RAM',
  219. 'category': 'RF System on a Chip - SoC',
  220. 'brand': 'Silicon Labs',
  221. 'variant': 'EM346-RT',
  222. 'list': 'Refine',
  223. 'position': '18'
  224. });
  225. ga('ec:addImpression', {
  226. 'id': '634-MG1B132F256GM32',
  227. 'name': 'RF System on a Chip - SoC 256kB FM/32kB RAM 2.4GHz/16.5dBm/Mesh',
  228. 'category': 'RF System on a Chip - SoC',
  229. 'brand': 'Silicon Labs',
  230. 'variant': 'EFR32MG1B132F256GM32-B0',
  231. 'list': 'Refine',
  232. 'position': '19'
  233. });
  234. ga('ec:addImpression', {
  235. 'id': '634-MG1P232F256GM48',
  236. 'name': 'RF System on a Chip - SoC 256kB FM/32kB RAM 2.4GHz/19.5dBm/M/BLE',
  237. 'category': 'RF System on a Chip - SoC',
  238. 'brand': 'Silicon Labs',
  239. 'variant': 'EFR32MG1P232F256GM48-B0',
  240. 'list': 'Refine',
  241. 'position': '20'
  242. });
  243. ga('ec:addImpression', {
  244. 'id': '634-BG1V132F256GM32',
  245. 'name': 'RF System on a Chip - SoC EFR32 Value, 0 dBm 256 KB FM/16 KB RAM',
  246. 'category': 'RF System on a Chip - SoC',
  247. 'brand': 'Silicon Labs',
  248. 'variant': 'EFR32BG1V132F256GM32-B0',
  249. 'list': 'Refine',
  250. 'position': '21'
  251. });
  252. ga('ec:addImpression', {
  253. 'id': '634-EM342-RT',
  254. 'name': 'RF System on a Chip - SoC RF4CE Target SoC 128Kb Flash 12Kb RAM',
  255. 'category': 'RF System on a Chip - SoC',
  256. 'brand': 'Silicon Labs',
  257. 'variant': 'EM342-RT',
  258. 'list': 'Refine',
  259. 'position': '22'
  260. });
  261. ga('ec:addImpression', {
  262. 'id': '634-MG1V132F256GM32',
  263. 'name': 'RF System on a Chip - SoC 256kB FM/32kB RAM 2.4GHz, 8 dBm, Mesh',
  264. 'category': 'RF System on a Chip - SoC',
  265. 'brand': 'Silicon Labs',
  266. 'variant': 'EFR32MG1V132F256GM32-B0',
  267. 'list': 'Refine',
  268. 'position': '23'
  269. });
  270. ga('ec:addImpression', {
  271. 'id': '634-MG1P232F256GM32',
  272. 'name': 'RF System on a Chip - SoC 256kB FM/32kB RAM 2.4GHz/19.5dBm/M/BLE',
  273. 'category': 'RF System on a Chip - SoC',
  274. 'brand': 'Silicon Labs',
  275. 'variant': 'EFR32MG1P232F256GM32-B0',
  276. 'list': 'Refine',
  277. 'position': '24'
  278. });
  279. ga('ec:addImpression', {
  280. 'id': '634-MG1V132F256GM48',
  281. 'name': 'RF System on a Chip - SoC 256kB FM/32kB RAM 2.4GHz, 8 dBm, Mesh',
  282. 'category': 'RF System on a Chip - SoC',
  283. 'brand': 'Silicon Labs',
  284. 'variant': 'EFR32MG1V132F256GM48-B0',
  285. 'list': 'Refine',
  286. 'position': '25'
  287. });
  288. ga('set','dimension1','zh-CN');
  289. ga('set','dimension30','05neWM651HK6hX98VigUvJUgcF4wpKzncfMMiTxVj7k=');
  290. ga('set','dimension31','ad42e474-1b52-4332-8902-694262868736');
  291. ga('set','dimension13','163AA125AA96AA68');
  292. ga('set','metric2',290);
  293. ga('set','dimension5','RF System on a Chip - SoC');
  294. ga('set','dimension48','afqzb');
  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/RF-System-on-a-Chip-SoC/_/N-afqzb/?No=25" rel="next" content="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/?No=25" /><link href="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb" rel="canonical" content="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb" /><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/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="de-AT" href="http://www.mouser.at/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="en-AU" href="http://au.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="fr-BE" href="http://www.mouser.be/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="en-BG" href="http://www.mouser.bg/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="pt-BR" href="http://br.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="en-CA" href="http://ca.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="de-CH" href="http://www.mouser.ch/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="es-CL" href="http://www.mouser.cl/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="zh-Hans-CN" href="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="es-CO" href="http://co.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="es-CR" href="http://www.mouser.co.cr/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="cs-CZ" href="http://cz.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="de-DE" href="http://www.mouser.de/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="en-DK" href="http://www.mouser.dk/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="es-DO" href="http://www.mouser.do/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="es-EC" href="http://www.mouser.ec/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="en-EE" href="http://www.mouser.ee/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="es-ES" href="http://www.mouser.es/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="en-FI" href="http://www.mouser.fi/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="fr-FR" href="http://www.mouser.fr/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="en-GB" href="http://www.mouser.co.uk/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="en-GR" href="http://gr.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="es-GT" href="http://www.mouser.com.gt/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="zh-Hant-HK" href="http://www.mouser.hk/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="es-HN" href="http://www.mouser.hn/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="en-HR" href="http://hr.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="en-HU" href="http://hu.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="en-ID" href="http://www.mouser.co.id/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="en-IE" href="http://www.mouser.ie/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="en-IL" href="http://www.mouser.co.il/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="en-IN" href="http://www.mouser.in/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="it-IT" href="http://www.mouser.it/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="ja-JP" href="http://www.mouser.jp/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="ko-KR" href="http://kr.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="de-LI" href="http://www.mouser.li/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="fr-LU" href="http://www.mouser.lu/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="es-MX" href="http://www.mouser.mx/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="en-MY" href="http://my.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="nl-NL" href="http://nl.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="en-NO" href="http://no.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="en-NZ" href="http://nz.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="es-PE" href="http://www.mouser.pe/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="en-PH" href="http://www.mouser.ph/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="en-PL" href="http://pl.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="es-PR" href="http://www.mouser.pr/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="pt-PT" href="http://pt.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="en-RO" href="http://ro.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="ru-RU" href="http://ru.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="sv-SE" href="http://www.mouser.se/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="en-SG" href="http://www.mouser.sg/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="en-SK" href="http://www.mouser.sk/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="th-TH" href="http://th.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="en-TR" href="http://www.mouser.com.tr/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="zh-Hant-TW" href="http://www.mouser.tw/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="es-UY" href="http://uy.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="es-VE" href="http://ve.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="en-VN" href="http://www.mouser.vn/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="en-US" href="http://www.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="en-ZA" href="http://www.mouser.co.za/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="pt" href="http://br.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="zh-Hans" href="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="cs" href="http://cz.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="de" href="http://www.mouser.de/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="fr" href="http://www.mouser.fr/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="it" href="http://www.mouser.it/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="ja" href="http://www.mouser.jp/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="ko" href="http://kr.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="es" href="http://www.mouser.mx/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="nl" href="http://nl.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="ru" href="http://ru.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="sv" href="http://www.mouser.se/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="th" href="http://th.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="zh-Hant" href="http://www.mouser.tw/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><link rel="alternate" hreflang="en" href="http://www.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" /><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><!-- Optimized for speed - Stingray Aptimizer --></head>
  300. <body id="ctl00_body" itemscope="" itemtype="http://schema.org/SearchResultsPage" class="widePage">
  301. <script src='../../../../../../flash/js/jquery-1.11.1.min.js' type="text/javascript"></script>
  302. <script src='../../../../../../flash/js/empty.file.js' type="text/javascript"></script>
  303. <script src='../../../../../../flash/js/jquery-ui-1.11.1.min.js' type="text/javascript"></script>
  304. <script src='../../../../../../flash/js/jquery.plugins2.js?v=3.0.20160304.2' type="text/javascript"></script>
  305. <script src='../../../../../../flash/js/default.js?v=3.0.20160304.2' type="text/javascript"></script>
  306. <!--[if lt IE 9]>
  307. <script src='../../../../../../flash/js/respond.min.js?v=3.0.20160304.2' type="text/javascript"></script>
  308. <![endif]-->
  309. <form method="post" action="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/" 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="neN8ZszO0tyEU5VM2P1erX7aZZ2ljaioD3MJs15/wd6hM7pZ4vzTyaDjTl70UfTra2wHkONpYejKkHggVPD0+bmULiVjShvnSWYo+L8kJ5rz6w+vv6egSueYqS3IhQSaQ1yPcAMjs2T+Mijq6pnROjXme9h4ySzGj2UyVbztrdaICGfQVMjXWLGNA9H+igryspnbkfxli7KMXHdoKFDWDMqc21yzkEGYsswSC6tApXUx6xiynMaUB0DuZCqeOqJUQXp+1ReHJYNnHyOziQuXH9xttBCbksqUN++ibhQL3KOnNUhJ53eNZoYtNH4ny1kfm0+Z6oYJySO1bMr/r2zrCgiiWerx7k838AM8s/ZJ52GM9WCQdwNNTQyYOqcr/IuKVy8iZwxg6etBo1f8wmP02uI/IRs0KfWfieZR4lMjjPVmIsbrjT0ZkDZsZYZlRVN7y3XuoOgaF9XRqhS4nqnp/OXbhrK0JSSbTGeFGByRU+7qxP4UzZPXuFEfzAsWLJO4ra82sY0JvfvgaNZRE2N1k2YHdKn2kGVKJQh63b3ehw9R+tWm/F14RWmlodvazTkUZ1a138o27tUpZcH15x6DSqgJ6cNlQJLLum0a5Eivh6KoQFnDBBepVcimj20fs2YRJc9jD2eRcM9lSB/Hca6mPxYKPSyajBx8Eyo7ZT9GrMI5svmpuXhfCGg0tQc3Kt432wwuQoFQmq0ufZp+peK8QL+N3UBhG3HVHxNhOSFMpqJQgWnTe9VVeXMrxw4nDp8crSCgrdtyAwovgIhHH0d5InQM9UvPTrzyddCMDX9MtSm4KgedVyR8i7auIe4stX3mnJib3mPm41LP7V5S2wlOk7f4N2RmCm4y8TRHeDLeT60YYtOCQ03J6wfFUbGT0UeBXOdjPm+pLF00FhO6l+KNl1T6iPfT8YPooMlJ+E6Zo4E/HNd/Tb7/k1me8v5cWr/w/Zyggk+PPYq0z83hZ4JO2oMdK5BFqyvv9A49/kCvFCfO/9h9MjGe5ZQ/PYfpcepeOMcHa84Z1HWLxcM+scDOzGdyG3kW3FNhU6whTqqS2CAsrfukcNA6yM6IsNqNwm/SgKuYvBGGsP1VKWrUsb7kmhhEP2RshjhPg1sqmTRIGFoZy4sEKDDg8UjqPegNIEhnuCHp6G5wmoB9h4uS2RluEuR5yVGAXdNOVHL7Rb1I4n9uVx8ZsMkjz2YnKKKFUNriXJimNIYAstNgxMw+Z3UjqeEWgY8HBFkmeonxhDThOakmWOGCdU5X/s6VsjHPW3p7fQ530cT4kSNciQbz+sJ5+0RZhoNrLHxtLy4FfRos5nEp9eJsdxkP8cR9jquksE1QmpCxa2WbIkNDNlmD/1K1PQ/Taf3oYWBw1c5kn8DT2KZwkOqJlmcNitPvR0qtVZtUneIRQIaBwnGAYm8t4KvWn01uc4w3eskShMpfXAM4dEpRPew2xxVOTcX4Ge6Jny10578nYhJFwTeLVbas0PVcngjQHxnQk2XwzwOePrT8saRegVwnExiq1ISl7wEuW3VD+yfwkRZzyUinV0krxjHgKFvCBloHUsrqwVO8PVQIft1fHStU6oFIDAMBiG8PR1zXKz6rHPHv8Rz8Wj/5WFs2pFc392NSXpO4fcm0cJWULbwPv/JFNcNQAVI1hCD0WlUsgmsyN+kvsPZu/hodONL8fCTkh8Cxuchny8YvfMuaQ/Re1x188WjH5qAOrJsM0/hkdeQosWLTplAwVpN3mbhOG2F0OGcK1hvOMTEum9btQpJAUuWrN79LLAvyOHqvumY6m8jmyYGDHhXHb/+x8F/WE3XIiqXuibHLC21HdrM+JmRc7FGOOwnvvffLduSVzjESew7xNUtpzGgZP/DZipOURdeCND/GqsRZagdtG4pU8rLseUOdlKzurKrvVpAtE2WO7HMlG9slaQ1JUfcwtJgecPZypwJnq30FTN5mSEWxub7KeFVrKmlwFp2o7O/V3RVO8wssnSLffI/ghAH/goAikfViqPoDjGWltYtvOiIxt4qcMJUjbq6qDknTc5ueEnyvKLIQ8QCQ9y/7YVFiwbpIISklm/nFunZ26cWnybLjEUs0rXFOgHki8KB166GbYutmPkdZHdGQz+uBKMX0AC3xP196s8jyN5aWNNqC68PKYKZppH6zGP1cvAFrC+0dNp9ia7/h+SE7AK2KrtArAtkMJ71dubH7GF0e33VkX6wkyXOgljLhGJ+XTyZ+032BARPiA7FOXwkIQJlWUJDxmbrxbWhJEAGlxWNkD+iZMH117IIo2ACnzijOgfPWNPvQaulexlj6WjEkPcA71O4aNwN98OkaYJaf5dzTb4Ian+EjslKhsMXN/Fjw9YkgVsqjkglXkOwLKR9JSHA6nO+6Z88//ontMavCwYLBBQ+WiwkiqXcRq87vtYVHKCT9wjplg763MHC8/n8r+lBRpTfyk6X7nVXb6oySZTf2N4xnGJpJS8TnafNt7i/pAVpiyGAiEFkMlAl99QqB2R51NcuysrjBMBC82EN8dCBDCFdULYcMy3QRNmHIczIvPz/Zg+oef4od9g39KYMjlSbL60YgWM8WFv08TA5A1m0N7IJuWWAkRlXcmj1vz20lIlKSwO9XyUjbh0PtLAlzNVETHt1J/eipvyoC+pJavNSPJzUpLRb5vpDuP0TaxF83S3VOM/VcdYuaBRjDgMLGFsVyV7EfeIvDF99WSyJT0xtF9nkv9ypd5/+LbYzl1MkT0gLzR+uCviAvBJOeEXlyby+3MsS2BjiMC7/QccdmGjnoajmBEREAmWkv9GDE+LKbd6LbDdo+zuMlLBYyL8J9hXQIVUhvMd2v0BY1EYrQvbFE9WChO/sDChSL6qYh4ouKET4USAEMjllfsEs0UH6166RHDnGM/KJobONr/ig5aVvlZPRTlYXw5alAwjHl21jZDNlaWlJmcnywnMXmLAhQFurA4YXDOu0JXsWlJK0uQTsm26nrodXtomhPkg7MvrSp2L04N0z3lzXR8D/p/zfP9d3uvSE875jwIQxw90qd/qaT9A7uURWjsl29AUtnKJT9i1jZalFUVtdL2t78iaOXpnqt/vMRUmUE4e142oTnXsk5NvrrEjkerxBlAEm/cVpBhIX33my+1YHLZQlEIaf5KGQ0rN+18OAwtYwGiw4B46Q/uB7cVE6QSbRkj3Wg5e2oY+mM0KkjoGMnr0lL6NMVCDhFaskJljQ26+Sz5UC+R/Npkhq0o0BnyVOv2KiJLkagL9EsF+78ZnFpo2pXme+k07CMlycycuyj/nxm68dDhMabvjf1X60Ap/UZlVaR425ujCp9glDkVsblXX8C/m6YvtsQPK4TZCMYj8BpsuxDHGadAz1zUZX9A0XhlRe4IKyXjnIlUmBrMzh8oH9XMgdlkyqK7/8yA76egcOkkBltc9aybTQVkgZXbtNpnRubUMU7/Ij86nAJQVOKQb5BStLzSWbyGiRXjHkyZgEuXvEzP+5/zCm2doH2MSxJucK7PAtMfVeQfle6i70+ZKRGuXOJ78MWlkyOduPGdC8f+86QfbieUdhzWl0RAGwXSpJV33OvRba4vzK/fmqIZdRsoQ1FMKG7gYHOVwJa/HRY8sIGn76uI5Euvk9k2waGm9SJCsOlIJDDe/k1Yo2cPGTTfThIMZEq0Qfz+0VTuMZM/6Jh5grXjr88tFqQHp/jQLSCfHxMcEwNsvoD0foP4uTzLTNme7QEO8H8YN0lyLmhmDVrSU5Vrt5EWdCYT8W42dwZiwYvZtZXOc1gO97fHmEPem4ouh9wXdoHe+Y60T5mwe/s1RLSnk/lzGxE3APeYljjdB8HzzwtKtyKEuD7N4XsEFDrEeYrymCwM828rgOEtvboYRonm3NCk7Zg4c2LRKfgDXrqt4TihaQn1I6OxxNJjjkXLodQSoewNBYFXpUHRAbsfDdrhKam6+n/bNn9JQklagEpu4+OhCaX9mhrWGzPhwSHDkYQBUUGkrCpL0owIOCjcMymszjJ5T1YcmkFmTdztgrBhpGfez4cCw62NhfOsbQSYzrcMKPvnOMIFfKaWKeehlKYaFDGfTWacOXGk9aCKJKLHhcRiTb1l6CFUXGV7n+aemMOWO75+B4vuddrSvk0pxHUlYgCkfTawR3N4j16TDe82d9IqFKwYmfhOkV+XktKAcy0K8r3TPitrUA0byFjhed68ApYP46vjGnA+Ysp+5c4hjm9J2C2Ewfr42fMn+gwOi6WTDiIOh21Wr0JYVFP2Kg35mubJSF0YTmrqB7bOTKrXCnsu0vimBjqpgXUPLfc/RY1yedRopioHLsrT3v6gYpjO5DU7NYSTUjsK6rrfxQFa1bbW9erVREpgYfsrYr3Manr4FAGGL3fcLO59dO6s9uLbR5BNM0aWEhOze95jByQUZk3PBgNpVO8wCm08tl6u/mQf1/J/ea2E1sWb602/zqZJNduCmNoCPwkEKAVq7iT8Ep7SqRlq4igp6CwoSSkdnXGFhgDR+aLsdpMqo6n0Kzhf21ERqUOdyXVBEgBYrsGuzSr9K8t1DEDUHasTrxRXjzDIU6l7sGnIK4LEe+3i70FXJ8sREA/zh3QqsBWWKBEvk5CoWH5z/o7qjr1zUdMd1cl14bXp8VVFBFHy8qFzbOs21kAOqAKd6diQXApwy95acQAtwP1G618WV77COBJvxUu+fDbbhaO65JSv1DeevkvqfE9OnNYIDHC40XUOzizgCC2KzsvK5DgeyMiuCe/ZdWScO/aRI2ajzNr7nmOJii6vycIiK5xJRSbXo18UV5TB5R8zdUiSaqi2BPX75VIhgH2QpBFw/MXdt/aMU+1wzOTAJrfK65VLjLmchGt281HsTOtxSctBUz4NO/2Yuge07D4vb1215ZWWizgz1rvTrnyhn6E4oHMU3iswdGaqCDHJ41FXXFuIGrSTDaKO5oeYcUUUo1VrM6+gaagQNvmJXEzpn51wFJqBkqZ9ssEIU9ou/vHIL6gjNxqCB6IBqcuMQJ1f+842BeFYtvo8KRyn3tFge54/Au3VmwB3lBoh2c6m7k4odonq8dtsXGJDckOz5auIzP1Oe6fxVy/FuCZXNBohCbODlMw2yroJGl5sH9Bm6J2IjR1j/6yl7gdf39+nd6+RHsRpxVa2lJo84LpJ+IS5sXIhEh78MZO4mU9/fFEsdOwa/1C9w3yZP4W56OiOKE4Tx0CJJQRK5de7ZnbH5qEG+LsEbcJQsA/A1nCdUEStwxmjdvK9ZZUUcBt9xwzfLxyzIei30wII0JG8K5kUOrwVHnvM8niiLzLYC4Hq1E/iKaMYNcLocg9rQiua5JePQHe8QGHJzmkuqvBUlg/v1J48mbRing1ag5pyUooWeo5GyNhbgbTiYgLryNGgjq0OhPMiHbHBAtD7X6iKUTRXYAZjL2guFL+S7d4f+U5ZMbi908D+WAykfcf0hGl/e2DL2AK1/IuACdK2Jidn/t6Yd3IovtpPzzyCVS/j5j9ciJ1PI5c6Za8a0VhH3jgQy8sRLlS4WWy75lqgQCujxLIRigLnmFe4w280ttZTW7fBp7ql6s7b9nbmvSNpU8y6Pi21aUghdU3Ete+APg5Q6dT57OKiZcpzItY2ZOEbTltgt1/6w+iyyWIp/zw/MqYbFSE/zR3R/IwKPe4wm4Mb4dRIBKbFgiw2xyzrDvU3AfFyYLdWv0020Ao6MjoSMWY5iTLrP9Tk+FqLzUTOa6YsO1pyWnMcOsOW7/FfOfTvnr2sO1VPi8czVazWfiVc1N2KDEHR5AKFvs9nLK2RRrnrnhGDY4YRpU0tyJ8/nbeUz6lWKVIWIJ7j9wIPRlvF70ZnUKuW+OgxhzbxCLo2cSpO+A1Sf/ml7lIKT2TEbg1ODX2FVtGoD6UxbKHMt36j/9sef057zblHX9rDcs0uPXCKanWh0v3yodJM3lt4QSox5T28sIM3yN+OR4wo04OezGgoDCNkkBmQlUehA8heCkoMRbgrdrdKNzqjW2GAhUmRCpuPgKpvI2Bspiu20K9mea73u6bH5C5UXAPey05IWvswAZohdwZB17ktMPTVyHxSQUjwJZU8zxPp2sySOFSFYqD+32DpnKEyfibiS8c68ZFF7e0MsBHOMshLCAK9HLJ8C4mgmtMzk49MB2Kssh1k7TMq1UqYAXaaOndgKtjJYDMMpTOO7DHPmyvNPOTsHITSK1Ut4UryHqgswpDSNJeOAyIYxnAPTWlRcqEHFzajr3ARnWxYCb0P4LCltWVpAuXGU0vuPGY9jw1wqauDChcWq3XGtxJTxmjpVsyG8Jxaoe/hZ9VKrTP4SgMzX5ljxB5FhfyfSarGZpOlNsITbBqSWOtwzITRikV013jJznFPGAEoO0trop4lpHj+gWxdO6Y6R15IkbZsCNh0tnA5TtPQzwBj5ssKtNcsWIvkCXzGazVySDwyxGfgk1Ns/uqb9H3CvxEnBiOM+nPGMIurM12aJ0mP5oG1VhFMQVOpKz6P2ZqzEZ66dHLkI2DNkT2scHTvZ7cEufucBnmN3Fpm0gleeruJqlJWj+NA3m+LcaNy3e5xx6CGYONEXxJEAGu02oFFZSt6wNhoIfXL/0dmdeU3T3Od10aEElq2wWRPy/gPjqvFfbYtmfaN+//jSj3aa+FzcKqIAR92DsTB7dy84zRJFoVYnvoCeNyakr6sIpRUqwLNKTWU90RJbjw+alZJUTcINJRN7/DP/TWEtBJmIwSYECWDhnaX5HeAlT9Ip+8J8H1cOmDXm4FP+Idmq3rzyKUfjipReTKnzMjRaIeN4RSeVAd4p60FtWX40N95Uy9Iln0jMFu7SBVrROC8c+JunCUGGBjmj+hClMyoKtltaFoysmhrhEbmG2MD07juaU77wkyO03uT2oAEXOPWRhvc9HYx3i5EwQpcfoDym0U7P9M9rDKPgB1mTgjrG8aXrF0Kh2JEIEi0cWjtQEJsdxDqSWGd3zOPt2fWeUDwgNYVWGnMzMJ0qL9tgLkLtRkeGRDrPbu91fEp2bZfLlzw5v0Z2naNhyYV1YiAdyJ7FHMZZeHbKmiaLJBlhz7k+OZV3GaLokfn6SVFXC2MKbscxa+cuHiIZZKtTuSKhglVLQ+OJERCdBfS+TIwqYF09K5ocReADjHegMbrWcwv9mP/dG6MjvmyuEBjQfqyzxCKz4cM+Jn/AJhEU10xQMOrxSiftdwvlJMgUd5EYG+JfShOR32glFVCYMgGxUXFlrXhGbM0OjOjLusHIWSMhtJJxSXYUtmSswHcvy30llvWcdzaF9l4B0bwWkWcdCHIuFjdbSBslF7rsV0iyMMz4lSQ8emTn61hWdsX3O2RCZxdkemmWKSOIg310UIt2nlxynDaBQt3FgjqSKUCZuF8MxwuvJvbq1TZgxCZgIIplVb85aSgsa/J9ZppH/a17UfsLXc3WVdfp5ZueznmpRYQZnh3ha90AlxrPLvS8g1NqQN2ri3EtuDKk2EAE8R9eUqmF0EyvWuWmbYmiauSxrXANymD+DanS77KNzn2rGHvRh3/k1n6YOBAGnNJ51w9GexvpRxoTTxG3hpihD31GwqL62GKsEISUU/7vWdqTAp8vIV7zQf0kPCo1hGXWlGbAjFkYI3G2e6qKz4s0rJrLGVM2DHoCaQxR1mrHN4cTM2RQ5SFl7RqFDmw8QCWGABCqpas7YTJHmcj768OgTsFMjeHoE4lzSZKoa70Obj2W4rrulbXn8wUPOeKCCuVflhqP29lpNnupgdIrnu44TyC36UDjGKR8+VUMbHYv2MhqT7vyOs/KkID9klbfwoXz/+wwX3KTkRmZXm5XSqNibct4fZTaQgM3Rp8Cdhaa3fMvxnUlB5spplUc10VtZd0HzVADJziSvq+ju35Pl/Xz1JK6iTDl+IF/MYFyevH2EONPfsHE0+AZ7HQPwn/dZc3+2dtlhG5oUeHV8AywQhxlzYPiMc7KOf0EGXuZy6EFS2cLNPwCiOEZi84x8YrMH/qg7V0a5ZK+EuRIwR4nRvs16Ecek4hB686ofjVOtknOEm6OGfIuuVWc6afsQTvLW26C15HkXN/uJyqlen6F8ymnYnvlLRzih6Bj0GTZIyYC5S2HmyfWVG9YDNnI81OWxvqwaQDUMwHZoEuqIIE30VFQ/QMBgQbnnoOcw4GeyUNTIFPZb1oF4qm1oelSrcFHPiVY+G8sa5kSlbjEejPwJSLIJ5+KbXngnb0JMiupY/vnzA5le8ZW/t3+GMsAKfktuGu7PxD1pahXJ7jfXnkc7Cw5rxeYT7s64Aqle4pahtzxE0oFvcVteVBqwj/BfeYn2kFcVDGkuQOEZSKWC4vVOQufuMA0KMyzXw6yi4l7z3D1vFg/NaplJBKF06W8PVPATk4nOUGGzf+0ZdrJuQ+TUfCp/erhUyn4GJykezDQ+OK8Huuslh8Xv8T0F5rC8qqXqeg9SUJTRAOBaL2D8YDxlHB/dU4NQV9bjabfSIKA2jYlOEWIzKlukYuTbuldIBTcBNfB81CrecgH61epaMYjW7LNSlaWbH1m3Q6HqMl6JoOuF1M5FgnUvcdq+wOmFDjAcFyc623EwRsrh7Me2S6G7cHaw/is9LkktEUakhy6bgCi6uPnGjoyzizDzDUfml7ZPeY4YOLGXUUWUOEjIInAeQ32p40wZG3DXJCRh6OJBh3w7vZOtxtwU3kH+3xZPwNfS/e9LMOXNQ78fn+zzW2Fudw5a3JIzcefhefyI5k/2rD5U4GFAaYt1u6Yq9qMYGcHtkMB+SklTTQ8GIXYaU5LIqD9tSDDFbXEyR9DWYvmQJHQOYP5ebO4q+mT/zf0Q61eDRfN1UzINrkOg/8N6sEktgGNjm8KkvC4haitUh1+fKonLLj+whM4I6sh8d34ENHyNvTTUhr8rhOavBlfm73CCIEnIzoDsHBFMkdeiZ3f74K+HFff0pyE4jRoJjjEXz5EE4km1pyhP8WIhUVYdqohF6XalEicYIcnchM5rSGezTnB/SrxufKtctehUEqKCt1Z79YkVc9kcBDhXsMs1BGwiGU9BQ6P1KSbuT8qmiYu8rKVrIOOFqrjvR14fvRhYhViWajCGQ+mhDbbDJjD9aKmGopwpA4C6DeFmmMhDV2E7AbkdT7/OhqsvBKsdtq0x9XFQKMMK3lKGg/g1FUkI3akJBnvzpfUBEq6g22CPZhwDqMqmKm0GqhxxC2eIaa5uzZMHZkTyb8i3uEgPE4Ta2er3IejqtVm6Rq99Z5mXdFRahQGmi6mlqxEWS0sYcf0kDUs0dNAuZgNU3hkxkm+7tot4lj92jjrPDdwIQcnlaqaAyQloQl1/b031ltLjoyYkJNbXm5n7wfX/d6SeZp0YBySdFHn+M+pCcahKcKiZm3+CAIYq87MiRNDUcfnbIL1gfOeMjc/iIks9ydyMYTIUMwZUDn1YKr97wzvztTBdqpkPe+AW5EPh2UJ2ygbVP/RjufhwR0JqdEtii6aZDXdBge5GmKCK3D8frbPqyW0+Nwv6ihIxlwx6jyxgKG2xVyTtQVo7a6uiIES3iIN2NFWh7jkJpNpULiCQK4vfX7TVC1irOufFm9wxMo3GVQAiKKNHS9mpwn5CYdy2RiJZ01qQR9VxSuIlYiyZowwUdIJgwD4htol5HY1avQZxvSVPQChMIpQT76l2rN6QTh0TnuZE0ga8Jfkyct3pI24lAT0h5WjQ1a0s+gW3rVg/Lyrh2K/DIQJb2E5/jlucMHXXIj+yqRow3O22vuCF7zdD0WMevNvM9dszKoeqJ9GsJpTEbCbwuD6Es2z9dYMtvTaTAAD0Oy4b+cB7q/hPk6STcohxUD8QUXMWvdJR3KabPqfruFhRgykiqkIhIumxa1DibM0urL2GVdr755twWgtmYyvT8c9CadoYTMwKbYd/DZZumeY1gM70K8Ri3umHBQhxdtMmKWJJ3NDKakIiTwStb7wDOXwIV6vuGWCTuBDjZpBfOhDpn+JVwB+P+H9z8xPHTuJ5cz34NorFL44x1/Csg4FoftX8Fm/2vA4UvB1kn/OWkAJJOvMaIWQpPuv8eINXle7Jt9Ex0YgvlpjRq6XjwToXgMhGsoX3ahlkYWyzr7arsH98EUYUT2BMKvAiaxTzcirrrcMES4Yr+QBPOa1A+gqg52SEkpe2aCUK5Mk1ReLGrXttMgItQzJfDLReEp/HD8RnBn+Y3sSZnd72LtDoFAjh3m7bvDWyk+QT0wHsTx2FaT3PdWEEy7EAsyp5PkEpGxYNg4Sj/eR+qv6Vc+x+/72tD1kQKbq8a9aJDVdzK470jOl0DQ1On+GFqZPU9eTke63GirNZBOFq5Fz3drfo1m9YTEPXlYci531fHPrB/yfF7WT9tCTv7hDp2HL1fQZuBceajsm/TFN8cd5PqefLGTc2WtGlB1czgUAH2ZAeFwxA1WUMW+Rei55AQ17Rp++n/lP3BoaxY7TyNsPvl3OfE4Nh/WzOW6gxup7N12lJ/y7RNjvHQ8UXkg0JIw7sz7lQopM8CKU/E0B7CPEnslUJT7lVYMwogeTHgVXkLd2wwsgjaydgZeiUdV2Y0a17n8xmt5j7JLRjDuf211nnmrmMlIK99J/ZR8DXTuQ9k2CHjT9WSKi7N1lvo5n6BF02XurSaM3de1gzjFKkay0rDQZQfaQje2uoLgdnAl+lDY1lCdcoyhNkeFObwuZGgKLkDBn/yrsQkpfA+9Q4/XjTYagD0JvlkjMFXQl3nK4EDlyTiClPNeVKpM4Jj3fUfAm9P0p7sJEID04O7GaJEAuGOyDp+ivjMr9SxCAuz7Q8PZ5vMja1itBnH4C7MJE8YuS35dsDj0wIVpVZxzy8d+cNIg++3ekTIBLf2ovVJpWdy7P8J3t2wUghUNqoLxqeFoJfuH+i4w7+gOyWVJZAfd3GFY9VEZtaDBzJzFRRPo6K2ejQ64rXd/fI1kyOms6W1BVbadQAU4LfkffZ2qT4W1TO5jLIEi7rTJerDKgHLLf+SHZnpwnN4s+cNXpycWwNYOGeL8a+ezGJO5z7775hJwXZ1Jwu2GsDJtMM3JMTMWt7Yz6J4/YNUrPbqIovwwWiex/zgkl+LmfyDIrWi2dtFlvIUTwBckBvDVL0kde2G149B4kVEo9jgBa0piizcKnNn0pHQ3PS/9Z4xKqmw1rSyPcRoWsjCf96GIvMKZhCVoyL9BZ5bnyAN14pV0V9jm940LCsI0gJUEgeceoQwyNkk5cOXwmiggNxPR6N2lr0CrDIfkmZHwoVo0fWKkMYgWxjSFB+eBflhw3bL+QUUg4LydtNUaQAHKEQl1xey0p+BZX2Fr4Ul1auN3TA5c86yQntRAsuaMkaHK0oOzCNuAt++DWVu60pEZWgTTZWdbVq2u9BN6byScglcFpXocEbur/qi9y2nuqQmbP+iRMEzLD75VJFLchtwKZvYEo/BkJw1KfD7pFFZSec/O8JheMZktEwE3MJe/CSWVvvwFFJQJB9VoiUVT0FKUDRCZa+Yus8NFyUhNIhOkeyWQUDQyZodoCwA43QkI7RW7jM1PfqJ37Aqyw6T9tSOJswGNASrkiDmNUQfD44QZg20aGR/dqUIJB/03T2EBEN3nHGAyy8+apio1S8CgXA1Si+pl72aMbwgcoiD/fadvY+CYF9SMXzIRxE2H3A1t8nhQdc1J1XuAXrPpFyt/c9n0FaPBik2h89vau6nf2Wu6pfdC46yoVqLjJF/AVM3BqTMSnNsrUQzV7tUavSU045/vv2nLEaQs1uYfpHblc4d+IZKOMAp3mxUpskrLPdJ18JBtyyl3LgHTShWb3e99X9AX7hQSKXatFIZ7DsDpOH9kwGoELPUvIiJn9ekxWF6fQvDqEQAl/8p1StWOo8F51bA2Xz1TSOlTqvz8/1G4ge43NDDS4z4VS0MlqAwEqk71fbzCrNkT8StcU8eSi5qxiKyffE5diKEl6EgLCkZdwLGe+js45quw+qhuznAIJm8OdTeD76T6QCkWKTdybUu+wMhfL97x7vVQ5HOf6oUtNda1oIC0QLqXFznu1vDm1hGdLLxlM/3ogCDzMM/zQ7RAllCaXKUFf94DVVOTk31t7NJ7enF6b6Zz1hf9iTz9ErXKcgFUOnG2wv1kLGiiiv2wZh/sYJDoKXH2WO0iZJjUKiqQx2Sn/9Ub9NHjsi8RH/Y9VwzLMWEv9qYHHLn7XBM1h3qabMpzuaVC8ULPN7PATKPK92oODyIjQE6abdsCSUtzh1sVd13Snnu9A7HboBkrPoz24RfOKDZgeeg0ifsws+2FxRtO3QeuZtj9X203wDZxGZ2UdBz4gkztYSV7L9fjSSeTTGRDK1MdGwVbyo1IszYhIo6gfNl5XFEVzkUQ3llgHep62mYLPu7AEv4j4uBY183P95KfaxpvRv6YRC//V0WQG6cIUgaPzq+PPmfR/FUrVv51VjCqS7Ak3rhDlu4uK5G89FiqG3/rRyoH2FiwQp+pyoL5tPzdbKfJOwltivgLFOWKtJztLZc2Ft3FV4GixyinjXs8mg60wqM7ZdCobWzChCh2hClgN54ni4xsdtE823o5doD6uocaABK8y8n/o9zcnlwevZCOiDWSv7HeUqRGlFjZ+04BdmOgQlI3fZlrRDq/rNM+pO6WuQQxSGVUy+iRLfF7+78hjRR7gzIJM+gWi107EpOwqFWxgN2ZXXTL/0AZJgU4AGs6oyi4ebuwRMoz0prGPO3w1Xw2IZo4gDfQh3VjajjzKFL+5UAER/R+Rj6SRiJELijLdxvy5y7sid/9omGxxCCGUE+ESBEt9XtmChuqMdDsQQ0u7vr2DfrYZzHU5iDGtGUs9ye/tWPr4hyNGz8WN2iX6CuSTCBin5xhLA15RAs+AIRR6rbzOeMTxA4kTGE0xIrXolDk6vtUg+9RoVwiVI4tQdDCwbtP4GoGVsLdOI3B/v1PHK2uyCwj3Tg5Zyw0uIfnTDHDwgyG0EkixyoR/7b5DcuAajvb24feEAqOLWcZrJjpjrecjkJNX498duVKmDwQr9vPBf/guaNJYVCh/v/ngu8TRMUTh7/tyyyPXzkfMmj38LQ89oFqiiK3lc0Edc9mKtNZlHsgAM2PQtsQSsrl23mX8s2SwhXV6Why6GG4Z9eArKuLxrlWMmXE4b+0ODLHWGyUK+UoBl5iDYas8OVN8DrJ3D46HqyrNmgQHrFW28+ftN2OZDpqep0mzNLEP0Lhn6BbuHdzAo9oKkeuqL7YIzPzOnXR/TqzZ3kp+8hrue36lVH9WdiTjEllrQ07ZH9DWMzHkj8QdasR44B3Jt17lm5z3vTcb1tHWI9KJRxoUIYO5pSz7Z+fFG3zV9HloWPLhapjlbz4n15vCtDfFq391Y63ETDWtgEEubNv7a9QVSHLZIFxNcCX6UJb+FDsr6B6qFbTFcWdpl45Xgg46Zt1aanK6eHcc+Sa4Hq3qkaoIv+lgzrVMJFWV0lq+H3klmJPzBPIjpvmoG6yb8pZ2GhJPz3U/Ra9qmyLlPE8DrQMS/bh+tpoFr3JQFCHjB5k7cCf0vlen3cNWE7jIKo4+42AJXOAi+eKtmkRtlAYaLhgQvzCC0nOLFa3KeL+bnqFuyHugL7i+P074ubEKxt3sdk0Q7pSF1OlqeDv7Riam9aiAqdFDXrDueS9s0JjXGjOB5NwlPFaN3+5zGPtSILoQuKO9V9/VITLHlt/q1MnIBF/XFCC85oknUFG68C1my7cJlfOnsxDjmve6DQTRujQKqAnZIcfb0Trgoxc3M+K5LjFy/GLCaI63ZmazWsm6r2fTC2UW1pPTrrBqy+tbCJ6uYyz28tbUSKRpWqcNcYHf8Bgvu08g61GI/7Q/29eTFhxyUUC6CYkvSMQb+oWMWUQDIq2AlelJwiEpwadSW5ZnSIgi+E1hva1fdOyuROh5cTCFp6HIsVQTJD6FqGg8ryIyCWZQSVZfK2EZnG5vJR9RfNBYG8032oAlFrzjA+08S4Xmvc07YsEusycEmaX7nUR2TzbOLJDQWFcQFRCD9Hdp/VPT/rKeL09MQvGuKE23Hsc0Rj4Dlw+mZIVixR3AoeKwgmg+tHm6cqNbZyPGPK0pAjGhExFEkarH4/DoHTON+05XwerQO/lFfkC6rvItLxC0WCk0NRL1apE/vQsdnv8urZ60uTS7qwhmDh87Oy0zAJ+T1g4XuUGf3EJ1V9EcO6irZU2Nrog3TusHCE9ZeFPpWHMNF2Oa2DLeOt2WFt7v4OScWILObrzXxLDPkv4k/N5nYVdMBL1XKED9IXKcmL3Dly1FzF4+uOVU7fsD6Bm5hLgYSFuqopEP4J6uZfh5v3yfM923Nh8adJR0pXFAE4ztvCxxpFbEGsGdocCwPLknW7SDWsMeRKY+eThGmifCx04diz7K0wIUdcEEO0VIV8yUg2DOn36CXdUYIKmfARRNTCqjIRCgM6QtCrdhT26HBlQkTa6+vgmsCMz6FxtqC3eKR92zUTl5hWpwVPnK/R2dH0fxEv8TcSrqq4HOUUChM1PK6LcrDRDXI9m9u1MiY5d1BGSzCnMyujLAlhEctb5rdaOKVxLJu6DvfOgS2jmwPzH0Mj+c7YRL+/3epTSyP/92SAyJucWWiGjnCj7seUuXo0/t6d2Fe6lkNAh5PjrcFdigc3Vaun14cEd+H9766I5HEYsB01oirqJOutzXiEHI7gDSUwU0vi5sUN2M18FtiuvNGQba/6aE0negweWWd7UwuHGLw1fSETw6mJ+eQBrZJXnOy5vaYYOLX2AuJF8E6m8ozcYd3LNAoMgDVnS6m2Z6bAINacVhFkEc5r+6w9L7IoIjHg9eP+/M02Xy4cP95gofBOXSxB6MZ6c3gJnp0KGBrgZHBQs4DwQqiTSndf7Umq2HV0sGPWcubi6huEsbgaCqeAaxl5EUjr4fxz21OeBmUY+ADYP5wioiGkOnDrGHt3vsx8JkU76bv58avJDfrAPgs56OLFP1qcUndt0YKOwABUHJDrcONh9qiZ8Gj5VgRjWcYvEC5BAXgRlCg4tZPMjdA0s1fTvLl3CsuywMn+UOZIUJAGhf6C1ynjkC8fsO5CXYEKuuW6vq+KLnvgUPbK+TEeNHkpMPtwyeO1g4QvpPVWtDWIRJLqa7JNQ0Hpk8HXrd87nnRhBp+HiHqAXgLC0k2fOV6IDOeFqFDKy/c6Ov5R217NjwLsyy8P+n24DhI7TS5RXJhTTKMokKc558viCzbRErOPRigsdd2gJVc7vnfB+r9G5v4nNF0yW8PWdyWDnj5L3/9X42d7UM0yzumcjsrneSrM+bHzmK8fIuRZHCQSFg/BiQeWk+S3/V/o7Xvv4MSzKS28WlF9I1VSiBVN8C3juc2P34USNCjzoQzXBUlJ3gb61z1DOZW7qeR4GAjj4qofcKPGkF+mCETbJtOsv4ZKAIh8fbdhXzZ3WTUoLxsGXViltYX5T3aBwdhihDJ5f7Z7PF8YKtLF3GuBhlTJZVzDyJ225SpMqL0bTPWpC9fd9YmUygHyXPUm3DjEucOtUHcKGTsGxVTpj47Yqd+bCMtjgJiefNC3+BI+KlgOtVCIcA9At30SauAs43+zw2JahOuQ53dgYVFoOXi2OOeyBI8wZC2aaX728x4ElgbPkk0UD9LSXSiF0TglPtE8zogdT14FDSir70cDH6xl0L60FNIBgTPbjWylOJncJvsYCR0cmQNQKsQ/kiLkm4HVEz/eJ8i7DZgnA9TysDWLHz5kxLdFgTJifvZjyum0LzQZFMcyebEgBHeNqpSpq/B3EdWIrglJoV9PzAP3MO1s0jIEvfojd/SGs1ATe6reUrgIkjYczaEhVpqH2invHNMwB32xAAOmgS6tp6NMEgys7J0fsXE5VdB+kBotZZ7o8cD1B0ZwHIL96B+rURGa5w+4pamEpj648JkHiuiYqIyg1eT0f0y5ku09P3dLYjYjQk4rpShSrgIpuT3f28QvCNWl7UkerjeLctz1rp+B6Fl5IOaLmWHJFoJVCdHyPYXHkU1cU6/mSGcsyWG5EF6T4Wxihxcmgq1ec09xf44R8rig9ZFCdVstBaY2d0BbziEDNKih1kARaeUBJ+0JuG7BqyklQ+rfU3xClfACRPnOOFtCGdShsgY1SEWcEZeP7S1WgLjaN8gnnMwQVW0Svp9iYrFzCru1/bHGJtpqEOQUXxz+jlnuIcYi+kblur750vyC1VDHVVtRe/Nq9i8tI3bvYGR2ELJuMCE77b5wMIS/RCpOEW9NUq3Jo66vSu4+6mTJF+4NXDFdnhpYDhqOptwRSAySh0YiRDuliyP8RKyMhsuZIevh/7O0Sb7iUZYgJD13Dz7by2/rM8RTJkvD8YxUcRgBMmqUzWN+Ryf1ZSwDo0BxNYMxmw0NHEcXPtLLIw0ZgxIFKM6me9zNAJOs9Bwg/iPsXcx8UfjvwtufJn0QAii2u7KweNbaPq9qTLR3jqh4iO+As4EGNfAT1vLdFLGK0bJEyWOvNSGBXaVB4/P/+ravcHgmvjBSC3vt3rV+CR+NcV1zB5kd1aI+B8jspuKDIuPHpDYpdZStwtrP2y7H3syQpppD6r0M2WbrA6mlyEBOtRjg8qIZpc31ku/FSy2Nzf/9CgyYLwgDREJMnVsv6Ms7CuclNWPiE8e50HsHz+I7W3QvVv2F9HfH2uN2Z+3LvmVvpkxeZ0zugK/rJM3Xfwsvj0Ud9EK8uDyE/F07qDjqb8PVVrALtU3FvMi0JsdhVxRPSQTFYaSQDm9JTOwXBytOgQeezjE6mE9cHr8zSgujI/JEWQfa7KLqTo76Rv6pW1n6I2FthGrlzBMb2dO0K01UXVuAt7HKu5dDpXNTUSghJpid+B6wqWkyAZnXDKLEkjUlyPUBXI8V056UEjNwxnX8H0QyvjN6xFlyb9hMAHCItHKFqlLLe63FZwqDChomwYBB71vGAv2j3lsja/zk8WVj4sTAVDrxbSFv8b7D/nA24lCpwrehBh9wk1OgnF/icXgoxLFcznSDKzeJoaQz5FGhhBcWqmDYcOFIxZE4sh/wSYmZR7LrvBVjzBhrzWcuTJeW9QD2EtZvPOUaNZ21+3bK9KSy+09qaoBjeudqCK5fy9XIXNELeUMYol+Stg1q7jG5PgWrP8LoR+O+5RHG38ty1BlPQL0fmBCytSZyDmS7ARLpchBDBAq5N2dmpVRU5H935DBYlQNwoi40eUkztFwJjLDz3lQK+1BzFilhzVlPU8NupwY5hgzTqj94fm8yWzZWcywTfgE5NNRWShuJCcTPJAPkH0xz5HnY4FyhacXVS1tHBl8Au8KSkGTzmc/gSwMa6aaN8L+1vH8vZlNksUC3Z/5yqhMD6M7W5qBdt8P5WWto+N2Jyh9MlDvMGLXnrg1WE8VzxswBwat5Tdik4T1dKObeKvdZ467fwwdRlvI80801LNaudTmcvVAAGUdSXR3L1rBLyZYn742XSZrOjL/y53iob3dIQ85egWrRuw6msKnIsZUzil1FIJ+RstwiXTfrvuD+JpL9ykPTFjuW1kID4lclZrtyRTaYEndgKLoeRPBYM1YYyvgV10U2CmPvSLx/wd7dzLJU44kl9kqWsJ/lZaZib0S7tfHfhxqfql8CYLzdBuXf6kG11MXZKYf+XW5g0Hd1YCPUg6sR7acVVuhI6r1n2INfTrSTfIFcEN3usg/Wl0N0s83tWBDtwUimTShgqIdWy84Z8DJpL0bP6gQr60+gdh+EqEERRH9Whdn01eVUFm+yndpi9+VCYdSVGKVlOJTuC6Mz39/KxOortHx+7FxeE4cI5Uj8hoM5z0KTiKYi+Bz0HRQGbBv2E8zSnAx/Q5w03HSK86UwAtEPJ5ikaUhd1RBB0sLA1uymGBHOKdjZEl7E+aZbPSM1x45VLy2Bwtz7chGnck7/0tsIBITTkWNdY93DbyKD8w2z32IXTdjyE/SPDe29x4KE5IvfJXLCjp6m5sDe5uqdmt0xGBUPwEpUBt2OTvSuDxR9+TU+r/vAM8biAUroTKZ4HestRE13OJb41eWsjUFBsu3Len+OVGR3J7eWbOew+1GFWlParSro3PEGlc9WVYZLmH0WAzy4MAhYhrDnTgOAV+f/hbbAHow+mm+uigS9GLXsoxxm649fIR34XTzOgNeZ9Zs741/2blQMV2h3Y55QnxKUgO5yjPerc5WrkVXIbFp0ozZIa5hJ48zAG8x99lyyNzZagMFvda4NiHnsgzj5yXcz1375hbwZEDtOFPObW/5OhnzHCCjkqLQjhXTGiJsNd8zBkKpstg678rVHuv9OnzzjCxK1yzhXhJgjEXb5f0YqHVWosK6/U7MnGgUQ3r+TC/1nhjL1SuXDtd0D1rcEiAXgM39Zwa2MDS70I1kNMUFD3htjXlnSKf/xWs2sCWF0jW6dPbyCKvEreabC2rsCN/GJhRvMTtdH8iWe7cGIi/2/VIzCnQch8E54J0eYFKbRJbVvzg0Ij9Zoynvzxh72nkV5yUcS2a1NVLF0ee6iNlJkikb6xRoHHFD5xsbHtD1XrnbvsOvtb5ixtdzUemIFn//5dtCnMRb/1tA1LrH1oQ15cSnG3Dc6f1d6ZFWqLavSECOiTeMGCxq93CNR/eKwRA0tCmztYGg13cjgC4N9S5OR37rWKZgSKlJbVB8eWumVAmQAaALIU380ockLsLCcL1Xuy9Doumrpk1Qh2+NqKk+ySsBfGh0rwCt/VB7+0zi7p1/YMnFMhEQd9xQtCk0q6PoGF0l/obKxugGJLScxmkrdrWgSE0mwgFf/zo+K20x7QcG7ijYjiG5MtowdLTR8nPp3whkpXhNcu5sxkij4XACv/Xs3/mFZzSs1S2iadvdSDOMoOBArEKadVmyh2tBhixV6jrkQRiUuSyXyXgyqyxH1fmR9oEDlRem58HtuxCAIMQjuM454aXmABR03HEUyImNPfOaDX4qXRHD+o2EVsybnUrma13fdY6inbj4TlmENdbCXrdk2VM0lRjZsN8ZidSORgDdgRWiDYRJjclbnCo2PeS6L4cJceP7+svJUOJljluNZZ9LVO88g+7Tx8UYW0iHJ8bnG2GRJMLfGH4boj1x8kRGzwFKl7n4I3JE+G+LxwqhKPlqcmY/qwxVw8Ja/R0snvwe6dAZcAK1YB+oCO8HhD7WmBIMNUWh9BoS/7CZLHzfOt3JBFmVybkB1IVCSDq6SnCIVLEu6WDMGYkMdg/r4hg7UF+wupy9bswqILxCxF6yqpcoixaZ4v276D3DGbltcB7/sYYwdo9s7BM6qHLeAEjMfGtT9CpFqDGO72D+DHa1Q2kT7qA0zWi0Oqsp4OjbS0UCVRaIACDjdM/u9Cm9B8RHO4nQ0xl/rIU9broLxanwzbRgIunmWGfvFUbn8+0Yvgg8QeJJGt13b2ugY8hx//YPaQEXgzHUUwIFsOEPJDaQOTx5k/PDSwWrXvJcMVOKoW7dPRe8FG5QJeAK09EDsXWSCEQr3FXWGhExYNC444nEAxUqBXb9Oz1u/eF41c4pFAHkN4jnZ001EvBeUtJtJFK1W8/eINBEfdGhb5SFPIQMb6F2vhGgmYxTf5v2y87mh+fDy1BEkpgDzeOFxYX/vLq4QdHmvyKsOA79szEPEOCvcVGsAdWGHl1zqXNdLHeI6mvnUs13G8DQ6MA9bCzRk9sXZkDZZjmpln9pC3JPPkaE1r1WLBFM6hj4ckXkxzGc8kLf9SIMa5WFQWEMCdYV84rMAcf+Sa+A1WDfJ34i08+8wVkdhdL4xVkaQw0J/SgIq5MElcP543eSNxuwepajWJ6CsqIsgRmSG+KuetlXTr5cR7RwKKQxd6cTKxP1zuv3GXBlE6efdkzA/zmJBAI8rC/lYor/wvdeF/b1yCxgZJucmta04gq2GSx+iZ6egUM09tMXFIc/KsP/SymTH446UYu2lX/RpsVjGCLrhFWXUB7DfgUKb4htegM1P9AAMW52CsLcMAwKk/yKKVSCPCpwlDGs1gTvqhXsFA6iq6etvpaPwVJCJ/nX4kwa/CupUX/Z6KjNxXQ+O/KPjkiwIFqjvBmj7C+XNUyTkHK4iBRqVgTxAn9YJXJVFGGPcr1u0ClQ7q0WGFpBabZp/b/kmJAKtdRynYOjmLsV3EN4MrD1Q/rXOLDI3uvCVwauKGWxpPRNxKuhz/3csRORZDOaDvRTc65+ykptbFm6Ec22TMjg9K6f9AZVeFELUYlskoPi2h/KloB+UOJA4CDju7oOsCqr37XYObNy+/hVLtdSbd6QajsBasbZp32XSqgdCF5ESxqQHCTjFMJEQey1rVwoZZWoPhR73dzJFMTSr36n7chPcXaV0mLYRGC3+mAiCpt2JBypKBov1AYg5NWaDGLkdUtpy5eL20QINSFW3czpp7xP6UioTJCKhlqEdTOfnkXADoEz9uB7tZnnAxY7isN0espoZEGuLNrmjW7mZn+cRKzTNs5nycN0N852b6q2GJhrIFAKKWXkZMrF7+ei2DbN0v9ShI2qvkeSZnw87g0de8Xr0AtiWj3YrOos5bOcnrk8cNiyTAdko9Ii5+uJCMdBJVN3KM+aqJpAeca6WCXYaA/lvdFA/pTMVsCXobPY7Q1mZf+ZkTeaFtDJyquHoyBJqj4CvK6vGEhTfNtADoRPv68UpoaZtBfOMteQCV4VHbCTC3VkMfazezrlnNvzevQpoguDXgcJnSZnT/gwlwlaiRe7onhyb+AcEvCt4879W/uu4jXYeXjvD5t20MGgaxpRCvTDi5kEb77p9rILhD7ehwfjGeqje879Sd+JAiJfpXKh6lYZMEc0eewk2Sr2hQTUhlSsi8kXs3gzHhhaXQLjR0E+9Z7pKDVUHRrkqiyAhbzOjA9HDKPIlmXAKSrvC7T4AcxDNRmDBaAqv/snBwbQ/BgNZBX4Rr9BBC/+ohSfI3yvj4Q4PtrYEPMrHUxKnLH5OkJxGkQcpzVAjXODkXcY86ZNYEOs5G8z1XcSk4+gF+pldFhCDJKYkVx6N7Rhfiq6DeUxGVAayePEOxH8Y/kL8HVRkhi0AApwG2mydnWDAtzzaZFtrwnOm8TrlcKcCYTgd+CEdyeN4qDyUdk0i9Jg7OIhUjY69gNFYI6yI6J7sAmI/DWnMDckUV1IgDh+TvFvFpw7L8zZvHBlasQT6JgkMq24bmxqJ6Ei2dGvD9c+bIKELSOARYDHQDSdg1QBaFfWzkbvftTJ1O3HL4gkeQHRuoZlorgfog/RlFqZtjeJY0V19uZYI+T1oXgtjK7vxKsPF3Vv5HMaX956MAx8EwkRF4PH3YJN5G3LG7uPZcN0kpKyp4RFRcx2DCc0edADqFH7ffB/LWRawmeLRPKI/QW9caO4JxiN2uYgkGlOKy6M/wBb2xxhhfKRWet9v+Mki9Ddowfs3IL/a7XEAwJ89834dd6QOryfAo58DOU5KU4D/R6redTE1JanuKAZ4ak7SEkt5neOxA812Aisabj2fnK4tcin2woqoKVFVNpKlv7OF9R6602tBRaVvuxNdLscpFdoBngr/P+sDsrSiC9tjVktFyEgnG/aGWxQyoobue7i8e3WGNOYL+CydTBfudsmOTaa5HqbIuqhz83dFCamjjQ6QkOWh/akS3m+oQOw2uyBTR3LbfqEH5IdRKBraq+JPNNyhhmR2Ll5vLvfTYR451lmmFdZcSp+4h4Pl2z1vyITTRBIednEaayHxa8DO5g1ms1pcg1iz4fhPSc19xmmI/k7UJ0M/sUXjDqoV0+Px03OQRTYCRBDJALEJwthv36WYVJHXuXDaKRE0k4tnh50f0t8rZgFJvqtpreZA4uGCySDkaRXwxuV2yZNyP6c2UDVKTivVP1gExQOlIXu0d/esmAoa4xxqJzUxKZSMH6zTc4Ms/s477QYQ1oyP81A521+/AsS99NIUlhMHpZDvoAoWJ4rGYyl4Xb7dqR+w8eMuph8jlZnVOqvt9lLKTmPa6eM3WGn7UNDCxWvT/ifHXq66ss2IUXZhUKWbMR4MGH2uzseXssLwEzDMX9UA5OErWtMKpgfJlYN6KtDPb5aYyRqK7qS8ggBx5/tLo85DDUUy7hl9Z0HhuCLp1bVETsn8d3j+Eo0eRiqk/bTPy1idLrRcbdSosPD0SCQqjANYcmTzCkJ3uLbkITdprUkgdMps6UA2kHCEMrTVJjvQ4KFopzlmdeCIyp/MZqvn8MNgjkdIlXYmolezFRbppUGwpiMIEM1mg64B79N7QWq7NJGUzEwnhCr+nTFrYqt46HKDHcLtsdhkTEp+JMhxEaElH/FT4OWFY1T/xzKwC35gZXiXOO3KK6FgASkBFzeREgaPU+GFVWIdwrWMBNSzv2nLikG1SikmRF1kOo3T2h3K6e3qe6Tc+P6dKjneqrIy63BJ4sNKOOKlozzBIrnQYP9Zmj1bVOlZO7QzcAfMs5pzLO9Uptucsd82kHTy/hghthRSyXbwmdkrA/COhojBkxyMk4i3pttiW65Bw9ru3jhTlW+JTQGffu19Hg5BpVM11mry9HDqq7dFL55HAb9srRoPydpCuYjnOoMWJyWhBmO+QdH/J7Pb5z263vPqA2DVSGQBhroEfQoYJWGiin8Vs4z1da2lKzREmfvWtxuA450Yvfy/KwOITL5Grd4/gNZ8s+09rQiRQkoWAqBrqKBxttG6sWNvT+i6IiKaIUICI6NsSIDIdbuibobL/BchX9CAc8Bs2cmOr9VltrFA1rtjEFJfww49XQ9RiB1bBw6veSxUjMNklKxXeb0ADIHKXNtENHDs+1jNREUF7DIj/t68zRideKRKJ6L0fLEPlzHOsXM/vJIMBSF7ZrOJeVsyDQYrU8VNqSuN1qWprkNoXwmyCZ7Ao6ycgcVkCYTuFfwQtHA4vKDWQIgu39Q7EnAvS8SSKv++j35kQcMwafGcoV+qz4kvZ2fmMSU6k+zInlITNVfxwQAixU+7+Pt+kfaGnaVU+XMkLR4BEw/mz/bTzpYd0tDfPVhZlUpJgwtAt3ClsvLP5vsrmbWT03K4CC78jvfSVAmPsHv9gVS/e4moLk+6tS8G5nfhvbL3OUL23DPzN1mdZCwe1+wcvT7RyL8MN9O6oV66pj6Qun9UDOd4tnslLhiS4BuZ/EDQkAXj9pcd7oCgcpZiaYqs0L/23dBLJNvkaKGseAH0XpwQoR+8KIMw1rkTdxDUH8bsaoMgGXr5NFmTS0PmcB4QJoXcOptDEsjZCff/kHLu10yDUtk138Lw3aUPQjPx1qBR/yuUweelYDjetk/q+LCIJ0u2OWNFaNPZdtsKTCEdcU5UA3DoK8Gnz+P/H1EG7wGLHAXzB4TiWNTQFvrIjwRH4/nPYlXmXjIg5ikTl5WH+Em3pscks2ks6QqFAGQ1CRzFn20Ub0ykX1iItz7/bjTfxVuThPcvVaq7BhhOwG2jDRzZtV0QJTue7/V2DuWcOGtMJA5X3qftOCuVt13Tn2TqdcetL2yMD7YwSxI9rmtSm2winBFW/zTQa6pz0fKh1zlqsZmpvxUwT62BZ+NEMpQXca3lvK6O6pdqaENJaw1L2uNl5RAfOZqaM5YCehhi+PeFZz0fLaRjbBTveHbVK/lOufJ0n0frYO8bcruGMzcPXKQyE4OXL7+oyfR7x+OV2qNY9oXYGCCMARCPnCOKtmrazuBynF40XpigbGHAxYa9+rJIVgth4oUSNemwnX0Af9en93/iW/DQrgDa2iFtHzliqAleFaKCQdqPOJMFVO4BLcSUJCPqATZ0FUebymygVxhesQVqWnW2U86Ln7LF63pvcBDwFNxx/xpKUUq0JsEpEcFjBv95b0W9XY/cvAYQu+zETf5WEHkNfT58vLZ1F8gI031jcw6ToIhY9vgMQLtWbGU3+/FbyUhxCtn5dExFTCux9AuuD0tmPp+XwEjg48f4IGoiEZl7Hp0U0YFCEEw5GTJVgfRwCu0dd3ZeSdYPKY8xC8AXMh36b7vpid/EiN1BOhIthfSbtPUL+e+aa+XcIN41MIN2MM23SfeJxhKeZiwXNu8sxf5tzBchrynNIunKQ4ihPRaJ36j2geyWiByl/Kwk1c/PBne/6LFRRct4asvpvOpWY3X08sCC/0PLvKXPDNpSPH+wfXUeNQNXmK0h9WcbZHyYchltH03zNkVEp8QatTPbol+FFnq4wjGdoB9d7QjDocuUdVb68PySyRPWsLfSzO5SGy9GSRMh/K4tQsvhSqEvg+jea6AgnDSaSHgJQRRXi4h/v+HZWJTnocQhz0Qr5x7yeMAbJvYfA5hMtjGFcJinE9ThsU/FT760zJxAF+pAqrPLus0jrnEhtrjoTmsvAKDe53+C4DvljA8lmbQhTASKX68nnjZFz188yNwlHsc3AY8Y23ZHHLNIBk+N48wuM5BeTNtSXJ48cz8LHxP57H2LvdeqJWqWyAX55yX3BXVxc3orO9HhMG2ZkfOC1IgUKAmfzxOG+O6Ox8tHTN39RmSRmexGjEeJHtQ+xAGa+d3WhzqhGoCkgVDPjhI8CG9IbW9TJbUoer2Z7cEH7hW0Xe6PotyVKsC/g1NFtObBQSUhXy1V4DZ1CwZmFP3Ha333DKXknFWzMdw/P7qLLNvcQ47ls+i6/rRQFBv83JoIWNdgORKzGuyJlF3qhYtz3W6qqZsf1yFfmmHvB8QsrMAc7Hf/wz4q79j7dNC2Q+R4545tykVRgI2kAt6yJO1eoGWIBpTsH73w7v2NsWJxnzKiy2OvNN2pxLaaRilaKmqLM30BcISmtCtaYlW1fZdR/q9AW/+mGHo+pyBQslQpgZWOuQGTW7bVeMEJvOIuM570AaypagPs2L9JRFJnsldymFaKVDw7HDiIQXSlojy//RdTLMTl5lRptbplxA8pTHWRaQAEByvQSDVIBXvYR2rvWYzhaCA1L4dZdmCPPY6qR7KHDw5l1oPWpTlS9cCZuKe5IbAE8JNuG6/J8erpClluxtBUHDcR/Q9Bv/79uegiph3HEEfJ/m1DENXc4imaoLYwz+JGw6sg5KO08uphkD7PX3UWTpPNggUwGQ00uTDe28lErIH2RiKLJLNkUEGoXNbZC5AtheTJwAaDCvc+6SfSXYpG7uOONByXTXMmKxTcftcSIAH02t4+UiIeKbRG1kGSK5IizFnP+eFEOH/IVqjQSdHO67AElmv98tbWSt3QkEgvMl2wSY7Z0uGEvLHtQnmhQ6+yeYbRGpl5DEgMt5aqSABscNEYt+PavOA8cHUOFS5yZG6Vq0H/sKdTJa2XUbsR/y1OlhtHfRwUmI0kie+WItCcDNzbdIpq67HjIPkivDK0lKWAxfezPtsO2mpjf9u8nvIaneqWEXmSUP1maa/JMHJ9u3qRzN87raSrOVL0cUzAImtfHUHdU3iDcBrw051jG71q0Qz9edsHtia+HnBnxTdci0pJ8BBRhbzATxP+quS/9zTLmFumC/sCZqSDiCuZVoMZ3M8S7F3LWw2wNlV8U4Zwr3xIt4f+RIgQbkzD4PXHZDgUDoJEPeeE96kemRRW9PJ6mirCxkssMnx1PBk1AW29t/EHecAmfVXv9sNvoBZzNU8w7uH9a6DtZjt66Hx5DN/urVteLeFdJjGbH9ZcG6PKhuAGKweYN/KGtj/DqUpJRjhu90enHB8cGH8vDzPMD3XDDIgv/Jf0q1+S72YTXtSgEU4qlPJMxlkytQeAQBjkCrU32UIeewJzMo1NyXJuX56Pz2/x1gC1tcWfK8pvMOL3Oinw+bC4+EUpI/5eQ6nzU/E/tB7MzwrCt9OKcGqsvQLqsIxibrKKkyUg2jeMVR7vKW1cdhRfvb0p+sbe6sXK7HsWMBLN9XTCD23HDVsK9tBnxABgUycIlx2nnEUsR4PYexCLQ/SwJMVNWtmrvIRp0AQp20SeK1+UMghKZAHDFybVp/31qCNblLULA3pE12RDDDCz4Xes3KfL9wMZrVOfthyMPGZz/NIQEnC5CFN2g1vuHKR+sfHK+BBuRbXlLGXvljy34n3KjV0H2My6FycskPuW1dvdf5x0IfV/I1wuSKuOcnhosBjNjTdxd3EKRypBdwrivj7oW/7QHsSH+Zw4q5jdouE8nNJzr8QzJIuRQIdEWQtxooCTCLzWgPEYoisEefn0066o/a+T/PQO/TajkoltHbVLmZALYoNM4znR8cp63/TbaXjjg/c4XQqlMtp3K+ao/CAkiQE/PLxaS89DWYhooozXKOB1XPCtuvTSgcU1OwCMwWY8yQbFXPr22AhbC3skqftXKW5xYFmeNvI6PF7N0eQ9Ob2HlmFsmtqLllvU28FG8D1Uyas7xkgjLCfRAHkElZyylYUJBKUYoQP++nnOuhOBkyUc1fyYJurvPCRGLMJzyjqm7Vz3KBHPSO8oVAlnUrlowTsS9prikmwx7KfBsMutNogBNLWh25x2gJTHwL0gFDYV4QAa0noAfFrCPAwb/mf1Mp8qvhZNFbDr37Yx1hqq50I2G/f6E+4HBr3VUCcJi/6XS6u3lrzcgXAjWkVLKBBpggWZixChz2U1IeoM1LGwON5KVdurOzmQCZ1nfqvBcQb6aUd6S2XZHZvShGBH6T2gNZFa8WQQT9VFJXHXobSSOPH5vBFElbLUDkLA64/ppqyLCvRJejfhrnWirdF3+YQSkcxW0/Hsbv3ZFoLKUtCcf+YjURAvZHq3IFIJiaiL/n3CTO5F5u6JyD/eotqVwgOEXH3c+1KDTAQhke79tgvkGnCMRLBGvNApMxoUvicqYkWcYzvOQVlmCv/FqCex3Y5n2bNWvo2SVNyIh9skRq6pfXkqSXEB1D5M+6ecfZ0WMgvmAHRVUgwx7hV7zkwSZtd2HNkoHT9nlySWzs3sjoHre4fp2SA2pSBJxY49Y/8aVoMQLcSoVw5+cSOWIidPlmuGIhtBVv6tiUKSd64OFPo61nVEMdwSLFGgctXMK/sUZ9JcnoMOZup8CcDokL75K9f7bAIHp5WeulxwwXoPAkx4CS9/noydTD1S8/zL5QoEgQ75N+CBdS6RlKa5kbD5C5ArPRbrKK706tR3VmmRHnfQCX3kzM/YjM65Zjk+fGL/fqt88N3a1I453Oowly8BaJDDH2WFlppF22yWvBVr6KJ5cbgRJP5M04OBOHv2yCqFjZSaTbNj0XSBx6HcB1RwTxqetczGNcujuBgQ3aSoq4gyzO5uH2WUxMb05ZY8BQRIP+VZHytakTLZ0MyOgLrVFPFqXUmDMSHLsCCBT9cbxpmsKziExfzvOac3gYIw0luBqJiRgdeflx1EiKLNwlaZae3x/4LACewTEcOEeiEr1VPL2PX1SoimpK6+4h4qEw9Ob7d4FF3jgg/BQRt4VCiQ0TnOOYGb9IKiAIIfqcwuF7u6Iwg4pIOPcByrzSazh2FwkexjIKT6zHzghAaHhqvKvtZtjpkfuB/5aZxunYOVvK10kXscsV6Yq7plNMNlh5QN7lNiW2cd7whpCZUtNuN2e3TGxZzFPgfQu+2kpUzE06QQvHvhdPSSk471R5rIN89qQZS2+2Qos7/77zh0DmSb3RUve8hituGyTUzpNOYKMl5zYnGEXtqa+nGFDKkAsqBZyRq1bykpcAHQNlh+/RYS2Bt11pr+06AkF/LSHjltz0keCJ7VX2vwI3ewqstJnt9188Dz59M0Z3UDw7pcUfb9uC5QIBWEuh2LG0MOcfjQPG/zPxhjGw2r3AJeDoM94pC7+BRbme/8P/ffNHrIr2k3Hg5dziW7mZHdv/UobEgzsTxpvVUoiPTW9L8HsABRxpYI+Lwavq7pCGkTmUh2uvM7VcyE9s/TiErae+jY+OfFgSu06GKGEvG4lcZFKwzSVv2B+wRFdsX4ESbpUofFDq9nLRkuPqyZ45IHbhT7ChCcFnWV/we2L+K2durIS1p06Ey206M59EuMgitX109CkYXicKJL9qfZFL1tLWPxtJn3+Nz8eV7IVaaYuL0lxcG1LKSgckfZwWF7a5a7BUQSevn0p3b4Mqa8ll1aqWM8GPBbnn68ZK8VDEnc7pNqO7zCsd2N/7WQeU6i8gF8Ir/YLgdy/1vknfKcv3XlVRZ7DDGWYBDbeeCBDYnRe9AtRFNcULsI43sOX89WKDem02LynARrkxV0ajPWNFD3Ozcef1Gd3QImHt5k64vmcbnkq+25DaovPUaWTBsZaLWRmAmbmeqtF+/Axh4OGKU3nh8OzIJ1KdpxxSHK5P9iMSDOkmcRKXx1L0Y6Y40639z64Sl6DCoJMv8Cu+vctutOXlawAXNvjnm5NntPg/PZaDtBoYaKUyOob7mGmjC6pheYnapLj31pedjQ4u0LcTudzF0+pKaHEkfPExGINcxoX80KJpsovFWdXICOTbuXphdw1MlEChH4lVl1Ip22p4PWEJ2XXh6Ku2Jbow4r5qYtf1H4S9sVuTk6uZW53lExudotmJyl/XcRqbBjrGv5h0w4QD5Lt5JQDc/R8Tc0yG+blDBBXPUm6Q1FKTVmRITvMWe1pplpnKqzZ45XZ2Y2VOLsO2qDJKgnBHfI8UAtL3pl6XUpN5Bc3LG4Gya5n9S8jRDzcMVHfJhGi/rUErXVxVtimdFEcZx8FcqZZi78SPD+EM0nGSBXDA+j/16QdXdNjKgysWu1TJTEa4yD8iq1brwk7uRugJkpKs8lZgFArfTv5zcOrlzkCKbZELUwdI4IkX3NvaMn3WXEVnnHhp3Xt95xGQEC4jl2/Gndqp0k+NOH0W2sL5agIrKfSXneMShlccfVtKODz80XTdUMWRvR/hOLhq6VKOcxvkT1B7bGDH1r7/8lmZxKNXcot/eMTGRv80Xb3AxL28ZKXhVmB4QxqF3PGW9rJLwr+DCagybdQDe8DRfagOQZGyzFn+FRzYuMriHRbI7E8kVVbRl57FH4d3NHEjWGavh1T77BzX78lsp3QtN8F7BiUZsCW9qI82qPtmQL322OL8d0Qs0TiG4P9y1czlD2Wjtn36c9h4btvFS5AxKGS84fmJo9kebW+KSeeo7XeSIGo557R/pdSvIhryF0+Uc8kEDSzXenQ9wsJlEW3WMHZuoQ616RgPszEwqrLS/t5Amdw2tD/tS5+7eetYqt7QlCYReItN48Wt9sWz3wMmUXR7Osrz4aaWKYhZPBJwN+iM8Kyp4iAGIEu1lwmGEsUUVqsnZLPdOV4xvbdNVn3Avqs5AyUTeUEXyL9KhDZNcgegl++Q8d/0BPtwE7vGhVjbzWWEbKEOeomNwCHw2oREUMJn8nto+E/LdWbwfabvxQyC2xWVxpE/CAvuQKbid4ijms2K0690zrRY7FXXij4YRpCdWUsf4PF4LSyko782q313tNflMNp0q7Tq5e32nJjuJDlnyogx0LUKY+k0vJqDVGo2LAIwqfIQUmvmuxekbcOrV7YOh7tCHebFd/+I89SYnxAIWLf/iP8luL/KSDJexqCx2afzdn0Hl+6tBGEcAgHszJePpfU+FIQyUtjb04Du0h+31EUDGcS3bCywxCpP6nOj3gUQH1gHlTrrni5SfNy2fvs70udRfl5lM6w63bYRUmpF3LayKy29If9rdpL8awl0QQf9SO5ygk0rCI/DzkJMIGVbEVXGmKJo8dVPd+CyrdJ2gdn/QrlKiap+RRYTTPKtQte4dmRoke+heraJny0o+Ys6hdZYGyMIAscK8t/6ueV2qUSWxEWskfBmbzH1gnM+p5SeYwPe7SmvjAlzi0b6kmVs+jUA4t+3Tt6McuikqsVxA1bnd49NLE/Z0x82CYRr50ZmCm" />
  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='17530967';
  335. var subdomainname = '.mouser.cn';
  336. var lang = 'zh-CN';
  337. var country = 'CN';
  338. var shippingCountry = 'CN';
  339. var usdSubdomain = 'www';
  340. var subdomain = 'cn2';
  341. function attributecount() { return true; }
  342. var navids='17530967';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><span id="yxezcaswaauztuaqaww"><a rel="file" style="display: none;" href="xxrrtbuu.html">ubqtbausacydzezvysubqtb</a></span>
  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%252bTwQdvE13pxfphLe1Qm1nv4G2YGZfbGjkyc3qlmnSoY0HDFASAZhqTOk%2fRCGWfBIgACe6Tk57tELYeI%3d">更改国家</a>
  437. <a id="ctl00_gab1_A6" title="更改位置" class="tdFlag topPadding" href="http://www.mouser.cn/localsites.aspx?qs=0gZ0gv0KDwvP7WQAo8iqDRfsfSMqyvMLMMwfxyI2u5%2f4qc5ce9IXZBtQkqWv2G7D%2fzEbCxVZR9TMbhabil8UazR0wvsJ%252bTwQdvE13pxfphLe1Qm1nv4G2YGZfbGjkyc3qlmnSoY0HDFASAZhqTOk%2fRCGWfBIgACe6Tk57tELYeI%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 = 'ad42e474-1b52-4332-8902-694262868736';
  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%252bTwQdvE13pxfphLe1Qm1nv4G2YGZfbGjkyc3qlmnSoY0HDFASAZhqTOk%2fRCGWfBIgACe6Tk57tELYeI%3d">登录</a>
  635. </li>
  636. <li>
  637. </li>
  638. <li>
  639. <a id="ctl00_NavHeader_hlnk5" title="新用户注册" href="https://www.mouser.cn/MyMouser/CreateAccount.aspx">新用户注册</a>
  640. </li>
  641. <li>
  642. <a id="ctl00_NavHeader_hlnk7" title="订单历史" href="http://www.mouser.cn/OrderHistory/OrderHistoryLogin.aspx">订单历史</a>
  643. </li>
  644. <li>
  645. <!-- Mush:TBC -->
  646. <a id="ctl00_NavHeader_hlnk6" title="订阅" onclick="javascript:return SaveSubscriptionURL();" href="https://sub.info.mouser.com/subscription-newsletter-catalog-sc" target="_blank">订阅</a>
  647. </li>
  648. </ul>
  649. </div>
  650. </div>
  651. <div id="navArea" class="row">
  652. <div class="col-xs-12">
  653. <div id="navMain" class="inline-block">
  654. <div class="navbar">
  655. <ul class="topnav">
  656. <li>
  657. <a id="ctl00_NavHeader_RepeaterNav_ctl00_hyperHeaderNav" href="/Electronic-Components/">产品</a>
  658. <ul class="subnav" id="subnav">
  659. <li>
  660. <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/Electronic-Components/">所有产品</a>
  661. </li>
  662. <li>
  663. <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/new/">最新产品</a>
  664. </li>
  665. <li>
  666. <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/new/products">按类别划分的新产品</a>
  667. </li>
  668. <li>
  669. <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/applications/">新技术</a>
  670. </li>
  671. </ul>
  672. </li>
  673. <li>
  674. <a id="ctl00_NavHeader_RepeaterNav_ctl01_hyperHeaderNav" href="/supplierpage/">制造商</a>
  675. <ul class="subnav" id="subnav">
  676. <li>
  677. <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/supplierpage/">所有制造商A-Z</a>
  678. </li>
  679. <li>
  680. <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/newsuppliers/">新制造商</a>
  681. </li>
  682. <li>
  683. <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/suppliercategory/">制造商(按产品类别分类)</a>
  684. </li>
  685. <li>
  686. <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/catalogRequest/catalogdownloads.aspx">下载线卡</a>
  687. </li>
  688. </ul>
  689. </li>
  690. <li>
  691. <a id="ctl00_NavHeader_RepeaterNav_ctl02_hyperHeaderNav" href="/applications/">应用</a>
  692. <ul class="subnav" id="subnav">
  693. <li>
  694. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/blog">Mouser博客</a>
  695. </li>
  696. <li>
  697. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/applications/audio_applications">音频</a>
  698. </li>
  699. <li>
  700. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/applications/automotive-applications">汽车</a>
  701. </li>
  702. <li>
  703. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/applications/industrial_applications">工业</a>
  704. </li>
  705. <li>
  706. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl05_hyperHeaderNavChild" href="/applications/internet-of-things">物联网</a>
  707. </li>
  708. <li>
  709. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl06_hyperHeaderNavChild" href="/applications/lighting">照明</a>
  710. </li>
  711. <li>
  712. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl07_hyperHeaderNavChild" href="/applications/open-source-hardware">开源硬件</a>
  713. </li>
  714. <li>
  715. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl08_hyperHeaderNavChild" href="/applications/rf-wireless-technology">无线射频</a>
  716. </li>
  717. <li>
  718. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl09_hyperHeaderNavChild" href="/applications/sensor_technology">传感器技术</a>
  719. </li>
  720. <li>
  721. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl10_hyperHeaderNavChild" href="/applications/usb-technology">USB技术</a>
  722. </li>
  723. <li>
  724. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl11_hyperHeaderNavChild" href="/applications/">更多应用</a>
  725. </li>
  726. </ul>
  727. </li>
  728. <li>
  729. <a id="ctl00_NavHeader_RepeaterNav_ctl03_hyperHeaderNav" href="/servicesandtools/">服务和工具</a>
  730. <ul class="subnav" id="subnav">
  731. <li>
  732. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/MyMouser/AccountSummary.aspx">登录/创建账户</a>
  733. </li>
  734. <li>
  735. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/EZBuy/EZBuy.aspx">简易订购工具</a>
  736. </li>
  737. <li>
  738. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/OrderHistory/ProjectsView.aspx">项目管理器</a>
  739. </li>
  740. <li>
  741. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/bomtool/">BOM工具</a>
  742. </li>
  743. <li>
  744. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl05_hyperHeaderNavChild" href="/Tools/part-list-import.aspx">零件清单导入器</a>
  745. </li>
  746. <li>
  747. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl06_hyperHeaderNavChild" href="/accelerator/">搜索加速器</a>
  748. </li>
  749. <li>
  750. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl07_hyperHeaderNavChild" href="/Quote/Quote.aspx">请求报价</a>
  751. </li>
  752. <li>
  753. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl08_hyperHeaderNavChild" href="https://sub.info.mouser.com/subscription-newsletter-catalog-sc" target="_blank">订阅电子邮件</a>
  754. </li>
  755. <li>
  756. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl09_hyperHeaderNavChild" href="/blog">Mouser博客</a>
  757. </li>
  758. <li>
  759. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl10_hyperHeaderNavChild" href="/servicesandtools/">更多服务和工具</a>
  760. </li>
  761. </ul>
  762. </li>
  763. <li>
  764. <a id="ctl00_NavHeader_RepeaterNav_ctl04_hyperHeaderNav" href="/CatalogRequest/Catalog.aspx">目录</a>
  765. <ul class="subnav" id="subnav">
  766. <li>
  767. <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/CatalogRequest/Catalog.aspx">所有目录选项</a>
  768. </li>
  769. <li>
  770. <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/catalogviewer/default.aspx">在线目录</a>
  771. </li>
  772. <li>
  773. <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/CatalogRequest/CatalogDownloads.aspx">下载 Mouser 目录</a>
  774. </li>
  775. <li>
  776. <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="https://sub.info.mouser.com/subscription-newsletter-catalog-sc" target="_blank">目录订阅</a>
  777. </li>
  778. </ul>
  779. </li>
  780. <li>
  781. <a id="ctl00_NavHeader_RepeaterNav_ctl05_hyperHeaderNav" href="/Help/Help.aspx">帮助</a>
  782. <ul class="subnav" id="subnav">
  783. <li>
  784. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/aboutus/">关于 Mouser</a>
  785. </li>
  786. <li>
  787. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/contact/">联系我们</a>
  788. </li>
  789. <li>
  790. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/feedback.aspx">反馈</a>
  791. </li>
  792. <li>
  793. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/helppage/#FAQ">常见问题</a>
  794. </li>
  795. <li>
  796. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl05_hyperHeaderNavChild" href="/Help/Help.aspx">更多幫助主題</a>
  797. </li>
  798. </ul>
  799. </li>
  800. </ul>
  801. </div>
  802. </div>
  803. <div class="onlineCatalog inline-block">
  804. <a href="/mobilecatalog.aspx" class="btnOnlineCatalog" title="在线目录"><span class="online-catalog-child inline-block">在线目录</span></a>
  805. </div>
  806. </div>
  807. </div>
  808. </div>
  809. <div style="visibility: hidden; height: 0px;">
  810. <input name="ctl00$NavHeader$lblTrdTerm" type="text" id="ctl00_NavHeader_lblTrdTerm" />
  811. <input name="ctl00$NavHeader$lblIsNewTerm" type="text" id="ctl00_NavHeader_lblIsNewTerm" />
  812. <input type="hidden" name="ctl00$NavHeader$hdQuickSingUpPage" id="ctl00_NavHeader_hdQuickSingUpPage" value="https://sub.info.mouser.com/quick-signup-sc" />
  813. </div>
  814. <script type="text/javascript">
  815. $(document).ready(function () {
  816. //* change to html5 catalog if javascript is enabled *
  817. $('a.btnOnlineCatalog').attr('href', '/catalogviewer/default.aspx');
  818. });
  819. </script>
  820. <script type="text/javascript" src='../../../../../../javascript/genLib.js'></script>
  821. </div>
  822. <div id="ctl00_divWide" class="divWide">
  823. <link rel="stylesheet" type="text/css" href='../../../../../../css/fontawesome/css/font-awesome.min.css' />
  824. <br />
  825. <strong></strong>
  826. <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl00_lnkBreadcrumb" href="../../../../../../Electronic-Components/" style="font-size: 9pt; font-weight: bold;">所有产品</a>
  827. <strong>></strong>
  828. <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl01_lnkBreadcrumb" href="../../../../../_/N-5gcb/" style="font-size: 9pt; font-weight: bold;">半导体</a>
  829. <strong>></strong>
  830. <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl02_lnkBreadcrumb" href="../../../../_/N-6j73k/" style="font-size: 9pt; font-weight: bold;">集成电路 - IC</a>
  831. <strong>></strong>
  832. <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl03_lnkBreadcrumb" itemprop="isPartOf" href="../../../_/N-a86bc/" style="font-size: 9pt; font-weight: bold;">嵌入式处理器和控制器</a>
  833. <strong>></strong>
  834. <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl04_lnkBreadcrumb" href="./" style="font-size: 9pt; font-weight: bold;">RF片上系统 - SoC</a>
  835. <hr />
  836. <div id="ctl00_ContentMain_categorySearchLimitsDiv" class="hidden">
  837. <div class="categorySearchLimits">
  838. <div id="ctl00_ContentMain_uc1_pnlCategorySearchLimits">
  839. </div>
  840. </div>
  841. </div>
  842. <table border="0" width="100%">
  843. <tr>
  844. <td>
  845. <div id="ctl00_ContentMain_pnl3">
  846. <div id="category-top" class="category-content">
  847. <a id="ctl00_ContentMain_lnkCategory" class="SearchResultsTopLevelCategory"><h1> RF片上系统 - SoC</h1></a>
  848. <!--Marketing Content-->
  849. <div id="ctl00_ContentMain_refinemfglogo">
  850. </div>
  851. </div><!--.category-content-->
  852. </div>
  853. </td>
  854. </tr>
  855. <tr>
  856. <td>
  857. </td>
  858. </tr>
  859. <tr>
  860. <td>
  861. <div id="refine-page2">
  862. </div>
  863. </td>
  864. </tr>
  865. </table>
  866. <div id="ctl00_ContentMain_divTabs" class="row">
  867. <div class="col-xs-12">
  868. <div id="tabsNavigation" >
  869. <ul>
  870. <li id="ctl00_ContentMain_liProductsTab" class="active">
  871. <a id="ctl00_ContentMain_liProductsLink" class="aspNetDisabled">产品<span id="ctl00_ContentMain_lblProductCount" class="item-counts">(290)</span></a>
  872. </li>
  873. <li id="ctl00_ContentMain_liDatasheetsTab" class="">
  874. <a id="ctl00_ContentMain_liDatasheetsLink" onclick="SendGATracking(&#39;Refine Tab Click&#39;, &#39;Datasheets&#39;, &#39;RF System on a Chip - SoC&#39;);" href="../../Datasheets/_/N-afqzb">数据表<sup class="superscript">BETA</sup><span id="ctl00_ContentMain_lblDatasheetCount" class="item-counts">(59)</span></a>
  875. </li>
  876. <li id="ctl00_ContentMain_liImagesTab" class="">
  877. <a id="ctl00_ContentMain_liImagesLink" onclick="SendGATracking(&#39;Refine Tab Click&#39;, &#39;Images&#39;, &#39;RF System on a Chip - SoC&#39;);" href="../../Images/_/N-afqzb">图片<sup class="superscript">BETA</sup><span id="ctl00_ContentMain_lblImagesCount" class="item-counts">(37)</span></a>
  878. </li>
  879. <li id="ctl00_ContentMain_liNewestTab" class="">
  880. <a id="ctl00_ContentMain_liNewestProdLink" onclick="SendGATracking(&#39;Refine Tab Click&#39;, &#39;Newest Products&#39;, &#39;RF System on a Chip - SoC&#39;);" href="../../Newest-Products/_/N-afqzb">最新产品</a>
  881. </li>
  882. </ul>
  883. </div>
  884. </div>
  885. </div>
  886. <div id="tabDivs" class="tab-divs">
  887. <script type="text/javascript">
  888. //<![CDATA[
  889. Sys.WebForms.PageRequestManager._initialize('ctl00$ContentMain$ScriptManager1', 'aspnetForm', [], [], [], 90, 'ctl00');
  890. //]]>
  891. </script>
  892. <div id="ctl00_ContentMain_liProducts">
  893. <div id="refineSearchDiv">
  894. <div id="ctl00_ContentMain_pnlRefineSearchBar" class="refine-search-bar-2">
  895. <div id="refine-keyword-search-2">
  896. <div id="ctl00_ContentMain_uc2_BoxSearch" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_uc2_btnSearch&#39;)">
  897. <div id="boxPartSearch2">
  898. <table id="ctl00_ContentMain_uc2_tblSearch" class="tblSearch2">
  899. <tr>
  900. <td rowspan="3" style="vertical-align: middle">
  901. <div id="searchPartNumberBox" class="search-box" >
  902. <input name="ctl00$ContentMain$uc2$txtPartKeywordSearch" type="text" id="ctl00_ContentMain_uc2_txtPartKeywordSearch" title="物料编号/关键字" class="search-txt" />
  903. <input type="submit" name="ctl00$ContentMain$uc2$btnSearch" value="" onclick="return attributecount();" id="ctl00_ContentMain_uc2_btnSearch" title="搜索" class="searchbutton" class="Empty" />
  904. </div>
  905. </td>
  906. </tr>
  907. <tr>
  908. <td class="chk-Search">
  909. <span title="选中时,搜索将只返回库存的产品。"><input id="ctl00_ContentMain_uc2_chkStocked" type="checkbox" name="ctl00$ContentMain$uc2$chkStocked" /><label for="ctl00_ContentMain_uc2_chkStocked">有库存</label></span>
  910. </td>
  911. </tr>
  912. <tr>
  913. <td class="chk-Search">
  914. <span title="选中时,搜索将只返回符合 RoHS 规范要求和 RoHS 豁免产品。"><input id="ctl00_ContentMain_uc2_chkRoHSCompliant" type="checkbox" name="ctl00$ContentMain$uc2$chkRoHSCompliant" /><label for="ctl00_ContentMain_uc2_chkRoHSCompliant">符合RoHS</label></span>
  915. </td>
  916. </tr>
  917. </table>
  918. <input type="hidden" name="ctl00$ContentMain$uc2$searchWithinResults" id="ctl00_ContentMain_uc2_searchWithinResults" value="在结果中搜索" />
  919. </div>
  920. <script type="text/javascript" src='../../../../../../flash/js/Placeholders.min.js'></script>
  921. <script type="text/javascript" src='../../../../../../flash/js/watermark.js'></script>
  922. </div>
  923. </div>
  924. <div id="refine-mfg-select-2">
  925. </div>
  926. <div class="clear">
  927. </div>
  928. <table class="SearchParametricTable2">
  929. <tr>
  930. <td>
  931. <div id="AttributesDiv2">
  932. <div id="ctl00_ContentMain_uc5_categorySearchLimitsDiv" style="padding-top: 5px;">
  933. <div class="categorySearchLimits">
  934. <div id="ctl00_ContentMain_uc5_CategorySearchLimits_pnlCategorySearchLimits">
  935. <span class="subCategoryHeader">类别</span>&nbsp;&nbsp;<span title="半导体"><input id="ctl00_ContentMain_uc5_CategorySearchLimits_chkbx254459|Semiconductors" type="checkbox" name="ctl00$ContentMain$uc5$CategorySearchLimits$chkbx254459|Semiconductors" checked="checked" onclick="document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx10973360|Integrated Circuits - ICs&#39;).checked = false;document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx17177592|Embedded Processors &amp; Controllers&#39;).checked = false;document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx17530967|RF System on a Chip - SoC&#39;).checked = false;" /></span>&nbsp;<b>半导体</b>&nbsp;&#62;&nbsp;<span title="集成电路 - IC"><input id="ctl00_ContentMain_uc5_CategorySearchLimits_chkbx10973360|Integrated Circuits - ICs" type="checkbox" name="ctl00$ContentMain$uc5$CategorySearchLimits$chkbx10973360|Integrated Circuits - ICs" checked="checked" onclick="document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx254459|Semiconductors&#39;).checked = true;document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx17177592|Embedded Processors &amp; Controllers&#39;).checked = false;document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx17530967|RF System on a Chip - SoC&#39;).checked = false;" /></span>&nbsp;<b>集成电路 - IC</b>&nbsp;&#62;&nbsp;<span title="嵌入式处理器和控制器"><input id="ctl00_ContentMain_uc5_CategorySearchLimits_chkbx17177592|Embedded Processors & Controllers" type="checkbox" name="ctl00$ContentMain$uc5$CategorySearchLimits$chkbx17177592|Embedded Processors & Controllers" checked="checked" onclick="document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx254459|Semiconductors&#39;).checked = true;document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx10973360|Integrated Circuits - ICs&#39;).checked = true;document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx17530967|RF System on a Chip - SoC&#39;).checked = false;" /></span>&nbsp;<b>嵌入式处理器和控制器</b>&nbsp;&#62;&nbsp;<span title="RF片上系统 - SoC"><input id="ctl00_ContentMain_uc5_CategorySearchLimits_chkbx17530967|RF System on a Chip - SoC" type="checkbox" name="ctl00$ContentMain$uc5$CategorySearchLimits$chkbx17530967|RF System on a Chip - SoC" checked="checked" onclick="document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx254459|Semiconductors&#39;).checked = true;document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx10973360|Integrated Circuits - ICs&#39;).checked = true;document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx17177592|Embedded Processors &amp; Controllers&#39;).checked = true;" /></span>&nbsp;<b>RF片上系统 - SoC</b>
  936. </div>
  937. </div>
  938. <hr/>
  939. </div>
  940. <div id="ctl00_ContentMain_uc5_availableFiltersDiv">
  941. <p class="applied-filter-lbl">
  942. <span id="ctl00_ContentMain_uc5_lblAvailableFilters" class="availableFilters">可用过滤器</span>
  943. <span id="ctl00_ContentMain_uc5_lblreccount">290 匹配</span>
  944. &nbsp;<span id="ctl00_ContentMain_uc5_lblajaxcount" class="error"></span>
  945. </p>
  946. <div id="ctl00_ContentMain_uc5_SmartFilterDiv2" class="hidden">
  947. <input id="ctl00_ContentMain_uc5_ckSmartFilter" type="checkbox" name="ctl00$ContentMain$uc5$ckSmartFilter" />&nbsp;
  948. <span id="ctl00_ContentMain_uc5_lblSmartFilter">启用智能过滤</span>&nbsp;
  949. <img id="ctl00_ContentMain_uc5_imgSmartFilter" title="当您选择下述一个或多个参数过滤器时,智能过滤将即时禁用未选中的数值,可能导致查找不到相关结果。" class="smartFilterImg" src="../../../../../../images/icon_tooltip.png" />
  950. <br />
  951. </div>
  952. </div>
  953. <table id="tb1" style="width: 100%;">
  954. <tr>
  955. <td>
  956. <table id="ctl00_ContentMain_uc5_AttributeCategoryList" class="bottom" cellspacing="0" style="border-collapse:collapse;">
  957. <tr>
  958. <td>
  959. <table cellpadding="0" cellspacing="0">
  960. <tr>
  961. <td>
  962. <table>
  963. <tr>
  964. <td>
  965. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_lblheader" style="font-weight:bold;white-space:normal;">制造商</span>
  966. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_RangePnl">
  967. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  968. of parametric ids sent on the query string after the seo url is generated and redirected to.
  969. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  970. sorted parametric attributes from an endeca attribute group --->
  971. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_hdnRange" />
  972. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_hdnDimId" value="1000000411" />
  973. &nbsp;
  974. </div>
  975. </td>
  976. </tr>
  977. <tr>
  978. <td>
  979. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$1000000411" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_1000000411">
  980. <option value="4294759229">Atmel</option>
  981. <option value="4285578461">Broadcom</option>
  982. <option value="4294758861">CEL</option>
  983. <option value="4294014452">Cypress Semiconductor</option>
  984. <option value="4272876899">Dialog Semiconductor</option>
  985. <option value="4292713435">Nordic Semiconductor</option>
  986. <option value="4294758971">NXP</option>
  987. <option value="4294763905">Silicon Laboratories</option>
  988. <option value="4294759686">Texas Instruments</option>
  989. </select>
  990. </td>
  991. </tr>
  992. <tr>
  993. <td>
  994. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  995. </td>
  996. </tr>
  997. </table>
  998. </td>
  999. <td valign="bottom" style="width: 15px;">
  1000. &nbsp;
  1001. </td>
  1002. </tr>
  1003. </table>
  1004. </td><td>
  1005. <table cellpadding="0" cellspacing="0">
  1006. <tr>
  1007. <td>
  1008. <table>
  1009. <tr>
  1010. <td>
  1011. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_lblheader" style="font-weight:bold;white-space:normal;">类型</span>
  1012. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_RangePnl">
  1013. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1014. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1015. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1016. sorted parametric attributes from an endeca attribute group --->
  1017. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_hdnRange" />
  1018. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_hdnDimId" value="688755" />
  1019. &nbsp;
  1020. </div>
  1021. </td>
  1022. </tr>
  1023. <tr>
  1024. <td>
  1025. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$688755" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_688755">
  1026. <option value="4292374263">Bluetooth</option>
  1027. <option value="4280441555">Bluetooth, Zigbee</option>
  1028. <option value="4292077269">ISM</option>
  1029. <option value="4292574717">Wi-Fi</option>
  1030. <option value="4292713526">Zigbee</option>
  1031. </select>
  1032. </td>
  1033. </tr>
  1034. <tr>
  1035. <td>
  1036. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1037. </td>
  1038. </tr>
  1039. </table>
  1040. </td>
  1041. <td valign="bottom" style="width: 15px;">
  1042. &nbsp;
  1043. </td>
  1044. </tr>
  1045. </table>
  1046. </td><td>
  1047. <table cellpadding="0" cellspacing="0">
  1048. <tr>
  1049. <td>
  1050. <table>
  1051. <tr>
  1052. <td>
  1053. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_lblheader" style="font-weight:bold;white-space:normal;">核心</span>
  1054. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_RangePnl">
  1055. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1056. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1057. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1058. sorted parametric attributes from an endeca attribute group --->
  1059. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_hdnRange" />
  1060. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_hdnDimId" value="1000000656" />
  1061. &nbsp;
  1062. </div>
  1063. </td>
  1064. </tr>
  1065. <tr>
  1066. <td>
  1067. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$1000000656" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_1000000656">
  1068. <option value="4292836099">8051</option>
  1069. <option value="4282530827">APS3</option>
  1070. <option value="4292835469">ARM Cortex M0</option>
  1071. <option value="4292835724">ARM Cortex M3</option>
  1072. <option value="4292798526">ARM Cortex M4</option>
  1073. </select>
  1074. </td>
  1075. </tr>
  1076. <tr>
  1077. <td>
  1078. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1079. </td>
  1080. </tr>
  1081. </table>
  1082. </td>
  1083. <td valign="bottom" style="width: 15px;">
  1084. &nbsp;
  1085. </td>
  1086. </tr>
  1087. </table>
  1088. </td><td>
  1089. <table cellpadding="0" cellspacing="0">
  1090. <tr>
  1091. <td>
  1092. <table>
  1093. <tr>
  1094. <td>
  1095. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_lblheader" style="font-weight:bold;white-space:normal;">工作频率</span>
  1096. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_RangePnl">
  1097. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_lnklesseq" title="Select less or equal values." class="lesseq">&#8804;</a>
  1098. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_lnkgreatereq" title="Select greater or equal values." class="greatereq">&#8805;</a>
  1099. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1100. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1101. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1102. sorted parametric attributes from an endeca attribute group --->
  1103. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_hdnRange" />
  1104. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_hdnDimId" value="688567" />
  1105. </div>
  1106. </td>
  1107. </tr>
  1108. <tr>
  1109. <td>
  1110. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$688567" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_688567">
  1111. <option value="4278869510">48 MHz</option>
  1112. <option value="4273591677">300 MHz to 348 MHz, 391 MHz to 464 MHz, 782 MHz to 928 MHz</option>
  1113. <option value="4273590647">300 MHz, 391 MHz, 782 MHz to 348 MHz, 464 MHz, 928 MHz</option>
  1114. <option value="4294602307">2.4 GHz</option>
  1115. <option value="4279429423">2.4 GHz to 2.4835 GHz</option>
  1116. <option value="4273584809">2.402 GHz to 2.48 GHz</option>
  1117. <option value="4273586692">2402 MHz to 2480 MHz</option>
  1118. </select>
  1119. </td>
  1120. </tr>
  1121. <tr>
  1122. <td>
  1123. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1124. </td>
  1125. </tr>
  1126. </table>
  1127. </td>
  1128. <td valign="bottom" style="width: 15px;">
  1129. &nbsp;
  1130. </td>
  1131. </tr>
  1132. </table>
  1133. </td><td>
  1134. <table cellpadding="0" cellspacing="0">
  1135. <tr>
  1136. <td>
  1137. <table>
  1138. <tr>
  1139. <td>
  1140. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_lblheader" style="font-weight:bold;white-space:normal;">最大数据速率</span>
  1141. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_RangePnl">
  1142. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_lnklesseq" title="Select less or equal values." class="lesseq">&#8804;</a>
  1143. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_lnkgreatereq" title="Select greater or equal values." class="greatereq">&#8805;</a>
  1144. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1145. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1146. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1147. sorted parametric attributes from an endeca attribute group --->
  1148. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_hdnRange" />
  1149. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_hdnDimId" value="1000000455" />
  1150. </div>
  1151. </td>
  1152. </tr>
  1153. <tr>
  1154. <td>
  1155. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$1000000455" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_1000000455">
  1156. <option value="4288140474">50 kb/s</option>
  1157. <option value="4284929649">230.4 kb/s</option>
  1158. <option value="4288143097">250 kb/s</option>
  1159. <option value="4288143095">500 kb/s</option>
  1160. <option value="4290713529">500 kbps</option>
  1161. <option value="4287495513">1 Mb/s</option>
  1162. <option value="4280441557">1 Mb/s, 250 kb/s</option>
  1163. <option value="4292686915">1 Mbps</option>
  1164. <option value="4273337527">1 MS/s</option>
  1165. <option value="4287495063">2 Mb/s</option>
  1166. <option value="4292686912">2 Mbps</option>
  1167. <option value="4292686951">5 Mbps</option>
  1168. <option value="4287495096">12 Mb/s</option>
  1169. <option value="4285709593">16 Mbps</option>
  1170. <option value="4276743717">72 Mb/s</option>
  1171. <option value="4282530825">72 Mbps</option>
  1172. </select>
  1173. </td>
  1174. </tr>
  1175. <tr>
  1176. <td>
  1177. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1178. </td>
  1179. </tr>
  1180. </table>
  1181. </td>
  1182. <td valign="bottom" style="width: 15px;">
  1183. &nbsp;
  1184. </td>
  1185. </tr>
  1186. </table>
  1187. </td><td>
  1188. <table cellpadding="0" cellspacing="0">
  1189. <tr>
  1190. <td>
  1191. <table>
  1192. <tr>
  1193. <td>
  1194. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_lblheader" style="font-weight:bold;white-space:normal;">输出功率</span>
  1195. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_RangePnl">
  1196. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_lnklesseq" title="Select less or equal values." class="lesseq">&#8804;</a>
  1197. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_lnkgreatereq" title="Select greater or equal values." class="greatereq">&#8805;</a>
  1198. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1199. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1200. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1201. sorted parametric attributes from an endeca attribute group --->
  1202. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_hdnRange" />
  1203. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_hdnDimId" value="688590" />
  1204. </div>
  1205. </td>
  1206. </tr>
  1207. <tr>
  1208. <td>
  1209. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$688590" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_688590">
  1210. <option value="4294638128">0 dBm</option>
  1211. <option value="4278894776">- 20 dBm to 4 dBm</option>
  1212. <option value="4289913044">- 18 dBm to + 3 dBm</option>
  1213. <option value="4292585758">1 dBm</option>
  1214. <option value="4292876830">2 dBm</option>
  1215. <option value="4292765821">3 dBm</option>
  1216. <option value="4292855761">3.5 dBm</option>
  1217. <option value="4290931878">+ 4 dBm to - 20 dBm</option>
  1218. <option value="4292976727">4 dBm</option>
  1219. <option value="4292871532">4.5 dBm</option>
  1220. <option value="4292812307">5 dBm</option>
  1221. <option value="4292723221">7 dBm</option>
  1222. <option value="4292858120">8 dBm</option>
  1223. <option value="4294638169">10 dBm</option>
  1224. <option value="4292859188">10.5 dBm</option>
  1225. <option value="4292831959">16.5 dBm</option>
  1226. <option value="4292990537">18 dBm</option>
  1227. <option value="4275093369">19.5 dBm</option>
  1228. <option value="4292907091">20 dBm</option>
  1229. <option value="4293994941">20.6 dBm</option>
  1230. <option value="4288388461">+ 4dBm to - 20 dBm</option>
  1231. </select>
  1232. </td>
  1233. </tr>
  1234. <tr>
  1235. <td>
  1236. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1237. </td>
  1238. </tr>
  1239. </table>
  1240. </td>
  1241. <td valign="bottom" style="width: 15px;">
  1242. &nbsp;
  1243. </td>
  1244. </tr>
  1245. </table>
  1246. </td><td>
  1247. <table cellpadding="0" cellspacing="0">
  1248. <tr>
  1249. <td>
  1250. <table>
  1251. <tr>
  1252. <td>
  1253. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_lblheader" style="font-weight:bold;white-space:normal;">灵敏度</span>
  1254. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_RangePnl">
  1255. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_lnklesseq" title="Select less or equal values." class="lesseq">&#8804;</a>
  1256. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_lnkgreatereq" title="Select greater or equal values." class="greatereq">&#8805;</a>
  1257. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1258. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1259. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1260. sorted parametric attributes from an endeca attribute group --->
  1261. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl06$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_hdnRange" />
  1262. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl06$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_hdnDimId" value="688688" />
  1263. </div>
  1264. </td>
  1265. </tr>
  1266. <tr>
  1267. <td>
  1268. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl06$688688" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_688688">
  1269. <option value="4292088306">- 112 dBm</option>
  1270. <option value="4292586349">- 103 dBm</option>
  1271. <option value="4292586847">- 102 dBm</option>
  1272. <option value="4290026164">- 100 dB</option>
  1273. <option value="4292586850">- 100 dBm</option>
  1274. <option value="4292586354">- 98 dBm</option>
  1275. <option value="4292554994">- 97 dBm</option>
  1276. <option value="4280441556">- 97 dBm, - 100 dBm</option>
  1277. <option value="4292586387">- 96 dBm</option>
  1278. <option value="4273337525">- 96 dBm, - 93 dBm</option>
  1279. <option value="4285709591">- 95.7 dBm</option>
  1280. <option value="4292586854">- 94 dBm</option>
  1281. <option value="4292586831">- 93 dBm</option>
  1282. <option value="4292507554">- 92.5 dBm</option>
  1283. <option value="4292586382">- 92 dBm</option>
  1284. <option value="4271995807">- 91.4 dBm</option>
  1285. <option value="4291758193">- 89 dBm</option>
  1286. <option value="4292553984">- 87 dBm</option>
  1287. <option value="4266875981">- 30 dBm</option>
  1288. </select>
  1289. </td>
  1290. </tr>
  1291. <tr>
  1292. <td>
  1293. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1294. </td>
  1295. </tr>
  1296. </table>
  1297. </td>
  1298. <td valign="bottom" style="width: 15px;">
  1299. &nbsp;
  1300. </td>
  1301. </tr>
  1302. </table>
  1303. </td><td>
  1304. <table cellpadding="0" cellspacing="0">
  1305. <tr>
  1306. <td>
  1307. <table>
  1308. <tr>
  1309. <td>
  1310. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl07_lblheader" style="font-weight:bold;white-space:normal;">工作电源电压</span>
  1311. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl07_RangePnl">
  1312. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl07_lnklesseq" title="Select less or equal values." class="lesseq">&#8804;</a>
  1313. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl07_lnkgreatereq" title="Select greater or equal values." class="greatereq">&#8805;</a>
  1314. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1315. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1316. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1317. sorted parametric attributes from an endeca attribute group --->
  1318. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl07$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl07_hdnRange" />
  1319. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl07$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl07_hdnDimId" value="1000000393" />
  1320. </div>
  1321. </td>
  1322. </tr>
  1323. <tr>
  1324. <td>
  1325. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl07$1000000393" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl07_1000000393">
  1326. <option value="4294016497">- 0.3 V to + 5.5 V</option>
  1327. <option value="4294604096">1.2 V</option>
  1328. <option value="4272979685">1.62 V to 3.8 V</option>
  1329. <option value="4280794928">1.7 V to 3.8 V</option>
  1330. <option value="4292903205">1.71 V to 5.5 V</option>
  1331. <option value="4294604809">1.8 V</option>
  1332. <option value="4294604103">1.8 V to 3.6 V</option>
  1333. <option value="4291337849">1.8 V to 4.3 V</option>
  1334. <option value="4294602456">1.8 V to 5.5 V</option>
  1335. <option value="4294593605">1.8 V, 2.5 V, 3.3 V</option>
  1336. <option value="4292512260">1.85 V to 3.8 V</option>
  1337. <option value="4292686923">1.9 V to 3.3 V</option>
  1338. <option value="4292713433">1.9 V to 3.6 V</option>
  1339. <option value="4277321395">1.9 V to 5.5 V</option>
  1340. <option value="4294629973">2 V to 3.6 V</option>
  1341. <option value="4294602332">2.1 V to 3.6 V</option>
  1342. <option value="4294604646">3 V</option>
  1343. <option value="4294629911">3 V to 3.6 V</option>
  1344. <option value="4294629989">3.3 V</option>
  1345. <option value="4287559862">3.3 V, 3.6 V</option>
  1346. <option value="4294627796">3.63 V</option>
  1347. </select>
  1348. </td>
  1349. </tr>
  1350. <tr>
  1351. <td>
  1352. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl07_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1353. </td>
  1354. </tr>
  1355. </table>
  1356. </td>
  1357. <td valign="bottom" style="width: 15px;">
  1358. &nbsp;
  1359. </td>
  1360. </tr>
  1361. </table>
  1362. </td><td>
  1363. <table cellpadding="0" cellspacing="0">
  1364. <tr>
  1365. <td>
  1366. <table>
  1367. <tr>
  1368. <td>
  1369. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl08_lblheader" style="font-weight:bold;white-space:normal;">接收供电电流</span>
  1370. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl08_RangePnl">
  1371. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl08_lnklesseq" title="Select less or equal values." class="lesseq">&#8804;</a>
  1372. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl08_lnkgreatereq" title="Select greater or equal values." class="greatereq">&#8805;</a>
  1373. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1374. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1375. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1376. sorted parametric attributes from an endeca attribute group --->
  1377. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl08$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl08_hdnRange" />
  1378. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl08$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl08_hdnDimId" value="1000000734" />
  1379. </div>
  1380. </td>
  1381. </tr>
  1382. <tr>
  1383. <td>
  1384. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl08$1000000734" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl08_1000000734">
  1385. <option value="4272862676">3.7 mA</option>
  1386. <option value="4292088330">4 mA</option>
  1387. <option value="4292556443">6.1 mA</option>
  1388. <option value="4272965342">8.6 mA</option>
  1389. <option value="4268668394">8.8 mA</option>
  1390. <option value="4292088412">9.1 mA</option>
  1391. <option value="4278894774">9.25 mA</option>
  1392. <option value="4290931876">9.5 mA</option>
  1393. <option value="4285566302">9.8 mA</option>
  1394. <option value="4290561933">13 mA</option>
  1395. <option value="4290677990">14.5 mA</option>
  1396. <option value="4290060310">16.2 mA</option>
  1397. <option value="4268943391">16.4 mA</option>
  1398. <option value="4287756815">17.1 mA</option>
  1399. <option value="4292050932">17.9 mA</option>
  1400. <option value="4292556513">20 mA</option>
  1401. <option value="4284949991">20.5 mA</option>
  1402. <option value="4284949830">21.6 mA</option>
  1403. <option value="4292503351">22.5 mA</option>
  1404. <option value="4292077053">24.3 mA</option>
  1405. <option value="4289799547">25.5 mA</option>
  1406. <option value="4292487165">26 mA</option>
  1407. <option value="4292088305">27 mA</option>
  1408. <option value="4291860704">29 mA</option>
  1409. <option value="4292578844">30 mA</option>
  1410. <option value="4292052299">33.2 mA</option>
  1411. <option value="4285709559">53 mA</option>
  1412. <option value="4285709590">59 mA</option>
  1413. </select>
  1414. </td>
  1415. </tr>
  1416. <tr>
  1417. <td>
  1418. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl08_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1419. </td>
  1420. </tr>
  1421. </table>
  1422. </td>
  1423. <td valign="bottom" style="width: 15px;">
  1424. &nbsp;
  1425. </td>
  1426. </tr>
  1427. </table>
  1428. </td><td>
  1429. <table cellpadding="0" cellspacing="0">
  1430. <tr>
  1431. <td>
  1432. <table>
  1433. <tr>
  1434. <td>
  1435. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl09_lblheader" style="font-weight:bold;white-space:normal;">传输供电电流</span>
  1436. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl09_RangePnl">
  1437. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl09_lnklesseq" title="Select less or equal values." class="lesseq">&#8804;</a>
  1438. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl09_lnkgreatereq" title="Select greater or equal values." class="greatereq">&#8805;</a>
  1439. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1440. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1441. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1442. sorted parametric attributes from an endeca attribute group --->
  1443. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl09$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl09_hdnRange" />
  1444. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl09$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl09_hdnDimId" value="1000000735" />
  1445. </div>
  1446. </td>
  1447. </tr>
  1448. <tr>
  1449. <td>
  1450. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl09$1000000735" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl09_1000000735">
  1451. <option value="4273337524">2.5 mA</option>
  1452. <option value="4272862675">3.4 mA</option>
  1453. <option value="4290931875">6.3 mA</option>
  1454. <option value="4288364523">8.2 mA</option>
  1455. <option value="4278894773">8.8 mA</option>
  1456. <option value="4285566301">9.1 mA</option>
  1457. <option value="4292087353">12.5 mA</option>
  1458. <option value="4268943390">15.6 mA</option>
  1459. <option value="4290561957">16 mA</option>
  1460. <option value="4290119126">17.4 mA</option>
  1461. <option value="4292050931">18.2 mA</option>
  1462. <option value="4290391667">24 mA</option>
  1463. <option value="4292503350">27 mA</option>
  1464. <option value="4285732529">28.5 mA</option>
  1465. <option value="4289630090">29 mA</option>
  1466. <option value="4292554426">31 mA</option>
  1467. <option value="4292052224">33.2 mA</option>
  1468. <option value="4292077052">33.5 mA</option>
  1469. <option value="4289799546">42.5 mA</option>
  1470. <option value="4292575953">45 mA</option>
  1471. <option value="4271995806">133 mA</option>
  1472. <option value="4285709558">223 mA</option>
  1473. <option value="4289736601">229 mA</option>
  1474. </select>
  1475. </td>
  1476. </tr>
  1477. <tr>
  1478. <td>
  1479. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl09_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1480. </td>
  1481. </tr>
  1482. </table>
  1483. </td>
  1484. <td valign="bottom" style="width: 15px;">
  1485. &nbsp;
  1486. </td>
  1487. </tr>
  1488. </table>
  1489. </td><td>
  1490. <table cellpadding="0" cellspacing="0">
  1491. <tr>
  1492. <td>
  1493. <table>
  1494. <tr>
  1495. <td>
  1496. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl10_lblheader" style="font-weight:bold;white-space:normal;">程序存储器大小</span>
  1497. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl10_RangePnl">
  1498. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl10_lnklesseq" title="Select less or equal values." class="lesseq">&#8804;</a>
  1499. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl10_lnkgreatereq" title="Select greater or equal values." class="greatereq">&#8805;</a>
  1500. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1501. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1502. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1503. sorted parametric attributes from an endeca attribute group --->
  1504. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl10$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl10_hdnRange" />
  1505. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl10$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl10_hdnDimId" value="1000000128" />
  1506. </div>
  1507. </td>
  1508. </tr>
  1509. <tr>
  1510. <td>
  1511. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl10$1000000128" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl10_1000000128">
  1512. <option value="4291793133">8 kB</option>
  1513. <option value="4291962342">16 kB</option>
  1514. <option value="4291883615">32 kB</option>
  1515. <option value="4292005690">64 kB</option>
  1516. <option value="4291132427">96 kB</option>
  1517. <option value="4291962314">128 kB</option>
  1518. <option value="4290318730">192 kB</option>
  1519. <option value="4291962182">256 kB</option>
  1520. <option value="4291929576">512 kB</option>
  1521. <option value="4285566303">512 kbit</option>
  1522. <option value="4272862583">1 Mbit Flash, 32 kB</option>
  1523. <option value="4292572654">4 GB</option>
  1524. <option value="4285709560">-</option>
  1525. </select>
  1526. </td>
  1527. </tr>
  1528. <tr>
  1529. <td>
  1530. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl10_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1531. </td>
  1532. </tr>
  1533. </table>
  1534. </td>
  1535. <td valign="bottom" style="width: 15px;">
  1536. &nbsp;
  1537. </td>
  1538. </tr>
  1539. </table>
  1540. </td><td>
  1541. <table cellpadding="0" cellspacing="0">
  1542. <tr>
  1543. <td>
  1544. <table>
  1545. <tr>
  1546. <td>
  1547. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl11_lblheader" style="font-weight:bold;white-space:normal;">工作温度范围</span>
  1548. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl11_RangePnl">
  1549. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1550. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1551. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1552. sorted parametric attributes from an endeca attribute group --->
  1553. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl11$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl11_hdnRange" />
  1554. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl11$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl11_hdnDimId" value="688572" />
  1555. &nbsp;
  1556. </div>
  1557. </td>
  1558. </tr>
  1559. <tr>
  1560. <td>
  1561. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl11$688572" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl11_688572">
  1562. <option value="4294634396">0 C to + 85 C</option>
  1563. <option value="4294024843">- 40 C to + 125 C</option>
  1564. <option value="4294024803">- 40 C to + 85 C</option>
  1565. <option value="4294024770">- 30 C to + 85 C</option>
  1566. <option value="4294024772">- 25 C to + 70 C</option>
  1567. <option value="4294024636">- 25 C to + 75 C</option>
  1568. </select>
  1569. </td>
  1570. </tr>
  1571. <tr>
  1572. <td>
  1573. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl11_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1574. </td>
  1575. </tr>
  1576. </table>
  1577. </td>
  1578. <td valign="bottom" style="width: 15px;">
  1579. &nbsp;
  1580. </td>
  1581. </tr>
  1582. </table>
  1583. </td><td>
  1584. <table cellpadding="0" cellspacing="0">
  1585. <tr>
  1586. <td>
  1587. <table>
  1588. <tr>
  1589. <td>
  1590. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl12_lblheader" style="font-weight:bold;white-space:normal;">封装 / 箱体</span>
  1591. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl12_RangePnl">
  1592. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1593. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1594. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1595. sorted parametric attributes from an endeca attribute group --->
  1596. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl12$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl12_hdnRange" />
  1597. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl12$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl12_hdnDimId" value="688606" />
  1598. &nbsp;
  1599. </div>
  1600. </td>
  1601. </tr>
  1602. <tr>
  1603. <td>
  1604. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl12$688606" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl12_688606">
  1605. <option value="4292727449">LGA-48</option>
  1606. <option value="4294719691">QFN-32</option>
  1607. <option value="4294686100">QFN-36</option>
  1608. <option value="4294718250">QFN-40</option>
  1609. <option value="4294685209">QFN-48</option>
  1610. <option value="4294676865">QFN-56</option>
  1611. <option value="4288198954">QFN-EP-48</option>
  1612. <option value="4292052225">VFBGA-72</option>
  1613. <option value="4294572410">VQFN-32</option>
  1614. <option value="4294668098">VQFN-36</option>
  1615. <option value="4294572502">VQFN-40</option>
  1616. <option value="4294649696">VQFN-48</option>
  1617. <option value="4292566800">VQFN-56</option>
  1618. <option value="4294572495">VQFN-64</option>
  1619. <option value="4287547277">VQFNP-36</option>
  1620. <option value="4287547286">VQFNP-48</option>
  1621. <option value="4283122369">WLCSP-34</option>
  1622. <option value="4272943747">WLCSP-62</option>
  1623. <option value="4292870203">WLCSP-64</option>
  1624. </select>
  1625. </td>
  1626. </tr>
  1627. <tr>
  1628. <td>
  1629. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl12_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1630. </td>
  1631. </tr>
  1632. </table>
  1633. </td>
  1634. <td valign="bottom" style="width: 15px;">
  1635. &nbsp;
  1636. </td>
  1637. </tr>
  1638. </table>
  1639. </td>
  1640. </tr>
  1641. </table>
  1642. <table class="ApplyFilter">
  1643. <tr>
  1644. <td class="ApplyFilterColumn1">
  1645. <input type="submit" name="ctl00$ContentMain$uc5$btnfilter1" value="应用过滤器" onclick="return submitClick();" id="ctl00_ContentMain_uc5_btnfilter1" title="点击以应用选定的过滤器,或删除未选中的过滤器。" class="button-white" />
  1646. </td>
  1647. <td class="ApplyFilterColumn2">
  1648. <span id="ctl00_ContentMain_uc5_lblZeroResultHint" class="error" style="display:inline-block;width:1px;display: none;">请修改您的搜索,这样它会返回结果。</span>
  1649. </td>
  1650. <td class="ApplyFilterColumn2_5">
  1651. <span id="ctl00_ContentMain_uc5_lblInvalidRangeHint" class="error" style="display:inline-block;width:1px;display: none;">所选过滤条件不再可用,搜索结果已改变。请重试搜索。</span>
  1652. </td>
  1653. <td class="ApplyFilterColumn3">
  1654. <input type="submit" name="ctl00$ContentMain$uc5$btnfilter2" value="应用过滤器" onclick="return submitClick();" id="ctl00_ContentMain_uc5_btnfilter2" title="点击以应用选定的过滤器,或删除未选中的过滤器。" class="button-white" />
  1655. </td>
  1656. </tr>
  1657. </table>
  1658. </td>
  1659. </tr>
  1660. </table>
  1661. </div>
  1662. </td>
  1663. </tr>
  1664. </table>
  1665. <div id='WarningPopup' style='text-align: center; position: absolute; width: 430px;
  1666. height: 70px; display: none; background: white; border: 1px solid #000;'>
  1667. <br />
  1668. <span id="ctl00_ContentMain_uc5_Label1">要使用小于或大于功能,请首先选择一个值。</span><br />
  1669. <br />
  1670. <div style="text-align: right; margin-right: 15; padding-right: 15;">
  1671. <!--Close Window-->
  1672. <a href="javascript:closeWarningPopup();" id="ctl00_ContentMain_uc5_linkCloseWindow" class="close" title="关闭窗口">
  1673. <span id="ctl00_ContentMain_uc5_lblClose">关闭窗口</span>
  1674. </a>&nbsp;&nbsp;</div>
  1675. </div>
  1676. <div id ="VisualAttributePopup" class="hidden" >
  1677. <div id="ctl00_ContentMain_uc5_VisualParametricsSelector_visualAttributePopup">
  1678. <div id="divAttributeGroup" data-bind="if: hasGroupDescription ">
  1679. <div class="visualAttGroupDesc" data-bind="text: AttributeGroupDescription"></div>
  1680. </div>
  1681. <div><img data-bind="visible: !loadFinished()" class="visualAttSpinnerImg" id="loadingimgspinner" src="/Images/spinner2.gif" /></div>
  1682. <div class="visualAttValues" data-bind="visible: attributes().length > 0 " >
  1683. <table id="tblAttributes" >
  1684. <tbody data-bind="foreach: attributes, visible: loadFinished()">
  1685. <tr data-bind="click: $root.toggleSelection, css: { 'selectedAttribute': IsSelected }, hoverToggle: 'highlightedAttribute', attr: {'attValueId': AttributeValueID} ">
  1686. <td class="visualAttributeImage">
  1687. <div data-bind="if: AttributeValueImage"><img data-bind="attr: {src: 'data:image/gif;base64,' + AttributeValueImage}" class="visualAttImage" alt="" /></div>
  1688. <div data-bind="ifnot: AttributeValueImage" ><div data-bind="css: { 'visualAttRelatedImageDiv': RelatedImgFound, 'visualAttNoImageDiv': !RelatedImgFound } " ><span data-bind="text: NoImageMsg" class="visualAttributeMsg" ></span></div></div>
  1689. </td>
  1690. <td>
  1691. <table class="visualAttValueDesc">
  1692. <tr>
  1693. <td data-bind="text: AttributeValue" class="visualAttValue" colspan="3"></td>
  1694. </tr>
  1695. <tr>
  1696. <td data-bind="text: AttributeDesc" class="visualAttDescription" colspan="3"></td>
  1697. </tr>
  1698. <tr data-bind="if: ImagePath1 ">
  1699. <td class="visualAttRelatedImage"><div data-bind="if: ImagePath1"><img data-bind="attr: {src: ImagePath1}" class="visualAttRelatedImgs" /></div></td>
  1700. <td class="visualAttRelatedImage"><div data-bind="if: ImagePath2"><img data-bind="attr: {src: ImagePath2}" class="visualAttRelatedImgs" /></div></td>
  1701. <td class="visualAttRelatedImage"><div data-bind="if: ImagePath3"><img data-bind="attr: {src: ImagePath3}" class="visualAttRelatedImgs" /></div></td>
  1702. </tr>
  1703. </table>
  1704. </td>
  1705. </tr>
  1706. <tr data-bind="if: ($index() !== ($parent.attributes().length - 1)) "><td colspan="3"><div class="visualAttValueBorder" ></div></td></tr>
  1707. </tbody>
  1708. </table>
  1709. <img data-bind="visible: !moreLoadFinished()" class="visualAttSpinnerImg" id="Img1" src="/Images/spinner2.gif" />
  1710. <div data-bind="if: hasMoreOptions" align="center">
  1711. <input type="submit" name="ctl00$ContentMain$uc5$VisualParametricsSelector$btnShowMore" value="显示更多" id="ctl00_ContentMain_uc5_VisualParametricsSelector_btnShowMore" class="button" data-bind="click: showMore" />
  1712. </div>
  1713. </div>
  1714. <div data-bind="visible: attributes().length > 0" class="visualAttributesBtnBorder"></div>
  1715. <div class="visualAttributesBtnDiv">
  1716. <input type="submit" name="ctl00$ContentMain$uc5$VisualParametricsSelector$btnOK" value="确定" onclick="javascript:ClosePopup();" id="ctl00_ContentMain_uc5_VisualParametricsSelector_btnOK" class="button" data-bind="visible: attributes().length &lt; 1" />
  1717. <a id="ctl00_ContentMain_uc5_VisualParametricsSelector_lnkCancel" class="cancel-link-button" data-bind="visible: attributes().length > 0" onclick="javascript:ClosePopup();">取消</a>
  1718. <input type="submit" name="ctl00$ContentMain$uc5$VisualParametricsSelector$btnApply" value="确定" id="ctl00_ContentMain_uc5_VisualParametricsSelector_btnApply" class="button" data-bind="click: applySelections, visible: attributes().length > 0" />
  1719. </div>
  1720. </div>
  1721. <style type="text/css">.ui-dialog{position:absolute;padding:0px !important;width:300px;overflow:hidden;}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.6em !important;background:none;overflow:auto;zoom:1;max-height:450px;}.ui-dialog .ui-dialog-titlebar{padding:.4em .5em !important;position:relative;background:none repeat scroll 0 0 #E0E4E9;font-size:15px;}.ui-corner-all,.ui-corner-bottom,.ui-corner-right,.ui-corner-br{border-bottom-right-radius:0;}.ui-corner-all,.ui-corner-bottom,.ui-corner-left,.ui-corner-bl{border-bottom-left-radius:0;}</style>
  1722. <script type="text/javascript" src='/JavaScript/VisualParametricAttributes.js'></script>
  1723. <script type="text/javascript" src='/flash/js/knockout-2.2.1.js'></script>
  1724. </div>
  1725. <script type="text/javascript" src='/JavaScript/jquery.ckie.js'></script>
  1726. <script type="text/javascript" src='/JavaScript/multimanufacturerselectionlist.js'></script>
  1727. <script src='../../../../../../flash/js/AttributeSelectionControl2.js?v=3.0.20160304.2' type="text/javascript"></script>
  1728. <script type="text/javascript" src='/JavaScript/VisualParametricAttributes.js'></script>
  1729. <script type="text/javascript">
  1730. $().ready(function () {
  1731. ko.applyBindings(new DisplayAttributesModel());
  1732. ko.bindingHandlers.hoverToggle = {
  1733. update: function (element, valueAccessor) {
  1734. var css = valueAccessor();
  1735. var isSelected = $(element).hasClass("selectedAttribute");
  1736. if (!isSelected) {
  1737. ko.utils.registerEventHandler(element, "mouseenter", function () {
  1738. ko.utils.toggleDomNodeCssClass(element, ko.utils.unwrapObservable(css), true);
  1739. });
  1740. ko.utils.registerEventHandler(element, "mouseleave", function () {
  1741. ko.utils.toggleDomNodeCssClass(element, ko.utils.unwrapObservable(css), false);
  1742. });
  1743. }
  1744. }
  1745. };
  1746. });
  1747. </script>
  1748. </div>
  1749. <div id="refine-mfg-logo2">
  1750. </div>
  1751. </div>
  1752. <br />
  1753. <table border="0" width="100%">
  1754. <tr>
  1755. <td>
  1756. </td>
  1757. </tr>
  1758. <tr>
  1759. <td>
  1760. <!--- Search Features --->
  1761. </td>
  1762. </tr>
  1763. <tr>
  1764. <td>
  1765. <div id="refine-page">
  1766. </div>
  1767. </td>
  1768. </tr>
  1769. <tr>
  1770. <td class="refine-show-products">
  1771. <span class="redtextb">
  1772. </span> <span class="redtextb">
  1773. </span> <span class="redtextb">
  1774. </span> <span class="redtextb">
  1775. </span>
  1776. <span class="redtextb">
  1777. </span>
  1778. </td>
  1779. </tr>
  1780. <tr>
  1781. <td>
  1782. </td>
  1783. </tr>
  1784. <tr>
  1785. <td>
  1786. <!--- Special Order Parts New --->
  1787. <!-- SOP Section 1 -->
  1788. </td>
  1789. </tr>
  1790. </table>
  1791. <div id="searchResultsTbl">
  1792. <table id="ctl00_ContentMain_tbl2" class="no-pad">
  1793. <tr>
  1794. <td class="tdSearchResultsPagingTop">
  1795. <table id="ctl00_ContentMain_tbl3" class="SearchResultsPaging">
  1796. <tr>
  1797. <td>
  1798. <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" />
  1799. </td>
  1800. <td>
  1801. <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" />
  1802. </td>
  1803. <td>
  1804. <span id="ctl00_ContentMain_lbl10" title="您可选择至多20 个零件单次进行对比。若您选择更多,则仅20件距离最近的所选零件会被对比。" class="bold">至多对比 20 零件.</span>
  1805. </td>
  1806. <td style="padding-left: 40px;">
  1807. <div class="floatrightpager">
  1808. <span class="bold">
  1809. 页面:
  1810. </span>
  1811. <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/RF-System-on-a-Chip-SoC/_/N-afqzb/?No=25">2</a><a id="ctl00_ContentMain_PagerTop_2" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/?No=50">3</a><a id="ctl00_ContentMain_PagerTop_3" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/?No=75">4</a><a id="ctl00_ContentMain_PagerTop_4" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/?No=100">5</a><a id="ctl00_ContentMain_PagerTop_5" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/?No=125">6</a><a id="ctl00_ContentMain_PagerTop_6" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/?No=150">7</a><a id="ctl00_ContentMain_PagerTop_7" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/?No=175">8</a><a id="ctl00_ContentMain_PagerTop_8" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/?No=200">9</a><a id="ctl00_ContentMain_PagerTop_9" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/?No=225">10</a><a id="ctl00_ContentMain_PagerTop_lnkNextSet" class="ellipsis" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/?No=250">...</a><a id="ctl00_ContentMain_PagerTop_11" class="first-last" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/?No=275">12</a><a id="ctl00_ContentMain_PagerTop_lnkNext" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/?No=25">下一页</a></span>
  1812. </div>
  1813. </td>
  1814. </tr>
  1815. </table>
  1816. </td>
  1817. </tr>
  1818. <tr>
  1819. <td>
  1820. <div>
  1821. <table class="SearchResultsTable" cellspacing="1" cellpadding="2" rules="all" border="1" id="ctl00_ContentMain_SearchResultsGrid_grid" style="width:100%;">
  1822. <tr class="SearchResultColumnHeading" valign="top" style="font-weight:bold;height:100%;">
  1823. <th class="td-select" scope="col" style="width:35px;">
  1824. 选择
  1825. </th><th class="SearchResultParametricColumnHeading" scope="col">图像</th><th scope="col">Mouser 零件编号
  1826. </th><th scope="col">制造商 零件编号
  1827. </th><th scope="col">制造商
  1828. </th><th scope="col">描述
  1829. </th><th scope="col"><img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl01_ctl05_imgHeader" src="../../../../../../Images/Search/pdf.gif" alt="文件" />
  1830. </th><th scope="col">供货情况
  1831. </th><th scope="col">单价(含17%增值税)
  1832. <br />
  1833. </th><th class="SearchResultsBuyColumnHeading" scope="col">数量
  1834. </th><th class="SearchResultParametricColumnHeading" scope="col">RoHS
  1835. </th><th class="SearchResultParametricColumnHeading" scope="col">类型
  1836. </th><th class="SearchResultParametricColumnHeading" scope="col">核心
  1837. </th><th class="SearchResultParametricColumnHeading" scope="col">工作频率
  1838. </th><th class="SearchResultParametricColumnHeading" scope="col">最大数据速率
  1839. </th><th class="SearchResultParametricColumnHeading" scope="col">输出功率
  1840. </th><th class="SearchResultParametricColumnHeading" scope="col">灵敏度
  1841. </th><th class="SearchResultParametricColumnHeading" scope="col">工作电源电压
  1842. </th><th class="SearchResultParametricColumnHeading" scope="col">接收供电电流
  1843. </th><th class="SearchResultParametricColumnHeading" scope="col">传输供电电流
  1844. </th><th class="SearchResultParametricColumnHeading" scope="col">程序存储器大小
  1845. </th><th class="SearchResultParametricColumnHeading" scope="col">工作温度范围
  1846. </th><th class="SearchResultParametricColumnHeading" scope="col">封装 / 箱体
  1847. </th>
  1848. </tr><tr class="SearchResultsSortCell">
  1849. <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$ctl23&#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$ctl25&#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_ctl27" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl27&#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$ctl29&#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$ctl31&#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$ctl33&#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$ctl35&#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$ctl37&#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$ctl39&#39;,&#39;&#39;)"><img title="按 单价(含17%增值税) Descending 排序" src="../../../../../../Images/Search/btn_Sort_Down.gif" alt="按 单价(含17%增值税) Descending 排序" /></a></td><td></td><td></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Type>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl41&#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$Type>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl43&#39;,&#39;&#39;)"><img title="按 类型 Descending 排序" src="../../../../../../Images/Search/btn_Sort_Down.gif" alt="按 类型 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Core>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl45&#39;,&#39;&#39;)"><img title="按 核心 Ascending 排序" src="../../../../../../Images/Search/btn_Sort_Up.gif" alt="按 核心 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Core>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl47&#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$Operating Frequency>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl49&#39;,&#39;&#39;)"><img title="按 工作频率 Ascending 排序" src="../../../../../../Images/Search/btn_Sort_Up.gif" alt="按 工作频率 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Operating Frequency>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl51&#39;,&#39;&#39;)"><img title="按 工作频率 Descending 排序" src="../../../../../../Images/Search/btn_Sort_Down.gif" alt="按 工作频率 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Maximum Data Rate>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl53&#39;,&#39;&#39;)"><img title="按 最大数据速率 Ascending 排序" src="../../../../../../Images/Search/btn_Sort_Up.gif" alt="按 最大数据速率 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Maximum Data Rate>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl55&#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$Output Power>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl57&#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$Output Power>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl59&#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$Sensitivity>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl61&#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$Sensitivity>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl63&#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$Operating Supply Voltage>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl65&#39;,&#39;&#39;)"><img title="按 工作电源电压 Ascending 排序" src="../../../../../../Images/Search/btn_Sort_Up.gif" alt="按 工作电源电压 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Operating Supply Voltage>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl67&#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$Supply Current Receiving>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl69&#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$Supply Current Receiving>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl71&#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$Supply Current Transmitting>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl73&#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$Supply Current Transmitting>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl75&#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$Program Memory Size>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl77&#39;,&#39;&#39;)"><img title="按 程序存储器大小 Ascending 排序" src="../../../../../../Images/Search/btn_Sort_Up.gif" alt="按 程序存储器大小 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Program Memory Size>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl79&#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$Operating Temperature Range>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl81&#39;,&#39;&#39;)"><img title="按 工作温度范围 Ascending 排序" src="../../../../../../Images/Search/btn_Sort_Up.gif" alt="按 工作温度范围 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Operating Temperature Range>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl83&#39;,&#39;&#39;)"><img title="按 工作温度范围 Descending 排序" src="../../../../../../Images/Search/btn_Sort_Down.gif" alt="按 工作温度范围 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Package / Case>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl85&#39;,&#39;&#39;)"><img title="按 封装 / 箱体 Ascending 排序" src="../../../../../../Images/Search/btn_Sort_Up.gif" alt="按 封装 / 箱体 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Package / Case>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl87&#39;,&#39;&#39;)"><img title="按 封装 / 箱体 Descending 排序" src="../../../../../../Images/Search/btn_Sort_Down.gif" alt="按 封装 / 箱体 Descending 排序" /></a></td>
  1850. </tr><tr class="SearchResultsRowOdd" data-partnumber="634-EM341-RT" data-index="3">
  1851. <td class="td-select" align="center">
  1852. <div style="padding: 5px 5px 0 5px;">
  1853. <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>
  1854. </div>
  1855. </td><td><a href='/ProductDetail/Silicon-Labs/EM341-RT/?qs=sGAEpiMZZMvQqVCO1QUke%252bJ2rpIa2t4Y0FITfzJEQKJ5fsWnXSwVsw%3d%3d'><img title='Silicon Labs EM341-RT' alt='Silicon Labs EM341-RT' id=1464559572 src='/images/mouserimages/sm/QFN_48_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_48_t.jpg</div></a></td><td>
  1856. <div style="text-align:left;">
  1857. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Silicon-Labs/EM341-RT/?qs=sGAEpiMZZMvQqVCO1QUke%252bJ2rpIa2t4Y0FITfzJEQKJ5fsWnXSwVsw%3d%3d">634-EM341-RT</a><br />
  1858. <br />
  1859. <br />
  1860. </div></td><td>
  1861. <div class="mfrDiv">
  1862. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Silicon-Labs/EM341-RT/?qs=sGAEpiMZZMvQqVCO1QUke%252bJ2rpIa2t4Y0FITfzJEQKJ5fsWnXSwVsw%3d%3d">EM341-RT</a><br />
  1863. <br />
  1864. <div style="width: 100%; text-align: center;">
  1865. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  1866. </div>
  1867. <div style="width: 100%; text-align: center;">
  1868. </div>
  1869. </div>
  1870. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl03_lnkSupplier" href="../../../../../../Silicon-Laboratories">Silicon Labs</a>
  1871. </td><td>RF片上系统 - SoC RF4CE Remote SoC 128Kb Flash 12Kb RAM
  1872. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  1873. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../silabs-em34x-wireless/">了解更多</a>
  1874. </div>
  1875. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  1876. </div>
  1877. </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;Silicon Labs&quot;,&quot;634-EM341-RT | EM341-RT&quot;]);" href="http://www.mouser.com/ds/2/368/EM341_Datasheet-587810.pdf" target="_blank">数据表</a>
  1878. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl06_lnkAvailability">356<br/>有库存</span>
  1879. <table>
  1880. <tr align="center">
  1881. <td style="padding-top: 5px">
  1882. </td>
  1883. </tr>
  1884. <tr align="center">
  1885. <td style="padding-top: 5px; padding-bottom: 5px">
  1886. </td>
  1887. </tr>
  1888. </table></td><td>
  1889. <table class="PriceBreaks" cellspacing="0" border="0">
  1890. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  1891. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1892. </td>
  1893. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1894. </td>
  1895. </tr>
  1896. <tr>
  1897. <td class="PriceBreakQuantity">
  1898. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(1,1);">1:</a>
  1899. </td>
  1900. <td class="PriceBreakPrice">
  1901. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥35.8839</span>
  1902. </td>
  1903. </tr>
  1904. <tr>
  1905. <td class="PriceBreakQuantity">
  1906. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(1,10);">10:</a>
  1907. </td>
  1908. <td class="PriceBreakPrice">
  1909. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥33.8832</span>
  1910. </td>
  1911. </tr>
  1912. <tr>
  1913. <td class="PriceBreakQuantity">
  1914. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(1,25);">25:</a>
  1915. </td>
  1916. <td class="PriceBreakPrice">
  1917. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥32.8887</span>
  1918. </td>
  1919. </tr>
  1920. <tr>
  1921. <td class="PriceBreakQuantity">
  1922. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(1,50);">50:</a>
  1923. </td>
  1924. <td class="PriceBreakPrice">
  1925. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥31.8825</span>
  1926. </td>
  1927. </tr>
  1928. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  1929. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  1930. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(1,100);">100:</a>
  1931. </td>
  1932. <td class="PriceBreakPrice">
  1933. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Silicon-Labs/EM341-RT/?qs=sGAEpiMZZMvQqVCO1QUke%252bJ2rpIa2t4Y0FITfzJEQKJ5fsWnXSwVsw%3d%3d">查看</a>
  1934. </td>
  1935. </tr>
  1936. <tr>
  1937. <td><br /></td>
  1938. </tr>
  1939. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  1940. <td colspan="2" style="text-align: center;">
  1941. </td>
  1942. </tr>
  1943. </table>
  1944. </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;)">
  1945. <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 />
  1946. <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="购买 EM341-RT" class="buy-button" /><br />
  1947. <table cellspacing="0" border="0" style="width: 100%;">
  1948. <tr>
  1949. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1950. 最低:
  1951. </td>
  1952. <td style="padding-left: 2px; text-align: left;">
  1953. 1
  1954. </td>
  1955. </tr>
  1956. <tr>
  1957. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1958. 多个:
  1959. </td>
  1960. <td style="padding-left: 2px; text-align: left;">
  1961. 1
  1962. </td>
  1963. </tr>
  1964. </table>
  1965. </div>
  1966. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_pnlCompliant">
  1967. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  1968. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=bwSZdsiDM3cw%252bGQnavhKCg%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=bwSZdsiDM3cw%252bGQnavhKCg%3d%3d" target="_blank">详细信息</a>
  1969. </div>
  1970. </td><td>Zigbee
  1971. </td><td>ARM Cortex M3
  1972. </td><td>2.4 GHz
  1973. </td><td>250 kb/s
  1974. </td><td>5 dBm
  1975. </td><td>- 100 dBm
  1976. </td><td>2.1 V to 3.6 V
  1977. </td><td>26 mA
  1978. </td><td>31 mA
  1979. </td><td>128 kB
  1980. </td><td>- 40 C to + 85 C
  1981. </td><td>QFN-48
  1982. </td>
  1983. </tr><tr class="SearchResultsRowEven" data-partnumber="634-FG1P132F64GM32" data-index="4">
  1984. <td class="td-select" align="center">
  1985. <div style="padding: 5px 5px 0 5px;">
  1986. <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>
  1987. </div>
  1988. </td><td><a href='/ProductDetail/Silicon-Labs/EFR32FG1P132F64GM32-B0/?qs=sGAEpiMZZMvQqVCO1QUke2Mn8%252bPhuXV925H6BzCVdX9339a83dVhwg%3d%3d'><img title='Silicon Labs EFR32FG1P132F64GM32-B0' alt='Silicon Labs EFR32FG1P132F64GM32-B0' id=1631033740 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>
  1989. <div style="text-align:left;">
  1990. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Silicon-Labs/EFR32FG1P132F64GM32-B0/?qs=sGAEpiMZZMvQqVCO1QUke2Mn8%252bPhuXV925H6BzCVdX9339a83dVhwg%3d%3d">634-FG1P132F64GM32</a><br />
  1991. <br />
  1992. <br />
  1993. </div></td><td>
  1994. <div class="mfrDiv">
  1995. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Silicon-Labs/EFR32FG1P132F64GM32-B0/?qs=sGAEpiMZZMvQqVCO1QUke2Mn8%252bPhuXV925H6BzCVdX9339a83dVhwg%3d%3d">EFR32FG1P132F64GM32-B0</a><br />
  1996. <br />
  1997. <div style="width: 100%; text-align: center;">
  1998. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  1999. </div>
  2000. <div style="width: 100%; text-align: center;">
  2001. </div>
  2002. </div>
  2003. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl03_lnkSupplier" href="../../../../../../Silicon-Laboratories">Silicon Labs</a>
  2004. </td><td>RF片上系统 - SoC EFR32FG PER,19.5dBm 64 KB FM/16 KB RAM
  2005. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2006. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../new/Silicon-Laboratories/silabs-efr32fg-flex-gecko-mcu/">了解更多</a>
  2007. </div>
  2008. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2009. </div>
  2010. </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;Silicon Labs&quot;,&quot;634-FG1P132F64GM32 | EFR32FG1P132F64GM32-B0&quot;]);" href="http://www.mouser.com/ds/2/368/EFR32FG1-DataSheet-876878.pdf" target="_blank">数据表</a>
  2011. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl06_lnkAvailability">260<br/>有库存</span>
  2012. <table>
  2013. <tr align="center">
  2014. <td style="padding-top: 5px">
  2015. </td>
  2016. </tr>
  2017. <tr align="center">
  2018. <td style="padding-top: 5px; padding-bottom: 5px">
  2019. </td>
  2020. </tr>
  2021. </table></td><td>
  2022. <table class="PriceBreaks" cellspacing="0" border="0">
  2023. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2024. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2025. </td>
  2026. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2027. </td>
  2028. </tr>
  2029. <tr>
  2030. <td class="PriceBreakQuantity">
  2031. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(2,1);">1:</a>
  2032. </td>
  2033. <td class="PriceBreakPrice">
  2034. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥41.9679</span>
  2035. </td>
  2036. </tr>
  2037. <tr>
  2038. <td class="PriceBreakQuantity">
  2039. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(2,10);">10:</a>
  2040. </td>
  2041. <td class="PriceBreakPrice">
  2042. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥39.663</span>
  2043. </td>
  2044. </tr>
  2045. <tr>
  2046. <td class="PriceBreakQuantity">
  2047. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(2,25);">25:</a>
  2048. </td>
  2049. <td class="PriceBreakPrice">
  2050. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥38.5047</span>
  2051. </td>
  2052. </tr>
  2053. <tr>
  2054. <td class="PriceBreakQuantity">
  2055. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(2,50);">50:</a>
  2056. </td>
  2057. <td class="PriceBreakPrice">
  2058. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥37.2762</span>
  2059. </td>
  2060. </tr>
  2061. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  2062. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2063. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(2,100);">100:</a>
  2064. </td>
  2065. <td class="PriceBreakPrice">
  2066. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Silicon-Labs/EFR32FG1P132F64GM32-B0/?qs=sGAEpiMZZMvQqVCO1QUke2Mn8%252bPhuXV925H6BzCVdX9339a83dVhwg%3d%3d">查看</a>
  2067. </td>
  2068. </tr>
  2069. <tr>
  2070. <td><br /></td>
  2071. </tr>
  2072. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2073. <td colspan="2" style="text-align: center;">
  2074. </td>
  2075. </tr>
  2076. </table>
  2077. </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;)">
  2078. <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 />
  2079. <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="购买 EFR32FG1P132F64GM32-B0" class="buy-button" /><br />
  2080. <table cellspacing="0" border="0" style="width: 100%;">
  2081. <tr>
  2082. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2083. 最低:
  2084. </td>
  2085. <td style="padding-left: 2px; text-align: left;">
  2086. 1
  2087. </td>
  2088. </tr>
  2089. <tr>
  2090. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2091. 多个:
  2092. </td>
  2093. <td style="padding-left: 2px; text-align: left;">
  2094. 1
  2095. </td>
  2096. </tr>
  2097. </table>
  2098. </div>
  2099. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_pnlCompliant">
  2100. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2101. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=urDlHJNckCIhHvCTykLdgg%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=urDlHJNckCIhHvCTykLdgg%3d%3d" target="_blank">详细信息</a>
  2102. </div>
  2103. </td><td>
  2104. </td><td>ARM Cortex M4
  2105. </td><td>2.4 GHz
  2106. </td><td>2 Mb/s
  2107. </td><td>19.5 dBm
  2108. </td><td>- 94 dBm
  2109. </td><td>1.85 V to 3.8 V
  2110. </td><td>8.8 mA
  2111. </td><td>133 mA
  2112. </td><td>64 kB
  2113. </td><td>- 40 C to + 85 C
  2114. </td><td>QFN-32
  2115. </td>
  2116. </tr><tr class="SearchResultsRowOdd" data-partnumber="634-FG1P132F128GM48" data-index="5">
  2117. <td class="td-select" align="center">
  2118. <div style="padding: 5px 5px 0 5px;">
  2119. <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>
  2120. </div>
  2121. </td><td><a href='/ProductDetail/Silicon-Labs/EFR32FG1P132F128GM48-B0/?qs=sGAEpiMZZMvQqVCO1QUke2Mn8%252bPhuXV9mab%252bf5iy%252bnuM3HVSdXCwsw%3d%3d'><img title='Silicon Labs EFR32FG1P132F128GM48-B0' alt='Silicon Labs EFR32FG1P132F128GM48-B0' id=1631033738 src='/images/mouserimages/sm/QFN_48_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_48_t.jpg</div></a></td><td>
  2122. <div style="text-align:left;">
  2123. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Silicon-Labs/EFR32FG1P132F128GM48-B0/?qs=sGAEpiMZZMvQqVCO1QUke2Mn8%252bPhuXV9mab%252bf5iy%252bnuM3HVSdXCwsw%3d%3d">634-FG1P132F128GM48</a><br />
  2124. <br />
  2125. <br />
  2126. </div></td><td>
  2127. <div class="mfrDiv">
  2128. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Silicon-Labs/EFR32FG1P132F128GM48-B0/?qs=sGAEpiMZZMvQqVCO1QUke2Mn8%252bPhuXV9mab%252bf5iy%252bnuM3HVSdXCwsw%3d%3d">EFR32FG1P132F128GM48-B0</a><br />
  2129. <br />
  2130. <div style="width: 100%; text-align: center;">
  2131. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2132. </div>
  2133. <div style="width: 100%; text-align: center;">
  2134. </div>
  2135. </div>
  2136. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl03_lnkSupplier" href="../../../../../../Silicon-Laboratories">Silicon Labs</a>
  2137. </td><td>RF片上系统 - SoC EFR32FG PER,19.5dBm 128 KB FM/32 KB RAM
  2138. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2139. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../new/Silicon-Laboratories/silabs-efr32fg-flex-gecko-mcu/">了解更多</a>
  2140. </div>
  2141. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2142. </div>
  2143. </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;Silicon Labs&quot;,&quot;634-FG1P132F128GM48 | EFR32FG1P132F128GM48-B0&quot;]);" href="http://www.mouser.com/ds/2/368/EFR32FG1-DataSheet-876878.pdf" target="_blank">数据表</a>
  2144. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl06_lnkAvailability">260<br/>有库存</span>
  2145. <table>
  2146. <tr align="center">
  2147. <td style="padding-top: 5px">
  2148. </td>
  2149. </tr>
  2150. <tr align="center">
  2151. <td style="padding-top: 5px; padding-bottom: 5px">
  2152. </td>
  2153. </tr>
  2154. </table></td><td>
  2155. <table class="PriceBreaks" cellspacing="0" border="0">
  2156. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2157. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2158. </td>
  2159. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2160. </td>
  2161. </tr>
  2162. <tr>
  2163. <td class="PriceBreakQuantity">
  2164. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(3,1);">1:</a>
  2165. </td>
  2166. <td class="PriceBreakPrice">
  2167. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥45.747</span>
  2168. </td>
  2169. </tr>
  2170. <tr>
  2171. <td class="PriceBreakQuantity">
  2172. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(3,10);">10:</a>
  2173. </td>
  2174. <td class="PriceBreakPrice">
  2175. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥43.2081</span>
  2176. </td>
  2177. </tr>
  2178. <tr>
  2179. <td class="PriceBreakQuantity">
  2180. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(3,25);">25:</a>
  2181. </td>
  2182. <td class="PriceBreakPrice">
  2183. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥41.8977</span>
  2184. </td>
  2185. </tr>
  2186. <tr>
  2187. <td class="PriceBreakQuantity">
  2188. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(3,50);">50:</a>
  2189. </td>
  2190. <td class="PriceBreakPrice">
  2191. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥40.6575</span>
  2192. </td>
  2193. </tr>
  2194. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  2195. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2196. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(3,100);">100:</a>
  2197. </td>
  2198. <td class="PriceBreakPrice">
  2199. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Silicon-Labs/EFR32FG1P132F128GM48-B0/?qs=sGAEpiMZZMvQqVCO1QUke2Mn8%252bPhuXV9mab%252bf5iy%252bnuM3HVSdXCwsw%3d%3d">查看</a>
  2200. </td>
  2201. </tr>
  2202. <tr>
  2203. <td><br /></td>
  2204. </tr>
  2205. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2206. <td colspan="2" style="text-align: center;">
  2207. </td>
  2208. </tr>
  2209. </table>
  2210. </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;)">
  2211. <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 />
  2212. <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="购买 EFR32FG1P132F128GM48-B0" class="buy-button" /><br />
  2213. <table cellspacing="0" border="0" style="width: 100%;">
  2214. <tr>
  2215. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2216. 最低:
  2217. </td>
  2218. <td style="padding-left: 2px; text-align: left;">
  2219. 1
  2220. </td>
  2221. </tr>
  2222. <tr>
  2223. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2224. 多个:
  2225. </td>
  2226. <td style="padding-left: 2px; text-align: left;">
  2227. 1
  2228. </td>
  2229. </tr>
  2230. </table>
  2231. </div>
  2232. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_pnlCompliant">
  2233. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2234. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=urDlHJNckCK7wCadI7twow%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=urDlHJNckCK7wCadI7twow%3d%3d" target="_blank">详细信息</a>
  2235. </div>
  2236. </td><td>
  2237. </td><td>ARM Cortex M4
  2238. </td><td>2.4 GHz
  2239. </td><td>2 Mb/s
  2240. </td><td>19.5 dBm
  2241. </td><td>- 94 dBm
  2242. </td><td>1.85 V to 3.8 V
  2243. </td><td>8.8 mA
  2244. </td><td>133 mA
  2245. </td><td>128 kB
  2246. </td><td>- 40 C to + 85 C
  2247. </td><td>QFN-48
  2248. </td>
  2249. </tr><tr class="SearchResultsRowEven" data-partnumber="634-FG1V132F256GM48" data-index="6">
  2250. <td class="td-select" align="center">
  2251. <div style="padding: 5px 5px 0 5px;">
  2252. <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>
  2253. </div>
  2254. </td><td><a href='/ProductDetail/Silicon-Labs/EFR32FG1V132F256GM48-B0/?qs=sGAEpiMZZMvQqVCO1QUke2Mn8%252bPhuXV9l7Smo031qYIIPlL9hiHxAw%3d%3d'><img title='Silicon Labs EFR32FG1V132F256GM48-B0' alt='Silicon Labs EFR32FG1V132F256GM48-B0' id=1631033748 src='/images/mouserimages/sm/QFN_48_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_48_t.jpg</div></a></td><td>
  2255. <div style="text-align:left;">
  2256. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Silicon-Labs/EFR32FG1V132F256GM48-B0/?qs=sGAEpiMZZMvQqVCO1QUke2Mn8%252bPhuXV9l7Smo031qYIIPlL9hiHxAw%3d%3d">634-FG1V132F256GM48</a><br />
  2257. <br />
  2258. <br />
  2259. </div></td><td>
  2260. <div class="mfrDiv">
  2261. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Silicon-Labs/EFR32FG1V132F256GM48-B0/?qs=sGAEpiMZZMvQqVCO1QUke2Mn8%252bPhuXV9l7Smo031qYIIPlL9hiHxAw%3d%3d">EFR32FG1V132F256GM48-B0</a><br />
  2262. <br />
  2263. <div style="width: 100%; text-align: center;">
  2264. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2265. </div>
  2266. <div style="width: 100%; text-align: center;">
  2267. </div>
  2268. </div>
  2269. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl03_lnkSupplier" href="../../../../../../Silicon-Laboratories">Silicon Labs</a>
  2270. </td><td>RF片上系统 - SoC EFR32FG VAL,16.5dBm 256 KB FM/32 KB RAM
  2271. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2272. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../new/Silicon-Laboratories/silabs-efr32fg-flex-gecko-mcu/">了解更多</a>
  2273. </div>
  2274. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2275. </div>
  2276. </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;Silicon Labs&quot;,&quot;634-FG1V132F256GM48 | EFR32FG1V132F256GM48-B0&quot;]);" href="http://www.mouser.com/ds/2/368/EFR32FG1-DataSheet-876878.pdf" target="_blank">数据表</a>
  2277. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl06_lnkAvailability">260<br/>有库存</span>
  2278. <table>
  2279. <tr align="center">
  2280. <td style="padding-top: 5px">
  2281. </td>
  2282. </tr>
  2283. <tr align="center">
  2284. <td style="padding-top: 5px; padding-bottom: 5px">
  2285. </td>
  2286. </tr>
  2287. </table></td><td>
  2288. <table class="PriceBreaks" cellspacing="0" border="0">
  2289. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2290. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2291. </td>
  2292. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2293. </td>
  2294. </tr>
  2295. <tr>
  2296. <td class="PriceBreakQuantity">
  2297. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(4,1);">1:</a>
  2298. </td>
  2299. <td class="PriceBreakPrice">
  2300. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥45.9693</span>
  2301. </td>
  2302. </tr>
  2303. <tr>
  2304. <td class="PriceBreakQuantity">
  2305. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(4,10);">10:</a>
  2306. </td>
  2307. <td class="PriceBreakPrice">
  2308. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥43.4304</span>
  2309. </td>
  2310. </tr>
  2311. <tr>
  2312. <td class="PriceBreakQuantity">
  2313. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(4,25);">25:</a>
  2314. </td>
  2315. <td class="PriceBreakPrice">
  2316. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥42.12</span>
  2317. </td>
  2318. </tr>
  2319. <tr>
  2320. <td class="PriceBreakQuantity">
  2321. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(4,50);">50:</a>
  2322. </td>
  2323. <td class="PriceBreakPrice">
  2324. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥40.8915</span>
  2325. </td>
  2326. </tr>
  2327. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  2328. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2329. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(4,100);">100:</a>
  2330. </td>
  2331. <td class="PriceBreakPrice">
  2332. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Silicon-Labs/EFR32FG1V132F256GM48-B0/?qs=sGAEpiMZZMvQqVCO1QUke2Mn8%252bPhuXV9l7Smo031qYIIPlL9hiHxAw%3d%3d">查看</a>
  2333. </td>
  2334. </tr>
  2335. <tr>
  2336. <td><br /></td>
  2337. </tr>
  2338. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2339. <td colspan="2" style="text-align: center;">
  2340. </td>
  2341. </tr>
  2342. </table>
  2343. </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;)">
  2344. <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 />
  2345. <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="购买 EFR32FG1V132F256GM48-B0" class="buy-button" /><br />
  2346. <table cellspacing="0" border="0" style="width: 100%;">
  2347. <tr>
  2348. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2349. 最低:
  2350. </td>
  2351. <td style="padding-left: 2px; text-align: left;">
  2352. 1
  2353. </td>
  2354. </tr>
  2355. <tr>
  2356. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2357. 多个:
  2358. </td>
  2359. <td style="padding-left: 2px; text-align: left;">
  2360. 1
  2361. </td>
  2362. </tr>
  2363. </table>
  2364. </div>
  2365. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_pnlCompliant">
  2366. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2367. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=urDlHJNckCJbPzyBSmvRjQ%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=urDlHJNckCJbPzyBSmvRjQ%3d%3d" target="_blank">详细信息</a>
  2368. </div>
  2369. </td><td>
  2370. </td><td>ARM Cortex M4
  2371. </td><td>2.4 GHz
  2372. </td><td>2 Mb/s
  2373. </td><td>16.5 dBm
  2374. </td><td>- 94 dBm
  2375. </td><td>1.85 V to 3.8 V
  2376. </td><td>8.8 mA
  2377. </td><td>133 mA
  2378. </td><td>256 kB
  2379. </td><td>- 40 C to + 85 C
  2380. </td><td>QFN-48
  2381. </td>
  2382. </tr><tr class="SearchResultsRowOdd" data-partnumber="634-FG1P132F256GM48" data-index="7">
  2383. <td class="td-select" align="center">
  2384. <div style="padding: 5px 5px 0 5px;">
  2385. <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>
  2386. </div>
  2387. </td><td><a href='/ProductDetail/Silicon-Labs/EFR32FG1P132F256GM48-B0/?qs=sGAEpiMZZMvQqVCO1QUke2Mn8%252bPhuXV9AhhgzLecH9eR5NogLja5xw%3d%3d'><img title='Silicon Labs EFR32FG1P132F256GM48-B0' alt='Silicon Labs EFR32FG1P132F256GM48-B0' id=1631033736 src='/images/mouserimages/sm/QFN_48_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_48_t.jpg</div></a></td><td>
  2388. <div style="text-align:left;">
  2389. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Silicon-Labs/EFR32FG1P132F256GM48-B0/?qs=sGAEpiMZZMvQqVCO1QUke2Mn8%252bPhuXV9AhhgzLecH9eR5NogLja5xw%3d%3d">634-FG1P132F256GM48</a><br />
  2390. <br />
  2391. <br />
  2392. </div></td><td>
  2393. <div class="mfrDiv">
  2394. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Silicon-Labs/EFR32FG1P132F256GM48-B0/?qs=sGAEpiMZZMvQqVCO1QUke2Mn8%252bPhuXV9AhhgzLecH9eR5NogLja5xw%3d%3d">EFR32FG1P132F256GM48-B0</a><br />
  2395. <br />
  2396. <div style="width: 100%; text-align: center;">
  2397. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2398. </div>
  2399. <div style="width: 100%; text-align: center;">
  2400. </div>
  2401. </div>
  2402. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl03_lnkSupplier" href="../../../../../../Silicon-Laboratories">Silicon Labs</a>
  2403. </td><td>RF片上系统 - SoC EFR32FG PER,19.5dBm 256 KB FM/32 KB RAM
  2404. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2405. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../new/Silicon-Laboratories/silabs-efr32fg-flex-gecko-mcu/">了解更多</a>
  2406. </div>
  2407. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2408. </div>
  2409. </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;Silicon Labs&quot;,&quot;634-FG1P132F256GM48 | EFR32FG1P132F256GM48-B0&quot;]);" href="http://www.mouser.com/ds/2/368/EFR32FG1-DataSheet-876878.pdf" target="_blank">数据表</a>
  2410. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl06_lnkAvailability">258<br/>有库存</span>
  2411. <table>
  2412. <tr align="center">
  2413. <td style="padding-top: 5px">
  2414. </td>
  2415. </tr>
  2416. <tr align="center">
  2417. <td style="padding-top: 5px; padding-bottom: 5px">
  2418. </td>
  2419. </tr>
  2420. </table></td><td>
  2421. <table class="PriceBreaks" cellspacing="0" border="0">
  2422. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2423. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2424. </td>
  2425. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2426. </td>
  2427. </tr>
  2428. <tr>
  2429. <td class="PriceBreakQuantity">
  2430. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(5,1);">1:</a>
  2431. </td>
  2432. <td class="PriceBreakPrice">
  2433. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥48.204</span>
  2434. </td>
  2435. </tr>
  2436. <tr>
  2437. <td class="PriceBreakQuantity">
  2438. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(5,10);">10:</a>
  2439. </td>
  2440. <td class="PriceBreakPrice">
  2441. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥45.513</span>
  2442. </td>
  2443. </tr>
  2444. <tr>
  2445. <td class="PriceBreakQuantity">
  2446. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(5,25);">25:</a>
  2447. </td>
  2448. <td class="PriceBreakPrice">
  2449. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥44.2026</span>
  2450. </td>
  2451. </tr>
  2452. <tr>
  2453. <td class="PriceBreakQuantity">
  2454. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(5,50);">50:</a>
  2455. </td>
  2456. <td class="PriceBreakPrice">
  2457. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥42.822</span>
  2458. </td>
  2459. </tr>
  2460. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  2461. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2462. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(5,100);">100:</a>
  2463. </td>
  2464. <td class="PriceBreakPrice">
  2465. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Silicon-Labs/EFR32FG1P132F256GM48-B0/?qs=sGAEpiMZZMvQqVCO1QUke2Mn8%252bPhuXV9AhhgzLecH9eR5NogLja5xw%3d%3d">查看</a>
  2466. </td>
  2467. </tr>
  2468. <tr>
  2469. <td><br /></td>
  2470. </tr>
  2471. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2472. <td colspan="2" style="text-align: center;">
  2473. </td>
  2474. </tr>
  2475. </table>
  2476. </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;)">
  2477. <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 />
  2478. <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="购买 EFR32FG1P132F256GM48-B0" class="buy-button" /><br />
  2479. <table cellspacing="0" border="0" style="width: 100%;">
  2480. <tr>
  2481. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2482. 最低:
  2483. </td>
  2484. <td style="padding-left: 2px; text-align: left;">
  2485. 1
  2486. </td>
  2487. </tr>
  2488. <tr>
  2489. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2490. 多个:
  2491. </td>
  2492. <td style="padding-left: 2px; text-align: left;">
  2493. 1
  2494. </td>
  2495. </tr>
  2496. </table>
  2497. </div>
  2498. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_pnlCompliant">
  2499. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2500. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=urDlHJNckCJBJjDJh8ulDQ%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=urDlHJNckCJBJjDJh8ulDQ%3d%3d" target="_blank">详细信息</a>
  2501. </div>
  2502. </td><td>
  2503. </td><td>ARM Cortex M4
  2504. </td><td>2.4 GHz
  2505. </td><td>2 Mb/s
  2506. </td><td>19.5 dBm
  2507. </td><td>- 94 dBm
  2508. </td><td>1.85 V to 3.8 V
  2509. </td><td>8.8 mA
  2510. </td><td>133 mA
  2511. </td><td>256 kB
  2512. </td><td>- 40 C to + 85 C
  2513. </td><td>QFN-48
  2514. </td>
  2515. </tr><tr class="SearchResultsRowEven" data-partnumber="634-FG1V132F32GM32" data-index="8">
  2516. <td class="td-select" align="center">
  2517. <div style="padding: 5px 5px 0 5px;">
  2518. <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>
  2519. </div>
  2520. </td><td><a href='/ProductDetail/Silicon-Labs/EFR32FG1V132F32GM32-B0/?qs=sGAEpiMZZMvQqVCO1QUke2Mn8%252bPhuXV9mhUU9sFWajh%252b%252bOc86B4Kfg%3d%3d'><img title='Silicon Labs EFR32FG1V132F32GM32-B0' alt='Silicon Labs EFR32FG1V132F32GM32-B0' id=1631033734 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>
  2521. <div style="text-align:left;">
  2522. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Silicon-Labs/EFR32FG1V132F32GM32-B0/?qs=sGAEpiMZZMvQqVCO1QUke2Mn8%252bPhuXV9mhUU9sFWajh%252b%252bOc86B4Kfg%3d%3d">634-FG1V132F32GM32</a><br />
  2523. <br />
  2524. <br />
  2525. </div></td><td>
  2526. <div class="mfrDiv">
  2527. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Silicon-Labs/EFR32FG1V132F32GM32-B0/?qs=sGAEpiMZZMvQqVCO1QUke2Mn8%252bPhuXV9mhUU9sFWajh%252b%252bOc86B4Kfg%3d%3d">EFR32FG1V132F32GM32-B0</a><br />
  2528. <br />
  2529. <div style="width: 100%; text-align: center;">
  2530. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2531. </div>
  2532. <div style="width: 100%; text-align: center;">
  2533. </div>
  2534. </div>
  2535. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl03_lnkSupplier" href="../../../../../../Silicon-Laboratories">Silicon Labs</a>
  2536. </td><td>RF片上系统 - SoC EFR32FG VAL,16.5dBm 32 KB FM/8 KB RAM
  2537. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2538. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../new/Silicon-Laboratories/silabs-efr32fg-flex-gecko-mcu/">了解更多</a>
  2539. </div>
  2540. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2541. </div>
  2542. </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;Silicon Labs&quot;,&quot;634-FG1V132F32GM32 | EFR32FG1V132F32GM32-B0&quot;]);" href="http://www.mouser.com/ds/2/368/EFR32FG1-DataSheet-876878.pdf" target="_blank">数据表</a>
  2543. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl06_lnkAvailability">258<br/>有库存</span>
  2544. <table>
  2545. <tr align="center">
  2546. <td style="padding-top: 5px">
  2547. </td>
  2548. </tr>
  2549. <tr align="center">
  2550. <td style="padding-top: 5px; padding-bottom: 5px">
  2551. </td>
  2552. </tr>
  2553. </table></td><td>
  2554. <table class="PriceBreaks" cellspacing="0" border="0">
  2555. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2556. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2557. </td>
  2558. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2559. </td>
  2560. </tr>
  2561. <tr>
  2562. <td class="PriceBreakQuantity">
  2563. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(6,1);">1:</a>
  2564. </td>
  2565. <td class="PriceBreakPrice">
  2566. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥38.5047</span>
  2567. </td>
  2568. </tr>
  2569. <tr>
  2570. <td class="PriceBreakQuantity">
  2571. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(6,10);">10:</a>
  2572. </td>
  2573. <td class="PriceBreakPrice">
  2574. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥36.3519</span>
  2575. </td>
  2576. </tr>
  2577. <tr>
  2578. <td class="PriceBreakQuantity">
  2579. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(6,25);">25:</a>
  2580. </td>
  2581. <td class="PriceBreakPrice">
  2582. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥35.2755</span>
  2583. </td>
  2584. </tr>
  2585. <tr>
  2586. <td class="PriceBreakQuantity">
  2587. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(6,50);">50:</a>
  2588. </td>
  2589. <td class="PriceBreakPrice">
  2590. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥34.1874</span>
  2591. </td>
  2592. </tr>
  2593. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  2594. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2595. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(6,100);">100:</a>
  2596. </td>
  2597. <td class="PriceBreakPrice">
  2598. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Silicon-Labs/EFR32FG1V132F32GM32-B0/?qs=sGAEpiMZZMvQqVCO1QUke2Mn8%252bPhuXV9mhUU9sFWajh%252b%252bOc86B4Kfg%3d%3d">查看</a>
  2599. </td>
  2600. </tr>
  2601. <tr>
  2602. <td><br /></td>
  2603. </tr>
  2604. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2605. <td colspan="2" style="text-align: center;">
  2606. </td>
  2607. </tr>
  2608. </table>
  2609. </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;)">
  2610. <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 />
  2611. <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="购买 EFR32FG1V132F32GM32-B0" class="buy-button" /><br />
  2612. <table cellspacing="0" border="0" style="width: 100%;">
  2613. <tr>
  2614. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2615. 最低:
  2616. </td>
  2617. <td style="padding-left: 2px; text-align: left;">
  2618. 1
  2619. </td>
  2620. </tr>
  2621. <tr>
  2622. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2623. 多个:
  2624. </td>
  2625. <td style="padding-left: 2px; text-align: left;">
  2626. 1
  2627. </td>
  2628. </tr>
  2629. </table>
  2630. </div>
  2631. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_pnlCompliant">
  2632. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2633. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=urDlHJNckCL0Wdf4yuPaPQ%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=urDlHJNckCL0Wdf4yuPaPQ%3d%3d" target="_blank">详细信息</a>
  2634. </div>
  2635. </td><td>
  2636. </td><td>ARM Cortex M4
  2637. </td><td>2.4 GHz
  2638. </td><td>2 Mb/s
  2639. </td><td>16.5 dBm
  2640. </td><td>- 94 dBm
  2641. </td><td>1.85 V to 3.8 V
  2642. </td><td>8.8 mA
  2643. </td><td>133 mA
  2644. </td><td>32 kB
  2645. </td><td>- 40 C to + 85 C
  2646. </td><td>QFN-32
  2647. </td>
  2648. </tr><tr class="SearchResultsRowOdd" data-partnumber="634-FG1V132F32GM48" data-index="9">
  2649. <td class="td-select" align="center">
  2650. <div style="padding: 5px 5px 0 5px;">
  2651. <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>
  2652. </div>
  2653. </td><td><a href='/ProductDetail/Silicon-Labs/EFR32FG1V132F32GM48-B0/?qs=sGAEpiMZZMvQqVCO1QUke2Mn8%252bPhuXV9FpuvjAAUYXL56FpOC%2fEFVA%3d%3d'><img title='Silicon Labs EFR32FG1V132F32GM48-B0' alt='Silicon Labs EFR32FG1V132F32GM48-B0' id=1631033756 src='/images/mouserimages/sm/QFN_48_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_48_t.jpg</div></a></td><td>
  2654. <div style="text-align:left;">
  2655. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Silicon-Labs/EFR32FG1V132F32GM48-B0/?qs=sGAEpiMZZMvQqVCO1QUke2Mn8%252bPhuXV9FpuvjAAUYXL56FpOC%2fEFVA%3d%3d">634-FG1V132F32GM48</a><br />
  2656. <br />
  2657. <br />
  2658. </div></td><td>
  2659. <div class="mfrDiv">
  2660. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Silicon-Labs/EFR32FG1V132F32GM48-B0/?qs=sGAEpiMZZMvQqVCO1QUke2Mn8%252bPhuXV9FpuvjAAUYXL56FpOC%2fEFVA%3d%3d">EFR32FG1V132F32GM48-B0</a><br />
  2661. <br />
  2662. <div style="width: 100%; text-align: center;">
  2663. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2664. </div>
  2665. <div style="width: 100%; text-align: center;">
  2666. </div>
  2667. </div>
  2668. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl03_lnkSupplier" href="../../../../../../Silicon-Laboratories">Silicon Labs</a>
  2669. </td><td>RF片上系统 - SoC EFR32FG VAL,16.5dBm 32 KB FM/8 KB RAM
  2670. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2671. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../new/Silicon-Laboratories/silabs-efr32fg-flex-gecko-mcu/">了解更多</a>
  2672. </div>
  2673. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2674. </div>
  2675. </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;Silicon Labs&quot;,&quot;634-FG1V132F32GM48 | EFR32FG1V132F32GM48-B0&quot;]);" href="http://www.mouser.com/ds/2/368/EFR32FG1-DataSheet-876878.pdf" target="_blank">数据表</a>
  2676. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl06_lnkAvailability">260<br/>有库存</span>
  2677. <table>
  2678. <tr align="center">
  2679. <td style="padding-top: 5px">
  2680. </td>
  2681. </tr>
  2682. <tr align="center">
  2683. <td style="padding-top: 5px; padding-bottom: 5px">
  2684. </td>
  2685. </tr>
  2686. </table></td><td>
  2687. <table class="PriceBreaks" cellspacing="0" border="0">
  2688. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2689. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2690. </td>
  2691. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2692. </td>
  2693. </tr>
  2694. <tr>
  2695. <td class="PriceBreakQuantity">
  2696. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(7,1);">1:</a>
  2697. </td>
  2698. <td class="PriceBreakPrice">
  2699. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥39.7332</span>
  2700. </td>
  2701. </tr>
  2702. <tr>
  2703. <td class="PriceBreakQuantity">
  2704. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(7,10);">10:</a>
  2705. </td>
  2706. <td class="PriceBreakPrice">
  2707. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥37.4985</span>
  2708. </td>
  2709. </tr>
  2710. <tr>
  2711. <td class="PriceBreakQuantity">
  2712. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(7,25);">25:</a>
  2713. </td>
  2714. <td class="PriceBreakPrice">
  2715. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥36.4221</span>
  2716. </td>
  2717. </tr>
  2718. <tr>
  2719. <td class="PriceBreakQuantity">
  2720. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(7,50);">50:</a>
  2721. </td>
  2722. <td class="PriceBreakPrice">
  2723. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥35.3457</span>
  2724. </td>
  2725. </tr>
  2726. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  2727. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2728. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(7,100);">100:</a>
  2729. </td>
  2730. <td class="PriceBreakPrice">
  2731. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Silicon-Labs/EFR32FG1V132F32GM48-B0/?qs=sGAEpiMZZMvQqVCO1QUke2Mn8%252bPhuXV9FpuvjAAUYXL56FpOC%2fEFVA%3d%3d">查看</a>
  2732. </td>
  2733. </tr>
  2734. <tr>
  2735. <td><br /></td>
  2736. </tr>
  2737. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2738. <td colspan="2" style="text-align: center;">
  2739. </td>
  2740. </tr>
  2741. </table>
  2742. </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;)">
  2743. <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 />
  2744. <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="购买 EFR32FG1V132F32GM48-B0" class="buy-button" /><br />
  2745. <table cellspacing="0" border="0" style="width: 100%;">
  2746. <tr>
  2747. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2748. 最低:
  2749. </td>
  2750. <td style="padding-left: 2px; text-align: left;">
  2751. 1
  2752. </td>
  2753. </tr>
  2754. <tr>
  2755. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2756. 多个:
  2757. </td>
  2758. <td style="padding-left: 2px; text-align: left;">
  2759. 1
  2760. </td>
  2761. </tr>
  2762. </table>
  2763. </div>
  2764. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_pnlCompliant">
  2765. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2766. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=urDlHJNckCISaA9qI7iusw%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=urDlHJNckCISaA9qI7iusw%3d%3d" target="_blank">详细信息</a>
  2767. </div>
  2768. </td><td>
  2769. </td><td>ARM Cortex M4
  2770. </td><td>2.4 GHz
  2771. </td><td>2 Mb/s
  2772. </td><td>16.5 dBm
  2773. </td><td>- 94 dBm
  2774. </td><td>1.85 V to 3.8 V
  2775. </td><td>8.8 mA
  2776. </td><td>133 mA
  2777. </td><td>32 kB
  2778. </td><td>- 40 C to + 85 C
  2779. </td><td>QFN-48
  2780. </td>
  2781. </tr><tr class="SearchResultsRowEven" data-partnumber="634-FG1V132F64GM32" data-index="10">
  2782. <td class="td-select" align="center">
  2783. <div style="padding: 5px 5px 0 5px;">
  2784. <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>
  2785. </div>
  2786. </td><td><a href='/ProductDetail/Silicon-Labs/EFR32FG1V132F64GM32-B0/?qs=sGAEpiMZZMvQqVCO1QUke2Mn8%252bPhuXV9jqLXnzHHAa%2fqLgGRRR6bYw%3d%3d'><img title='Silicon Labs EFR32FG1V132F64GM32-B0' alt='Silicon Labs EFR32FG1V132F64GM32-B0' id=1631033724 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>
  2787. <div style="text-align:left;">
  2788. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Silicon-Labs/EFR32FG1V132F64GM32-B0/?qs=sGAEpiMZZMvQqVCO1QUke2Mn8%252bPhuXV9jqLXnzHHAa%2fqLgGRRR6bYw%3d%3d">634-FG1V132F64GM32</a><br />
  2789. <br />
  2790. <br />
  2791. </div></td><td>
  2792. <div class="mfrDiv">
  2793. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Silicon-Labs/EFR32FG1V132F64GM32-B0/?qs=sGAEpiMZZMvQqVCO1QUke2Mn8%252bPhuXV9jqLXnzHHAa%2fqLgGRRR6bYw%3d%3d">EFR32FG1V132F64GM32-B0</a><br />
  2794. <br />
  2795. <div style="width: 100%; text-align: center;">
  2796. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2797. </div>
  2798. <div style="width: 100%; text-align: center;">
  2799. </div>
  2800. </div>
  2801. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl03_lnkSupplier" href="../../../../../../Silicon-Laboratories">Silicon Labs</a>
  2802. </td><td>RF片上系统 - SoC EFR32FG VAL,16.5dBm 64 KB FM/16 KB RAM
  2803. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2804. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../new/Silicon-Laboratories/silabs-efr32fg-flex-gecko-mcu/">了解更多</a>
  2805. </div>
  2806. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2807. </div>
  2808. </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;Silicon Labs&quot;,&quot;634-FG1V132F64GM32 | EFR32FG1V132F64GM32-B0&quot;]);" href="http://www.mouser.com/ds/2/368/EFR32FG1-DataSheet-876878.pdf" target="_blank">数据表</a>
  2809. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl06_lnkAvailability">260<br/>有库存</span>
  2810. <table>
  2811. <tr align="center">
  2812. <td style="padding-top: 5px">
  2813. </td>
  2814. </tr>
  2815. <tr align="center">
  2816. <td style="padding-top: 5px; padding-bottom: 5px">
  2817. </td>
  2818. </tr>
  2819. </table></td><td>
  2820. <table class="PriceBreaks" cellspacing="0" border="0">
  2821. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2822. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2823. </td>
  2824. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2825. </td>
  2826. </tr>
  2827. <tr>
  2828. <td class="PriceBreakQuantity">
  2829. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(8,1);">1:</a>
  2830. </td>
  2831. <td class="PriceBreakPrice">
  2832. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥39.7332</span>
  2833. </td>
  2834. </tr>
  2835. <tr>
  2836. <td class="PriceBreakQuantity">
  2837. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(8,10);">10:</a>
  2838. </td>
  2839. <td class="PriceBreakPrice">
  2840. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥37.4985</span>
  2841. </td>
  2842. </tr>
  2843. <tr>
  2844. <td class="PriceBreakQuantity">
  2845. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(8,25);">25:</a>
  2846. </td>
  2847. <td class="PriceBreakPrice">
  2848. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥36.4221</span>
  2849. </td>
  2850. </tr>
  2851. <tr>
  2852. <td class="PriceBreakQuantity">
  2853. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(8,50);">50:</a>
  2854. </td>
  2855. <td class="PriceBreakPrice">
  2856. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥35.3457</span>
  2857. </td>
  2858. </tr>
  2859. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  2860. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2861. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(8,100);">100:</a>
  2862. </td>
  2863. <td class="PriceBreakPrice">
  2864. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Silicon-Labs/EFR32FG1V132F64GM32-B0/?qs=sGAEpiMZZMvQqVCO1QUke2Mn8%252bPhuXV9jqLXnzHHAa%2fqLgGRRR6bYw%3d%3d">查看</a>
  2865. </td>
  2866. </tr>
  2867. <tr>
  2868. <td><br /></td>
  2869. </tr>
  2870. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2871. <td colspan="2" style="text-align: center;">
  2872. </td>
  2873. </tr>
  2874. </table>
  2875. </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;)">
  2876. <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 />
  2877. <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="购买 EFR32FG1V132F64GM32-B0" class="buy-button" /><br />
  2878. <table cellspacing="0" border="0" style="width: 100%;">
  2879. <tr>
  2880. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2881. 最低:
  2882. </td>
  2883. <td style="padding-left: 2px; text-align: left;">
  2884. 1
  2885. </td>
  2886. </tr>
  2887. <tr>
  2888. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2889. 多个:
  2890. </td>
  2891. <td style="padding-left: 2px; text-align: left;">
  2892. 1
  2893. </td>
  2894. </tr>
  2895. </table>
  2896. </div>
  2897. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_pnlCompliant">
  2898. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2899. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=urDlHJNckCLFj6BUpVfshg%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=urDlHJNckCLFj6BUpVfshg%3d%3d" target="_blank">详细信息</a>
  2900. </div>
  2901. </td><td>
  2902. </td><td>ARM Cortex M4
  2903. </td><td>2.4 GHz
  2904. </td><td>2 Mb/s
  2905. </td><td>16.5 dBm
  2906. </td><td>- 94 dBm
  2907. </td><td>1.85 V to 3.8 V
  2908. </td><td>8.8 mA
  2909. </td><td>133 mA
  2910. </td><td>64 kB
  2911. </td><td>- 40 C to + 85 C
  2912. </td><td>QFN-32
  2913. </td>
  2914. </tr><tr class="SearchResultsRowOdd" data-partnumber="634-FG1V132F64GM48" data-index="11">
  2915. <td class="td-select" align="center">
  2916. <div style="padding: 5px 5px 0 5px;">
  2917. <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>
  2918. </div>
  2919. </td><td><a href='/ProductDetail/Silicon-Labs/EFR32FG1V132F64GM48-B0/?qs=sGAEpiMZZMvQqVCO1QUke2Mn8%252bPhuXV9bpICcGY8znx0KcoiEWtA5g%3d%3d'><img title='Silicon Labs EFR32FG1V132F64GM48-B0' alt='Silicon Labs EFR32FG1V132F64GM48-B0' id=1631033720 src='/images/mouserimages/sm/QFN_48_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_48_t.jpg</div></a></td><td>
  2920. <div style="text-align:left;">
  2921. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Silicon-Labs/EFR32FG1V132F64GM48-B0/?qs=sGAEpiMZZMvQqVCO1QUke2Mn8%252bPhuXV9bpICcGY8znx0KcoiEWtA5g%3d%3d">634-FG1V132F64GM48</a><br />
  2922. <br />
  2923. <br />
  2924. </div></td><td>
  2925. <div class="mfrDiv">
  2926. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Silicon-Labs/EFR32FG1V132F64GM48-B0/?qs=sGAEpiMZZMvQqVCO1QUke2Mn8%252bPhuXV9bpICcGY8znx0KcoiEWtA5g%3d%3d">EFR32FG1V132F64GM48-B0</a><br />
  2927. <br />
  2928. <div style="width: 100%; text-align: center;">
  2929. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2930. </div>
  2931. <div style="width: 100%; text-align: center;">
  2932. </div>
  2933. </div>
  2934. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl03_lnkSupplier" href="../../../../../../Silicon-Laboratories">Silicon Labs</a>
  2935. </td><td>RF片上系统 - SoC EFR32FG VAL,16.5dBm 64 KB FM/16 KB RAM
  2936. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2937. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../new/Silicon-Laboratories/silabs-efr32fg-flex-gecko-mcu/">了解更多</a>
  2938. </div>
  2939. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2940. </div>
  2941. </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;Silicon Labs&quot;,&quot;634-FG1V132F64GM48 | EFR32FG1V132F64GM48-B0&quot;]);" href="http://www.mouser.com/ds/2/368/EFR32FG1-DataSheet-876878.pdf" target="_blank">数据表</a>
  2942. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl06_lnkAvailability">260<br/>有库存</span>
  2943. <table>
  2944. <tr align="center">
  2945. <td style="padding-top: 5px">
  2946. </td>
  2947. </tr>
  2948. <tr align="center">
  2949. <td style="padding-top: 5px; padding-bottom: 5px">
  2950. </td>
  2951. </tr>
  2952. </table></td><td>
  2953. <table class="PriceBreaks" cellspacing="0" border="0">
  2954. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2955. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2956. </td>
  2957. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2958. </td>
  2959. </tr>
  2960. <tr>
  2961. <td class="PriceBreakQuantity">
  2962. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(9,1);">1:</a>
  2963. </td>
  2964. <td class="PriceBreakPrice">
  2965. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥40.9734</span>
  2966. </td>
  2967. </tr>
  2968. <tr>
  2969. <td class="PriceBreakQuantity">
  2970. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(9,10);">10:</a>
  2971. </td>
  2972. <td class="PriceBreakPrice">
  2973. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥38.7387</span>
  2974. </td>
  2975. </tr>
  2976. <tr>
  2977. <td class="PriceBreakQuantity">
  2978. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(9,25);">25:</a>
  2979. </td>
  2980. <td class="PriceBreakPrice">
  2981. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥37.5804</span>
  2982. </td>
  2983. </tr>
  2984. <tr>
  2985. <td class="PriceBreakQuantity">
  2986. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(9,50);">50:</a>
  2987. </td>
  2988. <td class="PriceBreakPrice">
  2989. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥36.4221</span>
  2990. </td>
  2991. </tr>
  2992. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  2993. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2994. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(9,100);">100:</a>
  2995. </td>
  2996. <td class="PriceBreakPrice">
  2997. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Silicon-Labs/EFR32FG1V132F64GM48-B0/?qs=sGAEpiMZZMvQqVCO1QUke2Mn8%252bPhuXV9bpICcGY8znx0KcoiEWtA5g%3d%3d">查看</a>
  2998. </td>
  2999. </tr>
  3000. <tr>
  3001. <td><br /></td>
  3002. </tr>
  3003. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3004. <td colspan="2" style="text-align: center;">
  3005. </td>
  3006. </tr>
  3007. </table>
  3008. </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;)">
  3009. <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 />
  3010. <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="购买 EFR32FG1V132F64GM48-B0" class="buy-button" /><br />
  3011. <table cellspacing="0" border="0" style="width: 100%;">
  3012. <tr>
  3013. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3014. 最低:
  3015. </td>
  3016. <td style="padding-left: 2px; text-align: left;">
  3017. 1
  3018. </td>
  3019. </tr>
  3020. <tr>
  3021. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3022. 多个:
  3023. </td>
  3024. <td style="padding-left: 2px; text-align: left;">
  3025. 1
  3026. </td>
  3027. </tr>
  3028. </table>
  3029. </div>
  3030. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_pnlCompliant">
  3031. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3032. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=urDlHJNckCLscogxhSZTWg%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=urDlHJNckCLscogxhSZTWg%3d%3d" target="_blank">详细信息</a>
  3033. </div>
  3034. </td><td>
  3035. </td><td>ARM Cortex M4
  3036. </td><td>2.4 GHz
  3037. </td><td>2 Mb/s
  3038. </td><td>16.5 dBm
  3039. </td><td>- 94 dBm
  3040. </td><td>1.85 V to 3.8 V
  3041. </td><td>8.8 mA
  3042. </td><td>133 mA
  3043. </td><td>64 kB
  3044. </td><td>- 40 C to + 85 C
  3045. </td><td>QFN-48
  3046. </td>
  3047. </tr><tr class="SearchResultsRowEven" data-partnumber="634-FG1V132F128GM32" data-index="12">
  3048. <td class="td-select" align="center">
  3049. <div style="padding: 5px 5px 0 5px;">
  3050. <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>
  3051. </div>
  3052. </td><td><a href='/ProductDetail/Silicon-Labs/EFR32FG1V132F128GM32-B0/?qs=sGAEpiMZZMvQqVCO1QUke2Mn8%252bPhuXV9UYNvYMiOPikQcB%252bRhdnYiA%3d%3d'><img title='Silicon Labs EFR32FG1V132F128GM32-B0' alt='Silicon Labs EFR32FG1V132F128GM32-B0' id=1631033764 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>
  3053. <div style="text-align:left;">
  3054. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Silicon-Labs/EFR32FG1V132F128GM32-B0/?qs=sGAEpiMZZMvQqVCO1QUke2Mn8%252bPhuXV9UYNvYMiOPikQcB%252bRhdnYiA%3d%3d">634-FG1V132F128GM32</a><br />
  3055. <br />
  3056. <br />
  3057. </div></td><td>
  3058. <div class="mfrDiv">
  3059. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Silicon-Labs/EFR32FG1V132F128GM32-B0/?qs=sGAEpiMZZMvQqVCO1QUke2Mn8%252bPhuXV9UYNvYMiOPikQcB%252bRhdnYiA%3d%3d">EFR32FG1V132F128GM32-B0</a><br />
  3060. <br />
  3061. <div style="width: 100%; text-align: center;">
  3062. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3063. </div>
  3064. <div style="width: 100%; text-align: center;">
  3065. </div>
  3066. </div>
  3067. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl03_lnkSupplier" href="../../../../../../Silicon-Laboratories">Silicon Labs</a>
  3068. </td><td>RF片上系统 - SoC EFR32FG VAL,16.5dBm 128 KB FM/16 KB RAM
  3069. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3070. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../new/Silicon-Laboratories/silabs-efr32fg-flex-gecko-mcu/">了解更多</a>
  3071. </div>
  3072. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3073. </div>
  3074. </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;Silicon Labs&quot;,&quot;634-FG1V132F128GM32 | EFR32FG1V132F128GM32-B0&quot;]);" href="http://www.mouser.com/ds/2/368/EFR32FG1-DataSheet-876878.pdf" target="_blank">数据表</a>
  3075. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl06_lnkAvailability">260<br/>有库存</span>
  3076. <table>
  3077. <tr align="center">
  3078. <td style="padding-top: 5px">
  3079. </td>
  3080. </tr>
  3081. <tr align="center">
  3082. <td style="padding-top: 5px; padding-bottom: 5px">
  3083. </td>
  3084. </tr>
  3085. </table></td><td>
  3086. <table class="PriceBreaks" cellspacing="0" border="0">
  3087. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3088. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3089. </td>
  3090. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3091. </td>
  3092. </tr>
  3093. <tr>
  3094. <td class="PriceBreakQuantity">
  3095. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(10,1);">1:</a>
  3096. </td>
  3097. <td class="PriceBreakPrice">
  3098. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥40.9734</span>
  3099. </td>
  3100. </tr>
  3101. <tr>
  3102. <td class="PriceBreakQuantity">
  3103. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(10,10);">10:</a>
  3104. </td>
  3105. <td class="PriceBreakPrice">
  3106. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥38.7387</span>
  3107. </td>
  3108. </tr>
  3109. <tr>
  3110. <td class="PriceBreakQuantity">
  3111. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(10,25);">25:</a>
  3112. </td>
  3113. <td class="PriceBreakPrice">
  3114. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥37.5804</span>
  3115. </td>
  3116. </tr>
  3117. <tr>
  3118. <td class="PriceBreakQuantity">
  3119. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(10,50);">50:</a>
  3120. </td>
  3121. <td class="PriceBreakPrice">
  3122. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥36.4221</span>
  3123. </td>
  3124. </tr>
  3125. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  3126. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3127. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(10,100);">100:</a>
  3128. </td>
  3129. <td class="PriceBreakPrice">
  3130. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Silicon-Labs/EFR32FG1V132F128GM32-B0/?qs=sGAEpiMZZMvQqVCO1QUke2Mn8%252bPhuXV9UYNvYMiOPikQcB%252bRhdnYiA%3d%3d">查看</a>
  3131. </td>
  3132. </tr>
  3133. <tr>
  3134. <td><br /></td>
  3135. </tr>
  3136. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3137. <td colspan="2" style="text-align: center;">
  3138. </td>
  3139. </tr>
  3140. </table>
  3141. </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;)">
  3142. <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 />
  3143. <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="购买 EFR32FG1V132F128GM32-B0" class="buy-button" /><br />
  3144. <table cellspacing="0" border="0" style="width: 100%;">
  3145. <tr>
  3146. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3147. 最低:
  3148. </td>
  3149. <td style="padding-left: 2px; text-align: left;">
  3150. 1
  3151. </td>
  3152. </tr>
  3153. <tr>
  3154. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3155. 多个:
  3156. </td>
  3157. <td style="padding-left: 2px; text-align: left;">
  3158. 1
  3159. </td>
  3160. </tr>
  3161. </table>
  3162. </div>
  3163. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_pnlCompliant">
  3164. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3165. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=urDlHJNckCJdASDNERriww%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=urDlHJNckCJdASDNERriww%3d%3d" target="_blank">详细信息</a>
  3166. </div>
  3167. </td><td>
  3168. </td><td>ARM Cortex M4
  3169. </td><td>2.4 GHz
  3170. </td><td>2 Mb/s
  3171. </td><td>16.5 dBm
  3172. </td><td>- 94 dBm
  3173. </td><td>1.85 V to 3.8 V
  3174. </td><td>8.8 mA
  3175. </td><td>133 mA
  3176. </td><td>128 kB
  3177. </td><td>- 40 C to + 85 C
  3178. </td><td>QFN-32
  3179. </td>
  3180. </tr><tr class="SearchResultsRowOdd" data-partnumber="634-FG1V132F128GM48" data-index="13">
  3181. <td class="td-select" align="center">
  3182. <div style="padding: 5px 5px 0 5px;">
  3183. <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>
  3184. </div>
  3185. </td><td><a href='/ProductDetail/Silicon-Labs/EFR32FG1V132F128GM48-B0/?qs=sGAEpiMZZMvQqVCO1QUke2Mn8%252bPhuXV94djUysQoKhwGsO3UD4KdMg%3d%3d'><img title='Silicon Labs EFR32FG1V132F128GM48-B0' alt='Silicon Labs EFR32FG1V132F128GM48-B0' id=1631033746 src='/images/mouserimages/sm/QFN_48_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_48_t.jpg</div></a></td><td>
  3186. <div style="text-align:left;">
  3187. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Silicon-Labs/EFR32FG1V132F128GM48-B0/?qs=sGAEpiMZZMvQqVCO1QUke2Mn8%252bPhuXV94djUysQoKhwGsO3UD4KdMg%3d%3d">634-FG1V132F128GM48</a><br />
  3188. <br />
  3189. <br />
  3190. </div></td><td>
  3191. <div class="mfrDiv">
  3192. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Silicon-Labs/EFR32FG1V132F128GM48-B0/?qs=sGAEpiMZZMvQqVCO1QUke2Mn8%252bPhuXV94djUysQoKhwGsO3UD4KdMg%3d%3d">EFR32FG1V132F128GM48-B0</a><br />
  3193. <br />
  3194. <div style="width: 100%; text-align: center;">
  3195. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3196. </div>
  3197. <div style="width: 100%; text-align: center;">
  3198. </div>
  3199. </div>
  3200. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl03_lnkSupplier" href="../../../../../../Silicon-Laboratories">Silicon Labs</a>
  3201. </td><td>RF片上系统 - SoC EFR32FG VAL,16.5dBm 128 KB FM/16 KB RAM
  3202. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3203. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../new/Silicon-Laboratories/silabs-efr32fg-flex-gecko-mcu/">了解更多</a>
  3204. </div>
  3205. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3206. </div>
  3207. </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;Silicon Labs&quot;,&quot;634-FG1V132F128GM48 | EFR32FG1V132F128GM48-B0&quot;]);" href="http://www.mouser.com/ds/2/368/EFR32FG1-DataSheet-876878.pdf" target="_blank">数据表</a>
  3208. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl06_lnkAvailability">260<br/>有库存</span>
  3209. <table>
  3210. <tr align="center">
  3211. <td style="padding-top: 5px">
  3212. </td>
  3213. </tr>
  3214. <tr align="center">
  3215. <td style="padding-top: 5px; padding-bottom: 5px">
  3216. </td>
  3217. </tr>
  3218. </table></td><td>
  3219. <table class="PriceBreaks" cellspacing="0" border="0">
  3220. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3221. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3222. </td>
  3223. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3224. </td>
  3225. </tr>
  3226. <tr>
  3227. <td class="PriceBreakQuantity">
  3228. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(11,1);">1:</a>
  3229. </td>
  3230. <td class="PriceBreakPrice">
  3231. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥42.2838</span>
  3232. </td>
  3233. </tr>
  3234. <tr>
  3235. <td class="PriceBreakQuantity">
  3236. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(11,10);">10:</a>
  3237. </td>
  3238. <td class="PriceBreakPrice">
  3239. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥39.8853</span>
  3240. </td>
  3241. </tr>
  3242. <tr>
  3243. <td class="PriceBreakQuantity">
  3244. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(11,25);">25:</a>
  3245. </td>
  3246. <td class="PriceBreakPrice">
  3247. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥38.7387</span>
  3248. </td>
  3249. </tr>
  3250. <tr>
  3251. <td class="PriceBreakQuantity">
  3252. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(11,50);">50:</a>
  3253. </td>
  3254. <td class="PriceBreakPrice">
  3255. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥37.5804</span>
  3256. </td>
  3257. </tr>
  3258. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  3259. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3260. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(11,100);">100:</a>
  3261. </td>
  3262. <td class="PriceBreakPrice">
  3263. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Silicon-Labs/EFR32FG1V132F128GM48-B0/?qs=sGAEpiMZZMvQqVCO1QUke2Mn8%252bPhuXV94djUysQoKhwGsO3UD4KdMg%3d%3d">查看</a>
  3264. </td>
  3265. </tr>
  3266. <tr>
  3267. <td><br /></td>
  3268. </tr>
  3269. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3270. <td colspan="2" style="text-align: center;">
  3271. </td>
  3272. </tr>
  3273. </table>
  3274. </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;)">
  3275. <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 />
  3276. <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="购买 EFR32FG1V132F128GM48-B0" class="buy-button" /><br />
  3277. <table cellspacing="0" border="0" style="width: 100%;">
  3278. <tr>
  3279. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3280. 最低:
  3281. </td>
  3282. <td style="padding-left: 2px; text-align: left;">
  3283. 1
  3284. </td>
  3285. </tr>
  3286. <tr>
  3287. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3288. 多个:
  3289. </td>
  3290. <td style="padding-left: 2px; text-align: left;">
  3291. 1
  3292. </td>
  3293. </tr>
  3294. </table>
  3295. </div>
  3296. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_pnlCompliant">
  3297. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3298. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=urDlHJNckCICx%252bXUrat%2fPw%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=urDlHJNckCICx%252bXUrat%2fPw%3d%3d" target="_blank">详细信息</a>
  3299. </div>
  3300. </td><td>
  3301. </td><td>ARM Cortex M4
  3302. </td><td>2.4 GHz
  3303. </td><td>2 Mb/s
  3304. </td><td>16.5 dBm
  3305. </td><td>- 94 dBm
  3306. </td><td>1.85 V to 3.8 V
  3307. </td><td>8.8 mA
  3308. </td><td>133 mA
  3309. </td><td>128 kB
  3310. </td><td>- 40 C to + 85 C
  3311. </td><td>QFN-48
  3312. </td>
  3313. </tr><tr class="SearchResultsRowEven" data-partnumber="634-FG1P132F64GM48" data-index="14">
  3314. <td class="td-select" align="center">
  3315. <div style="padding: 5px 5px 0 5px;">
  3316. <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>
  3317. </div>
  3318. </td><td><a href='/ProductDetail/Silicon-Labs/EFR32FG1P132F64GM48-B0/?qs=sGAEpiMZZMvQqVCO1QUke2Mn8%252bPhuXV9Z5HDSZykNV9cge242qd7JA%3d%3d'><img title='Silicon Labs EFR32FG1P132F64GM48-B0' alt='Silicon Labs EFR32FG1P132F64GM48-B0' id=1631033732 src='/images/mouserimages/sm/QFN_48_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_48_t.jpg</div></a></td><td>
  3319. <div style="text-align:left;">
  3320. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Silicon-Labs/EFR32FG1P132F64GM48-B0/?qs=sGAEpiMZZMvQqVCO1QUke2Mn8%252bPhuXV9Z5HDSZykNV9cge242qd7JA%3d%3d">634-FG1P132F64GM48</a><br />
  3321. <br />
  3322. <br />
  3323. </div></td><td>
  3324. <div class="mfrDiv">
  3325. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Silicon-Labs/EFR32FG1P132F64GM48-B0/?qs=sGAEpiMZZMvQqVCO1QUke2Mn8%252bPhuXV9Z5HDSZykNV9cge242qd7JA%3d%3d">EFR32FG1P132F64GM48-B0</a><br />
  3326. <br />
  3327. <div style="width: 100%; text-align: center;">
  3328. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3329. </div>
  3330. <div style="width: 100%; text-align: center;">
  3331. </div>
  3332. </div>
  3333. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl03_lnkSupplier" href="../../../../../../Silicon-Laboratories">Silicon Labs</a>
  3334. </td><td>RF片上系统 - SoC EFR32FG PER,19.5dBm 64 KB FM/16 KB RAM
  3335. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3336. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../new/Silicon-Laboratories/silabs-efr32fg-flex-gecko-mcu/">了解更多</a>
  3337. </div>
  3338. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3339. </div>
  3340. </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;Silicon Labs&quot;,&quot;634-FG1P132F64GM48 | EFR32FG1P132F64GM48-B0&quot;]);" href="http://www.mouser.com/ds/2/368/EFR32FG1-DataSheet-876878.pdf" target="_blank">数据表</a>
  3341. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl06_lnkAvailability">260<br/>有库存</span>
  3342. <table>
  3343. <tr align="center">
  3344. <td style="padding-top: 5px">
  3345. </td>
  3346. </tr>
  3347. <tr align="center">
  3348. <td style="padding-top: 5px; padding-bottom: 5px">
  3349. </td>
  3350. </tr>
  3351. </table></td><td>
  3352. <table class="PriceBreaks" cellspacing="0" border="0">
  3353. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3354. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3355. </td>
  3356. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3357. </td>
  3358. </tr>
  3359. <tr>
  3360. <td class="PriceBreakQuantity">
  3361. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(12,1);">1:</a>
  3362. </td>
  3363. <td class="PriceBreakPrice">
  3364. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥43.2081</span>
  3365. </td>
  3366. </tr>
  3367. <tr>
  3368. <td class="PriceBreakQuantity">
  3369. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(12,10);">10:</a>
  3370. </td>
  3371. <td class="PriceBreakPrice">
  3372. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥40.8096</span>
  3373. </td>
  3374. </tr>
  3375. <tr>
  3376. <td class="PriceBreakQuantity">
  3377. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(12,25);">25:</a>
  3378. </td>
  3379. <td class="PriceBreakPrice">
  3380. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥39.5811</span>
  3381. </td>
  3382. </tr>
  3383. <tr>
  3384. <td class="PriceBreakQuantity">
  3385. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(12,50);">50:</a>
  3386. </td>
  3387. <td class="PriceBreakPrice">
  3388. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥38.4228</span>
  3389. </td>
  3390. </tr>
  3391. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  3392. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3393. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(12,100);">100:</a>
  3394. </td>
  3395. <td class="PriceBreakPrice">
  3396. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Silicon-Labs/EFR32FG1P132F64GM48-B0/?qs=sGAEpiMZZMvQqVCO1QUke2Mn8%252bPhuXV9Z5HDSZykNV9cge242qd7JA%3d%3d">查看</a>
  3397. </td>
  3398. </tr>
  3399. <tr>
  3400. <td><br /></td>
  3401. </tr>
  3402. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3403. <td colspan="2" style="text-align: center;">
  3404. </td>
  3405. </tr>
  3406. </table>
  3407. </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;)">
  3408. <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 />
  3409. <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="购买 EFR32FG1P132F64GM48-B0" class="buy-button" /><br />
  3410. <table cellspacing="0" border="0" style="width: 100%;">
  3411. <tr>
  3412. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3413. 最低:
  3414. </td>
  3415. <td style="padding-left: 2px; text-align: left;">
  3416. 1
  3417. </td>
  3418. </tr>
  3419. <tr>
  3420. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3421. 多个:
  3422. </td>
  3423. <td style="padding-left: 2px; text-align: left;">
  3424. 1
  3425. </td>
  3426. </tr>
  3427. </table>
  3428. </div>
  3429. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_pnlCompliant">
  3430. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3431. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=urDlHJNckCIB%252b55CmsaB2A%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=urDlHJNckCIB%252b55CmsaB2A%3d%3d" target="_blank">详细信息</a>
  3432. </div>
  3433. </td><td>
  3434. </td><td>ARM Cortex M4
  3435. </td><td>2.4 GHz
  3436. </td><td>2 Mb/s
  3437. </td><td>19.5 dBm
  3438. </td><td>- 94 dBm
  3439. </td><td>1.85 V to 3.8 V
  3440. </td><td>8.8 mA
  3441. </td><td>133 mA
  3442. </td><td>64 kB
  3443. </td><td>- 40 C to + 85 C
  3444. </td><td>QFN-48
  3445. </td>
  3446. </tr><tr class="SearchResultsRowOdd" data-partnumber="634-FG1P132F128GM32" data-index="15">
  3447. <td class="td-select" align="center">
  3448. <div style="padding: 5px 5px 0 5px;">
  3449. <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>
  3450. </div>
  3451. </td><td><a href='/ProductDetail/Silicon-Labs/EFR32FG1P132F128GM32-B0/?qs=sGAEpiMZZMvQqVCO1QUke2Mn8%252bPhuXV9QKLOkMFG5C5oq%252b5U1kfGaQ%3d%3d'><img title='Silicon Labs EFR32FG1P132F128GM32-B0' alt='Silicon Labs EFR32FG1P132F128GM32-B0' id=1631033730 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>
  3452. <div style="text-align:left;">
  3453. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Silicon-Labs/EFR32FG1P132F128GM32-B0/?qs=sGAEpiMZZMvQqVCO1QUke2Mn8%252bPhuXV9QKLOkMFG5C5oq%252b5U1kfGaQ%3d%3d">634-FG1P132F128GM32</a><br />
  3454. <br />
  3455. <br />
  3456. </div></td><td>
  3457. <div class="mfrDiv">
  3458. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Silicon-Labs/EFR32FG1P132F128GM32-B0/?qs=sGAEpiMZZMvQqVCO1QUke2Mn8%252bPhuXV9QKLOkMFG5C5oq%252b5U1kfGaQ%3d%3d">EFR32FG1P132F128GM32-B0</a><br />
  3459. <br />
  3460. <div style="width: 100%; text-align: center;">
  3461. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3462. </div>
  3463. <div style="width: 100%; text-align: center;">
  3464. </div>
  3465. </div>
  3466. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl03_lnkSupplier" href="../../../../../../Silicon-Laboratories">Silicon Labs</a>
  3467. </td><td>RF片上系统 - SoC EFR32FG PER,19.5dBm 128 KB FM/32 KB RAM
  3468. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3469. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../new/Silicon-Laboratories/silabs-efr32fg-flex-gecko-mcu/">了解更多</a>
  3470. </div>
  3471. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3472. </div>
  3473. </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;Silicon Labs&quot;,&quot;634-FG1P132F128GM32 | EFR32FG1P132F128GM32-B0&quot;]);" href="http://www.mouser.com/ds/2/368/EFR32FG1-DataSheet-876878.pdf" target="_blank">数据表</a>
  3474. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl06_lnkAvailability">260<br/>有库存</span>
  3475. <table>
  3476. <tr align="center">
  3477. <td style="padding-top: 5px">
  3478. </td>
  3479. </tr>
  3480. <tr align="center">
  3481. <td style="padding-top: 5px; padding-bottom: 5px">
  3482. </td>
  3483. </tr>
  3484. </table></td><td>
  3485. <table class="PriceBreaks" cellspacing="0" border="0">
  3486. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3487. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3488. </td>
  3489. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3490. </td>
  3491. </tr>
  3492. <tr>
  3493. <td class="PriceBreakQuantity">
  3494. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(13,1);">1:</a>
  3495. </td>
  3496. <td class="PriceBreakPrice">
  3497. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥44.4366</span>
  3498. </td>
  3499. </tr>
  3500. <tr>
  3501. <td class="PriceBreakQuantity">
  3502. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(13,10);">10:</a>
  3503. </td>
  3504. <td class="PriceBreakPrice">
  3505. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥41.9679</span>
  3506. </td>
  3507. </tr>
  3508. <tr>
  3509. <td class="PriceBreakQuantity">
  3510. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(13,25);">25:</a>
  3511. </td>
  3512. <td class="PriceBreakPrice">
  3513. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥40.7394</span>
  3514. </td>
  3515. </tr>
  3516. <tr>
  3517. <td class="PriceBreakQuantity">
  3518. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(13,50);">50:</a>
  3519. </td>
  3520. <td class="PriceBreakPrice">
  3521. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥39.5109</span>
  3522. </td>
  3523. </tr>
  3524. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  3525. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3526. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(13,100);">100:</a>
  3527. </td>
  3528. <td class="PriceBreakPrice">
  3529. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Silicon-Labs/EFR32FG1P132F128GM32-B0/?qs=sGAEpiMZZMvQqVCO1QUke2Mn8%252bPhuXV9QKLOkMFG5C5oq%252b5U1kfGaQ%3d%3d">查看</a>
  3530. </td>
  3531. </tr>
  3532. <tr>
  3533. <td><br /></td>
  3534. </tr>
  3535. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3536. <td colspan="2" style="text-align: center;">
  3537. </td>
  3538. </tr>
  3539. </table>
  3540. </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;)">
  3541. <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 />
  3542. <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="购买 EFR32FG1P132F128GM32-B0" class="buy-button" /><br />
  3543. <table cellspacing="0" border="0" style="width: 100%;">
  3544. <tr>
  3545. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3546. 最低:
  3547. </td>
  3548. <td style="padding-left: 2px; text-align: left;">
  3549. 1
  3550. </td>
  3551. </tr>
  3552. <tr>
  3553. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3554. 多个:
  3555. </td>
  3556. <td style="padding-left: 2px; text-align: left;">
  3557. 1
  3558. </td>
  3559. </tr>
  3560. </table>
  3561. </div>
  3562. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_pnlCompliant">
  3563. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3564. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=urDlHJNckCJbRiCeZcUU3A%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=urDlHJNckCJbRiCeZcUU3A%3d%3d" target="_blank">详细信息</a>
  3565. </div>
  3566. </td><td>
  3567. </td><td>ARM Cortex M4
  3568. </td><td>2.4 GHz
  3569. </td><td>2 Mb/s
  3570. </td><td>19.5 dBm
  3571. </td><td>- 94 dBm
  3572. </td><td>1.85 V to 3.8 V
  3573. </td><td>8.8 mA
  3574. </td><td>133 mA
  3575. </td><td>128 kB
  3576. </td><td>- 40 C to + 85 C
  3577. </td><td>QFN-32
  3578. </td>
  3579. </tr><tr class="SearchResultsRowEven" data-partnumber="634-FG1V132F256GM32" data-index="16">
  3580. <td class="td-select" align="center">
  3581. <div style="padding: 5px 5px 0 5px;">
  3582. <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>
  3583. </div>
  3584. </td><td><a href='/ProductDetail/Silicon-Labs/EFR32FG1V132F256GM32-B0/?qs=sGAEpiMZZMvQqVCO1QUke2Mn8%252bPhuXV9Zef7hZkaBUIeYWUA%252bC4qFQ%3d%3d'><img title='Silicon Labs EFR32FG1V132F256GM32-B0' alt='Silicon Labs EFR32FG1V132F256GM32-B0' id=1631033766 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>
  3585. <div style="text-align:left;">
  3586. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Silicon-Labs/EFR32FG1V132F256GM32-B0/?qs=sGAEpiMZZMvQqVCO1QUke2Mn8%252bPhuXV9Zef7hZkaBUIeYWUA%252bC4qFQ%3d%3d">634-FG1V132F256GM32</a><br />
  3587. <br />
  3588. <br />
  3589. </div></td><td>
  3590. <div class="mfrDiv">
  3591. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Silicon-Labs/EFR32FG1V132F256GM32-B0/?qs=sGAEpiMZZMvQqVCO1QUke2Mn8%252bPhuXV9Zef7hZkaBUIeYWUA%252bC4qFQ%3d%3d">EFR32FG1V132F256GM32-B0</a><br />
  3592. <br />
  3593. <div style="width: 100%; text-align: center;">
  3594. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3595. </div>
  3596. <div style="width: 100%; text-align: center;">
  3597. </div>
  3598. </div>
  3599. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl03_lnkSupplier" href="../../../../../../Silicon-Laboratories">Silicon Labs</a>
  3600. </td><td>RF片上系统 - SoC EFR32FG VAL,16.5dBm 256 KB FM/32 KB RAM
  3601. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3602. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../new/Silicon-Laboratories/silabs-efr32fg-flex-gecko-mcu/">了解更多</a>
  3603. </div>
  3604. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3605. </div>
  3606. </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;Silicon Labs&quot;,&quot;634-FG1V132F256GM32 | EFR32FG1V132F256GM32-B0&quot;]);" href="http://www.mouser.com/ds/2/368/EFR32FG1-DataSheet-876878.pdf" target="_blank">数据表</a>
  3607. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl06_lnkAvailability">260<br/>有库存</span>
  3608. <table>
  3609. <tr align="center">
  3610. <td style="padding-top: 5px">
  3611. </td>
  3612. </tr>
  3613. <tr align="center">
  3614. <td style="padding-top: 5px; padding-bottom: 5px">
  3615. </td>
  3616. </tr>
  3617. </table></td><td>
  3618. <table class="PriceBreaks" cellspacing="0" border="0">
  3619. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3620. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3621. </td>
  3622. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3623. </td>
  3624. </tr>
  3625. <tr>
  3626. <td class="PriceBreakQuantity">
  3627. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(14,1);">1:</a>
  3628. </td>
  3629. <td class="PriceBreakPrice">
  3630. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥44.7408</span>
  3631. </td>
  3632. </tr>
  3633. <tr>
  3634. <td class="PriceBreakQuantity">
  3635. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(14,10);">10:</a>
  3636. </td>
  3637. <td class="PriceBreakPrice">
  3638. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥42.2838</span>
  3639. </td>
  3640. </tr>
  3641. <tr>
  3642. <td class="PriceBreakQuantity">
  3643. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(14,25);">25:</a>
  3644. </td>
  3645. <td class="PriceBreakPrice">
  3646. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥41.0436</span>
  3647. </td>
  3648. </tr>
  3649. <tr>
  3650. <td class="PriceBreakQuantity">
  3651. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(14,50);">50:</a>
  3652. </td>
  3653. <td class="PriceBreakPrice">
  3654. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥39.7332</span>
  3655. </td>
  3656. </tr>
  3657. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  3658. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3659. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(14,100);">100:</a>
  3660. </td>
  3661. <td class="PriceBreakPrice">
  3662. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Silicon-Labs/EFR32FG1V132F256GM32-B0/?qs=sGAEpiMZZMvQqVCO1QUke2Mn8%252bPhuXV9Zef7hZkaBUIeYWUA%252bC4qFQ%3d%3d">查看</a>
  3663. </td>
  3664. </tr>
  3665. <tr>
  3666. <td><br /></td>
  3667. </tr>
  3668. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3669. <td colspan="2" style="text-align: center;">
  3670. </td>
  3671. </tr>
  3672. </table>
  3673. </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;)">
  3674. <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 />
  3675. <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="购买 EFR32FG1V132F256GM32-B0" class="buy-button" /><br />
  3676. <table cellspacing="0" border="0" style="width: 100%;">
  3677. <tr>
  3678. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3679. 最低:
  3680. </td>
  3681. <td style="padding-left: 2px; text-align: left;">
  3682. 1
  3683. </td>
  3684. </tr>
  3685. <tr>
  3686. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3687. 多个:
  3688. </td>
  3689. <td style="padding-left: 2px; text-align: left;">
  3690. 1
  3691. </td>
  3692. </tr>
  3693. </table>
  3694. </div>
  3695. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_pnlCompliant">
  3696. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3697. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=urDlHJNckCKwEaglA%2f756A%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=urDlHJNckCKwEaglA%2f756A%3d%3d" target="_blank">详细信息</a>
  3698. </div>
  3699. </td><td>
  3700. </td><td>ARM Cortex M4
  3701. </td><td>2.4 GHz
  3702. </td><td>2 Mb/s
  3703. </td><td>16.5 dBm
  3704. </td><td>- 94 dBm
  3705. </td><td>1.85 V to 3.8 V
  3706. </td><td>8.8 mA
  3707. </td><td>133 mA
  3708. </td><td>256 kB
  3709. </td><td>- 40 C to + 85 C
  3710. </td><td>QFN-32
  3711. </td>
  3712. </tr><tr class="SearchResultsRowOdd" data-partnumber="634-FG1P132F256GM32" data-index="17">
  3713. <td class="td-select" align="center">
  3714. <div style="padding: 5px 5px 0 5px;">
  3715. <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>
  3716. </div>
  3717. </td><td><a href='/ProductDetail/Silicon-Labs/EFR32FG1P132F256GM32-B0/?qs=sGAEpiMZZMvQqVCO1QUke2Mn8%252bPhuXV9DnazT9CEnTKxnJh2UDI7Hw%3d%3d'><img title='Silicon Labs EFR32FG1P132F256GM32-B0' alt='Silicon Labs EFR32FG1P132F256GM32-B0' id=1631033728 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>
  3718. <div style="text-align:left;">
  3719. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Silicon-Labs/EFR32FG1P132F256GM32-B0/?qs=sGAEpiMZZMvQqVCO1QUke2Mn8%252bPhuXV9DnazT9CEnTKxnJh2UDI7Hw%3d%3d">634-FG1P132F256GM32</a><br />
  3720. <br />
  3721. <br />
  3722. </div></td><td>
  3723. <div class="mfrDiv">
  3724. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Silicon-Labs/EFR32FG1P132F256GM32-B0/?qs=sGAEpiMZZMvQqVCO1QUke2Mn8%252bPhuXV9DnazT9CEnTKxnJh2UDI7Hw%3d%3d">EFR32FG1P132F256GM32-B0</a><br />
  3725. <br />
  3726. <div style="width: 100%; text-align: center;">
  3727. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3728. </div>
  3729. <div style="width: 100%; text-align: center;">
  3730. </div>
  3731. </div>
  3732. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl03_lnkSupplier" href="../../../../../../Silicon-Laboratories">Silicon Labs</a>
  3733. </td><td>RF片上系统 - SoC EFR32FG PER,19.5dBm 256 KB FM/32 KB RAM
  3734. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3735. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../new/Silicon-Laboratories/silabs-efr32fg-flex-gecko-mcu/">了解更多</a>
  3736. </div>
  3737. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3738. </div>
  3739. </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;Silicon Labs&quot;,&quot;634-FG1P132F256GM32 | EFR32FG1P132F256GM32-B0&quot;]);" href="http://www.mouser.com/ds/2/368/EFR32FG1-DataSheet-876878.pdf" target="_blank">数据表</a>
  3740. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl06_lnkAvailability">260<br/>有库存</span>
  3741. <table>
  3742. <tr align="center">
  3743. <td style="padding-top: 5px">
  3744. </td>
  3745. </tr>
  3746. <tr align="center">
  3747. <td style="padding-top: 5px; padding-bottom: 5px">
  3748. </td>
  3749. </tr>
  3750. </table></td><td>
  3751. <table class="PriceBreaks" cellspacing="0" border="0">
  3752. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3753. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3754. </td>
  3755. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3756. </td>
  3757. </tr>
  3758. <tr>
  3759. <td class="PriceBreakQuantity">
  3760. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(15,1);">1:</a>
  3761. </td>
  3762. <td class="PriceBreakPrice">
  3763. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥46.9755</span>
  3764. </td>
  3765. </tr>
  3766. <tr>
  3767. <td class="PriceBreakQuantity">
  3768. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(15,10);">10:</a>
  3769. </td>
  3770. <td class="PriceBreakPrice">
  3771. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥44.3547</span>
  3772. </td>
  3773. </tr>
  3774. <tr>
  3775. <td class="PriceBreakQuantity">
  3776. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(15,25);">25:</a>
  3777. </td>
  3778. <td class="PriceBreakPrice">
  3779. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥43.0443</span>
  3780. </td>
  3781. </tr>
  3782. <tr>
  3783. <td class="PriceBreakQuantity">
  3784. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(15,50);">50:</a>
  3785. </td>
  3786. <td class="PriceBreakPrice">
  3787. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥41.7339</span>
  3788. </td>
  3789. </tr>
  3790. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  3791. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3792. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(15,100);">100:</a>
  3793. </td>
  3794. <td class="PriceBreakPrice">
  3795. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Silicon-Labs/EFR32FG1P132F256GM32-B0/?qs=sGAEpiMZZMvQqVCO1QUke2Mn8%252bPhuXV9DnazT9CEnTKxnJh2UDI7Hw%3d%3d">查看</a>
  3796. </td>
  3797. </tr>
  3798. <tr>
  3799. <td><br /></td>
  3800. </tr>
  3801. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3802. <td colspan="2" style="text-align: center;">
  3803. </td>
  3804. </tr>
  3805. </table>
  3806. </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;)">
  3807. <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 />
  3808. <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="购买 EFR32FG1P132F256GM32-B0" class="buy-button" /><br />
  3809. <table cellspacing="0" border="0" style="width: 100%;">
  3810. <tr>
  3811. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3812. 最低:
  3813. </td>
  3814. <td style="padding-left: 2px; text-align: left;">
  3815. 1
  3816. </td>
  3817. </tr>
  3818. <tr>
  3819. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3820. 多个:
  3821. </td>
  3822. <td style="padding-left: 2px; text-align: left;">
  3823. 1
  3824. </td>
  3825. </tr>
  3826. </table>
  3827. </div>
  3828. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_pnlCompliant">
  3829. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3830. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=urDlHJNckCKbo5VJzG2LYA%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=urDlHJNckCKbo5VJzG2LYA%3d%3d" target="_blank">详细信息</a>
  3831. </div>
  3832. </td><td>
  3833. </td><td>ARM Cortex M4
  3834. </td><td>2.4 GHz
  3835. </td><td>2 Mb/s
  3836. </td><td>19.5 dBm
  3837. </td><td>- 94 dBm
  3838. </td><td>1.85 V to 3.8 V
  3839. </td><td>8.8 mA
  3840. </td><td>133 mA
  3841. </td><td>256 kB
  3842. </td><td>- 40 C to + 85 C
  3843. </td><td>QFN-32
  3844. </td>
  3845. </tr><tr class="SearchResultsRowEven" data-partnumber="634-BG1B232F256GM32" data-index="18">
  3846. <td class="td-select" align="center">
  3847. <div style="padding: 5px 5px 0 5px;">
  3848. <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>
  3849. </div>
  3850. </td><td><a href='/ProductDetail/Silicon-Labs/EFR32BG1B232F256GM32-B0/?qs=sGAEpiMZZMvQqVCO1QUke799d4eoA0siifCAQCPcoo2xA8Tk4EIcWA%3d%3d'><img title='Silicon Labs EFR32BG1B232F256GM32-B0' alt='Silicon Labs EFR32BG1B232F256GM32-B0' id=1613119970 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>
  3851. <div style="text-align:left;">
  3852. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Silicon-Labs/EFR32BG1B232F256GM32-B0/?qs=sGAEpiMZZMvQqVCO1QUke799d4eoA0siifCAQCPcoo2xA8Tk4EIcWA%3d%3d">634-BG1B232F256GM32</a><br />
  3853. <br />
  3854. <br />
  3855. </div></td><td>
  3856. <div class="mfrDiv">
  3857. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Silicon-Labs/EFR32BG1B232F256GM32-B0/?qs=sGAEpiMZZMvQqVCO1QUke799d4eoA0siifCAQCPcoo2xA8Tk4EIcWA%3d%3d">EFR32BG1B232F256GM32-B0</a><br />
  3858. <br />
  3859. <div style="width: 100%; text-align: center;">
  3860. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3861. </div>
  3862. <div style="width: 100%; text-align: center;">
  3863. </div>
  3864. </div>
  3865. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl03_lnkSupplier" href="../../../../../../Silicon-Laboratories">Silicon Labs</a>
  3866. </td><td>RF片上系统 - SoC EFR32 Basic,10.5 dBm 256 KB FM/32 KB RAM
  3867. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3868. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../efr32bg-blue-gecko">了解更多</a>
  3869. </div>
  3870. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3871. </div>
  3872. </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;Silicon Labs&quot;,&quot;634-BG1B232F256GM32 | EFR32BG1B232F256GM32-B0&quot;]);" href="http://www.mouser.com/ds/2/368/EFR32BG1-DataSheet-876892.pdf" target="_blank">数据表</a>
  3873. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl06_lnkAvailability">39<br/>有库存</span>
  3874. <table>
  3875. <tr align="center">
  3876. <td style="padding-top: 5px">
  3877. </td>
  3878. </tr>
  3879. <tr align="center">
  3880. <td style="padding-top: 5px; padding-bottom: 5px">
  3881. </td>
  3882. </tr>
  3883. </table></td><td>
  3884. <table class="PriceBreaks" cellspacing="0" border="0">
  3885. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3886. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3887. </td>
  3888. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3889. </td>
  3890. </tr>
  3891. <tr>
  3892. <td class="PriceBreakQuantity">
  3893. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(16,1);">1:</a>
  3894. </td>
  3895. <td class="PriceBreakPrice">
  3896. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥36.9603</span>
  3897. </td>
  3898. </tr>
  3899. <tr>
  3900. <td class="PriceBreakQuantity">
  3901. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(16,10);">10:</a>
  3902. </td>
  3903. <td class="PriceBreakPrice">
  3904. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥34.9596</span>
  3905. </td>
  3906. </tr>
  3907. <tr>
  3908. <td class="PriceBreakQuantity">
  3909. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(16,25);">25:</a>
  3910. </td>
  3911. <td class="PriceBreakPrice">
  3912. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥33.8832</span>
  3913. </td>
  3914. </tr>
  3915. <tr>
  3916. <td class="PriceBreakQuantity">
  3917. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(16,50);">50:</a>
  3918. </td>
  3919. <td class="PriceBreakPrice">
  3920. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥32.8887</span>
  3921. </td>
  3922. </tr>
  3923. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  3924. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3925. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(16,100);">100:</a>
  3926. </td>
  3927. <td class="PriceBreakPrice">
  3928. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Silicon-Labs/EFR32BG1B232F256GM32-B0/?qs=sGAEpiMZZMvQqVCO1QUke799d4eoA0siifCAQCPcoo2xA8Tk4EIcWA%3d%3d">查看</a>
  3929. </td>
  3930. </tr>
  3931. <tr>
  3932. <td><br /></td>
  3933. </tr>
  3934. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3935. <td colspan="2" style="text-align: center;">
  3936. </td>
  3937. </tr>
  3938. </table>
  3939. </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;)">
  3940. <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 />
  3941. <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="购买 EFR32BG1B232F256GM32-B0" class="buy-button" /><br />
  3942. <table cellspacing="0" border="0" style="width: 100%;">
  3943. <tr>
  3944. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3945. 最低:
  3946. </td>
  3947. <td style="padding-left: 2px; text-align: left;">
  3948. 1
  3949. </td>
  3950. </tr>
  3951. <tr>
  3952. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3953. 多个:
  3954. </td>
  3955. <td style="padding-left: 2px; text-align: left;">
  3956. 1
  3957. </td>
  3958. </tr>
  3959. </table>
  3960. </div>
  3961. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_pnlCompliant">
  3962. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3963. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=0cZsPsx04Et8uHhmRa%2fNKg%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=0cZsPsx04Et8uHhmRa%2fNKg%3d%3d" target="_blank">详细信息</a>
  3964. </div>
  3965. </td><td>Bluetooth
  3966. </td><td>ARM Cortex M4
  3967. </td><td>2.4 GHz
  3968. </td><td>
  3969. </td><td>10.5 dBm
  3970. </td><td>- 94 dBm
  3971. </td><td>1.62 V to 3.8 V
  3972. </td><td>8.6 mA
  3973. </td><td>8.2 mA
  3974. </td><td>256 kB
  3975. </td><td>- 40 C to + 85 C
  3976. </td><td>QFN-32
  3977. </td>
  3978. </tr><tr class="SearchResultsRowOdd" data-partnumber="634-BG1V132F256GM48" data-index="19">
  3979. <td class="td-select" align="center">
  3980. <div style="padding: 5px 5px 0 5px;">
  3981. <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>
  3982. </div>
  3983. </td><td><a href='/ProductDetail/Silicon-Labs/EFR32BG1V132F256GM48-B0/?qs=sGAEpiMZZMvQqVCO1QUke799d4eoA0sijtqLbfKrzdK%252b%252bst9sXV3lg%3d%3d'><img title='Silicon Labs EFR32BG1V132F256GM48-B0' alt='Silicon Labs EFR32BG1V132F256GM48-B0' id=1613119990 src='/images/mouserimages/sm/QFN_48_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_48_t.jpg</div></a></td><td>
  3984. <div style="text-align:left;">
  3985. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Silicon-Labs/EFR32BG1V132F256GM48-B0/?qs=sGAEpiMZZMvQqVCO1QUke799d4eoA0sijtqLbfKrzdK%252b%252bst9sXV3lg%3d%3d">634-BG1V132F256GM48</a><br />
  3986. <br />
  3987. <br />
  3988. </div></td><td>
  3989. <div class="mfrDiv">
  3990. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Silicon-Labs/EFR32BG1V132F256GM48-B0/?qs=sGAEpiMZZMvQqVCO1QUke799d4eoA0sijtqLbfKrzdK%252b%252bst9sXV3lg%3d%3d">EFR32BG1V132F256GM48-B0</a><br />
  3991. <br />
  3992. <div style="width: 100%; text-align: center;">
  3993. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3994. </div>
  3995. <div style="width: 100%; text-align: center;">
  3996. </div>
  3997. </div>
  3998. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl03_lnkSupplier" href="../../../../../../Silicon-Laboratories">Silicon Labs</a>
  3999. </td><td>RF片上系统 - SoC EFR32 Value, 0 dBm 256 KB FM/16 KB RAM
  4000. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4001. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../efr32bg-blue-gecko">了解更多</a>
  4002. </div>
  4003. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4004. </div>
  4005. </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;Silicon Labs&quot;,&quot;634-BG1V132F256GM48 | EFR32BG1V132F256GM48-B0&quot;]);" href="http://www.mouser.com/ds/2/368/EFR32BG1-DataSheet-876892.pdf" target="_blank">数据表</a>
  4006. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl06_lnkAvailability">93<br/>有库存</span>
  4007. <table>
  4008. <tr align="center">
  4009. <td style="padding-top: 5px">
  4010. </td>
  4011. </tr>
  4012. <tr align="center">
  4013. <td style="padding-top: 5px; padding-bottom: 5px">
  4014. </td>
  4015. </tr>
  4016. </table></td><td>
  4017. <table class="PriceBreaks" cellspacing="0" border="0">
  4018. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4019. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4020. </td>
  4021. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4022. </td>
  4023. </tr>
  4024. <tr>
  4025. <td class="PriceBreakQuantity">
  4026. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(17,1);">1:</a>
  4027. </td>
  4028. <td class="PriceBreakPrice">
  4029. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥28.4193</span>
  4030. </td>
  4031. </tr>
  4032. <tr>
  4033. <td class="PriceBreakQuantity">
  4034. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(17,10);">10:</a>
  4035. </td>
  4036. <td class="PriceBreakPrice">
  4037. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥26.8047</span>
  4038. </td>
  4039. </tr>
  4040. <tr>
  4041. <td class="PriceBreakQuantity">
  4042. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(17,25);">25:</a>
  4043. </td>
  4044. <td class="PriceBreakPrice">
  4045. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥26.0325</span>
  4046. </td>
  4047. </tr>
  4048. <tr>
  4049. <td class="PriceBreakQuantity">
  4050. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(17,50);">50:</a>
  4051. </td>
  4052. <td class="PriceBreakPrice">
  4053. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥25.2603</span>
  4054. </td>
  4055. </tr>
  4056. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  4057. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  4058. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(17,100);">100:</a>
  4059. </td>
  4060. <td class="PriceBreakPrice">
  4061. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Silicon-Labs/EFR32BG1V132F256GM48-B0/?qs=sGAEpiMZZMvQqVCO1QUke799d4eoA0sijtqLbfKrzdK%252b%252bst9sXV3lg%3d%3d">查看</a>
  4062. </td>
  4063. </tr>
  4064. <tr>
  4065. <td><br /></td>
  4066. </tr>
  4067. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4068. <td colspan="2" style="text-align: center;">
  4069. </td>
  4070. </tr>
  4071. </table>
  4072. </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;)">
  4073. <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 />
  4074. <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="购买 EFR32BG1V132F256GM48-B0" class="buy-button" /><br />
  4075. <table cellspacing="0" border="0" style="width: 100%;">
  4076. <tr>
  4077. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4078. 最低:
  4079. </td>
  4080. <td style="padding-left: 2px; text-align: left;">
  4081. 1
  4082. </td>
  4083. </tr>
  4084. <tr>
  4085. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4086. 多个:
  4087. </td>
  4088. <td style="padding-left: 2px; text-align: left;">
  4089. 1
  4090. </td>
  4091. </tr>
  4092. </table>
  4093. </div>
  4094. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_pnlCompliant">
  4095. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4096. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=0cZsPsx04EuOVKEep7ztCQ%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=0cZsPsx04EuOVKEep7ztCQ%3d%3d" target="_blank">详细信息</a>
  4097. </div>
  4098. </td><td>Bluetooth
  4099. </td><td>ARM Cortex M4
  4100. </td><td>2.4 GHz
  4101. </td><td>
  4102. </td><td>0 dBm
  4103. </td><td>- 94 dBm
  4104. </td><td>1.62 V to 3.8 V
  4105. </td><td>8.6 mA
  4106. </td><td>8.2 mA
  4107. </td><td>256 kB
  4108. </td><td>- 40 C to + 85 C
  4109. </td><td>QFN-48
  4110. </td>
  4111. </tr><tr class="SearchResultsRowEven" data-partnumber="634-EM346-RT" data-index="20">
  4112. <td class="td-select" align="center">
  4113. <div style="padding: 5px 5px 0 5px;">
  4114. <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>
  4115. </div>
  4116. </td><td><a href='/ProductDetail/Silicon-Labs/EM346-RT/?qs=sGAEpiMZZMvQqVCO1QUke%252bJ2rpIa2t4YUj1SxgqOUp1zSsJvytnExQ%3d%3d'><img title='Silicon Labs EM346-RT' alt='Silicon Labs EM346-RT' id=1464559568 src='/images/mouserimages/sm/QFN_48_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_48_t.jpg</div></a></td><td>
  4117. <div style="text-align:left;">
  4118. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Silicon-Labs/EM346-RT/?qs=sGAEpiMZZMvQqVCO1QUke%252bJ2rpIa2t4YUj1SxgqOUp1zSsJvytnExQ%3d%3d">634-EM346-RT</a><br />
  4119. <br />
  4120. <br />
  4121. </div></td><td>
  4122. <div class="mfrDiv">
  4123. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Silicon-Labs/EM346-RT/?qs=sGAEpiMZZMvQqVCO1QUke%252bJ2rpIa2t4YUj1SxgqOUp1zSsJvytnExQ%3d%3d">EM346-RT</a><br />
  4124. <br />
  4125. <div style="width: 100%; text-align: center;">
  4126. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  4127. </div>
  4128. <div style="width: 100%; text-align: center;">
  4129. </div>
  4130. </div>
  4131. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl03_lnkSupplier" href="../../../../../../Silicon-Laboratories">Silicon Labs</a>
  4132. </td><td>RF片上系统 - SoC RF4CE Target SoC 192Kb Flash 12Kb RAM
  4133. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4134. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../silabs-em34x-wireless/">了解更多</a>
  4135. </div>
  4136. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4137. </div>
  4138. </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;Silicon Labs&quot;,&quot;634-EM346-RT | EM346-RT&quot;]);" href="http://www.mouser.com/ds/2/368/EM346_Datasheet-587890.pdf" target="_blank">数据表</a>
  4139. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl06_lnkAvailability">98<br/>有库存</span>
  4140. <table>
  4141. <tr align="center">
  4142. <td style="padding-top: 5px">
  4143. </td>
  4144. </tr>
  4145. <tr align="center">
  4146. <td style="padding-top: 5px; padding-bottom: 5px">
  4147. </td>
  4148. </tr>
  4149. </table></td><td>
  4150. <table class="PriceBreaks" cellspacing="0" border="0">
  4151. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4152. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4153. </td>
  4154. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4155. </td>
  4156. </tr>
  4157. <tr>
  4158. <td class="PriceBreakQuantity">
  4159. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(18,1);">1:</a>
  4160. </td>
  4161. <td class="PriceBreakPrice">
  4162. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥35.8839</span>
  4163. </td>
  4164. </tr>
  4165. <tr>
  4166. <td class="PriceBreakQuantity">
  4167. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(18,10);">10:</a>
  4168. </td>
  4169. <td class="PriceBreakPrice">
  4170. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥33.8832</span>
  4171. </td>
  4172. </tr>
  4173. <tr>
  4174. <td class="PriceBreakQuantity">
  4175. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(18,25);">25:</a>
  4176. </td>
  4177. <td class="PriceBreakPrice">
  4178. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥32.8887</span>
  4179. </td>
  4180. </tr>
  4181. <tr>
  4182. <td class="PriceBreakQuantity">
  4183. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(18,50);">50:</a>
  4184. </td>
  4185. <td class="PriceBreakPrice">
  4186. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥31.8825</span>
  4187. </td>
  4188. </tr>
  4189. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  4190. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  4191. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(18,100);">100:</a>
  4192. </td>
  4193. <td class="PriceBreakPrice">
  4194. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Silicon-Labs/EM346-RT/?qs=sGAEpiMZZMvQqVCO1QUke%252bJ2rpIa2t4YUj1SxgqOUp1zSsJvytnExQ%3d%3d">查看</a>
  4195. </td>
  4196. </tr>
  4197. <tr>
  4198. <td><br /></td>
  4199. </tr>
  4200. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4201. <td colspan="2" style="text-align: center;">
  4202. </td>
  4203. </tr>
  4204. </table>
  4205. </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;)">
  4206. <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 />
  4207. <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="购买 EM346-RT" class="buy-button" /><br />
  4208. <table cellspacing="0" border="0" style="width: 100%;">
  4209. <tr>
  4210. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4211. 最低:
  4212. </td>
  4213. <td style="padding-left: 2px; text-align: left;">
  4214. 1
  4215. </td>
  4216. </tr>
  4217. <tr>
  4218. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4219. 多个:
  4220. </td>
  4221. <td style="padding-left: 2px; text-align: left;">
  4222. 1
  4223. </td>
  4224. </tr>
  4225. </table>
  4226. </div>
  4227. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_pnlCompliant">
  4228. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4229. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=bwSZdsiDM3fc3h3NONUpIQ%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=bwSZdsiDM3fc3h3NONUpIQ%3d%3d" target="_blank">详细信息</a>
  4230. </div>
  4231. </td><td>Zigbee
  4232. </td><td>ARM Cortex M3
  4233. </td><td>2.4 GHz
  4234. </td><td>250 kb/s
  4235. </td><td>5 dBm
  4236. </td><td>- 100 dBm
  4237. </td><td>2.1 V to 3.6 V
  4238. </td><td>26 mA
  4239. </td><td>31 mA
  4240. </td><td>192 kB
  4241. </td><td>- 40 C to + 85 C
  4242. </td><td>QFN-48
  4243. </td>
  4244. </tr><tr class="SearchResultsRowOdd" data-partnumber="634-MG1B132F256GM32" data-index="21">
  4245. <td class="td-select" align="center">
  4246. <div style="padding: 5px 5px 0 5px;">
  4247. <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>
  4248. </div>
  4249. </td><td><a href='/ProductDetail/Silicon-Labs/EFR32MG1B132F256GM32-B0/?qs=sGAEpiMZZMvQqVCO1QUke%2fG8%252b%2fBke%2fYdqx2cu6tpTUozr2m6h%2flhuQ%3d%3d'><img title='Silicon Labs EFR32MG1B132F256GM32-B0' alt='Silicon Labs EFR32MG1B132F256GM32-B0' id=1626283559 src='/images/siliconlaboratories/sm/EFR32MG32_SPL.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/siliconlaboratories/images/EFR32MG32_SPL.jpg</div></a></td><td>
  4250. <div style="text-align:left;">
  4251. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Silicon-Labs/EFR32MG1B132F256GM32-B0/?qs=sGAEpiMZZMvQqVCO1QUke%2fG8%252b%2fBke%2fYdqx2cu6tpTUozr2m6h%2flhuQ%3d%3d">634-MG1B132F256GM32</a><br />
  4252. <br />
  4253. <br />
  4254. </div></td><td>
  4255. <div class="mfrDiv">
  4256. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Silicon-Labs/EFR32MG1B132F256GM32-B0/?qs=sGAEpiMZZMvQqVCO1QUke%2fG8%252b%2fBke%2fYdqx2cu6tpTUozr2m6h%2flhuQ%3d%3d">EFR32MG1B132F256GM32-B0</a><br />
  4257. <br />
  4258. <div style="width: 100%; text-align: center;">
  4259. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  4260. </div>
  4261. <div style="width: 100%; text-align: center;">
  4262. </div>
  4263. </div>
  4264. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl03_lnkSupplier" href="../../../../../../Silicon-Laboratories">Silicon Labs</a>
  4265. </td><td>RF片上系统 - SoC 256kB FM/32kB RAM 2.4GHz/16.5dBm/Mesh
  4266. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4267. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../new/Silicon-Laboratories/silabs-efr32mg-mighty-gecko-soc/">了解更多</a>
  4268. </div>
  4269. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4270. </div>
  4271. </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;Silicon Labs&quot;,&quot;634-MG1B132F256GM32 | EFR32MG1B132F256GM32-B0&quot;]);" href="http://www.mouser.com/ds/2/368/EFR32MG1-DataSheet-876885.pdf" target="_blank">数据表</a>
  4272. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl06_lnkAvailability">96<br/>有库存</span>
  4273. <table>
  4274. <tr align="center">
  4275. <td style="padding-top: 5px">
  4276. </td>
  4277. </tr>
  4278. <tr align="center">
  4279. <td style="padding-top: 5px; padding-bottom: 5px">
  4280. </td>
  4281. </tr>
  4282. </table></td><td>
  4283. <table class="PriceBreaks" cellspacing="0" border="0">
  4284. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4285. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4286. </td>
  4287. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4288. </td>
  4289. </tr>
  4290. <tr>
  4291. <td class="PriceBreakQuantity">
  4292. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(19,1);">1:</a>
  4293. </td>
  4294. <td class="PriceBreakPrice">
  4295. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥50.5206</span>
  4296. </td>
  4297. </tr>
  4298. <tr>
  4299. <td class="PriceBreakQuantity">
  4300. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(19,10);">10:</a>
  4301. </td>
  4302. <td class="PriceBreakPrice">
  4303. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥47.7477</span>
  4304. </td>
  4305. </tr>
  4306. <tr>
  4307. <td class="PriceBreakQuantity">
  4308. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(19,25);">25:</a>
  4309. </td>
  4310. <td class="PriceBreakPrice">
  4311. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥46.3554</span>
  4312. </td>
  4313. </tr>
  4314. <tr>
  4315. <td class="PriceBreakQuantity">
  4316. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(19,50);">50:</a>
  4317. </td>
  4318. <td class="PriceBreakPrice">
  4319. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥44.9748</span>
  4320. </td>
  4321. </tr>
  4322. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  4323. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  4324. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(19,100);">100:</a>
  4325. </td>
  4326. <td class="PriceBreakPrice">
  4327. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Silicon-Labs/EFR32MG1B132F256GM32-B0/?qs=sGAEpiMZZMvQqVCO1QUke%2fG8%252b%2fBke%2fYdqx2cu6tpTUozr2m6h%2flhuQ%3d%3d">查看</a>
  4328. </td>
  4329. </tr>
  4330. <tr>
  4331. <td><br /></td>
  4332. </tr>
  4333. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4334. <td colspan="2" style="text-align: center;">
  4335. </td>
  4336. </tr>
  4337. </table>
  4338. </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;)">
  4339. <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 />
  4340. <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="购买 EFR32MG1B132F256GM32-B0" class="buy-button" /><br />
  4341. <table cellspacing="0" border="0" style="width: 100%;">
  4342. <tr>
  4343. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4344. 最低:
  4345. </td>
  4346. <td style="padding-left: 2px; text-align: left;">
  4347. 1
  4348. </td>
  4349. </tr>
  4350. <tr>
  4351. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4352. 多个:
  4353. </td>
  4354. <td style="padding-left: 2px; text-align: left;">
  4355. 1
  4356. </td>
  4357. </tr>
  4358. </table>
  4359. </div>
  4360. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_pnlCompliant">
  4361. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4362. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=fwms843UYBPux9IhywqhgA%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=fwms843UYBPux9IhywqhgA%3d%3d" target="_blank">详细信息</a>
  4363. </div>
  4364. </td><td>Bluetooth, Zigbee
  4365. </td><td>ARM Cortex M4
  4366. </td><td>2.4 GHz
  4367. </td><td>1 Mb/s
  4368. </td><td>0 dBm
  4369. </td><td>- 91.4 dBm
  4370. </td><td>1.62 V to 3.8 V
  4371. </td><td>9.1 mA
  4372. </td><td>133 mA
  4373. </td><td>256 kB
  4374. </td><td>- 40 C to + 85 C
  4375. </td><td>QFN-32
  4376. </td>
  4377. </tr><tr class="SearchResultsRowEven" data-partnumber="634-MG1P232F256GM48" data-index="22">
  4378. <td class="td-select" align="center">
  4379. <div style="padding: 5px 5px 0 5px;">
  4380. <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>
  4381. </div>
  4382. </td><td><a href='/ProductDetail/Silicon-Labs/EFR32MG1P232F256GM48-B0/?qs=sGAEpiMZZMvQqVCO1QUke%2fG8%252b%2fBke%2fYdTp3cesBRiOU43jhHxoK22A%3d%3d'><img title='Silicon Labs EFR32MG1P232F256GM48-B0' alt='Silicon Labs EFR32MG1P232F256GM48-B0' id=1626283573 src='/images/siliconlaboratories/sm/EFR32MG48_SPL.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/siliconlaboratories/images/EFR32MG48_SPL.jpg</div></a></td><td>
  4383. <div style="text-align:left;">
  4384. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Silicon-Labs/EFR32MG1P232F256GM48-B0/?qs=sGAEpiMZZMvQqVCO1QUke%2fG8%252b%2fBke%2fYdTp3cesBRiOU43jhHxoK22A%3d%3d">634-MG1P232F256GM48</a><br />
  4385. <br />
  4386. <br />
  4387. </div></td><td>
  4388. <div class="mfrDiv">
  4389. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Silicon-Labs/EFR32MG1P232F256GM48-B0/?qs=sGAEpiMZZMvQqVCO1QUke%2fG8%252b%2fBke%2fYdTp3cesBRiOU43jhHxoK22A%3d%3d">EFR32MG1P232F256GM48-B0</a><br />
  4390. <br />
  4391. <div style="width: 100%; text-align: center;">
  4392. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  4393. </div>
  4394. <div style="width: 100%; text-align: center;">
  4395. </div>
  4396. </div>
  4397. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl03_lnkSupplier" href="../../../../../../Silicon-Laboratories">Silicon Labs</a>
  4398. </td><td>RF片上系统 - SoC 256kB FM/32kB RAM 2.4GHz/19.5dBm/M/BLE
  4399. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4400. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../new/Silicon-Laboratories/silabs-efr32mg-mighty-gecko-soc/">了解更多</a>
  4401. </div>
  4402. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4403. </div>
  4404. </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;Silicon Labs&quot;,&quot;634-MG1P232F256GM48 | EFR32MG1P232F256GM48-B0&quot;]);" href="http://www.mouser.com/ds/2/368/EFR32MG1-DataSheet-876885.pdf" target="_blank">数据表</a>
  4405. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl06_lnkAvailability">96<br/>有库存</span>
  4406. <table>
  4407. <tr align="center">
  4408. <td style="padding-top: 5px">
  4409. </td>
  4410. </tr>
  4411. <tr align="center">
  4412. <td style="padding-top: 5px; padding-bottom: 5px">
  4413. </td>
  4414. </tr>
  4415. </table></td><td>
  4416. <table class="PriceBreaks" cellspacing="0" border="0">
  4417. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4418. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4419. </td>
  4420. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4421. </td>
  4422. </tr>
  4423. <tr>
  4424. <td class="PriceBreakQuantity">
  4425. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(20,1);">1:</a>
  4426. </td>
  4427. <td class="PriceBreakPrice">
  4428. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥60.1497</span>
  4429. </td>
  4430. </tr>
  4431. <tr>
  4432. <td class="PriceBreakQuantity">
  4433. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(20,10);">10:</a>
  4434. </td>
  4435. <td class="PriceBreakPrice">
  4436. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥56.7567</span>
  4437. </td>
  4438. </tr>
  4439. <tr>
  4440. <td class="PriceBreakQuantity">
  4441. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(20,25);">25:</a>
  4442. </td>
  4443. <td class="PriceBreakPrice">
  4444. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥55.1421</span>
  4445. </td>
  4446. </tr>
  4447. <tr>
  4448. <td class="PriceBreakQuantity">
  4449. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(20,50);">50:</a>
  4450. </td>
  4451. <td class="PriceBreakPrice">
  4452. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥53.4456</span>
  4453. </td>
  4454. </tr>
  4455. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  4456. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  4457. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(20,100);">100:</a>
  4458. </td>
  4459. <td class="PriceBreakPrice">
  4460. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Silicon-Labs/EFR32MG1P232F256GM48-B0/?qs=sGAEpiMZZMvQqVCO1QUke%2fG8%252b%2fBke%2fYdTp3cesBRiOU43jhHxoK22A%3d%3d">查看</a>
  4461. </td>
  4462. </tr>
  4463. <tr>
  4464. <td><br /></td>
  4465. </tr>
  4466. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4467. <td colspan="2" style="text-align: center;">
  4468. </td>
  4469. </tr>
  4470. </table>
  4471. </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;)">
  4472. <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 />
  4473. <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="购买 EFR32MG1P232F256GM48-B0" class="buy-button" /><br />
  4474. <table cellspacing="0" border="0" style="width: 100%;">
  4475. <tr>
  4476. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4477. 最低:
  4478. </td>
  4479. <td style="padding-left: 2px; text-align: left;">
  4480. 1
  4481. </td>
  4482. </tr>
  4483. <tr>
  4484. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4485. 多个:
  4486. </td>
  4487. <td style="padding-left: 2px; text-align: left;">
  4488. 1
  4489. </td>
  4490. </tr>
  4491. </table>
  4492. </div>
  4493. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_pnlCompliant">
  4494. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4495. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=fwms843UYBNUaCUreMoDRQ%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=fwms843UYBNUaCUreMoDRQ%3d%3d" target="_blank">详细信息</a>
  4496. </div>
  4497. </td><td>Bluetooth, Zigbee
  4498. </td><td>ARM Cortex M4
  4499. </td><td>2.4 GHz
  4500. </td><td>1 Mb/s
  4501. </td><td>0 dBm
  4502. </td><td>- 91.4 dBm
  4503. </td><td>1.62 V to 3.8 V
  4504. </td><td>9.1 mA
  4505. </td><td>133 mA
  4506. </td><td>256 kB
  4507. </td><td>- 40 C to + 85 C
  4508. </td><td>QFN-48
  4509. </td>
  4510. </tr><tr class="SearchResultsRowOdd" data-partnumber="634-BG1V132F256GM32" data-index="23">
  4511. <td class="td-select" align="center">
  4512. <div style="padding: 5px 5px 0 5px;">
  4513. <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>
  4514. </div>
  4515. </td><td><a href='/ProductDetail/Silicon-Labs/EFR32BG1V132F256GM32-B0/?qs=sGAEpiMZZMvQqVCO1QUke799d4eoA0sioilNBXO9QkI4nqy6jguxYw%3d%3d'><img title='Silicon Labs EFR32BG1V132F256GM32-B0' alt='Silicon Labs EFR32BG1V132F256GM32-B0' id=1613119986 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>
  4516. <div style="text-align:left;">
  4517. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Silicon-Labs/EFR32BG1V132F256GM32-B0/?qs=sGAEpiMZZMvQqVCO1QUke799d4eoA0sioilNBXO9QkI4nqy6jguxYw%3d%3d">634-BG1V132F256GM32</a><br />
  4518. <br />
  4519. <br />
  4520. </div></td><td>
  4521. <div class="mfrDiv">
  4522. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Silicon-Labs/EFR32BG1V132F256GM32-B0/?qs=sGAEpiMZZMvQqVCO1QUke799d4eoA0sioilNBXO9QkI4nqy6jguxYw%3d%3d">EFR32BG1V132F256GM32-B0</a><br />
  4523. <br />
  4524. <div style="width: 100%; text-align: center;">
  4525. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  4526. </div>
  4527. <div style="width: 100%; text-align: center;">
  4528. </div>
  4529. </div>
  4530. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl03_lnkSupplier" href="../../../../../../Silicon-Laboratories">Silicon Labs</a>
  4531. </td><td>RF片上系统 - SoC EFR32 Value, 0 dBm 256 KB FM/16 KB RAM
  4532. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4533. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../efr32bg-blue-gecko">了解更多</a>
  4534. </div>
  4535. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4536. </div>
  4537. </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;Silicon Labs&quot;,&quot;634-BG1V132F256GM32 | EFR32BG1V132F256GM32-B0&quot;]);" href="http://www.mouser.com/ds/2/368/EFR32BG1-DataSheet-876892.pdf" target="_blank">数据表</a>
  4538. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl06_lnkAvailability">94<br/>有库存</span>
  4539. <table>
  4540. <tr align="center">
  4541. <td style="padding-top: 5px">
  4542. </td>
  4543. </tr>
  4544. <tr align="center">
  4545. <td style="padding-top: 5px; padding-bottom: 5px">
  4546. </td>
  4547. </tr>
  4548. </table></td><td>
  4549. <table class="PriceBreaks" cellspacing="0" border="0">
  4550. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4551. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4552. </td>
  4553. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4554. </td>
  4555. </tr>
  4556. <tr>
  4557. <td class="PriceBreakQuantity">
  4558. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(21,1);">1:</a>
  4559. </td>
  4560. <td class="PriceBreakPrice">
  4561. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥27.027</span>
  4562. </td>
  4563. </tr>
  4564. <tr>
  4565. <td class="PriceBreakQuantity">
  4566. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(21,10);">10:</a>
  4567. </td>
  4568. <td class="PriceBreakPrice">
  4569. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥25.4943</span>
  4570. </td>
  4571. </tr>
  4572. <tr>
  4573. <td class="PriceBreakQuantity">
  4574. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(21,25);">25:</a>
  4575. </td>
  4576. <td class="PriceBreakPrice">
  4577. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥24.7923</span>
  4578. </td>
  4579. </tr>
  4580. <tr>
  4581. <td class="PriceBreakQuantity">
  4582. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(21,50);">50:</a>
  4583. </td>
  4584. <td class="PriceBreakPrice">
  4585. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥24.0318</span>
  4586. </td>
  4587. </tr>
  4588. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  4589. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  4590. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(21,100);">100:</a>
  4591. </td>
  4592. <td class="PriceBreakPrice">
  4593. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Silicon-Labs/EFR32BG1V132F256GM32-B0/?qs=sGAEpiMZZMvQqVCO1QUke799d4eoA0sioilNBXO9QkI4nqy6jguxYw%3d%3d">查看</a>
  4594. </td>
  4595. </tr>
  4596. <tr>
  4597. <td><br /></td>
  4598. </tr>
  4599. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4600. <td colspan="2" style="text-align: center;">
  4601. </td>
  4602. </tr>
  4603. </table>
  4604. </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;)">
  4605. <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 />
  4606. <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="购买 EFR32BG1V132F256GM32-B0" class="buy-button" /><br />
  4607. <table cellspacing="0" border="0" style="width: 100%;">
  4608. <tr>
  4609. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4610. 最低:
  4611. </td>
  4612. <td style="padding-left: 2px; text-align: left;">
  4613. 1
  4614. </td>
  4615. </tr>
  4616. <tr>
  4617. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4618. 多个:
  4619. </td>
  4620. <td style="padding-left: 2px; text-align: left;">
  4621. 1
  4622. </td>
  4623. </tr>
  4624. </table>
  4625. </div>
  4626. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_pnlCompliant">
  4627. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4628. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=0cZsPsx04EtZVjwu4U%252bmdQ%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=0cZsPsx04EtZVjwu4U%252bmdQ%3d%3d" target="_blank">详细信息</a>
  4629. </div>
  4630. </td><td>Bluetooth
  4631. </td><td>ARM Cortex M4
  4632. </td><td>2.4 GHz
  4633. </td><td>
  4634. </td><td>0 dBm
  4635. </td><td>- 94 dBm
  4636. </td><td>1.62 V to 3.8 V
  4637. </td><td>8.6 mA
  4638. </td><td>8.2 mA
  4639. </td><td>256 kB
  4640. </td><td>- 40 C to + 85 C
  4641. </td><td>QFN-32
  4642. </td>
  4643. </tr><tr class="SearchResultsRowEven" data-partnumber="634-EM342-RT" data-index="24">
  4644. <td class="td-select" align="center">
  4645. <div style="padding: 5px 5px 0 5px;">
  4646. <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>
  4647. </div>
  4648. </td><td><a href='/ProductDetail/Silicon-Labs/EM342-RT/?qs=sGAEpiMZZMvQqVCO1QUke%252bJ2rpIa2t4YNtkj8N2IQlkm00EmKQ2s1w%3d%3d'><img title='Silicon Labs EM342-RT' alt='Silicon Labs EM342-RT' id=1464559566 src='/images/mouserimages/sm/QFN_48_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_48_t.jpg</div></a></td><td>
  4649. <div style="text-align:left;">
  4650. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Silicon-Labs/EM342-RT/?qs=sGAEpiMZZMvQqVCO1QUke%252bJ2rpIa2t4YNtkj8N2IQlkm00EmKQ2s1w%3d%3d">634-EM342-RT</a><br />
  4651. <br />
  4652. <br />
  4653. </div></td><td>
  4654. <div class="mfrDiv">
  4655. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Silicon-Labs/EM342-RT/?qs=sGAEpiMZZMvQqVCO1QUke%252bJ2rpIa2t4YNtkj8N2IQlkm00EmKQ2s1w%3d%3d">EM342-RT</a><br />
  4656. <br />
  4657. <div style="width: 100%; text-align: center;">
  4658. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  4659. </div>
  4660. <div style="width: 100%; text-align: center;">
  4661. </div>
  4662. </div>
  4663. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl03_lnkSupplier" href="../../../../../../Silicon-Laboratories">Silicon Labs</a>
  4664. </td><td>RF片上系统 - SoC RF4CE Target SoC 128Kb Flash 12Kb RAM
  4665. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4666. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../silabs-em34x-wireless/">了解更多</a>
  4667. </div>
  4668. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4669. </div>
  4670. </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;Silicon Labs&quot;,&quot;634-EM342-RT | EM342-RT&quot;]);" href="http://www.mouser.com/ds/2/368/EM342_Datasheet-587854.pdf" target="_blank">数据表</a>
  4671. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl06_lnkAvailability">100<br/>有库存</span>
  4672. <table>
  4673. <tr align="center">
  4674. <td style="padding-top: 5px">
  4675. </td>
  4676. </tr>
  4677. <tr align="center">
  4678. <td style="padding-top: 5px; padding-bottom: 5px">
  4679. </td>
  4680. </tr>
  4681. </table></td><td>
  4682. <table class="PriceBreaks" cellspacing="0" border="0">
  4683. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4684. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4685. </td>
  4686. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4687. </td>
  4688. </tr>
  4689. <tr>
  4690. <td class="PriceBreakQuantity">
  4691. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(22,1);">1:</a>
  4692. </td>
  4693. <td class="PriceBreakPrice">
  4694. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥33.9651</span>
  4695. </td>
  4696. </tr>
  4697. <tr>
  4698. <td class="PriceBreakQuantity">
  4699. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(22,10);">10:</a>
  4700. </td>
  4701. <td class="PriceBreakPrice">
  4702. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥32.0346</span>
  4703. </td>
  4704. </tr>
  4705. <tr>
  4706. <td class="PriceBreakQuantity">
  4707. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(22,25);">25:</a>
  4708. </td>
  4709. <td class="PriceBreakPrice">
  4710. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥31.1103</span>
  4711. </td>
  4712. </tr>
  4713. <tr>
  4714. <td class="PriceBreakQuantity">
  4715. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(22,50);">50:</a>
  4716. </td>
  4717. <td class="PriceBreakPrice">
  4718. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥30.186</span>
  4719. </td>
  4720. </tr>
  4721. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  4722. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  4723. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(22,100);">100:</a>
  4724. </td>
  4725. <td class="PriceBreakPrice">
  4726. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Silicon-Labs/EM342-RT/?qs=sGAEpiMZZMvQqVCO1QUke%252bJ2rpIa2t4YNtkj8N2IQlkm00EmKQ2s1w%3d%3d">查看</a>
  4727. </td>
  4728. </tr>
  4729. <tr>
  4730. <td><br /></td>
  4731. </tr>
  4732. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4733. <td colspan="2" style="text-align: center;">
  4734. </td>
  4735. </tr>
  4736. </table>
  4737. </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;)">
  4738. <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 />
  4739. <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="购买 EM342-RT" class="buy-button" /><br />
  4740. <table cellspacing="0" border="0" style="width: 100%;">
  4741. <tr>
  4742. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4743. 最低:
  4744. </td>
  4745. <td style="padding-left: 2px; text-align: left;">
  4746. 1
  4747. </td>
  4748. </tr>
  4749. <tr>
  4750. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4751. 多个:
  4752. </td>
  4753. <td style="padding-left: 2px; text-align: left;">
  4754. 1
  4755. </td>
  4756. </tr>
  4757. </table>
  4758. </div>
  4759. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_pnlCompliant">
  4760. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4761. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=bwSZdsiDM3f5PUsIgjXmtg%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=bwSZdsiDM3f5PUsIgjXmtg%3d%3d" target="_blank">详细信息</a>
  4762. </div>
  4763. </td><td>Zigbee
  4764. </td><td>ARM Cortex M3
  4765. </td><td>2.4 GHz
  4766. </td><td>250 kb/s
  4767. </td><td>5 dBm
  4768. </td><td>- 100 dBm
  4769. </td><td>2.1 V to 3.6 V
  4770. </td><td>26 mA
  4771. </td><td>31 mA
  4772. </td><td>128 kB
  4773. </td><td>- 40 C to + 85 C
  4774. </td><td>QFN-48
  4775. </td>
  4776. </tr><tr class="SearchResultsRowOdd" data-partnumber="634-MG1V132F256GM32" data-index="25">
  4777. <td class="td-select" align="center">
  4778. <div style="padding: 5px 5px 0 5px;">
  4779. <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>
  4780. </div>
  4781. </td><td><a href='/ProductDetail/Silicon-Labs/EFR32MG1V132F256GM32-B0/?qs=sGAEpiMZZMvQqVCO1QUke%2fG8%252b%2fBke%2fYdmq1eTXVqWBrfyA3fGnIsug%3d%3d'><img title='Silicon Labs EFR32MG1V132F256GM32-B0' alt='Silicon Labs EFR32MG1V132F256GM32-B0' id=1626283571 src='/images/siliconlaboratories/sm/EFR32MG32_SPL.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/siliconlaboratories/images/EFR32MG32_SPL.jpg</div></a></td><td>
  4782. <div style="text-align:left;">
  4783. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Silicon-Labs/EFR32MG1V132F256GM32-B0/?qs=sGAEpiMZZMvQqVCO1QUke%2fG8%252b%2fBke%2fYdmq1eTXVqWBrfyA3fGnIsug%3d%3d">634-MG1V132F256GM32</a><br />
  4784. <br />
  4785. <br />
  4786. </div></td><td>
  4787. <div class="mfrDiv">
  4788. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Silicon-Labs/EFR32MG1V132F256GM32-B0/?qs=sGAEpiMZZMvQqVCO1QUke%2fG8%252b%2fBke%2fYdmq1eTXVqWBrfyA3fGnIsug%3d%3d">EFR32MG1V132F256GM32-B0</a><br />
  4789. <br />
  4790. <div style="width: 100%; text-align: center;">
  4791. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  4792. </div>
  4793. <div style="width: 100%; text-align: center;">
  4794. </div>
  4795. </div>
  4796. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl03_lnkSupplier" href="../../../../../../Silicon-Laboratories">Silicon Labs</a>
  4797. </td><td>RF片上系统 - SoC 256kB FM/32kB RAM 2.4GHz, 8 dBm, Mesh
  4798. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4799. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../new/Silicon-Laboratories/silabs-efr32mg-mighty-gecko-soc/">了解更多</a>
  4800. </div>
  4801. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4802. </div>
  4803. </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;Silicon Labs&quot;,&quot;634-MG1V132F256GM32 | EFR32MG1V132F256GM32-B0&quot;]);" href="http://www.mouser.com/ds/2/368/EFR32MG1-DataSheet-876885.pdf" target="_blank">数据表</a>
  4804. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl06_lnkAvailability">98<br/>有库存</span>
  4805. <table>
  4806. <tr align="center">
  4807. <td style="padding-top: 5px">
  4808. </td>
  4809. </tr>
  4810. <tr align="center">
  4811. <td style="padding-top: 5px; padding-bottom: 5px">
  4812. </td>
  4813. </tr>
  4814. </table></td><td>
  4815. <table class="PriceBreaks" cellspacing="0" border="0">
  4816. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4817. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4818. </td>
  4819. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4820. </td>
  4821. </tr>
  4822. <tr>
  4823. <td class="PriceBreakQuantity">
  4824. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(23,1);">1:</a>
  4825. </td>
  4826. <td class="PriceBreakPrice">
  4827. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥43.6644</span>
  4828. </td>
  4829. </tr>
  4830. <tr>
  4831. <td class="PriceBreakQuantity">
  4832. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(23,10);">10:</a>
  4833. </td>
  4834. <td class="PriceBreakPrice">
  4835. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥41.1957</span>
  4836. </td>
  4837. </tr>
  4838. <tr>
  4839. <td class="PriceBreakQuantity">
  4840. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(23,25);">25:</a>
  4841. </td>
  4842. <td class="PriceBreakPrice">
  4843. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥39.9672</span>
  4844. </td>
  4845. </tr>
  4846. <tr>
  4847. <td class="PriceBreakQuantity">
  4848. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(23,50);">50:</a>
  4849. </td>
  4850. <td class="PriceBreakPrice">
  4851. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥38.8089</span>
  4852. </td>
  4853. </tr>
  4854. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  4855. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  4856. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(23,100);">100:</a>
  4857. </td>
  4858. <td class="PriceBreakPrice">
  4859. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Silicon-Labs/EFR32MG1V132F256GM32-B0/?qs=sGAEpiMZZMvQqVCO1QUke%2fG8%252b%2fBke%2fYdmq1eTXVqWBrfyA3fGnIsug%3d%3d">查看</a>
  4860. </td>
  4861. </tr>
  4862. <tr>
  4863. <td><br /></td>
  4864. </tr>
  4865. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4866. <td colspan="2" style="text-align: center;">
  4867. </td>
  4868. </tr>
  4869. </table>
  4870. </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;)">
  4871. <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 />
  4872. <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="购买 EFR32MG1V132F256GM32-B0" class="buy-button" /><br />
  4873. <table cellspacing="0" border="0" style="width: 100%;">
  4874. <tr>
  4875. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4876. 最低:
  4877. </td>
  4878. <td style="padding-left: 2px; text-align: left;">
  4879. 1
  4880. </td>
  4881. </tr>
  4882. <tr>
  4883. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4884. 多个:
  4885. </td>
  4886. <td style="padding-left: 2px; text-align: left;">
  4887. 1
  4888. </td>
  4889. </tr>
  4890. </table>
  4891. </div>
  4892. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_pnlCompliant">
  4893. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4894. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=fwms843UYBMtRoVxW1AfJg%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=fwms843UYBMtRoVxW1AfJg%3d%3d" target="_blank">详细信息</a>
  4895. </div>
  4896. </td><td>Bluetooth, Zigbee
  4897. </td><td>ARM Cortex M4
  4898. </td><td>2.4 GHz
  4899. </td><td>1 Mb/s
  4900. </td><td>0 dBm
  4901. </td><td>- 91.4 dBm
  4902. </td><td>1.62 V to 3.8 V
  4903. </td><td>9.1 mA
  4904. </td><td>133 mA
  4905. </td><td>256 kB
  4906. </td><td>- 40 C to + 85 C
  4907. </td><td>QFN-32
  4908. </td>
  4909. </tr><tr class="SearchResultsRowEven" data-partnumber="634-MG1P232F256GM32" data-index="26">
  4910. <td class="td-select" align="center">
  4911. <div style="padding: 5px 5px 0 5px;">
  4912. <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>
  4913. </div>
  4914. </td><td><a href='/ProductDetail/Silicon-Labs/EFR32MG1P232F256GM32-B0/?qs=sGAEpiMZZMvQqVCO1QUke%2fG8%252b%2fBke%2fYdDJMdrcRKBan135q72yfS1w%3d%3d'><img title='Silicon Labs EFR32MG1P232F256GM32-B0' alt='Silicon Labs EFR32MG1P232F256GM32-B0' id=1626283563 src='/images/siliconlaboratories/sm/EFR32MG32_SPL.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/siliconlaboratories/images/EFR32MG32_SPL.jpg</div></a></td><td>
  4915. <div style="text-align:left;">
  4916. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Silicon-Labs/EFR32MG1P232F256GM32-B0/?qs=sGAEpiMZZMvQqVCO1QUke%2fG8%252b%2fBke%2fYdDJMdrcRKBan135q72yfS1w%3d%3d">634-MG1P232F256GM32</a><br />
  4917. <br />
  4918. <br />
  4919. </div></td><td>
  4920. <div class="mfrDiv">
  4921. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Silicon-Labs/EFR32MG1P232F256GM32-B0/?qs=sGAEpiMZZMvQqVCO1QUke%2fG8%252b%2fBke%2fYdDJMdrcRKBan135q72yfS1w%3d%3d">EFR32MG1P232F256GM32-B0</a><br />
  4922. <br />
  4923. <div style="width: 100%; text-align: center;">
  4924. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  4925. </div>
  4926. <div style="width: 100%; text-align: center;">
  4927. </div>
  4928. </div>
  4929. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl03_lnkSupplier" href="../../../../../../Silicon-Laboratories">Silicon Labs</a>
  4930. </td><td>RF片上系统 - SoC 256kB FM/32kB RAM 2.4GHz/19.5dBm/M/BLE
  4931. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4932. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../new/Silicon-Laboratories/silabs-efr32mg-mighty-gecko-soc/">了解更多</a>
  4933. </div>
  4934. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4935. </div>
  4936. </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;Silicon Labs&quot;,&quot;634-MG1P232F256GM32 | EFR32MG1P232F256GM32-B0&quot;]);" href="http://www.mouser.com/ds/2/368/EFR32MG1-DataSheet-876885.pdf" target="_blank">数据表</a>
  4937. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl06_lnkAvailability">98<br/>有库存</span>
  4938. <table>
  4939. <tr align="center">
  4940. <td style="padding-top: 5px">
  4941. </td>
  4942. </tr>
  4943. <tr align="center">
  4944. <td style="padding-top: 5px; padding-bottom: 5px">
  4945. </td>
  4946. </tr>
  4947. </table></td><td>
  4948. <table class="PriceBreaks" cellspacing="0" border="0">
  4949. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4950. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4951. </td>
  4952. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4953. </td>
  4954. </tr>
  4955. <tr>
  4956. <td class="PriceBreakQuantity">
  4957. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(24,1);">1:</a>
  4958. </td>
  4959. <td class="PriceBreakPrice">
  4960. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥58.7574</span>
  4961. </td>
  4962. </tr>
  4963. <tr>
  4964. <td class="PriceBreakQuantity">
  4965. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(24,10);">10:</a>
  4966. </td>
  4967. <td class="PriceBreakPrice">
  4968. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥55.4463</span>
  4969. </td>
  4970. </tr>
  4971. <tr>
  4972. <td class="PriceBreakQuantity">
  4973. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(24,25);">25:</a>
  4974. </td>
  4975. <td class="PriceBreakPrice">
  4976. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥53.8317</span>
  4977. </td>
  4978. </tr>
  4979. <tr>
  4980. <td class="PriceBreakQuantity">
  4981. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(24,50);">50:</a>
  4982. </td>
  4983. <td class="PriceBreakPrice">
  4984. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥52.2171</span>
  4985. </td>
  4986. </tr>
  4987. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  4988. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  4989. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(24,100);">100:</a>
  4990. </td>
  4991. <td class="PriceBreakPrice">
  4992. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Silicon-Labs/EFR32MG1P232F256GM32-B0/?qs=sGAEpiMZZMvQqVCO1QUke%2fG8%252b%2fBke%2fYdDJMdrcRKBan135q72yfS1w%3d%3d">查看</a>
  4993. </td>
  4994. </tr>
  4995. <tr>
  4996. <td><br /></td>
  4997. </tr>
  4998. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4999. <td colspan="2" style="text-align: center;">
  5000. </td>
  5001. </tr>
  5002. </table>
  5003. </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;)">
  5004. <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 />
  5005. <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="购买 EFR32MG1P232F256GM32-B0" class="buy-button" /><br />
  5006. <table cellspacing="0" border="0" style="width: 100%;">
  5007. <tr>
  5008. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5009. 最低:
  5010. </td>
  5011. <td style="padding-left: 2px; text-align: left;">
  5012. 1
  5013. </td>
  5014. </tr>
  5015. <tr>
  5016. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5017. 多个:
  5018. </td>
  5019. <td style="padding-left: 2px; text-align: left;">
  5020. 1
  5021. </td>
  5022. </tr>
  5023. </table>
  5024. </div>
  5025. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_pnlCompliant">
  5026. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  5027. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=fwms843UYBO12NLUMxGF6w%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=fwms843UYBO12NLUMxGF6w%3d%3d" target="_blank">详细信息</a>
  5028. </div>
  5029. </td><td>Bluetooth, Zigbee
  5030. </td><td>ARM Cortex M4
  5031. </td><td>2.4 GHz
  5032. </td><td>1 Mb/s
  5033. </td><td>0 dBm
  5034. </td><td>- 91.4 dBm
  5035. </td><td>1.62 V to 3.8 V
  5036. </td><td>9.1 mA
  5037. </td><td>133 mA
  5038. </td><td>256 kB
  5039. </td><td>- 40 C to + 85 C
  5040. </td><td>QFN-32
  5041. </td>
  5042. </tr><tr class="SearchResultsRowOdd" data-partnumber="634-MG1V132F256GM48" data-index="27">
  5043. <td class="td-select" align="center">
  5044. <div style="padding: 5px 5px 0 5px;">
  5045. <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>
  5046. </div>
  5047. </td><td><a href='/ProductDetail/Silicon-Labs/EFR32MG1V132F256GM48-B0/?qs=sGAEpiMZZMvQqVCO1QUke%2fG8%252b%2fBke%2fYdzNFpFRSQJJI0s5Psf%252bL7AQ%3d%3d'><img title='Silicon Labs EFR32MG1V132F256GM48-B0' alt='Silicon Labs EFR32MG1V132F256GM48-B0' id=1626283583 src='/images/siliconlaboratories/sm/EFR32MG48_SPL.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/siliconlaboratories/images/EFR32MG48_SPL.jpg</div></a></td><td>
  5048. <div style="text-align:left;">
  5049. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Silicon-Labs/EFR32MG1V132F256GM48-B0/?qs=sGAEpiMZZMvQqVCO1QUke%2fG8%252b%2fBke%2fYdzNFpFRSQJJI0s5Psf%252bL7AQ%3d%3d">634-MG1V132F256GM48</a><br />
  5050. <br />
  5051. <br />
  5052. </div></td><td>
  5053. <div class="mfrDiv">
  5054. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Silicon-Labs/EFR32MG1V132F256GM48-B0/?qs=sGAEpiMZZMvQqVCO1QUke%2fG8%252b%2fBke%2fYdzNFpFRSQJJI0s5Psf%252bL7AQ%3d%3d">EFR32MG1V132F256GM48-B0</a><br />
  5055. <br />
  5056. <div style="width: 100%; text-align: center;">
  5057. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  5058. </div>
  5059. <div style="width: 100%; text-align: center;">
  5060. </div>
  5061. </div>
  5062. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl03_lnkSupplier" href="../../../../../../Silicon-Laboratories">Silicon Labs</a>
  5063. </td><td>RF片上系统 - SoC 256kB FM/32kB RAM 2.4GHz, 8 dBm, Mesh
  5064. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  5065. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../new/Silicon-Laboratories/silabs-efr32mg-mighty-gecko-soc/">了解更多</a>
  5066. </div>
  5067. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  5068. </div>
  5069. </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;Silicon Labs&quot;,&quot;634-MG1V132F256GM48 | EFR32MG1V132F256GM48-B0&quot;]);" href="http://www.mouser.com/ds/2/368/EFR32MG1-DataSheet-876885.pdf" target="_blank">数据表</a>
  5070. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl06_lnkAvailability">100<br/>有库存</span>
  5071. <table>
  5072. <tr align="center">
  5073. <td style="padding-top: 5px">
  5074. </td>
  5075. </tr>
  5076. <tr align="center">
  5077. <td style="padding-top: 5px; padding-bottom: 5px">
  5078. </td>
  5079. </tr>
  5080. </table></td><td>
  5081. <table class="PriceBreaks" cellspacing="0" border="0">
  5082. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  5083. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5084. </td>
  5085. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5086. </td>
  5087. </tr>
  5088. <tr>
  5089. <td class="PriceBreakQuantity">
  5090. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(25,1);">1:</a>
  5091. </td>
  5092. <td class="PriceBreakPrice">
  5093. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥44.8929</span>
  5094. </td>
  5095. </tr>
  5096. <tr>
  5097. <td class="PriceBreakQuantity">
  5098. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(25,10);">10:</a>
  5099. </td>
  5100. <td class="PriceBreakPrice">
  5101. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥42.354</span>
  5102. </td>
  5103. </tr>
  5104. <tr>
  5105. <td class="PriceBreakQuantity">
  5106. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(25,25);">25:</a>
  5107. </td>
  5108. <td class="PriceBreakPrice">
  5109. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥41.1255</span>
  5110. </td>
  5111. </tr>
  5112. <tr>
  5113. <td class="PriceBreakQuantity">
  5114. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(25,50);">50:</a>
  5115. </td>
  5116. <td class="PriceBreakPrice">
  5117. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥39.8853</span>
  5118. </td>
  5119. </tr>
  5120. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  5121. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  5122. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(25,100);">100:</a>
  5123. </td>
  5124. <td class="PriceBreakPrice">
  5125. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Silicon-Labs/EFR32MG1V132F256GM48-B0/?qs=sGAEpiMZZMvQqVCO1QUke%2fG8%252b%2fBke%2fYdzNFpFRSQJJI0s5Psf%252bL7AQ%3d%3d">查看</a>
  5126. </td>
  5127. </tr>
  5128. <tr>
  5129. <td><br /></td>
  5130. </tr>
  5131. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  5132. <td colspan="2" style="text-align: center;">
  5133. </td>
  5134. </tr>
  5135. </table>
  5136. </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;)">
  5137. <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 />
  5138. <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="购买 EFR32MG1V132F256GM48-B0" class="buy-button" /><br />
  5139. <table cellspacing="0" border="0" style="width: 100%;">
  5140. <tr>
  5141. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5142. 最低:
  5143. </td>
  5144. <td style="padding-left: 2px; text-align: left;">
  5145. 1
  5146. </td>
  5147. </tr>
  5148. <tr>
  5149. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5150. 多个:
  5151. </td>
  5152. <td style="padding-left: 2px; text-align: left;">
  5153. 1
  5154. </td>
  5155. </tr>
  5156. </table>
  5157. </div>
  5158. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_pnlCompliant">
  5159. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  5160. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=fwms843UYBPNgDDaO%252bHiYw%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=fwms843UYBPNgDDaO%252bHiYw%3d%3d" target="_blank">详细信息</a>
  5161. </div>
  5162. </td><td>Bluetooth, Zigbee
  5163. </td><td>ARM Cortex M4
  5164. </td><td>2.4 GHz
  5165. </td><td>1 Mb/s
  5166. </td><td>0 dBm
  5167. </td><td>- 91.4 dBm
  5168. </td><td>1.62 V to 3.8 V
  5169. </td><td>9.1 mA
  5170. </td><td>133 mA
  5171. </td><td>256 kB
  5172. </td><td>- 40 C to + 85 C
  5173. </td><td>QFN-48
  5174. </td>
  5175. </tr>
  5176. </table>
  5177. </div>
  5178. </td>
  5179. </tr>
  5180. <tr>
  5181. <td class="tdSearchResultsPagingBottom">
  5182. <table id="ctl00_ContentMain_tbl4" class="SearchResultsPaging">
  5183. <tr>
  5184. <td>
  5185. <input type="submit" name="ctl00$ContentMain$btn3" value="购买所选商品" onclick="javascript:return MiniCart.AddToCartNShowCart(MiniCart.source);" id="ctl00_ContentMain_btn3" title="购买所选商品" class="buy-button" />
  5186. </td>
  5187. <td>
  5188. <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" />
  5189. </td>
  5190. <td>
  5191. <span id="ctl00_ContentMain_lbl12" title="您可选择至多20 个零件单次进行对比。若您选择更多,则仅20件距离最近的所选零件会被对比。" class="bold">至多对比 20 零件.</span>
  5192. </td>
  5193. <td style="padding-left: 40px;">
  5194. <div class="floatrightpager">
  5195. <span class="bold">
  5196. 页面:
  5197. </span>
  5198. <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/RF-System-on-a-Chip-SoC/_/N-afqzb/?No=25">2</a><a id="ctl00_ContentMain_PagerBottom_2" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/?No=50">3</a><a id="ctl00_ContentMain_PagerBottom_3" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/?No=75">4</a><a id="ctl00_ContentMain_PagerBottom_4" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/?No=100">5</a><a id="ctl00_ContentMain_PagerBottom_5" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/?No=125">6</a><a id="ctl00_ContentMain_PagerBottom_6" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/?No=150">7</a><a id="ctl00_ContentMain_PagerBottom_7" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/?No=175">8</a><a id="ctl00_ContentMain_PagerBottom_8" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/?No=200">9</a><a id="ctl00_ContentMain_PagerBottom_9" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/?No=225">10</a><a id="ctl00_ContentMain_PagerBottom_lnkNextSet" class="ellipsis" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/?No=250">...</a><a id="ctl00_ContentMain_PagerBottom_11" class="first-last" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/?No=275">12</a><a id="ctl00_ContentMain_PagerBottom_lnkNext" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb/?No=25">下一页</a></span>
  5199. </div>
  5200. </td>
  5201. </tr>
  5202. </table>
  5203. </td>
  5204. </tr>
  5205. <tr>
  5206. <td>
  5207. <!--- Search Tips --->
  5208. </td>
  5209. </tr>
  5210. <tr>
  5211. <td>
  5212. <!-- SOP Section 2 -->
  5213. </td>
  5214. </tr>
  5215. </table>
  5216. </div>
  5217. </div><!-- #liProducts-->
  5218. <!-- Datasheets tab -->
  5219. <!-- #liDatasheets-->
  5220. <!-- Images tab -->
  5221. <!-- #liImages-->
  5222. <!-- Newest Products tab -->
  5223. <!-- #liProducts-->
  5224. </div>
  5225. <div id="ctl00_ContentMain_popSearch_pnlPopularSearches">
  5226. <div>
  5227. <span class="popular-searches-label">热门搜索:</span>
  5228. <span class="popular-searches-links"><a href='/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/ARM-Cortex-M0-Core/_/N-afqzb?P=1yzud1p&pop=5bc1' onclick="ga('send','event','Popular Search Refine Click','RF System on a Chip - SoC','ARM Cortex M0 RF System on a Chip - SoC')">ARM Cortex M0 RF片上系统 - SoC</a> , <a href='/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/ARM-Cortex-M3-Core/_/N-afqzb?P=1yzkh6fZ1yzud8s&pop=4nx' onclick="ga('send','event','Popular Search Refine Click','RF System on a Chip - SoC','Bluetooth ARM Cortex M3 RF System on a Chip - SoC')">Bluetooth ARM Cortex M3 RF片上系统 - SoC</a> , <a href='/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb?P=1yzorul&pop=252r' onclick="ga('send','event','Popular Search Refine Click','RF System on a Chip - SoC','Wi-Fi RF System on a Chip - SoC')">Wi-Fi RF片上系统 - SoC</a> , <a href='/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb?P=1yny9vb&pop=umyr' onclick="ga('send','event','Popular Search Refine Click','RF System on a Chip - SoC','1 Mbit Flash, 32 kB RF System on a Chip - SoC')">1 Mbit Flash, 32 kB RF片上系统 - SoC</a> , <a href='/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/_/N-afqzb?P=1yzay20&pop=umyt' onclick="ga('send','event','Popular Search Refine Click','RF System on a Chip - SoC','512 kB RF System on a Chip - SoC')">512 kB RF片上系统 - SoC</a> , <a href='/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC/ARM-Cortex-M3-Core/_/N-afqzb?P=1yzrqyeZ1yzud8s&pop=n5pa' onclick="ga('send','event','Popular Search Refine Click','RF System on a Chip - SoC','Zigbee ARM Cortex M3 RF System on a Chip - SoC')">Zigbee ARM Cortex M3 RF片上系统 - SoC</a></span>
  5229. </div>
  5230. </div>
  5231. <div style="visibility: hidden;">
  5232. <input name="ctl00$ContentMain$lblTrdTerm" type="text" id="ctl00_ContentMain_lblTrdTerm" style="height:1px;" />
  5233. <input name="ctl00$ContentMain$lblIsNewTerm" type="text" id="ctl00_ContentMain_lblIsNewTerm" style="height:1px;" />
  5234. <span id="SearchResultCount">290</span>
  5235. <div id="disclaimer">
  5236. 图像仅供参考<br/>请参阅产品规格</div>
  5237. </div>
  5238. <input type="hidden" name="ctl00$ContentMain$hfBreadcrumbTemplates" id="ctl00_ContentMain_hfBreadcrumbTemplates" value="Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/RF-System-on-a-Chip-SoC" />
  5239. <script type="text/javascript" src='../../../../../../javascript/ProductImage.js'></script>
  5240. <script type="text/javascript" src='../../../../../../flash/js/mb.zoomify.js?v=3.0.20160304.2'></script>
  5241. <script type="text/javascript" src='../../../../../../flash/js/refine2.js?v=3.0.20160304.2'></script>
  5242. <!--[if gte IE 9]><!-->
  5243. <script type="text/javascript" src='../../../../../../flash/js/angular.min.js?v=3.0.20160304.2'></script>
  5244. <!--<![endif]-->
  5245. <!--[if lt IE 9]>
  5246. <script type="text/javascript" src='../../../../../../flash/js/angular-1.2.min.js?v=3.0.20160304.2'></script>
  5247. <![endif]-->
  5248. <script type="text/javascript" src='../../../../../../flash/js/catalog-nav-2.js?v=3.0.20160304.2'></script>
  5249. <script type="text/javascript">
  5250. var subdomain = 'cn2';
  5251. </script>
  5252. </div>
  5253. <div class="aspNetHidden">
  5254. <input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="1BDFFD94" />
  5255. <input type="hidden" name="__SCROLLPOSITIONX" id="__SCROLLPOSITIONX" value="0" />
  5256. <input type="hidden" name="__SCROLLPOSITIONY" id="__SCROLLPOSITIONY" value="0" />
  5257. <input type="hidden" name="__PREVIOUSPAGE" id="__PREVIOUSPAGE" value="sCwL_pxdoj0XSK04yfSNwmk7SAHGSbiByRjA1dnwtKBk-nBbIRlJWZQvencUkJ0sBD6NabQ8CPhwqV6J9lNk9NKWVfo1" />
  5258. </div>
  5259. <script type="text/javascript">
  5260. //<![CDATA[
  5261. var mfrIDsArray = new Array;
  5262. //]]>
  5263. </script>
  5264. <script src='../../../../../../flash/js/Minicart.js?v=3.0.20160304.2' type='text/javascript'></script>
  5265. <script type="text/javascript">
  5266. //<![CDATA[
  5267. var auOnMsg='打开建议';var auOffMsg='关闭建议';var autoSuggestionEnabled='1';var lblMoreParts ='更多零件';var enableNewTypeAhead='1';var enableAtaTypeAhead='1';var enableAtaGATrackingEstimatedAjaxCalls='1';//]]>
  5268. </script>
  5269. <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>
  5270. <script type="text/javascript">
  5271. //<![CDATA[
  5272. maxAllowedAttributeSelection =150; currentParametricCount =0; maxSelectionAllowedPerGroupBeforeConversion =10; enableRangeLists = 1; maxWarningMessage = '由于应用的过滤条件太多,您的搜索无法完成。请去除一些选择,然后重试。';
  5273. <!-- Google Code for Conversion Page Remarketing List -->
  5274. <!--
  5275. var google_conversion_id = 1046090287;
  5276. var google_conversion_language = "en";
  5277. var google_conversion_format = "3";
  5278. var google_conversion_color = "666666";
  5279. var google_conversion_label = "9WmrCMOVxQEQr6To8gM";
  5280. var google_conversion_value = 0;
  5281. //-->
  5282. </script>
  5283. <div class="ga-remarketing">
  5284. <script type="text/javascript" src="http://www.googleadservices.com/pagead/conversion.js">
  5285. </script>
  5286. </div>
  5287. <noscript>
  5288. <div style="display:inline;">
  5289. <img height="1" width="1" style="border-style:none;" alt="" src="http://www.googleadservices.com/pagead/conversion/1046090287/?label=9WmrCMOVxQEQr6To8gM&amp;guid=ON&amp;script=0" />
  5290. </div>
  5291. </noscript>
  5292. <script type="text/javascript">
  5293. //]]>
  5294. </script>
  5295. <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>
  5296. <script type="text/javascript">
  5297. //<![CDATA[
  5298. groupAttributeSelectionIds ='ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$1000000411^ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$688755^ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$1000000656^ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$688567^ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$1000000455^ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$688590^ctl00$ContentMain$uc5$AttributeCategoryList$ctl06$688688^ctl00$ContentMain$uc5$AttributeCategoryList$ctl07$1000000393^ctl00$ContentMain$uc5$AttributeCategoryList$ctl08$1000000734^ctl00$ContentMain$uc5$AttributeCategoryList$ctl09$1000000735^ctl00$ContentMain$uc5$AttributeCategoryList$ctl10$1000000128^ctl00$ContentMain$uc5$AttributeCategoryList$ctl11$688572^ctl00$ContentMain$uc5$AttributeCategoryList$ctl12$688606';
  5299. theForm.oldSubmit = theForm.submit;
  5300. theForm.submit = WebForm_SaveScrollPositionSubmit;
  5301. theForm.oldOnSubmit = theForm.onsubmit;
  5302. theForm.onsubmit = WebForm_SaveScrollPositionOnSubmit;
  5303. //]]>
  5304. </script>
  5305. </form>
  5306. <div id="content-container2" class="hidden">
  5307. <div id="content-fixed-width2" class="content-fixed-width">
  5308. </div>
  5309. </div>
  5310. <div id="wideFooter" class="wideFooter">
  5311. <div id="footer" class="container">
  5312. <input name="ctl00$Footer1$sb" type="hidden" id="ctl00_Footer1_sb" value="TXWEB08|20160304.2" />
  5313. <div id="ft_table1">
  5314. <div class="row">
  5315. <div class="col-xs-12">
  5316. <div id="ctl00_Footer1_pnlEmailSignup" class="ft_signup hidden-xs">
  5317. <div class="floatleft padding5right">
  5318. <strong class="h3">
  5319. 快速电子邮件注册</strong>&nbsp;&nbsp;
  5320. <input type="text" id="txtQuickSubsEmail" maxlength="48" style="width: 200px" tooltip="eMail Address" />
  5321. </div>
  5322. <a id="lnkBox" class="thickbox blue-button" onclick="return QuickSignUp();">
  5323. 提交
  5324. </a>
  5325. </div>
  5326. <div id="ft_icons" class="ft_icons">
  5327. <div id="ft_social">
  5328. <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>
  5329. <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>
  5330. <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>
  5331. <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">
  5332. <div class="ico-social fb"></div>
  5333. </a>
  5334. <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">
  5335. <div class="ico-social tw"></div>
  5336. </a>
  5337. <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">
  5338. <div class="ico-social rss"></div>
  5339. </a>
  5340. <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">
  5341. <div class="ico-social yt"></div>
  5342. </a>
  5343. <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">
  5344. <div class="ico-social gp"></div>
  5345. </a>
  5346. <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">
  5347. <div class="ico-social ln"></div>
  5348. </a>
  5349. <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">
  5350. <div class="ico-social sb"></div>
  5351. </a>
  5352. <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">
  5353. <div class="ico-social blog"></div>
  5354. </a>
  5355. </div>
  5356. </div>
  5357. </div>
  5358. </div>
  5359. </div>
  5360. <div id="ft_box" itemscope itemtype="http://schema.org/WPFooter">
  5361. <div class="ft_wrapper">
  5362. <div id="ft_links" class="row">
  5363. <div class="col-xs-3 paddingBtm10 hidden-xs">
  5364. <strong class="paddingTopBtm10 inline-block">
  5365. 公司</strong>
  5366. <ul>
  5367. <li>
  5368. <a id="ctl00_Footer1_lnk26" href="../../../../../../aboutus/">关于我们</a></li>
  5369. <li>
  5370. <a id="ctl00_Footer1_lnk28" href="../../../../../../educationalsales/">教育销售</a></li>
  5371. <li>
  5372. <a id="ctl00_Footer1_lnk31" href="../../../../../../pressroom/">新闻中心</a></li>
  5373. <li>
  5374. <a id="ctl00_Footer1_lnk32" href="../../../../../../careers/">Mouser 工作机会</a></li>
  5375. <li>
  5376. <a id="ctl00_Footer1_lnk29" href="../../../../../../quality/">品质保证</a></li>
  5377. <li>
  5378. <a id="ctl00_Footer1_lnk30" href="../../../../../../environmental/">环境保护</a></li>
  5379. </ul>
  5380. </div>
  5381. <div class="col-xs-3 hidden-xs">
  5382. <strong class="paddingTopBtm10 inline-block">
  5383. 快速链接</strong>
  5384. <ul>
  5385. <li><a id="A7" href="/blog">
  5386. Mouser博客</a></li>
  5387. <li>
  5388. <a id="ctl00_Footer1_hlnk1" href="../../../../../../new/">最新产品</a></li>
  5389. <li>
  5390. <a id="ctl00_Footer1_hlnk2" href="../../../../../../new/products/">新产品</a></li>
  5391. <li>
  5392. <a id="ctl00_Footer1_hlnk3" href="../../../../../../applications/">新技术</a></li>
  5393. </ul>
  5394. </div>
  5395. <div class="col-xs-12 col-sm-3">
  5396. <strong class="paddingTopBtm10 inline-block">
  5397. 支持</strong>
  5398. <ul>
  5399. <li><a id="A3" href="/feedback.aspx">
  5400. 反馈</a></li>
  5401. <li class="hidden-xs"><a id="A4" href="/Help/help.aspx">
  5402. 帮助</a></li>
  5403. <li>
  5404. <a id="ctl00_Footer1_lnk27" href="../../../../../../contact/">联系我们</a></li>
  5405. <li class="hidden-xs"><a id="A5" href="/browsersupport/">
  5406. 浏览器支持</a></li>
  5407. <li><a id="A6" href="/cookie-policy/">
  5408. Cookie政策</a></li>
  5409. </ul>
  5410. </div>
  5411. <div class="col-xs-12 col-sm-3">
  5412. <strong class="paddingTopBtm10 inline-block">
  5413. 昴氏(上海)电子贸易有限公司</strong>
  5414. <ul>
  5415. <li>
  5416. <h4>
  5417. 中国上海市长宁区娄山关路555号<br />长房国际广场办公楼2506-2510室<br />邮编200051<br/><br/>400-821-6111</h4>
  5418. </li>
  5419. </ul>
  5420. </div>
  5421. </div>
  5422. </div>
  5423. </div>
  5424. <div class="row">
  5425. <div id="ctl00_Footer1_pn1" class="ft_copy_pos2 col-xs-12 col-sm-5">
  5426. <div id="ft_copy">
  5427. <span class="ft_terms">
  5428. <a id="A1" href="/privacypolicy/">
  5429. 隐私政策</a>
  5430. &nbsp;&nbsp;|&nbsp;&nbsp;
  5431. <a id="href3" href="/saleterms/">
  5432. 销售条款</a>
  5433. <br />
  5434. </span>
  5435. <span class="ft_copyright">
  5436. 版权所有©2016 Mouser Electronics, Inc
  5437. |
  5438. 沪ICP备15042575号-1
  5439. <br />
  5440. </span>
  5441. <span class="ft_trade">
  5442. Mouser® 和 Mouser Electronics® 是 Mouser Electronics, Inc 的注册商标。
  5443. </span>
  5444. <span class="ft_hq">
  5445. Corporate headquarters and logistics center in Mansfield, Texas USA.
  5446. </span>
  5447. <br />
  5448. <span class="ft_ClassicMobile">
  5449. <strong>
  5450. <a id="ctl00_Footer1_lbtn1" class="ft-mobile" href="../../../../../../m_Home.aspx">通过移动设备查看</a></strong>
  5451. </span>
  5452. </div>
  5453. </div>
  5454. <div id="ft_cert" class="col-xs-7 align-right hidden-xs">
  5455. <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>
  5456. <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>
  5457. <a id="link" title="IESA" class="ft_cert_padding ft_ecia" href="/ecia/">
  5458. <img id="imgIESA" src="/Images/footer/logo-IESA_small.png" alt="IESA">
  5459. </a>
  5460. <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>
  5461. <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;
  5462. </a>
  5463. </div>
  5464. <div id="ft_cert_2" class="col-xs-7 align-right hidden-xs">
  5465. <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>
  5466. <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>
  5467. <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>
  5468. <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>
  5469. </div>
  5470. </div>
  5471. <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>
  5472. <script type="text/javascript">
  5473. var quickSignUpUrl = 'https://sub.info.mouser.com/quick-signup-sc';
  5474. </script>
  5475. </div>
  5476. </div>
  5477. <script src="../../../../../../flash/AC_RunActiveContent.js" type="text/javascript"></script>
  5478. <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>
  5479. </body>
  5480. </html>