stm32g0c1xx.h 875 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581
  1. /**
  2. ******************************************************************************
  3. * @file stm32g0c1xx.h
  4. * @author MCD Application Team
  5. * @brief CMSIS Cortex-M0+ Device Peripheral Access Layer Header File.
  6. * This file contains all the peripheral register's definitions, bits
  7. * definitions and memory mapping for stm32g0c1xx devices.
  8. *
  9. * This file contains:
  10. * - Data structures and the address mapping for all peripherals
  11. * - Peripheral's registers declarations and bits definition
  12. * - Macros to access peripheral's registers hardware
  13. *
  14. ******************************************************************************
  15. * @attention
  16. *
  17. * Copyright (c) 2018-2021 STMicroelectronics.
  18. * All rights reserved.
  19. *
  20. * This software is licensed under terms that can be found in the LICENSE file
  21. * in the root directory of this software component.
  22. * If no LICENSE file comes with this software, it is provided AS-IS.
  23. *
  24. ******************************************************************************
  25. */
  26. /** @addtogroup CMSIS_Device
  27. * @{
  28. */
  29. /** @addtogroup stm32g0c1xx
  30. * @{
  31. */
  32. #ifndef STM32G0C1xx_H
  33. #define STM32G0C1xx_H
  34. #ifdef __cplusplus
  35. extern "C" {
  36. #endif /* __cplusplus */
  37. /** @addtogroup Configuration_section_for_CMSIS
  38. * @{
  39. */
  40. /**
  41. * @brief Configuration of the Cortex-M0+ Processor and Core Peripherals
  42. */
  43. #define __CM0PLUS_REV 0U /*!< Core Revision r0p0 */
  44. #define __MPU_PRESENT 1U /*!< STM32G0xx provides an MPU */
  45. #define __VTOR_PRESENT 1U /*!< Vector Table Register supported */
  46. #define __NVIC_PRIO_BITS 2U /*!< STM32G0xx uses 2 Bits for the Priority Levels */
  47. #define __Vendor_SysTickConfig 0U /*!< Set to 1 if different SysTick Config is used */
  48. /**
  49. * @}
  50. */
  51. /** @addtogroup Peripheral_interrupt_number_definition
  52. * @{
  53. */
  54. /**
  55. * @brief stm32g0c1xx Interrupt Number Definition, according to the selected device
  56. * in @ref Library_configuration_section
  57. */
  58. /*!< Interrupt Number Definition */
  59. typedef enum
  60. {
  61. /****** Cortex-M0+ Processor Exceptions Numbers ***************************************************************/
  62. NonMaskableInt_IRQn = -14, /*!< 2 Non Maskable Interrupt */
  63. HardFault_IRQn = -13, /*!< 3 Cortex-M Hard Fault Interrupt */
  64. SVCall_IRQn = -5, /*!< 11 Cortex-M SV Call Interrupt */
  65. PendSV_IRQn = -2, /*!< 14 Cortex-M Pend SV Interrupt */
  66. SysTick_IRQn = -1, /*!< 15 Cortex-M System Tick Interrupt */
  67. /****** STM32G0xxxx specific Interrupt Numbers ****************************************************************/
  68. WWDG_IRQn = 0, /*!< Window WatchDog Interrupt */
  69. PVD_VDDIO2_IRQn = 1, /*!< PVD through EXTI line 16, PVM (monit. VDDIO2) through EXTI line 34*/
  70. RTC_TAMP_IRQn = 2, /*!< RTC interrupt through the EXTI line 19 & 21 */
  71. FLASH_IRQn = 3, /*!< FLASH global Interrupt */
  72. RCC_CRS_IRQn = 4, /*!< RCC and CRS global Interrupt */
  73. EXTI0_1_IRQn = 5, /*!< EXTI 0 and 1 Interrupts */
  74. EXTI2_3_IRQn = 6, /*!< EXTI Line 2 and 3 Interrupts */
  75. EXTI4_15_IRQn = 7, /*!< EXTI Line 4 to 15 Interrupts */
  76. USB_UCPD1_2_IRQn = 8, /*!< USB, UCPD1 and UCPD2 global Interrupt */
  77. DMA1_Channel1_IRQn = 9, /*!< DMA1 Channel 1 Interrupt */
  78. DMA1_Channel2_3_IRQn = 10, /*!< DMA1 Channel 2 and Channel 3 Interrupts */
  79. DMA1_Ch4_7_DMA2_Ch1_5_DMAMUX1_OVR_IRQn = 11, /*!< DMA1 Ch4 to Ch7, DMA2 Ch1 to Ch5 and DMAMUX1 Overrun Interrupts */
  80. ADC1_COMP_IRQn = 12, /*!< ADC1, COMP1,COMP2, COMP3 Interrupts (combined with EXTI 17 & 18) */
  81. TIM1_BRK_UP_TRG_COM_IRQn = 13, /*!< TIM1 Break, Update, Trigger and Commutation Interrupts */
  82. TIM1_CC_IRQn = 14, /*!< TIM1 Capture Compare Interrupt */
  83. TIM2_IRQn = 15, /*!< TIM2 Interrupt */
  84. TIM3_TIM4_IRQn = 16, /*!< TIM3, TIM4 global Interrupt */
  85. TIM6_DAC_LPTIM1_IRQn = 17, /*!< TIM6, DAC and LPTIM1 global Interrupts */
  86. TIM7_LPTIM2_IRQn = 18, /*!< TIM7 and LPTIM2 global Interrupt */
  87. TIM14_IRQn = 19, /*!< TIM14 global Interrupt */
  88. TIM15_IRQn = 20, /*!< TIM15 global Interrupt */
  89. TIM16_FDCAN_IT0_IRQn = 21, /*!< TIM16, FDCAN1_IT0 and FDCAN2_IT0 Interrupt */
  90. TIM17_FDCAN_IT1_IRQn = 22, /*!< TIM17, FDCAN1_IT1 and FDCAN2_IT1 Interrupt */
  91. I2C1_IRQn = 23, /*!< I2C1 Interrupt (combined with EXTI 23) */
  92. I2C2_3_IRQn = 24, /*!< I2C2, I2C3 Interrupt (combined with EXTI 24 and EXTI 22) */
  93. SPI1_IRQn = 25, /*!< SPI1/I2S1 Interrupt */
  94. SPI2_3_IRQn = 26, /*!< SPI2/I2S2, SPI3/I2S3 Interrupt */
  95. USART1_IRQn = 27, /*!< USART1 Interrupt */
  96. USART2_LPUART2_IRQn = 28, /*!< USART2 + LPUART2 Interrupt */
  97. USART3_4_5_6_LPUART1_IRQn = 29, /*!< USART3, USART4, USART5, USART6, LPUART1 globlal Interrupts (combined with EXTI 28) */
  98. CEC_IRQn = 30, /*!< CEC Interrupt(combined with EXTI 27) */
  99. AES_RNG_IRQn = 31, /*!< AES & RNG Interrupt */
  100. } IRQn_Type;
  101. /**
  102. * @}
  103. */
  104. #include "core_cm0plus.h" /* Cortex-M0+ processor and core peripherals */
  105. #include "system_stm32g0xx.h"
  106. #include <stdint.h>
  107. /** @addtogroup Peripheral_registers_structures
  108. * @{
  109. */
  110. /**
  111. * @brief Analog to Digital Converter
  112. */
  113. typedef struct
  114. {
  115. __IO uint32_t ISR; /*!< ADC interrupt and status register, Address offset: 0x00 */
  116. __IO uint32_t IER; /*!< ADC interrupt enable register, Address offset: 0x04 */
  117. __IO uint32_t CR; /*!< ADC control register, Address offset: 0x08 */
  118. __IO uint32_t CFGR1; /*!< ADC configuration register 1, Address offset: 0x0C */
  119. __IO uint32_t CFGR2; /*!< ADC configuration register 2, Address offset: 0x10 */
  120. __IO uint32_t SMPR; /*!< ADC sampling time register, Address offset: 0x14 */
  121. uint32_t RESERVED1; /*!< Reserved, 0x18 */
  122. uint32_t RESERVED2; /*!< Reserved, 0x1C */
  123. __IO uint32_t AWD1TR; /*!< ADC analog watchdog 1 threshold register, Address offset: 0x20 */
  124. __IO uint32_t AWD2TR; /*!< ADC analog watchdog 2 threshold register, Address offset: 0x24 */
  125. __IO uint32_t CHSELR; /*!< ADC group regular sequencer register, Address offset: 0x28 */
  126. __IO uint32_t AWD3TR; /*!< ADC analog watchdog 3 threshold register, Address offset: 0x2C */
  127. uint32_t RESERVED3[4]; /*!< Reserved, 0x30 - 0x3C */
  128. __IO uint32_t DR; /*!< ADC group regular data register, Address offset: 0x40 */
  129. uint32_t RESERVED4[23];/*!< Reserved, 0x44 - 0x9C */
  130. __IO uint32_t AWD2CR; /*!< ADC analog watchdog 2 configuration register, Address offset: 0xA0 */
  131. __IO uint32_t AWD3CR; /*!< ADC analog watchdog 3 configuration register, Address offset: 0xA4 */
  132. uint32_t RESERVED5[3]; /*!< Reserved, 0xA8 - 0xB0 */
  133. __IO uint32_t CALFACT; /*!< ADC Calibration factor register, Address offset: 0xB4 */
  134. } ADC_TypeDef;
  135. typedef struct
  136. {
  137. __IO uint32_t CCR; /*!< ADC common configuration register, Address offset: ADC1 base address + 0x308 */
  138. } ADC_Common_TypeDef;
  139. /* Legacy registers naming */
  140. #define TR1 AWD1TR
  141. #define TR2 AWD2TR
  142. #define TR3 AWD3TR
  143. /**
  144. * @brief FD Controller Area Network
  145. */
  146. typedef struct
  147. {
  148. __IO uint32_t CREL; /*!< FDCAN Core Release register, Address offset: 0x000 */
  149. __IO uint32_t ENDN; /*!< FDCAN Endian register, Address offset: 0x004 */
  150. uint32_t RESERVED1; /*!< Reserved, 0x008 */
  151. __IO uint32_t DBTP; /*!< FDCAN Data Bit Timing & Prescaler register, Address offset: 0x00C */
  152. __IO uint32_t TEST; /*!< FDCAN Test register, Address offset: 0x010 */
  153. __IO uint32_t RWD; /*!< FDCAN RAM Watchdog register, Address offset: 0x014 */
  154. __IO uint32_t CCCR; /*!< FDCAN CC Control register, Address offset: 0x018 */
  155. __IO uint32_t NBTP; /*!< FDCAN Nominal Bit Timing & Prescaler register, Address offset: 0x01C */
  156. __IO uint32_t TSCC; /*!< FDCAN Timestamp Counter Configuration register, Address offset: 0x020 */
  157. __IO uint32_t TSCV; /*!< FDCAN Timestamp Counter Value register, Address offset: 0x024 */
  158. __IO uint32_t TOCC; /*!< FDCAN Timeout Counter Configuration register, Address offset: 0x028 */
  159. __IO uint32_t TOCV; /*!< FDCAN Timeout Counter Value register, Address offset: 0x02C */
  160. uint32_t RESERVED2[4]; /*!< Reserved, 0x030 - 0x03C */
  161. __IO uint32_t ECR; /*!< FDCAN Error Counter register, Address offset: 0x040 */
  162. __IO uint32_t PSR; /*!< FDCAN Protocol Status register, Address offset: 0x044 */
  163. __IO uint32_t TDCR; /*!< FDCAN Transmitter Delay Compensation register, Address offset: 0x048 */
  164. uint32_t RESERVED3; /*!< Reserved, 0x04C */
  165. __IO uint32_t IR; /*!< FDCAN Interrupt register, Address offset: 0x050 */
  166. __IO uint32_t IE; /*!< FDCAN Interrupt Enable register, Address offset: 0x054 */
  167. __IO uint32_t ILS; /*!< FDCAN Interrupt Line Select register, Address offset: 0x058 */
  168. __IO uint32_t ILE; /*!< FDCAN Interrupt Line Enable register, Address offset: 0x05C */
  169. uint32_t RESERVED4[8]; /*!< Reserved, 0x060 - 0x07C */
  170. __IO uint32_t RXGFC; /*!< FDCAN Global Filter Configuration register, Address offset: 0x080 */
  171. __IO uint32_t XIDAM; /*!< FDCAN Extended ID AND Mask register, Address offset: 0x084 */
  172. __IO uint32_t HPMS; /*!< FDCAN High Priority Message Status register, Address offset: 0x088 */
  173. uint32_t RESERVED5; /*!< Reserved, 0x08C */
  174. __IO uint32_t RXF0S; /*!< FDCAN Rx FIFO 0 Status register, Address offset: 0x090 */
  175. __IO uint32_t RXF0A; /*!< FDCAN Rx FIFO 0 Acknowledge register, Address offset: 0x094 */
  176. __IO uint32_t RXF1S; /*!< FDCAN Rx FIFO 1 Status register, Address offset: 0x098 */
  177. __IO uint32_t RXF1A; /*!< FDCAN Rx FIFO 1 Acknowledge register, Address offset: 0x09C */
  178. uint32_t RESERVED6[8]; /*!< Reserved, 0x0A0 - 0x0BC */
  179. __IO uint32_t TXBC; /*!< FDCAN Tx Buffer Configuration register, Address offset: 0x0C0 */
  180. __IO uint32_t TXFQS; /*!< FDCAN Tx FIFO/Queue Status register, Address offset: 0x0C4 */
  181. __IO uint32_t TXBRP; /*!< FDCAN Tx Buffer Request Pending register, Address offset: 0x0C8 */
  182. __IO uint32_t TXBAR; /*!< FDCAN Tx Buffer Add Request register, Address offset: 0x0CC */
  183. __IO uint32_t TXBCR; /*!< FDCAN Tx Buffer Cancellation Request register, Address offset: 0x0D0 */
  184. __IO uint32_t TXBTO; /*!< FDCAN Tx Buffer Transmission Occurred register, Address offset: 0x0D4 */
  185. __IO uint32_t TXBCF; /*!< FDCAN Tx Buffer Cancellation Finished register, Address offset: 0x0D8 */
  186. __IO uint32_t TXBTIE; /*!< FDCAN Tx Buffer Transmission Interrupt Enable register, Address offset: 0x0DC */
  187. __IO uint32_t TXBCIE; /*!< FDCAN Tx Buffer Cancellation Finished Interrupt Enable register, Address offset: 0x0E0 */
  188. __IO uint32_t TXEFS; /*!< FDCAN Tx Event FIFO Status register, Address offset: 0x0E4 */
  189. __IO uint32_t TXEFA; /*!< FDCAN Tx Event FIFO Acknowledge register, Address offset: 0x0E8 */
  190. } FDCAN_GlobalTypeDef;
  191. /**
  192. * @brief FD Controller Area Network Configuration
  193. */
  194. typedef struct
  195. {
  196. __IO uint32_t CKDIV; /*!< FDCAN clock divider register, Address offset: 0x100 + 0x000 */
  197. } FDCAN_Config_TypeDef;
  198. /**
  199. * @brief HDMI-CEC
  200. */
  201. typedef struct
  202. {
  203. __IO uint32_t CR; /*!< CEC control register, Address offset:0x00 */
  204. __IO uint32_t CFGR; /*!< CEC configuration register, Address offset:0x04 */
  205. __IO uint32_t TXDR; /*!< CEC Tx data register , Address offset:0x08 */
  206. __IO uint32_t RXDR; /*!< CEC Rx Data Register, Address offset:0x0C */
  207. __IO uint32_t ISR; /*!< CEC Interrupt and Status Register, Address offset:0x10 */
  208. __IO uint32_t IER; /*!< CEC interrupt enable register, Address offset:0x14 */
  209. }CEC_TypeDef;
  210. /**
  211. * @brief Comparator
  212. */
  213. typedef struct
  214. {
  215. __IO uint32_t CSR; /*!< COMP control and status register, Address offset: 0x00 */
  216. } COMP_TypeDef;
  217. typedef struct
  218. {
  219. __IO uint32_t CSR_ODD; /*!< COMP control and status register located in register of comparator instance odd (exception for STM32G0 devices featuring ADC3 instance: in common group of COMP2 and COMP3, instances odd and even are inverted), used for bits common to several COMP instances, Address offset: 0x00 */
  220. __IO uint32_t CSR_EVEN; /*!< COMP control and status register located in register of comparator instance even (exception for STM32G0 devices featuring ADC3 instance: in common group of COMP2 and COMP3, instances odd and even are inverted), used for bits common to several COMP instances, Address offset: 0x04 */
  221. } COMP_Common_TypeDef;
  222. /**
  223. * @brief CRC calculation unit
  224. */
  225. typedef struct
  226. {
  227. __IO uint32_t DR; /*!< CRC Data register, Address offset: 0x00 */
  228. __IO uint32_t IDR; /*!< CRC Independent data register, Address offset: 0x04 */
  229. __IO uint32_t CR; /*!< CRC Control register, Address offset: 0x08 */
  230. uint32_t RESERVED1; /*!< Reserved, 0x0C */
  231. __IO uint32_t INIT; /*!< Initial CRC value register, Address offset: 0x10 */
  232. __IO uint32_t POL; /*!< CRC polynomial register, Address offset: 0x14 */
  233. } CRC_TypeDef;
  234. /**
  235. * @brief Clock Recovery System
  236. */
  237. typedef struct
  238. {
  239. __IO uint32_t CR; /*!< CRS ccontrol register, Address offset: 0x00 */
  240. __IO uint32_t CFGR; /*!< CRS configuration register, Address offset: 0x04 */
  241. __IO uint32_t ISR; /*!< CRS interrupt and status register, Address offset: 0x08 */
  242. __IO uint32_t ICR; /*!< CRS interrupt flag clear register, Address offset: 0x0C */
  243. } CRS_TypeDef;
  244. /**
  245. * @brief Digital to Analog Converter
  246. */
  247. typedef struct
  248. {
  249. __IO uint32_t CR; /*!< DAC control register, Address offset: 0x00 */
  250. __IO uint32_t SWTRIGR; /*!< DAC software trigger register, Address offset: 0x04 */
  251. __IO uint32_t DHR12R1; /*!< DAC channel1 12-bit right-aligned data holding register, Address offset: 0x08 */
  252. __IO uint32_t DHR12L1; /*!< DAC channel1 12-bit left aligned data holding register, Address offset: 0x0C */
  253. __IO uint32_t DHR8R1; /*!< DAC channel1 8-bit right aligned data holding register, Address offset: 0x10 */
  254. __IO uint32_t DHR12R2; /*!< DAC channel2 12-bit right aligned data holding register, Address offset: 0x14 */
  255. __IO uint32_t DHR12L2; /*!< DAC channel2 12-bit left aligned data holding register, Address offset: 0x18 */
  256. __IO uint32_t DHR8R2; /*!< DAC channel2 8-bit right-aligned data holding register, Address offset: 0x1C */
  257. __IO uint32_t DHR12RD; /*!< Dual DAC 12-bit right-aligned data holding register, Address offset: 0x20 */
  258. __IO uint32_t DHR12LD; /*!< DUAL DAC 12-bit left aligned data holding register, Address offset: 0x24 */
  259. __IO uint32_t DHR8RD; /*!< DUAL DAC 8-bit right aligned data holding register, Address offset: 0x28 */
  260. __IO uint32_t DOR1; /*!< DAC channel1 data output register, Address offset: 0x2C */
  261. __IO uint32_t DOR2; /*!< DAC channel2 data output register, Address offset: 0x30 */
  262. __IO uint32_t SR; /*!< DAC status register, Address offset: 0x34 */
  263. __IO uint32_t CCR; /*!< DAC calibration control register, Address offset: 0x38 */
  264. __IO uint32_t MCR; /*!< DAC mode control register, Address offset: 0x3C */
  265. __IO uint32_t SHSR1; /*!< DAC Sample and Hold sample time register 1, Address offset: 0x40 */
  266. __IO uint32_t SHSR2; /*!< DAC Sample and Hold sample time register 2, Address offset: 0x44 */
  267. __IO uint32_t SHHR; /*!< DAC Sample and Hold hold time register, Address offset: 0x48 */
  268. __IO uint32_t SHRR; /*!< DAC Sample and Hold refresh time register, Address offset: 0x4C */
  269. } DAC_TypeDef;
  270. /**
  271. * @brief Debug MCU
  272. */
  273. typedef struct
  274. {
  275. __IO uint32_t IDCODE; /*!< MCU device ID code, Address offset: 0x00 */
  276. __IO uint32_t CR; /*!< Debug configuration register, Address offset: 0x04 */
  277. __IO uint32_t APBFZ1; /*!< Debug APB freeze register 1, Address offset: 0x08 */
  278. __IO uint32_t APBFZ2; /*!< Debug APB freeze register 2, Address offset: 0x0C */
  279. } DBG_TypeDef;
  280. /**
  281. * @brief DMA Controller
  282. */
  283. typedef struct
  284. {
  285. __IO uint32_t CCR; /*!< DMA channel x configuration register */
  286. __IO uint32_t CNDTR; /*!< DMA channel x number of data register */
  287. __IO uint32_t CPAR; /*!< DMA channel x peripheral address register */
  288. __IO uint32_t CMAR; /*!< DMA channel x memory address register */
  289. } DMA_Channel_TypeDef;
  290. typedef struct
  291. {
  292. __IO uint32_t ISR; /*!< DMA interrupt status register, Address offset: 0x00 */
  293. __IO uint32_t IFCR; /*!< DMA interrupt flag clear register, Address offset: 0x04 */
  294. } DMA_TypeDef;
  295. /**
  296. * @brief DMA Multiplexer
  297. */
  298. typedef struct
  299. {
  300. __IO uint32_t CCR; /*!< DMA Multiplexer Channel x Control Register Address offset: 0x0004 * (channel x) */
  301. }DMAMUX_Channel_TypeDef;
  302. typedef struct
  303. {
  304. __IO uint32_t CSR; /*!< DMA Channel Status Register Address offset: 0x0080 */
  305. __IO uint32_t CFR; /*!< DMA Channel Clear Flag Register Address offset: 0x0084 */
  306. }DMAMUX_ChannelStatus_TypeDef;
  307. typedef struct
  308. {
  309. __IO uint32_t RGCR; /*!< DMA Request Generator x Control Register Address offset: 0x0100 + 0x0004 * (Req Gen x) */
  310. }DMAMUX_RequestGen_TypeDef;
  311. typedef struct
  312. {
  313. __IO uint32_t RGSR; /*!< DMA Request Generator Status Register Address offset: 0x0140 */
  314. __IO uint32_t RGCFR; /*!< DMA Request Generator Clear Flag Register Address offset: 0x0144 */
  315. }DMAMUX_RequestGenStatus_TypeDef;
  316. /**
  317. * @brief Asynch Interrupt/Event Controller (EXTI)
  318. */
  319. typedef struct
  320. {
  321. __IO uint32_t RTSR1; /*!< EXTI Rising Trigger Selection Register 1, Address offset: 0x00 */
  322. __IO uint32_t FTSR1; /*!< EXTI Falling Trigger Selection Register 1, Address offset: 0x04 */
  323. __IO uint32_t SWIER1; /*!< EXTI Software Interrupt event Register 1, Address offset: 0x08 */
  324. __IO uint32_t RPR1; /*!< EXTI Rising Pending Register 1, Address offset: 0x0C */
  325. __IO uint32_t FPR1; /*!< EXTI Falling Pending Register 1, Address offset: 0x10 */
  326. uint32_t RESERVED1[3]; /*!< Reserved 1, 0x14 -- 0x1C */
  327. __IO uint32_t RTSR2; /*!< EXTI Rising Trigger Selection Register 2, Address offset: 0x20 */
  328. __IO uint32_t FTSR2; /*!< EXTI Falling Trigger Selection Register 2, Address offset: 0x24 */
  329. __IO uint32_t SWIER2; /*!< EXTI Software Interrupt event Register 2, Address offset: 0x28 */
  330. __IO uint32_t RPR2; /*!< EXTI Rising Pending Register 2, Address offset: 0x2C */
  331. __IO uint32_t FPR2; /*!< EXTI Falling Pending Register 2, Address offset: 0x30 */
  332. uint32_t RESERVED3[11]; /*!< Reserved 3, 0x34 -- 0x5C */
  333. __IO uint32_t EXTICR[4]; /*!< EXTI External Interrupt Configuration Register, 0x60 -- 0x6C */
  334. uint32_t RESERVED4[4]; /*!< Reserved 4, 0x70 -- 0x7C */
  335. __IO uint32_t IMR1; /*!< EXTI Interrupt Mask Register 1, Address offset: 0x80 */
  336. __IO uint32_t EMR1; /*!< EXTI Event Mask Register 1, Address offset: 0x84 */
  337. uint32_t RESERVED5[2]; /*!< Reserved 5, 0x88 -- 0x8C */
  338. __IO uint32_t IMR2; /*!< EXTI Interrupt Mask Register 2, Address offset: 0x90 */
  339. __IO uint32_t EMR2; /*!< EXTI Event Mask Register 2, Address offset: 0x94 */
  340. } EXTI_TypeDef;
  341. /**
  342. * @brief FLASH Registers
  343. */
  344. typedef struct
  345. {
  346. __IO uint32_t ACR; /*!< FLASH Access Control register, Address offset: 0x00 */
  347. uint32_t RESERVED1; /*!< Reserved1, Address offset: 0x04 */
  348. __IO uint32_t KEYR; /*!< FLASH Key register, Address offset: 0x08 */
  349. __IO uint32_t OPTKEYR; /*!< FLASH Option Key register, Address offset: 0x0C */
  350. __IO uint32_t SR; /*!< FLASH Status register, Address offset: 0x10 */
  351. __IO uint32_t CR; /*!< FLASH Control register, Address offset: 0x14 */
  352. __IO uint32_t ECCR; /*!< FLASH ECC bank 1 register, Address offset: 0x18 */
  353. __IO uint32_t ECC2R; /*!< FLASH ECC bank 2 register, Address offset: 0x1C */
  354. __IO uint32_t OPTR; /*!< FLASH Option register, Address offset: 0x20 */
  355. __IO uint32_t PCROP1ASR; /*!< FLASH Bank PCROP area A Start address register, Address offset: 0x24 */
  356. __IO uint32_t PCROP1AER; /*!< FLASH Bank PCROP area A End address register, Address offset: 0x28 */
  357. __IO uint32_t WRP1AR; /*!< FLASH Bank WRP area A address register, Address offset: 0x2C */
  358. __IO uint32_t WRP1BR; /*!< FLASH Bank WRP area B address register, Address offset: 0x30 */
  359. __IO uint32_t PCROP1BSR; /*!< FLASH Bank PCROP area B Start address register, Address offset: 0x34 */
  360. __IO uint32_t PCROP1BER; /*!< FLASH Bank PCROP area B End address register, Address offset: 0x38 */
  361. uint32_t RESERVED5[2]; /*!< Reserved5, Address offset: 0x3C--0x40 */
  362. __IO uint32_t PCROP2ASR; /*!< FLASH Bank2 PCROP area A Start address register, Address offset: 0x44 */
  363. __IO uint32_t PCROP2AER; /*!< FLASH Bank2 PCROP area A End address register, Address offset: 0x48 */
  364. __IO uint32_t WRP2AR; /*!< FLASH Bank2 WRP area A address register, Address offset: 0x4C */
  365. __IO uint32_t WRP2BR; /*!< FLASH Bank2 WRP area B address register, Address offset: 0x50 */
  366. __IO uint32_t PCROP2BSR; /*!< FLASH Bank2 PCROP area B Start address register, Address offset: 0x54 */
  367. __IO uint32_t PCROP2BER; /*!< FLASH Bank2 PCROP area B End address register, Address offset: 0x58 */
  368. uint32_t RESERVED7[9]; /*!< Reserved7, Address offset: 0x5C--0x7C */
  369. __IO uint32_t SECR; /*!< FLASH security register , Address offset: 0x80 */
  370. } FLASH_TypeDef;
  371. /**
  372. * @brief General Purpose I/O
  373. */
  374. typedef struct
  375. {
  376. __IO uint32_t MODER; /*!< GPIO port mode register, Address offset: 0x00 */
  377. __IO uint32_t OTYPER; /*!< GPIO port output type register, Address offset: 0x04 */
  378. __IO uint32_t OSPEEDR; /*!< GPIO port output speed register, Address offset: 0x08 */
  379. __IO uint32_t PUPDR; /*!< GPIO port pull-up/pull-down register, Address offset: 0x0C */
  380. __IO uint32_t IDR; /*!< GPIO port input data register, Address offset: 0x10 */
  381. __IO uint32_t ODR; /*!< GPIO port output data register, Address offset: 0x14 */
  382. __IO uint32_t BSRR; /*!< GPIO port bit set/reset register, Address offset: 0x18 */
  383. __IO uint32_t LCKR; /*!< GPIO port configuration lock register, Address offset: 0x1C */
  384. __IO uint32_t AFR[2]; /*!< GPIO alternate function registers, Address offset: 0x20-0x24 */
  385. __IO uint32_t BRR; /*!< GPIO Bit Reset register, Address offset: 0x28 */
  386. } GPIO_TypeDef;
  387. /**
  388. * @brief Inter-integrated Circuit Interface
  389. */
  390. typedef struct
  391. {
  392. __IO uint32_t CR1; /*!< I2C Control register 1, Address offset: 0x00 */
  393. __IO uint32_t CR2; /*!< I2C Control register 2, Address offset: 0x04 */
  394. __IO uint32_t OAR1; /*!< I2C Own address 1 register, Address offset: 0x08 */
  395. __IO uint32_t OAR2; /*!< I2C Own address 2 register, Address offset: 0x0C */
  396. __IO uint32_t TIMINGR; /*!< I2C Timing register, Address offset: 0x10 */
  397. __IO uint32_t TIMEOUTR; /*!< I2C Timeout register, Address offset: 0x14 */
  398. __IO uint32_t ISR; /*!< I2C Interrupt and status register, Address offset: 0x18 */
  399. __IO uint32_t ICR; /*!< I2C Interrupt clear register, Address offset: 0x1C */
  400. __IO uint32_t PECR; /*!< I2C PEC register, Address offset: 0x20 */
  401. __IO uint32_t RXDR; /*!< I2C Receive data register, Address offset: 0x24 */
  402. __IO uint32_t TXDR; /*!< I2C Transmit data register, Address offset: 0x28 */
  403. } I2C_TypeDef;
  404. /**
  405. * @brief Independent WATCHDOG
  406. */
  407. typedef struct
  408. {
  409. __IO uint32_t KR; /*!< IWDG Key register, Address offset: 0x00 */
  410. __IO uint32_t PR; /*!< IWDG Prescaler register, Address offset: 0x04 */
  411. __IO uint32_t RLR; /*!< IWDG Reload register, Address offset: 0x08 */
  412. __IO uint32_t SR; /*!< IWDG Status register, Address offset: 0x0C */
  413. __IO uint32_t WINR; /*!< IWDG Window register, Address offset: 0x10 */
  414. } IWDG_TypeDef;
  415. /**
  416. * @brief LPTIMER
  417. */
  418. typedef struct
  419. {
  420. __IO uint32_t ISR; /*!< LPTIM Interrupt and Status register, Address offset: 0x00 */
  421. __IO uint32_t ICR; /*!< LPTIM Interrupt Clear register, Address offset: 0x04 */
  422. __IO uint32_t IER; /*!< LPTIM Interrupt Enable register, Address offset: 0x08 */
  423. __IO uint32_t CFGR; /*!< LPTIM Configuration register, Address offset: 0x0C */
  424. __IO uint32_t CR; /*!< LPTIM Control register, Address offset: 0x10 */
  425. __IO uint32_t CMP; /*!< LPTIM Compare register, Address offset: 0x14 */
  426. __IO uint32_t ARR; /*!< LPTIM Autoreload register, Address offset: 0x18 */
  427. __IO uint32_t CNT; /*!< LPTIM Counter register, Address offset: 0x1C */
  428. __IO uint32_t RESERVED1; /*!< Reserved1, Address offset: 0x20 */
  429. __IO uint32_t CFGR2; /*!< LPTIM Option register, Address offset: 0x24 */
  430. } LPTIM_TypeDef;
  431. /**
  432. * @brief Power Control
  433. */
  434. typedef struct
  435. {
  436. __IO uint32_t CR1; /*!< PWR Power Control Register 1, Address offset: 0x00 */
  437. __IO uint32_t CR2; /*!< PWR Power Control Register 2, Address offset: 0x04 */
  438. __IO uint32_t CR3; /*!< PWR Power Control Register 3, Address offset: 0x08 */
  439. __IO uint32_t CR4; /*!< PWR Power Control Register 4, Address offset: 0x0C */
  440. __IO uint32_t SR1; /*!< PWR Power Status Register 1, Address offset: 0x10 */
  441. __IO uint32_t SR2; /*!< PWR Power Status Register 2, Address offset: 0x14 */
  442. __IO uint32_t SCR; /*!< PWR Power Status Clear Register, Address offset: 0x18 */
  443. uint32_t RESERVED1; /*!< Reserved, Address offset: 0x1C */
  444. __IO uint32_t PUCRA; /*!< PWR Pull-Up Control Register of port A, Address offset: 0x20 */
  445. __IO uint32_t PDCRA; /*!< PWR Pull-Down Control Register of port A, Address offset: 0x24 */
  446. __IO uint32_t PUCRB; /*!< PWR Pull-Up Control Register of port B, Address offset: 0x28 */
  447. __IO uint32_t PDCRB; /*!< PWR Pull-Down Control Register of port B, Address offset: 0x2C */
  448. __IO uint32_t PUCRC; /*!< PWR Pull-Up Control Register of port C, Address offset: 0x30 */
  449. __IO uint32_t PDCRC; /*!< PWR Pull-Down Control Register of port C, Address offset: 0x34 */
  450. __IO uint32_t PUCRD; /*!< PWR Pull-Up Control Register of port D, Address offset: 0x38 */
  451. __IO uint32_t PDCRD; /*!< PWR Pull-Down Control Register of port D, Address offset: 0x3C */
  452. __IO uint32_t PUCRE; /*!< PWR Pull-Up Control Register of port E, Address offset: 0x40 */
  453. __IO uint32_t PDCRE; /*!< PWR Pull-Down Control Register of port E, Address offset: 0x44 */
  454. __IO uint32_t PUCRF; /*!< PWR Pull-Up Control Register of port F, Address offset: 0x48 */
  455. __IO uint32_t PDCRF; /*!< PWR Pull-Down Control Register of port F, Address offset: 0x4C */
  456. } PWR_TypeDef;
  457. /**
  458. * @brief Reset and Clock Control
  459. */
  460. typedef struct
  461. {
  462. __IO uint32_t CR; /*!< RCC Clock Sources Control Register, Address offset: 0x00 */
  463. __IO uint32_t ICSCR; /*!< RCC Internal Clock Sources Calibration Register, Address offset: 0x04 */
  464. __IO uint32_t CFGR; /*!< RCC Regulated Domain Clocks Configuration Register, Address offset: 0x08 */
  465. __IO uint32_t PLLCFGR; /*!< RCC System PLL configuration Register, Address offset: 0x0C */
  466. __IO uint32_t RESERVED0; /*!< Reserved, Address offset: 0x10 */
  467. __IO uint32_t CRRCR; /*!< RCC Clock Configuration Register, Address offset: 0x14 */
  468. __IO uint32_t CIER; /*!< RCC Clock Interrupt Enable Register, Address offset: 0x18 */
  469. __IO uint32_t CIFR; /*!< RCC Clock Interrupt Flag Register, Address offset: 0x1C */
  470. __IO uint32_t CICR; /*!< RCC Clock Interrupt Clear Register, Address offset: 0x20 */
  471. __IO uint32_t IOPRSTR; /*!< RCC IO port reset register, Address offset: 0x24 */
  472. __IO uint32_t AHBRSTR; /*!< RCC AHB peripherals reset register, Address offset: 0x28 */
  473. __IO uint32_t APBRSTR1; /*!< RCC APB peripherals reset register 1, Address offset: 0x2C */
  474. __IO uint32_t APBRSTR2; /*!< RCC APB peripherals reset register 2, Address offset: 0x30 */
  475. __IO uint32_t IOPENR; /*!< RCC IO port enable register, Address offset: 0x34 */
  476. __IO uint32_t AHBENR; /*!< RCC AHB peripherals clock enable register, Address offset: 0x38 */
  477. __IO uint32_t APBENR1; /*!< RCC APB peripherals clock enable register1, Address offset: 0x3C */
  478. __IO uint32_t APBENR2; /*!< RCC APB peripherals clock enable register2, Address offset: 0x40 */
  479. __IO uint32_t IOPSMENR; /*!< RCC IO port clocks enable in sleep mode register, Address offset: 0x44 */
  480. __IO uint32_t AHBSMENR; /*!< RCC AHB peripheral clocks enable in sleep mode register, Address offset: 0x48 */
  481. __IO uint32_t APBSMENR1; /*!< RCC APB peripheral clocks enable in sleep mode register1, Address offset: 0x4C */
  482. __IO uint32_t APBSMENR2; /*!< RCC APB peripheral clocks enable in sleep mode register2, Address offset: 0x50 */
  483. __IO uint32_t CCIPR; /*!< RCC Peripherals Independent Clocks Configuration Register, Address offset: 0x54 */
  484. __IO uint32_t CCIPR2; /*!< RCC Peripherals Independent Clocks Configuration Register2, Address offset: 0x58 */
  485. __IO uint32_t BDCR; /*!< RCC Backup Domain Control Register, Address offset: 0x5C */
  486. __IO uint32_t CSR; /*!< RCC Unregulated Domain Clock Control and Status Register, Address offset: 0x60 */
  487. } RCC_TypeDef;
  488. /**
  489. * @brief Real-Time Clock
  490. */
  491. typedef struct
  492. {
  493. __IO uint32_t TR; /*!< RTC time register, Address offset: 0x00 */
  494. __IO uint32_t DR; /*!< RTC date register, Address offset: 0x04 */
  495. __IO uint32_t SSR; /*!< RTC sub second register, Address offset: 0x08 */
  496. __IO uint32_t ICSR; /*!< RTC initialization control and status register, Address offset: 0x0C */
  497. __IO uint32_t PRER; /*!< RTC prescaler register, Address offset: 0x10 */
  498. __IO uint32_t WUTR; /*!< RTC wakeup timer register, Address offset: 0x14 */
  499. __IO uint32_t CR; /*!< RTC control register, Address offset: 0x18 */
  500. uint32_t RESERVED0; /*!< Reserved Address offset: 0x1C */
  501. uint32_t RESERVED1; /*!< Reserved Address offset: 0x20 */
  502. __IO uint32_t WPR; /*!< RTC write protection register, Address offset: 0x24 */
  503. __IO uint32_t CALR; /*!< RTC calibration register, Address offset: 0x28 */
  504. __IO uint32_t SHIFTR; /*!< RTC shift control register, Address offset: 0x2C */
  505. __IO uint32_t TSTR; /*!< RTC time stamp time register, Address offset: 0x30 */
  506. __IO uint32_t TSDR; /*!< RTC time stamp date register, Address offset: 0x34 */
  507. __IO uint32_t TSSSR; /*!< RTC time-stamp sub second register, Address offset: 0x38 */
  508. uint32_t RESERVED2; /*!< Reserved Address offset: 0x1C */
  509. __IO uint32_t ALRMAR; /*!< RTC alarm A register, Address offset: 0x40 */
  510. __IO uint32_t ALRMASSR; /*!< RTC alarm A sub second register, Address offset: 0x44 */
  511. __IO uint32_t ALRMBR; /*!< RTC alarm B register, Address offset: 0x48 */
  512. __IO uint32_t ALRMBSSR; /*!< RTC alarm B sub second register, Address offset: 0x4C */
  513. __IO uint32_t SR; /*!< RTC Status register, Address offset: 0x50 */
  514. __IO uint32_t MISR; /*!< RTC Masked Interrupt Status register, Address offset: 0x54 */
  515. uint32_t RESERVED3; /*!< Reserved Address offset: 0x58 */
  516. __IO uint32_t SCR; /*!< RTC Status Clear register, Address offset: 0x5C */
  517. __IO uint32_t OR; /*!< RTC option register, Address offset: 0x60 */
  518. } RTC_TypeDef;
  519. /**
  520. * @brief Tamper and backup registers
  521. */
  522. typedef struct
  523. {
  524. __IO uint32_t CR1; /*!< TAMP configuration register 1, Address offset: 0x00 */
  525. __IO uint32_t CR2; /*!< TAMP configuration register 2, Address offset: 0x04 */
  526. uint32_t RESERVED0; /*!< Reserved Address offset: 0x08 */
  527. __IO uint32_t FLTCR; /*!< Reserved Address offset: 0x0C */
  528. uint32_t RESERVED1[7]; /*!< Reserved Address offset: 0x10 -- 0x28 */
  529. __IO uint32_t IER; /*!< TAMP Interrupt enable register, Address offset: 0x2C */
  530. __IO uint32_t SR; /*!< TAMP Status register, Address offset: 0x30 */
  531. __IO uint32_t MISR; /*!< TAMP Masked Interrupt Status register, Address offset: 0x34 */
  532. uint32_t RESERVED2; /*!< Reserved Address offset: 0x38 */
  533. __IO uint32_t SCR; /*!< TAMP Status clear register, Address offset: 0x3C */
  534. uint32_t RESERVED3[48]; /*!< Reserved Address offset: 0x54 -- 0xFC */
  535. __IO uint32_t BKP0R; /*!< TAMP backup register 0, Address offset: 0x100 */
  536. __IO uint32_t BKP1R; /*!< TAMP backup register 1, Address offset: 0x104 */
  537. __IO uint32_t BKP2R; /*!< TAMP backup register 2, Address offset: 0x108 */
  538. __IO uint32_t BKP3R; /*!< TAMP backup register 3, Address offset: 0x10C */
  539. __IO uint32_t BKP4R; /*!< TAMP backup register 4, Address offset: 0x110 */
  540. } TAMP_TypeDef;
  541. /**
  542. * @brief Serial Peripheral Interface
  543. */
  544. typedef struct
  545. {
  546. __IO uint32_t CR1; /*!< SPI Control register 1 (not used in I2S mode), Address offset: 0x00 */
  547. __IO uint32_t CR2; /*!< SPI Control register 2, Address offset: 0x04 */
  548. __IO uint32_t SR; /*!< SPI Status register, Address offset: 0x08 */
  549. __IO uint32_t DR; /*!< SPI data register, Address offset: 0x0C */
  550. __IO uint32_t CRCPR; /*!< SPI CRC polynomial register (not used in I2S mode), Address offset: 0x10 */
  551. __IO uint32_t RXCRCR; /*!< SPI Rx CRC register (not used in I2S mode), Address offset: 0x14 */
  552. __IO uint32_t TXCRCR; /*!< SPI Tx CRC register (not used in I2S mode), Address offset: 0x18 */
  553. __IO uint32_t I2SCFGR; /*!< SPI_I2S configuration register, Address offset: 0x1C */
  554. __IO uint32_t I2SPR; /*!< SPI_I2S prescaler register, Address offset: 0x20 */
  555. } SPI_TypeDef;
  556. /**
  557. * @brief System configuration controller
  558. */
  559. typedef struct
  560. {
  561. __IO uint32_t CFGR1; /*!< SYSCFG configuration register 1, Address offset: 0x00 */
  562. uint32_t RESERVED0[5]; /*!< Reserved, 0x04 --0x14 */
  563. __IO uint32_t CFGR2; /*!< SYSCFG configuration register 2, Address offset: 0x18 */
  564. uint32_t RESERVED1[25]; /*!< Reserved 0x1C */
  565. __IO uint32_t IT_LINE_SR[32]; /*!< SYSCFG configuration IT_LINE register, Address offset: 0x80 */
  566. } SYSCFG_TypeDef;
  567. /**
  568. * @brief TIM
  569. */
  570. typedef struct
  571. {
  572. __IO uint32_t CR1; /*!< TIM control register 1, Address offset: 0x00 */
  573. __IO uint32_t CR2; /*!< TIM control register 2, Address offset: 0x04 */
  574. __IO uint32_t SMCR; /*!< TIM slave mode control register, Address offset: 0x08 */
  575. __IO uint32_t DIER; /*!< TIM DMA/interrupt enable register, Address offset: 0x0C */
  576. __IO uint32_t SR; /*!< TIM status register, Address offset: 0x10 */
  577. __IO uint32_t EGR; /*!< TIM event generation register, Address offset: 0x14 */
  578. __IO uint32_t CCMR1; /*!< TIM capture/compare mode register 1, Address offset: 0x18 */
  579. __IO uint32_t CCMR2; /*!< TIM capture/compare mode register 2, Address offset: 0x1C */
  580. __IO uint32_t CCER; /*!< TIM capture/compare enable register, Address offset: 0x20 */
  581. __IO uint32_t CNT; /*!< TIM counter register, Address offset: 0x24 */
  582. __IO uint32_t PSC; /*!< TIM prescaler register, Address offset: 0x28 */
  583. __IO uint32_t ARR; /*!< TIM auto-reload register, Address offset: 0x2C */
  584. __IO uint32_t RCR; /*!< TIM repetition counter register, Address offset: 0x30 */
  585. __IO uint32_t CCR1; /*!< TIM capture/compare register 1, Address offset: 0x34 */
  586. __IO uint32_t CCR2; /*!< TIM capture/compare register 2, Address offset: 0x38 */
  587. __IO uint32_t CCR3; /*!< TIM capture/compare register 3, Address offset: 0x3C */
  588. __IO uint32_t CCR4; /*!< TIM capture/compare register 4, Address offset: 0x40 */
  589. __IO uint32_t BDTR; /*!< TIM break and dead-time register, Address offset: 0x44 */
  590. __IO uint32_t DCR; /*!< TIM DMA control register, Address offset: 0x48 */
  591. __IO uint32_t DMAR; /*!< TIM DMA address for full transfer, Address offset: 0x4C */
  592. __IO uint32_t OR1; /*!< TIM option register, Address offset: 0x50 */
  593. __IO uint32_t CCMR3; /*!< TIM capture/compare mode register 3, Address offset: 0x54 */
  594. __IO uint32_t CCR5; /*!< TIM capture/compare register5, Address offset: 0x58 */
  595. __IO uint32_t CCR6; /*!< TIM capture/compare register6, Address offset: 0x5C */
  596. __IO uint32_t AF1; /*!< TIM alternate function register 1, Address offset: 0x60 */
  597. __IO uint32_t AF2; /*!< TIM alternate function register 2, Address offset: 0x64 */
  598. __IO uint32_t TISEL; /*!< TIM Input Selection register, Address offset: 0x68 */
  599. } TIM_TypeDef;
  600. /**
  601. * @brief Universal Synchronous Asynchronous Receiver Transmitter
  602. */
  603. typedef struct
  604. {
  605. __IO uint32_t CR1; /*!< USART Control register 1, Address offset: 0x00 */
  606. __IO uint32_t CR2; /*!< USART Control register 2, Address offset: 0x04 */
  607. __IO uint32_t CR3; /*!< USART Control register 3, Address offset: 0x08 */
  608. __IO uint32_t BRR; /*!< USART Baud rate register, Address offset: 0x0C */
  609. __IO uint32_t GTPR; /*!< USART Guard time and prescaler register, Address offset: 0x10 */
  610. __IO uint32_t RTOR; /*!< USART Receiver Time Out register, Address offset: 0x14 */
  611. __IO uint32_t RQR; /*!< USART Request register, Address offset: 0x18 */
  612. __IO uint32_t ISR; /*!< USART Interrupt and status register, Address offset: 0x1C */
  613. __IO uint32_t ICR; /*!< USART Interrupt flag Clear register, Address offset: 0x20 */
  614. __IO uint32_t RDR; /*!< USART Receive Data register, Address offset: 0x24 */
  615. __IO uint32_t TDR; /*!< USART Transmit Data register, Address offset: 0x28 */
  616. __IO uint32_t PRESC; /*!< USART Prescaler register, Address offset: 0x2C */
  617. } USART_TypeDef;
  618. /**
  619. * @brief Universal Serial Bus Full Speed Dual Role Device
  620. */
  621. typedef struct
  622. {
  623. __IO uint32_t CHEP0R; /*!< USB Channel/Endpoint 0 register, Address offset: 0x00 */
  624. __IO uint32_t CHEP1R; /*!< USB Channel/Endpoint 1 register, Address offset: 0x04 */
  625. __IO uint32_t CHEP2R; /*!< USB Channel/Endpoint 2 register, Address offset: 0x08 */
  626. __IO uint32_t CHEP3R; /*!< USB Channel/Endpoint 3 register, Address offset: 0x0C */
  627. __IO uint32_t CHEP4R; /*!< USB Channel/Endpoint 4 register, Address offset: 0x10 */
  628. __IO uint32_t CHEP5R; /*!< USB Channel/Endpoint 5 register, Address offset: 0x14 */
  629. __IO uint32_t CHEP6R; /*!< USB Channel/Endpoint 6 register, Address offset: 0x18 */
  630. __IO uint32_t CHEP7R; /*!< USB Channel/Endpoint 7 register, Address offset: 0x1C */
  631. __IO uint32_t RESERVED0[8]; /*!< Reserved, */
  632. __IO uint32_t CNTR; /*!< Control register, Address offset: 0x40 */
  633. __IO uint32_t ISTR; /*!< Interrupt status register, Address offset: 0x44 */
  634. __IO uint32_t FNR; /*!< Frame number register, Address offset: 0x48 */
  635. __IO uint32_t DADDR; /*!< Device address register, Address offset: 0x4C */
  636. __IO uint32_t RESERVED1; /*!< Reserved */
  637. __IO uint32_t LPMCSR; /*!< LPM Control and Status register, Address offset: 0x54 */
  638. __IO uint32_t BCDR; /*!< Battery Charging detector register, Address offset: 0x58 */
  639. } USB_DRD_TypeDef;
  640. /**
  641. * @brief Universal Serial Bus PacketMemoryArea Buffer Descriptor Table
  642. */
  643. typedef struct
  644. {
  645. __IO uint32_t TXBD; /*!<Transmission buffer address*/
  646. __IO uint32_t RXBD; /*!<Reception buffer address */
  647. } USB_DRD_PMABuffDescTypeDef;
  648. /**
  649. * @brief VREFBUF
  650. */
  651. typedef struct
  652. {
  653. __IO uint32_t CSR; /*!< VREFBUF control and status register, Address offset: 0x00 */
  654. __IO uint32_t CCR; /*!< VREFBUF calibration and control register, Address offset: 0x04 */
  655. } VREFBUF_TypeDef;
  656. /**
  657. * @brief Window WATCHDOG
  658. */
  659. typedef struct
  660. {
  661. __IO uint32_t CR; /*!< WWDG Control register, Address offset: 0x00 */
  662. __IO uint32_t CFR; /*!< WWDG Configuration register, Address offset: 0x04 */
  663. __IO uint32_t SR; /*!< WWDG Status register, Address offset: 0x08 */
  664. } WWDG_TypeDef;
  665. /**
  666. * @brief AES hardware accelerator
  667. */
  668. typedef struct
  669. {
  670. __IO uint32_t CR; /*!< AES control register, Address offset: 0x00 */
  671. __IO uint32_t SR; /*!< AES status register, Address offset: 0x04 */
  672. __IO uint32_t DINR; /*!< AES data input register, Address offset: 0x08 */
  673. __IO uint32_t DOUTR; /*!< AES data output register, Address offset: 0x0C */
  674. __IO uint32_t KEYR0; /*!< AES key register 0, Address offset: 0x10 */
  675. __IO uint32_t KEYR1; /*!< AES key register 1, Address offset: 0x14 */
  676. __IO uint32_t KEYR2; /*!< AES key register 2, Address offset: 0x18 */
  677. __IO uint32_t KEYR3; /*!< AES key register 3, Address offset: 0x1C */
  678. __IO uint32_t IVR0; /*!< AES initialization vector register 0, Address offset: 0x20 */
  679. __IO uint32_t IVR1; /*!< AES initialization vector register 1, Address offset: 0x24 */
  680. __IO uint32_t IVR2; /*!< AES initialization vector register 2, Address offset: 0x28 */
  681. __IO uint32_t IVR3; /*!< AES initialization vector register 3, Address offset: 0x2C */
  682. __IO uint32_t KEYR4; /*!< AES key register 4, Address offset: 0x30 */
  683. __IO uint32_t KEYR5; /*!< AES key register 5, Address offset: 0x34 */
  684. __IO uint32_t KEYR6; /*!< AES key register 6, Address offset: 0x38 */
  685. __IO uint32_t KEYR7; /*!< AES key register 7, Address offset: 0x3C */
  686. __IO uint32_t SUSP0R; /*!< AES Suspend register 0, Address offset: 0x40 */
  687. __IO uint32_t SUSP1R; /*!< AES Suspend register 1, Address offset: 0x44 */
  688. __IO uint32_t SUSP2R; /*!< AES Suspend register 2, Address offset: 0x48 */
  689. __IO uint32_t SUSP3R; /*!< AES Suspend register 3, Address offset: 0x4C */
  690. __IO uint32_t SUSP4R; /*!< AES Suspend register 4, Address offset: 0x50 */
  691. __IO uint32_t SUSP5R; /*!< AES Suspend register 5, Address offset: 0x54 */
  692. __IO uint32_t SUSP6R; /*!< AES Suspend register 6, Address offset: 0x58 */
  693. __IO uint32_t SUSP7R; /*!< AES Suspend register 7, Address offset: 0x5C */
  694. } AES_TypeDef;
  695. /**
  696. * @brief RNG
  697. */
  698. typedef struct
  699. {
  700. __IO uint32_t CR; /*!< RNG control register, Address offset: 0x00 */
  701. __IO uint32_t SR; /*!< RNG status register, Address offset: 0x04 */
  702. __IO uint32_t DR; /*!< RNG data register, Address offset: 0x08 */
  703. } RNG_TypeDef;
  704. /**
  705. * @brief UCPD
  706. */
  707. typedef struct
  708. {
  709. __IO uint32_t CFG1; /*!< UCPD configuration register 1, Address offset: 0x00 */
  710. __IO uint32_t CFG2; /*!< UCPD configuration register 2, Address offset: 0x04 */
  711. __IO uint32_t RESERVED0; /*!< UCPD reserved register, Address offset: 0x08 */
  712. __IO uint32_t CR; /*!< UCPD control register, Address offset: 0x0C */
  713. __IO uint32_t IMR; /*!< UCPD interrupt mask register, Address offset: 0x10 */
  714. __IO uint32_t SR; /*!< UCPD status register, Address offset: 0x14 */
  715. __IO uint32_t ICR; /*!< UCPD interrupt flag clear register Address offset: 0x18 */
  716. __IO uint32_t TX_ORDSET; /*!< UCPD Tx ordered set type register, Address offset: 0x1C */
  717. __IO uint32_t TX_PAYSZ; /*!< UCPD Tx payload size register, Address offset: 0x20 */
  718. __IO uint32_t TXDR; /*!< UCPD Tx data register, Address offset: 0x24 */
  719. __IO uint32_t RX_ORDSET; /*!< UCPD Rx ordered set type register, Address offset: 0x28 */
  720. __IO uint32_t RX_PAYSZ; /*!< UCPD Rx payload size register, Address offset: 0x2C */
  721. __IO uint32_t RXDR; /*!< UCPD Rx data register, Address offset: 0x30 */
  722. __IO uint32_t RX_ORDEXT1; /*!< UCPD Rx ordered set extension 1 register, Address offset: 0x34 */
  723. __IO uint32_t RX_ORDEXT2; /*!< UCPD Rx ordered set extension 2 register, Address offset: 0x38 */
  724. } UCPD_TypeDef;
  725. /**
  726. * @}
  727. */
  728. /** @addtogroup Peripheral_memory_map
  729. * @{
  730. */
  731. #define FLASH_BASE (0x08000000UL) /*!< FLASH base address */
  732. #define SRAM_BASE (0x20000000UL) /*!< SRAM base address */
  733. #define PERIPH_BASE (0x40000000UL) /*!< Peripheral base address */
  734. #define IOPORT_BASE (0x50000000UL) /*!< IOPORT base address */
  735. /*!< USB PMA SIZE */
  736. #define USB_DRD_PMA_SIZE 2048U /*!< USB PMA Size 2Kbyte */
  737. #define SRAM_SIZE_MAX (0x00020000UL) /*!< maximum SRAM size (up to 128 KBytes) */
  738. #define FLASH_SIZE (((*((uint32_t *)FLASHSIZE_BASE)) & (0x03FFU)) << 10U)
  739. /*!< Peripheral memory map */
  740. #define APBPERIPH_BASE (PERIPH_BASE)
  741. #define AHBPERIPH_BASE (PERIPH_BASE + 0x00020000UL)
  742. /*!< APB peripherals */
  743. #define TIM2_BASE (APBPERIPH_BASE + 0UL)
  744. #define TIM3_BASE (APBPERIPH_BASE + 0x00000400UL)
  745. #define TIM4_BASE (APBPERIPH_BASE + 0x00000800UL)
  746. #define TIM6_BASE (APBPERIPH_BASE + 0x00001000UL)
  747. #define TIM7_BASE (APBPERIPH_BASE + 0x00001400UL)
  748. #define TIM14_BASE (APBPERIPH_BASE + 0x00002000UL)
  749. #define RTC_BASE (APBPERIPH_BASE + 0x00002800UL)
  750. #define WWDG_BASE (APBPERIPH_BASE + 0x00002C00UL)
  751. #define IWDG_BASE (APBPERIPH_BASE + 0x00003000UL)
  752. #define SPI2_BASE (APBPERIPH_BASE + 0x00003800UL)
  753. #define SPI3_BASE (APBPERIPH_BASE + 0x00003C00UL)
  754. #define USART2_BASE (APBPERIPH_BASE + 0x00004400UL)
  755. #define USART3_BASE (APBPERIPH_BASE + 0x00004800UL)
  756. #define USART4_BASE (APBPERIPH_BASE + 0x00004C00UL)
  757. #define USART5_BASE (APBPERIPH_BASE + 0x00005000UL)
  758. #define I2C1_BASE (APBPERIPH_BASE + 0x00005400UL)
  759. #define I2C2_BASE (APBPERIPH_BASE + 0x00005800UL)
  760. #define USB_BASE (APBPERIPH_BASE + 0x00005C00UL) /*!< USB_IP Peripheral Registers base address */
  761. #define FDCAN1_BASE (APBPERIPH_BASE + 0x00006400UL)
  762. #define FDCAN_CONFIG_BASE (APBPERIPH_BASE + 0x00006500UL) /*!< FDCAN configuration registers base address */
  763. #define FDCAN2_BASE (APBPERIPH_BASE + 0x00006800UL)
  764. #define CRS_BASE (APBPERIPH_BASE + 0x00006C00UL)
  765. #define PWR_BASE (APBPERIPH_BASE + 0x00007000UL)
  766. #define DAC1_BASE (APBPERIPH_BASE + 0x00007400UL)
  767. #define DAC_BASE (APBPERIPH_BASE + 0x00007400UL) /* Kept for legacy purpose */
  768. #define CEC_BASE (APBPERIPH_BASE + 0x00007800UL)
  769. #define LPTIM1_BASE (APBPERIPH_BASE + 0x00007C00UL)
  770. #define LPUART1_BASE (APBPERIPH_BASE + 0x00008000UL)
  771. #define LPUART2_BASE (APBPERIPH_BASE + 0x00008400UL)
  772. #define I2C3_BASE (APBPERIPH_BASE + 0x00008800UL)
  773. #define LPTIM2_BASE (APBPERIPH_BASE + 0x00009400UL)
  774. #define USB_DRD_BASE (APBPERIPH_BASE + 0x00005C00UL) /*!< USB_DRD_IP Peripheral Registers base address */
  775. #define USB_DRD_PMAADDR (APBPERIPH_BASE + 0x00009800UL) /*!< USB_DRD_IP Packet Memory Area base address */
  776. #define UCPD1_BASE (APBPERIPH_BASE + 0x0000A000UL)
  777. #define UCPD2_BASE (APBPERIPH_BASE + 0x0000A400UL)
  778. #define TAMP_BASE (APBPERIPH_BASE + 0x0000B000UL)
  779. #define SRAMCAN_BASE (APBPERIPH_BASE + 0x0000B400UL)
  780. #define SYSCFG_BASE (APBPERIPH_BASE + 0x00010000UL)
  781. #define VREFBUF_BASE (APBPERIPH_BASE + 0x00010030UL)
  782. #define COMP1_BASE (SYSCFG_BASE + 0x0200UL)
  783. #define COMP2_BASE (SYSCFG_BASE + 0x0204UL)
  784. #define COMP3_BASE (SYSCFG_BASE + 0x0208UL)
  785. #define ADC1_BASE (APBPERIPH_BASE + 0x00012400UL)
  786. #define ADC1_COMMON_BASE (APBPERIPH_BASE + 0x00012708UL)
  787. #define ADC_BASE (ADC1_COMMON_BASE) /* Kept for legacy purpose */
  788. #define TIM1_BASE (APBPERIPH_BASE + 0x00012C00UL)
  789. #define SPI1_BASE (APBPERIPH_BASE + 0x00013000UL)
  790. #define USART1_BASE (APBPERIPH_BASE + 0x00013800UL)
  791. #define USART6_BASE (APBPERIPH_BASE + 0x00013C00UL)
  792. #define TIM15_BASE (APBPERIPH_BASE + 0x00014000UL)
  793. #define TIM16_BASE (APBPERIPH_BASE + 0x00014400UL)
  794. #define TIM17_BASE (APBPERIPH_BASE + 0x00014800UL)
  795. #define DBG_BASE (APBPERIPH_BASE + 0x00015800UL)
  796. /*!< AHB peripherals */
  797. #define DMA1_BASE (AHBPERIPH_BASE)
  798. #define DMA2_BASE (AHBPERIPH_BASE + 0x00000400UL)
  799. #define DMAMUX1_BASE (AHBPERIPH_BASE + 0x00000800UL)
  800. #define RCC_BASE (AHBPERIPH_BASE + 0x00001000UL)
  801. #define EXTI_BASE (AHBPERIPH_BASE + 0x00001800UL)
  802. #define FLASH_R_BASE (AHBPERIPH_BASE + 0x00002000UL)
  803. #define CRC_BASE (AHBPERIPH_BASE + 0x00003000UL)
  804. #define RNG_BASE (AHBPERIPH_BASE + 0x00005000UL)
  805. #define AES_BASE (AHBPERIPH_BASE + 0x00006000UL)
  806. #define DMA1_Channel1_BASE (DMA1_BASE + 0x00000008UL)
  807. #define DMA1_Channel2_BASE (DMA1_BASE + 0x0000001CUL)
  808. #define DMA1_Channel3_BASE (DMA1_BASE + 0x00000030UL)
  809. #define DMA1_Channel4_BASE (DMA1_BASE + 0x00000044UL)
  810. #define DMA1_Channel5_BASE (DMA1_BASE + 0x00000058UL)
  811. #define DMA1_Channel6_BASE (DMA1_BASE + 0x0000006CUL)
  812. #define DMA1_Channel7_BASE (DMA1_BASE + 0x00000080UL)
  813. #define DMA2_Channel1_BASE (DMA2_BASE + 0x00000008UL)
  814. #define DMA2_Channel2_BASE (DMA2_BASE + 0x0000001CUL)
  815. #define DMA2_Channel3_BASE (DMA2_BASE + 0x00000030UL)
  816. #define DMA2_Channel4_BASE (DMA2_BASE + 0x00000044UL)
  817. #define DMA2_Channel5_BASE (DMA2_BASE + 0x00000058UL)
  818. #define DMAMUX1_Channel0_BASE (DMAMUX1_BASE)
  819. #define DMAMUX1_Channel1_BASE (DMAMUX1_BASE + 0x00000004UL)
  820. #define DMAMUX1_Channel2_BASE (DMAMUX1_BASE + 0x00000008UL)
  821. #define DMAMUX1_Channel3_BASE (DMAMUX1_BASE + 0x0000000CUL)
  822. #define DMAMUX1_Channel4_BASE (DMAMUX1_BASE + 0x00000010UL)
  823. #define DMAMUX1_Channel5_BASE (DMAMUX1_BASE + 0x00000014UL)
  824. #define DMAMUX1_Channel6_BASE (DMAMUX1_BASE + 0x00000018UL)
  825. #define DMAMUX1_Channel7_BASE (DMAMUX1_BASE + 0x0000001CUL)
  826. #define DMAMUX1_Channel8_BASE (DMAMUX1_BASE + 0x00000020UL)
  827. #define DMAMUX1_Channel9_BASE (DMAMUX1_BASE + 0x00000024UL)
  828. #define DMAMUX1_Channel10_BASE (DMAMUX1_BASE + 0x00000028UL)
  829. #define DMAMUX1_Channel11_BASE (DMAMUX1_BASE + 0x0000002CUL)
  830. #define DMAMUX1_RequestGenerator0_BASE (DMAMUX1_BASE + 0x00000100UL)
  831. #define DMAMUX1_RequestGenerator1_BASE (DMAMUX1_BASE + 0x00000104UL)
  832. #define DMAMUX1_RequestGenerator2_BASE (DMAMUX1_BASE + 0x00000108UL)
  833. #define DMAMUX1_RequestGenerator3_BASE (DMAMUX1_BASE + 0x0000010CUL)
  834. #define DMAMUX1_ChannelStatus_BASE (DMAMUX1_BASE + 0x00000080UL)
  835. #define DMAMUX1_RequestGenStatus_BASE (DMAMUX1_BASE + 0x00000140UL)
  836. /*!< IOPORT */
  837. #define GPIOA_BASE (IOPORT_BASE + 0x00000000UL)
  838. #define GPIOB_BASE (IOPORT_BASE + 0x00000400UL)
  839. #define GPIOC_BASE (IOPORT_BASE + 0x00000800UL)
  840. #define GPIOD_BASE (IOPORT_BASE + 0x00000C00UL)
  841. #define GPIOE_BASE (IOPORT_BASE + 0x00001000UL)
  842. #define GPIOF_BASE (IOPORT_BASE + 0x00001400UL)
  843. /*!< Device Electronic Signature */
  844. #define PACKAGE_BASE (0x1FFF7500UL) /*!< Package data register base address */
  845. #define UID_BASE (0x1FFF7590UL) /*!< Unique device ID register base address */
  846. #define FLASHSIZE_BASE (0x1FFF75E0UL) /*!< Flash size data register base address */
  847. /**
  848. * @}
  849. */
  850. /** @addtogroup Peripheral_declaration
  851. * @{
  852. */
  853. #define TIM2 ((TIM_TypeDef *) TIM2_BASE)
  854. #define TIM3 ((TIM_TypeDef *) TIM3_BASE)
  855. #define TIM4 ((TIM_TypeDef *) TIM4_BASE)
  856. #define TIM6 ((TIM_TypeDef *) TIM6_BASE)
  857. #define TIM7 ((TIM_TypeDef *) TIM7_BASE)
  858. #define TIM14 ((TIM_TypeDef *) TIM14_BASE)
  859. #define CRS ((CRS_TypeDef *) CRS_BASE)
  860. #define RTC ((RTC_TypeDef *) RTC_BASE)
  861. #define TAMP ((TAMP_TypeDef *) TAMP_BASE)
  862. #define WWDG ((WWDG_TypeDef *) WWDG_BASE)
  863. #define IWDG ((IWDG_TypeDef *) IWDG_BASE)
  864. #define SPI2 ((SPI_TypeDef *) SPI2_BASE)
  865. #define SPI3 ((SPI_TypeDef *) SPI3_BASE)
  866. #define USART2 ((USART_TypeDef *) USART2_BASE)
  867. #define USART3 ((USART_TypeDef *) USART3_BASE)
  868. #define USART4 ((USART_TypeDef *) USART4_BASE)
  869. #define USART5 ((USART_TypeDef *) USART5_BASE)
  870. #define USART6 ((USART_TypeDef *) USART6_BASE)
  871. #define I2C1 ((I2C_TypeDef *) I2C1_BASE)
  872. #define I2C2 ((I2C_TypeDef *) I2C2_BASE)
  873. #define I2C3 ((I2C_TypeDef *) I2C3_BASE)
  874. #define USB_DRD_FS ((USB_DRD_TypeDef *) USB_DRD_BASE)
  875. #define USB_DRD_PMA_BUFF ((USB_DRD_PMABuffDescTypeDef*) USB_DRD_PMAADDR)
  876. #define FDCAN1 ((FDCAN_GlobalTypeDef *) FDCAN1_BASE)
  877. #define FDCAN_CONFIG ((FDCAN_Config_TypeDef *) FDCAN_CONFIG_BASE)
  878. #define FDCAN2 ((FDCAN_GlobalTypeDef *) FDCAN2_BASE)
  879. #define LPTIM1 ((LPTIM_TypeDef *) LPTIM1_BASE)
  880. #define PWR ((PWR_TypeDef *) PWR_BASE)
  881. #define RCC ((RCC_TypeDef *) RCC_BASE)
  882. #define EXTI ((EXTI_TypeDef *) EXTI_BASE)
  883. #define DAC1 ((DAC_TypeDef *) DAC1_BASE)
  884. #define DAC ((DAC_TypeDef *) DAC_BASE) /* Kept for legacy purpose */
  885. #define LPUART1 ((USART_TypeDef *) LPUART1_BASE)
  886. #define LPTIM2 ((LPTIM_TypeDef *) LPTIM2_BASE)
  887. #define LPUART2 ((USART_TypeDef *) LPUART2_BASE)
  888. #define CEC ((CEC_TypeDef *) CEC_BASE)
  889. #define SYSCFG ((SYSCFG_TypeDef *) SYSCFG_BASE)
  890. #define VREFBUF ((VREFBUF_TypeDef *) VREFBUF_BASE)
  891. #define COMP1 ((COMP_TypeDef *) COMP1_BASE)
  892. #define COMP2 ((COMP_TypeDef *) COMP2_BASE)
  893. #define COMP12_COMMON ((COMP_Common_TypeDef *) COMP1_BASE)
  894. #define COMP3 ((COMP_TypeDef *) COMP3_BASE)
  895. #define COMP23_COMMON ((COMP_Common_TypeDef *) COMP2_BASE)
  896. #define TIM1 ((TIM_TypeDef *) TIM1_BASE)
  897. #define SPI1 ((SPI_TypeDef *) SPI1_BASE)
  898. #define USART1 ((USART_TypeDef *) USART1_BASE)
  899. #define TIM15 ((TIM_TypeDef *) TIM15_BASE)
  900. #define TIM16 ((TIM_TypeDef *) TIM16_BASE)
  901. #define TIM17 ((TIM_TypeDef *) TIM17_BASE)
  902. #define DMA1 ((DMA_TypeDef *) DMA1_BASE)
  903. #define DMA2 ((DMA_TypeDef *) DMA2_BASE)
  904. #define FLASH ((FLASH_TypeDef *) FLASH_R_BASE)
  905. #define CRC ((CRC_TypeDef *) CRC_BASE)
  906. #define GPIOA ((GPIO_TypeDef *) GPIOA_BASE)
  907. #define GPIOB ((GPIO_TypeDef *) GPIOB_BASE)
  908. #define GPIOC ((GPIO_TypeDef *) GPIOC_BASE)
  909. #define GPIOD ((GPIO_TypeDef *) GPIOD_BASE)
  910. #define GPIOE ((GPIO_TypeDef *) GPIOE_BASE)
  911. #define GPIOF ((GPIO_TypeDef *) GPIOF_BASE)
  912. #define ADC1 ((ADC_TypeDef *) ADC1_BASE)
  913. #define ADC1_COMMON ((ADC_Common_TypeDef *) ADC1_COMMON_BASE)
  914. #define ADC (ADC1_COMMON) /* Kept for legacy purpose */
  915. #define AES ((AES_TypeDef *) AES_BASE)
  916. #define AES1 ((AES_TypeDef *) AES_BASE)
  917. #define RNG ((RNG_TypeDef *) RNG_BASE)
  918. #define UCPD1 ((UCPD_TypeDef *) UCPD1_BASE)
  919. #define UCPD2 ((UCPD_TypeDef *) UCPD2_BASE)
  920. #define DMA1_Channel1 ((DMA_Channel_TypeDef *) DMA1_Channel1_BASE)
  921. #define DMA1_Channel2 ((DMA_Channel_TypeDef *) DMA1_Channel2_BASE)
  922. #define DMA1_Channel3 ((DMA_Channel_TypeDef *) DMA1_Channel3_BASE)
  923. #define DMA1_Channel4 ((DMA_Channel_TypeDef *) DMA1_Channel4_BASE)
  924. #define DMA1_Channel5 ((DMA_Channel_TypeDef *) DMA1_Channel5_BASE)
  925. #define DMA1_Channel6 ((DMA_Channel_TypeDef *) DMA1_Channel6_BASE)
  926. #define DMA1_Channel7 ((DMA_Channel_TypeDef *) DMA1_Channel7_BASE)
  927. #define DMA2_Channel1 ((DMA_Channel_TypeDef *) DMA2_Channel1_BASE)
  928. #define DMA2_Channel2 ((DMA_Channel_TypeDef *) DMA2_Channel2_BASE)
  929. #define DMA2_Channel3 ((DMA_Channel_TypeDef *) DMA2_Channel3_BASE)
  930. #define DMA2_Channel4 ((DMA_Channel_TypeDef *) DMA2_Channel4_BASE)
  931. #define DMA2_Channel5 ((DMA_Channel_TypeDef *) DMA2_Channel5_BASE)
  932. #define DMAMUX1 ((DMAMUX_Channel_TypeDef *) DMAMUX1_BASE)
  933. #define DMAMUX1_Channel0 ((DMAMUX_Channel_TypeDef *) DMAMUX1_Channel0_BASE)
  934. #define DMAMUX1_Channel1 ((DMAMUX_Channel_TypeDef *) DMAMUX1_Channel1_BASE)
  935. #define DMAMUX1_Channel2 ((DMAMUX_Channel_TypeDef *) DMAMUX1_Channel2_BASE)
  936. #define DMAMUX1_Channel3 ((DMAMUX_Channel_TypeDef *) DMAMUX1_Channel3_BASE)
  937. #define DMAMUX1_Channel4 ((DMAMUX_Channel_TypeDef *) DMAMUX1_Channel4_BASE)
  938. #define DMAMUX1_Channel5 ((DMAMUX_Channel_TypeDef *) DMAMUX1_Channel5_BASE)
  939. #define DMAMUX1_Channel6 ((DMAMUX_Channel_TypeDef *) DMAMUX1_Channel6_BASE)
  940. #define DMAMUX1_Channel7 ((DMAMUX_Channel_TypeDef *) DMAMUX1_Channel7_BASE)
  941. #define DMAMUX1_Channel8 ((DMAMUX_Channel_TypeDef *) DMAMUX1_Channel8_BASE)
  942. #define DMAMUX1_Channel9 ((DMAMUX_Channel_TypeDef *) DMAMUX1_Channel9_BASE)
  943. #define DMAMUX1_Channel10 ((DMAMUX_Channel_TypeDef *) DMAMUX1_Channel10_BASE)
  944. #define DMAMUX1_Channel11 ((DMAMUX_Channel_TypeDef *) DMAMUX1_Channel11_BASE)
  945. #define DMAMUX1_RequestGenerator0 ((DMAMUX_RequestGen_TypeDef *) DMAMUX1_RequestGenerator0_BASE)
  946. #define DMAMUX1_RequestGenerator1 ((DMAMUX_RequestGen_TypeDef *) DMAMUX1_RequestGenerator1_BASE)
  947. #define DMAMUX1_RequestGenerator2 ((DMAMUX_RequestGen_TypeDef *) DMAMUX1_RequestGenerator2_BASE)
  948. #define DMAMUX1_RequestGenerator3 ((DMAMUX_RequestGen_TypeDef *) DMAMUX1_RequestGenerator3_BASE)
  949. #define DMAMUX1_ChannelStatus ((DMAMUX_ChannelStatus_TypeDef *) DMAMUX1_ChannelStatus_BASE)
  950. #define DMAMUX1_RequestGenStatus ((DMAMUX_RequestGenStatus_TypeDef *) DMAMUX1_RequestGenStatus_BASE)
  951. #define DBG ((DBG_TypeDef *) DBG_BASE)
  952. /**
  953. * @}
  954. */
  955. /** @addtogroup Exported_constants
  956. * @{
  957. */
  958. /** @addtogroup Hardware_Constant_Definition
  959. * @{
  960. */
  961. #define LSI_STARTUP_TIME 130U /*!< LSI Maximum startup time in us */
  962. /**
  963. * @}
  964. */
  965. /** @addtogroup Peripheral_Registers_Bits_Definition
  966. * @{
  967. */
  968. /******************************************************************************/
  969. /* Peripheral Registers Bits Definition */
  970. /******************************************************************************/
  971. /******************************************************************************/
  972. /* */
  973. /* Analog to Digital Converter (ADC) */
  974. /* */
  975. /******************************************************************************/
  976. /******************** Bit definition for ADC_ISR register *******************/
  977. #define ADC_ISR_ADRDY_Pos (0U)
  978. #define ADC_ISR_ADRDY_Msk (0x1UL << ADC_ISR_ADRDY_Pos) /*!< 0x00000001 */
  979. #define ADC_ISR_ADRDY ADC_ISR_ADRDY_Msk /*!< ADC ready flag */
  980. #define ADC_ISR_EOSMP_Pos (1U)
  981. #define ADC_ISR_EOSMP_Msk (0x1UL << ADC_ISR_EOSMP_Pos) /*!< 0x00000002 */
  982. #define ADC_ISR_EOSMP ADC_ISR_EOSMP_Msk /*!< ADC group regular end of sampling flag */
  983. #define ADC_ISR_EOC_Pos (2U)
  984. #define ADC_ISR_EOC_Msk (0x1UL << ADC_ISR_EOC_Pos) /*!< 0x00000004 */
  985. #define ADC_ISR_EOC ADC_ISR_EOC_Msk /*!< ADC group regular end of unitary conversion flag */
  986. #define ADC_ISR_EOS_Pos (3U)
  987. #define ADC_ISR_EOS_Msk (0x1UL << ADC_ISR_EOS_Pos) /*!< 0x00000008 */
  988. #define ADC_ISR_EOS ADC_ISR_EOS_Msk /*!< ADC group regular end of sequence conversions flag */
  989. #define ADC_ISR_OVR_Pos (4U)
  990. #define ADC_ISR_OVR_Msk (0x1UL << ADC_ISR_OVR_Pos) /*!< 0x00000010 */
  991. #define ADC_ISR_OVR ADC_ISR_OVR_Msk /*!< ADC group regular overrun flag */
  992. #define ADC_ISR_AWD1_Pos (7U)
  993. #define ADC_ISR_AWD1_Msk (0x1UL << ADC_ISR_AWD1_Pos) /*!< 0x00000080 */
  994. #define ADC_ISR_AWD1 ADC_ISR_AWD1_Msk /*!< ADC analog watchdog 1 flag */
  995. #define ADC_ISR_AWD2_Pos (8U)
  996. #define ADC_ISR_AWD2_Msk (0x1UL << ADC_ISR_AWD2_Pos) /*!< 0x00000100 */
  997. #define ADC_ISR_AWD2 ADC_ISR_AWD2_Msk /*!< ADC analog watchdog 2 flag */
  998. #define ADC_ISR_AWD3_Pos (9U)
  999. #define ADC_ISR_AWD3_Msk (0x1UL << ADC_ISR_AWD3_Pos) /*!< 0x00000200 */
  1000. #define ADC_ISR_AWD3 ADC_ISR_AWD3_Msk /*!< ADC analog watchdog 3 flag */
  1001. #define ADC_ISR_EOCAL_Pos (11U)
  1002. #define ADC_ISR_EOCAL_Msk (0x1UL << ADC_ISR_EOCAL_Pos) /*!< 0x00000800 */
  1003. #define ADC_ISR_EOCAL ADC_ISR_EOCAL_Msk /*!< ADC end of calibration flag */
  1004. #define ADC_ISR_CCRDY_Pos (13U)
  1005. #define ADC_ISR_CCRDY_Msk (0x1UL << ADC_ISR_CCRDY_Pos) /*!< 0x00002000 */
  1006. #define ADC_ISR_CCRDY ADC_ISR_CCRDY_Msk /*!< ADC channel configuration ready flag */
  1007. /* Legacy defines */
  1008. #define ADC_ISR_EOSEQ (ADC_ISR_EOS)
  1009. /******************** Bit definition for ADC_IER register *******************/
  1010. #define ADC_IER_ADRDYIE_Pos (0U)
  1011. #define ADC_IER_ADRDYIE_Msk (0x1UL << ADC_IER_ADRDYIE_Pos) /*!< 0x00000001 */
  1012. #define ADC_IER_ADRDYIE ADC_IER_ADRDYIE_Msk /*!< ADC ready interrupt */
  1013. #define ADC_IER_EOSMPIE_Pos (1U)
  1014. #define ADC_IER_EOSMPIE_Msk (0x1UL << ADC_IER_EOSMPIE_Pos) /*!< 0x00000002 */
  1015. #define ADC_IER_EOSMPIE ADC_IER_EOSMPIE_Msk /*!< ADC group regular end of sampling interrupt */
  1016. #define ADC_IER_EOCIE_Pos (2U)
  1017. #define ADC_IER_EOCIE_Msk (0x1UL << ADC_IER_EOCIE_Pos) /*!< 0x00000004 */
  1018. #define ADC_IER_EOCIE ADC_IER_EOCIE_Msk /*!< ADC group regular end of unitary conversion interrupt */
  1019. #define ADC_IER_EOSIE_Pos (3U)
  1020. #define ADC_IER_EOSIE_Msk (0x1UL << ADC_IER_EOSIE_Pos) /*!< 0x00000008 */
  1021. #define ADC_IER_EOSIE ADC_IER_EOSIE_Msk /*!< ADC group regular end of sequence conversions interrupt */
  1022. #define ADC_IER_OVRIE_Pos (4U)
  1023. #define ADC_IER_OVRIE_Msk (0x1UL << ADC_IER_OVRIE_Pos) /*!< 0x00000010 */
  1024. #define ADC_IER_OVRIE ADC_IER_OVRIE_Msk /*!< ADC group regular overrun interrupt */
  1025. #define ADC_IER_AWD1IE_Pos (7U)
  1026. #define ADC_IER_AWD1IE_Msk (0x1UL << ADC_IER_AWD1IE_Pos) /*!< 0x00000080 */
  1027. #define ADC_IER_AWD1IE ADC_IER_AWD1IE_Msk /*!< ADC analog watchdog 1 interrupt */
  1028. #define ADC_IER_AWD2IE_Pos (8U)
  1029. #define ADC_IER_AWD2IE_Msk (0x1UL << ADC_IER_AWD2IE_Pos) /*!< 0x00000100 */
  1030. #define ADC_IER_AWD2IE ADC_IER_AWD2IE_Msk /*!< ADC analog watchdog 2 interrupt */
  1031. #define ADC_IER_AWD3IE_Pos (9U)
  1032. #define ADC_IER_AWD3IE_Msk (0x1UL << ADC_IER_AWD3IE_Pos) /*!< 0x00000200 */
  1033. #define ADC_IER_AWD3IE ADC_IER_AWD3IE_Msk /*!< ADC analog watchdog 3 interrupt */
  1034. #define ADC_IER_EOCALIE_Pos (11U)
  1035. #define ADC_IER_EOCALIE_Msk (0x1UL << ADC_IER_EOCALIE_Pos) /*!< 0x00000800 */
  1036. #define ADC_IER_EOCALIE ADC_IER_EOCALIE_Msk /*!< ADC end of calibration interrupt */
  1037. #define ADC_IER_CCRDYIE_Pos (13U)
  1038. #define ADC_IER_CCRDYIE_Msk (0x1UL << ADC_IER_CCRDYIE_Pos) /*!< 0x00002000 */
  1039. #define ADC_IER_CCRDYIE ADC_IER_CCRDYIE_Msk /*!< ADC channel configuration ready interrupt */
  1040. /* Legacy defines */
  1041. #define ADC_IER_EOSEQIE (ADC_IER_EOSIE)
  1042. /******************** Bit definition for ADC_CR register ********************/
  1043. #define ADC_CR_ADEN_Pos (0U)
  1044. #define ADC_CR_ADEN_Msk (0x1UL << ADC_CR_ADEN_Pos) /*!< 0x00000001 */
  1045. #define ADC_CR_ADEN ADC_CR_ADEN_Msk /*!< ADC enable */
  1046. #define ADC_CR_ADDIS_Pos (1U)
  1047. #define ADC_CR_ADDIS_Msk (0x1UL << ADC_CR_ADDIS_Pos) /*!< 0x00000002 */
  1048. #define ADC_CR_ADDIS ADC_CR_ADDIS_Msk /*!< ADC disable */
  1049. #define ADC_CR_ADSTART_Pos (2U)
  1050. #define ADC_CR_ADSTART_Msk (0x1UL << ADC_CR_ADSTART_Pos) /*!< 0x00000004 */
  1051. #define ADC_CR_ADSTART ADC_CR_ADSTART_Msk /*!< ADC group regular conversion start */
  1052. #define ADC_CR_ADSTP_Pos (4U)
  1053. #define ADC_CR_ADSTP_Msk (0x1UL << ADC_CR_ADSTP_Pos) /*!< 0x00000010 */
  1054. #define ADC_CR_ADSTP ADC_CR_ADSTP_Msk /*!< ADC group regular conversion stop */
  1055. #define ADC_CR_ADVREGEN_Pos (28U)
  1056. #define ADC_CR_ADVREGEN_Msk (0x1UL << ADC_CR_ADVREGEN_Pos) /*!< 0x10000000 */
  1057. #define ADC_CR_ADVREGEN ADC_CR_ADVREGEN_Msk /*!< ADC voltage regulator enable */
  1058. #define ADC_CR_ADCAL_Pos (31U)
  1059. #define ADC_CR_ADCAL_Msk (0x1UL << ADC_CR_ADCAL_Pos) /*!< 0x80000000 */
  1060. #define ADC_CR_ADCAL ADC_CR_ADCAL_Msk /*!< ADC calibration */
  1061. /******************** Bit definition for ADC_CFGR1 register *****************/
  1062. #define ADC_CFGR1_DMAEN_Pos (0U)
  1063. #define ADC_CFGR1_DMAEN_Msk (0x1UL << ADC_CFGR1_DMAEN_Pos) /*!< 0x00000001 */
  1064. #define ADC_CFGR1_DMAEN ADC_CFGR1_DMAEN_Msk /*!< ADC DMA transfer enable */
  1065. #define ADC_CFGR1_DMACFG_Pos (1U)
  1066. #define ADC_CFGR1_DMACFG_Msk (0x1UL << ADC_CFGR1_DMACFG_Pos) /*!< 0x00000002 */
  1067. #define ADC_CFGR1_DMACFG ADC_CFGR1_DMACFG_Msk /*!< ADC DMA transfer configuration */
  1068. #define ADC_CFGR1_SCANDIR_Pos (2U)
  1069. #define ADC_CFGR1_SCANDIR_Msk (0x1UL << ADC_CFGR1_SCANDIR_Pos) /*!< 0x00000004 */
  1070. #define ADC_CFGR1_SCANDIR ADC_CFGR1_SCANDIR_Msk /*!< ADC group regular sequencer scan direction */
  1071. #define ADC_CFGR1_RES_Pos (3U)
  1072. #define ADC_CFGR1_RES_Msk (0x3UL << ADC_CFGR1_RES_Pos) /*!< 0x00000018 */
  1073. #define ADC_CFGR1_RES ADC_CFGR1_RES_Msk /*!< ADC data resolution */
  1074. #define ADC_CFGR1_RES_0 (0x1U << ADC_CFGR1_RES_Pos) /*!< 0x00000008 */
  1075. #define ADC_CFGR1_RES_1 (0x2U << ADC_CFGR1_RES_Pos) /*!< 0x00000010 */
  1076. #define ADC_CFGR1_ALIGN_Pos (5U)
  1077. #define ADC_CFGR1_ALIGN_Msk (0x1UL << ADC_CFGR1_ALIGN_Pos) /*!< 0x00000020 */
  1078. #define ADC_CFGR1_ALIGN ADC_CFGR1_ALIGN_Msk /*!< ADC data alignment */
  1079. #define ADC_CFGR1_EXTSEL_Pos (6U)
  1080. #define ADC_CFGR1_EXTSEL_Msk (0x7UL << ADC_CFGR1_EXTSEL_Pos) /*!< 0x000001C0 */
  1081. #define ADC_CFGR1_EXTSEL ADC_CFGR1_EXTSEL_Msk /*!< ADC group regular external trigger source */
  1082. #define ADC_CFGR1_EXTSEL_0 (0x1UL << ADC_CFGR1_EXTSEL_Pos) /*!< 0x00000040 */
  1083. #define ADC_CFGR1_EXTSEL_1 (0x2UL << ADC_CFGR1_EXTSEL_Pos) /*!< 0x00000080 */
  1084. #define ADC_CFGR1_EXTSEL_2 (0x4UL << ADC_CFGR1_EXTSEL_Pos) /*!< 0x00000100 */
  1085. #define ADC_CFGR1_EXTEN_Pos (10U)
  1086. #define ADC_CFGR1_EXTEN_Msk (0x3UL << ADC_CFGR1_EXTEN_Pos) /*!< 0x00000C00 */
  1087. #define ADC_CFGR1_EXTEN ADC_CFGR1_EXTEN_Msk /*!< ADC group regular external trigger polarity */
  1088. #define ADC_CFGR1_EXTEN_0 (0x1UL << ADC_CFGR1_EXTEN_Pos) /*!< 0x00000400 */
  1089. #define ADC_CFGR1_EXTEN_1 (0x2UL << ADC_CFGR1_EXTEN_Pos) /*!< 0x00000800 */
  1090. #define ADC_CFGR1_OVRMOD_Pos (12U)
  1091. #define ADC_CFGR1_OVRMOD_Msk (0x1UL << ADC_CFGR1_OVRMOD_Pos) /*!< 0x00001000 */
  1092. #define ADC_CFGR1_OVRMOD ADC_CFGR1_OVRMOD_Msk /*!< ADC group regular overrun configuration */
  1093. #define ADC_CFGR1_CONT_Pos (13U)
  1094. #define ADC_CFGR1_CONT_Msk (0x1UL << ADC_CFGR1_CONT_Pos) /*!< 0x00002000 */
  1095. #define ADC_CFGR1_CONT ADC_CFGR1_CONT_Msk /*!< ADC group regular continuous conversion mode */
  1096. #define ADC_CFGR1_WAIT_Pos (14U)
  1097. #define ADC_CFGR1_WAIT_Msk (0x1UL << ADC_CFGR1_WAIT_Pos) /*!< 0x00004000 */
  1098. #define ADC_CFGR1_WAIT ADC_CFGR1_WAIT_Msk /*!< ADC low power auto wait */
  1099. #define ADC_CFGR1_AUTOFF_Pos (15U)
  1100. #define ADC_CFGR1_AUTOFF_Msk (0x1UL << ADC_CFGR1_AUTOFF_Pos) /*!< 0x00008000 */
  1101. #define ADC_CFGR1_AUTOFF ADC_CFGR1_AUTOFF_Msk /*!< ADC low power auto power off */
  1102. #define ADC_CFGR1_DISCEN_Pos (16U)
  1103. #define ADC_CFGR1_DISCEN_Msk (0x1UL << ADC_CFGR1_DISCEN_Pos) /*!< 0x00010000 */
  1104. #define ADC_CFGR1_DISCEN ADC_CFGR1_DISCEN_Msk /*!< ADC group regular sequencer discontinuous mode */
  1105. #define ADC_CFGR1_CHSELRMOD_Pos (21U)
  1106. #define ADC_CFGR1_CHSELRMOD_Msk (0x1UL << ADC_CFGR1_CHSELRMOD_Pos) /*!< 0x00200000 */
  1107. #define ADC_CFGR1_CHSELRMOD ADC_CFGR1_CHSELRMOD_Msk /*!< ADC group regular sequencer mode */
  1108. #define ADC_CFGR1_AWD1SGL_Pos (22U)
  1109. #define ADC_CFGR1_AWD1SGL_Msk (0x1UL << ADC_CFGR1_AWD1SGL_Pos) /*!< 0x00400000 */
  1110. #define ADC_CFGR1_AWD1SGL ADC_CFGR1_AWD1SGL_Msk /*!< ADC analog watchdog 1 monitoring a single channel or all channels */
  1111. #define ADC_CFGR1_AWD1EN_Pos (23U)
  1112. #define ADC_CFGR1_AWD1EN_Msk (0x1UL << ADC_CFGR1_AWD1EN_Pos) /*!< 0x00800000 */
  1113. #define ADC_CFGR1_AWD1EN ADC_CFGR1_AWD1EN_Msk /*!< ADC analog watchdog 1 enable on scope ADC group regular */
  1114. #define ADC_CFGR1_AWD1CH_Pos (26U)
  1115. #define ADC_CFGR1_AWD1CH_Msk (0x1FUL << ADC_CFGR1_AWD1CH_Pos) /*!< 0x7C000000 */
  1116. #define ADC_CFGR1_AWD1CH ADC_CFGR1_AWD1CH_Msk /*!< ADC analog watchdog 1 monitored channel selection */
  1117. #define ADC_CFGR1_AWD1CH_0 (0x01UL << ADC_CFGR1_AWD1CH_Pos) /*!< 0x04000000 */
  1118. #define ADC_CFGR1_AWD1CH_1 (0x02UL << ADC_CFGR1_AWD1CH_Pos) /*!< 0x08000000 */
  1119. #define ADC_CFGR1_AWD1CH_2 (0x04UL << ADC_CFGR1_AWD1CH_Pos) /*!< 0x10000000 */
  1120. #define ADC_CFGR1_AWD1CH_3 (0x08UL << ADC_CFGR1_AWD1CH_Pos) /*!< 0x20000000 */
  1121. #define ADC_CFGR1_AWD1CH_4 (0x10UL << ADC_CFGR1_AWD1CH_Pos) /*!< 0x40000000 */
  1122. /* Legacy defines */
  1123. #define ADC_CFGR1_AUTDLY (ADC_CFGR1_WAIT)
  1124. /******************** Bit definition for ADC_CFGR2 register *****************/
  1125. #define ADC_CFGR2_OVSE_Pos (0U)
  1126. #define ADC_CFGR2_OVSE_Msk (0x1UL << ADC_CFGR2_OVSE_Pos) /*!< 0x00000001 */
  1127. #define ADC_CFGR2_OVSE ADC_CFGR2_OVSE_Msk /*!< ADC oversampler enable on scope ADC group regular */
  1128. #define ADC_CFGR2_OVSR_Pos (2U)
  1129. #define ADC_CFGR2_OVSR_Msk (0x7UL << ADC_CFGR2_OVSR_Pos) /*!< 0x0000001C */
  1130. #define ADC_CFGR2_OVSR ADC_CFGR2_OVSR_Msk /*!< ADC oversampling ratio */
  1131. #define ADC_CFGR2_OVSR_0 (0x1UL << ADC_CFGR2_OVSR_Pos) /*!< 0x00000004 */
  1132. #define ADC_CFGR2_OVSR_1 (0x2UL << ADC_CFGR2_OVSR_Pos) /*!< 0x00000008 */
  1133. #define ADC_CFGR2_OVSR_2 (0x4UL << ADC_CFGR2_OVSR_Pos) /*!< 0x00000010 */
  1134. #define ADC_CFGR2_OVSS_Pos (5U)
  1135. #define ADC_CFGR2_OVSS_Msk (0xFUL << ADC_CFGR2_OVSS_Pos) /*!< 0x000001E0 */
  1136. #define ADC_CFGR2_OVSS ADC_CFGR2_OVSS_Msk /*!< ADC oversampling shift */
  1137. #define ADC_CFGR2_OVSS_0 (0x1UL << ADC_CFGR2_OVSS_Pos) /*!< 0x00000020 */
  1138. #define ADC_CFGR2_OVSS_1 (0x2UL << ADC_CFGR2_OVSS_Pos) /*!< 0x00000040 */
  1139. #define ADC_CFGR2_OVSS_2 (0x4UL << ADC_CFGR2_OVSS_Pos) /*!< 0x00000080 */
  1140. #define ADC_CFGR2_OVSS_3 (0x8UL << ADC_CFGR2_OVSS_Pos) /*!< 0x00000100 */
  1141. #define ADC_CFGR2_TOVS_Pos (9U)
  1142. #define ADC_CFGR2_TOVS_Msk (0x1UL << ADC_CFGR2_TOVS_Pos) /*!< 0x00000200 */
  1143. #define ADC_CFGR2_TOVS ADC_CFGR2_TOVS_Msk /*!< ADC oversampling discontinuous mode (triggered mode) for ADC group regular */
  1144. #define ADC_CFGR2_LFTRIG_Pos (29U)
  1145. #define ADC_CFGR2_LFTRIG_Msk (0x1UL << ADC_CFGR2_LFTRIG_Pos) /*!< 0x20000000 */
  1146. #define ADC_CFGR2_LFTRIG ADC_CFGR2_LFTRIG_Msk /*!< ADC low frequency trigger mode */
  1147. #define ADC_CFGR2_CKMODE_Pos (30U)
  1148. #define ADC_CFGR2_CKMODE_Msk (0x3UL << ADC_CFGR2_CKMODE_Pos) /*!< 0xC0000000 */
  1149. #define ADC_CFGR2_CKMODE ADC_CFGR2_CKMODE_Msk /*!< ADC clock source and prescaler (prescaler only for clock source synchronous) */
  1150. #define ADC_CFGR2_CKMODE_1 (0x2UL << ADC_CFGR2_CKMODE_Pos) /*!< 0x80000000 */
  1151. #define ADC_CFGR2_CKMODE_0 (0x1UL << ADC_CFGR2_CKMODE_Pos) /*!< 0x40000000 */
  1152. /******************** Bit definition for ADC_SMPR register ******************/
  1153. #define ADC_SMPR_SMP1_Pos (0U)
  1154. #define ADC_SMPR_SMP1_Msk (0x7UL << ADC_SMPR_SMP1_Pos) /*!< 0x00000007 */
  1155. #define ADC_SMPR_SMP1 ADC_SMPR_SMP1_Msk /*!< ADC group of channels sampling time 1 */
  1156. #define ADC_SMPR_SMP1_0 (0x1UL << ADC_SMPR_SMP1_Pos) /*!< 0x00000001 */
  1157. #define ADC_SMPR_SMP1_1 (0x2UL << ADC_SMPR_SMP1_Pos) /*!< 0x00000002 */
  1158. #define ADC_SMPR_SMP1_2 (0x4UL << ADC_SMPR_SMP1_Pos) /*!< 0x00000004 */
  1159. #define ADC_SMPR_SMP2_Pos (4U)
  1160. #define ADC_SMPR_SMP2_Msk (0x7UL << ADC_SMPR_SMP2_Pos) /*!< 0x00000070 */
  1161. #define ADC_SMPR_SMP2 ADC_SMPR_SMP2_Msk /*!< ADC group of channels sampling time 2 */
  1162. #define ADC_SMPR_SMP2_0 (0x1UL << ADC_SMPR_SMP2_Pos) /*!< 0x00000010 */
  1163. #define ADC_SMPR_SMP2_1 (0x2UL << ADC_SMPR_SMP2_Pos) /*!< 0x00000020 */
  1164. #define ADC_SMPR_SMP2_2 (0x4UL << ADC_SMPR_SMP2_Pos) /*!< 0x00000040 */
  1165. #define ADC_SMPR_SMPSEL_Pos (8U)
  1166. #define ADC_SMPR_SMPSEL_Msk (0x7FFFFUL << ADC_SMPR_SMPSEL_Pos) /*!< 0x07FFFF00 */
  1167. #define ADC_SMPR_SMPSEL ADC_SMPR_SMPSEL_Msk /*!< ADC all channels sampling time selection */
  1168. #define ADC_SMPR_SMPSEL0_Pos (8U)
  1169. #define ADC_SMPR_SMPSEL0_Msk (0x1UL << ADC_SMPR_SMPSEL0_Pos) /*!< 0x00000100 */
  1170. #define ADC_SMPR_SMPSEL0 ADC_SMPR_SMPSEL0_Msk /*!< ADC channel 0 sampling time selection */
  1171. #define ADC_SMPR_SMPSEL1_Pos (9U)
  1172. #define ADC_SMPR_SMPSEL1_Msk (0x1UL << ADC_SMPR_SMPSEL1_Pos) /*!< 0x00000200 */
  1173. #define ADC_SMPR_SMPSEL1 ADC_SMPR_SMPSEL1_Msk /*!< ADC channel 1 sampling time selection */
  1174. #define ADC_SMPR_SMPSEL2_Pos (10U)
  1175. #define ADC_SMPR_SMPSEL2_Msk (0x1UL << ADC_SMPR_SMPSEL2_Pos) /*!< 0x00000400 */
  1176. #define ADC_SMPR_SMPSEL2 ADC_SMPR_SMPSEL2_Msk /*!< ADC channel 2 sampling time selection */
  1177. #define ADC_SMPR_SMPSEL3_Pos (11U)
  1178. #define ADC_SMPR_SMPSEL3_Msk (0x1UL << ADC_SMPR_SMPSEL3_Pos) /*!< 0x00000800 */
  1179. #define ADC_SMPR_SMPSEL3 ADC_SMPR_SMPSEL3_Msk /*!< ADC channel 3 sampling time selection */
  1180. #define ADC_SMPR_SMPSEL4_Pos (12U)
  1181. #define ADC_SMPR_SMPSEL4_Msk (0x1UL << ADC_SMPR_SMPSEL4_Pos) /*!< 0x00001000 */
  1182. #define ADC_SMPR_SMPSEL4 ADC_SMPR_SMPSEL4_Msk /*!< ADC channel 4 sampling time selection */
  1183. #define ADC_SMPR_SMPSEL5_Pos (13U)
  1184. #define ADC_SMPR_SMPSEL5_Msk (0x1UL << ADC_SMPR_SMPSEL5_Pos) /*!< 0x00002000 */
  1185. #define ADC_SMPR_SMPSEL5 ADC_SMPR_SMPSEL5_Msk /*!< ADC channel 5 sampling time selection */
  1186. #define ADC_SMPR_SMPSEL6_Pos (14U)
  1187. #define ADC_SMPR_SMPSEL6_Msk (0x1UL << ADC_SMPR_SMPSEL6_Pos) /*!< 0x00004000 */
  1188. #define ADC_SMPR_SMPSEL6 ADC_SMPR_SMPSEL6_Msk /*!< ADC channel 6 sampling time selection */
  1189. #define ADC_SMPR_SMPSEL7_Pos (15U)
  1190. #define ADC_SMPR_SMPSEL7_Msk (0x1UL << ADC_SMPR_SMPSEL7_Pos) /*!< 0x00008000 */
  1191. #define ADC_SMPR_SMPSEL7 ADC_SMPR_SMPSEL7_Msk /*!< ADC channel 7 sampling time selection */
  1192. #define ADC_SMPR_SMPSEL8_Pos (16U)
  1193. #define ADC_SMPR_SMPSEL8_Msk (0x1UL << ADC_SMPR_SMPSEL8_Pos) /*!< 0x00010000 */
  1194. #define ADC_SMPR_SMPSEL8 ADC_SMPR_SMPSEL8_Msk /*!< ADC channel 8 sampling time selection */
  1195. #define ADC_SMPR_SMPSEL9_Pos (17U)
  1196. #define ADC_SMPR_SMPSEL9_Msk (0x1UL << ADC_SMPR_SMPSEL9_Pos) /*!< 0x00020000 */
  1197. #define ADC_SMPR_SMPSEL9 ADC_SMPR_SMPSEL9_Msk /*!< ADC channel 9 sampling time selection */
  1198. #define ADC_SMPR_SMPSEL10_Pos (18U)
  1199. #define ADC_SMPR_SMPSEL10_Msk (0x1UL << ADC_SMPR_SMPSEL10_Pos) /*!< 0x00040000 */
  1200. #define ADC_SMPR_SMPSEL10 ADC_SMPR_SMPSEL10_Msk /*!< ADC channel 10 sampling time selection */
  1201. #define ADC_SMPR_SMPSEL11_Pos (19U)
  1202. #define ADC_SMPR_SMPSEL11_Msk (0x1UL << ADC_SMPR_SMPSEL11_Pos) /*!< 0x00080000 */
  1203. #define ADC_SMPR_SMPSEL11 ADC_SMPR_SMPSEL11_Msk /*!< ADC channel 11 sampling time selection */
  1204. #define ADC_SMPR_SMPSEL12_Pos (20U)
  1205. #define ADC_SMPR_SMPSEL12_Msk (0x1UL << ADC_SMPR_SMPSEL12_Pos) /*!< 0x00100000 */
  1206. #define ADC_SMPR_SMPSEL12 ADC_SMPR_SMPSEL12_Msk /*!< ADC channel 12 sampling time selection */
  1207. #define ADC_SMPR_SMPSEL13_Pos (21U)
  1208. #define ADC_SMPR_SMPSEL13_Msk (0x1UL << ADC_SMPR_SMPSEL13_Pos) /*!< 0x00200000 */
  1209. #define ADC_SMPR_SMPSEL13 ADC_SMPR_SMPSEL13_Msk /*!< ADC channel 13 sampling time selection */
  1210. #define ADC_SMPR_SMPSEL14_Pos (22U)
  1211. #define ADC_SMPR_SMPSEL14_Msk (0x1UL << ADC_SMPR_SMPSEL14_Pos) /*!< 0x00400000 */
  1212. #define ADC_SMPR_SMPSEL14 ADC_SMPR_SMPSEL14_Msk /*!< ADC channel 14 sampling time selection */
  1213. #define ADC_SMPR_SMPSEL15_Pos (23U)
  1214. #define ADC_SMPR_SMPSEL15_Msk (0x1UL << ADC_SMPR_SMPSEL15_Pos) /*!< 0x00800000 */
  1215. #define ADC_SMPR_SMPSEL15 ADC_SMPR_SMPSEL15_Msk /*!< ADC channel 15 sampling time selection */
  1216. #define ADC_SMPR_SMPSEL16_Pos (24U)
  1217. #define ADC_SMPR_SMPSEL16_Msk (0x1UL << ADC_SMPR_SMPSEL16_Pos) /*!< 0x01000000 */
  1218. #define ADC_SMPR_SMPSEL16 ADC_SMPR_SMPSEL16_Msk /*!< ADC channel 16 sampling time selection */
  1219. #define ADC_SMPR_SMPSEL17_Pos (25U)
  1220. #define ADC_SMPR_SMPSEL17_Msk (0x1UL << ADC_SMPR_SMPSEL17_Pos) /*!< 0x02000000 */
  1221. #define ADC_SMPR_SMPSEL17 ADC_SMPR_SMPSEL17_Msk /*!< ADC channel 17 sampling time selection */
  1222. #define ADC_SMPR_SMPSEL18_Pos (26U)
  1223. #define ADC_SMPR_SMPSEL18_Msk (0x1UL << ADC_SMPR_SMPSEL18_Pos) /*!< 0x04000000 */
  1224. #define ADC_SMPR_SMPSEL18 ADC_SMPR_SMPSEL18_Msk /*!< ADC channel 18 sampling time selection */
  1225. /******************** Bit definition for ADC_AWD1TR register *******************/
  1226. #define ADC_AWD1TR_LT1_Pos (0U)
  1227. #define ADC_AWD1TR_LT1_Msk (0xFFFUL << ADC_AWD1TR_LT1_Pos) /*!< 0x00000FFF */
  1228. #define ADC_AWD1TR_LT1 ADC_AWD1TR_LT1_Msk /*!< ADC analog watchdog 1 threshold low */
  1229. #define ADC_AWD1TR_LT1_0 (0x001UL << ADC_AWD1TR_LT1_Pos) /*!< 0x00000001 */
  1230. #define ADC_AWD1TR_LT1_1 (0x002UL << ADC_AWD1TR_LT1_Pos) /*!< 0x00000002 */
  1231. #define ADC_AWD1TR_LT1_2 (0x004UL << ADC_AWD1TR_LT1_Pos) /*!< 0x00000004 */
  1232. #define ADC_AWD1TR_LT1_3 (0x008UL << ADC_AWD1TR_LT1_Pos) /*!< 0x00000008 */
  1233. #define ADC_AWD1TR_LT1_4 (0x010UL << ADC_AWD1TR_LT1_Pos) /*!< 0x00000010 */
  1234. #define ADC_AWD1TR_LT1_5 (0x020UL << ADC_AWD1TR_LT1_Pos) /*!< 0x00000020 */
  1235. #define ADC_AWD1TR_LT1_6 (0x040UL << ADC_AWD1TR_LT1_Pos) /*!< 0x00000040 */
  1236. #define ADC_AWD1TR_LT1_7 (0x080UL << ADC_AWD1TR_LT1_Pos) /*!< 0x00000080 */
  1237. #define ADC_AWD1TR_LT1_8 (0x100UL << ADC_AWD1TR_LT1_Pos) /*!< 0x00000100 */
  1238. #define ADC_AWD1TR_LT1_9 (0x200UL << ADC_AWD1TR_LT1_Pos) /*!< 0x00000200 */
  1239. #define ADC_AWD1TR_LT1_10 (0x400UL << ADC_AWD1TR_LT1_Pos) /*!< 0x00000400 */
  1240. #define ADC_AWD1TR_LT1_11 (0x800UL << ADC_AWD1TR_LT1_Pos) /*!< 0x00000800 */
  1241. #define ADC_AWD1TR_HT1_Pos (16U)
  1242. #define ADC_AWD1TR_HT1_Msk (0xFFFUL << ADC_AWD1TR_HT1_Pos) /*!< 0x0FFF0000 */
  1243. #define ADC_AWD1TR_HT1 ADC_AWD1TR_HT1_Msk /*!< ADC Analog watchdog 1 threshold high */
  1244. #define ADC_AWD1TR_HT1_0 (0x001UL << ADC_AWD1TR_HT1_Pos) /*!< 0x00010000 */
  1245. #define ADC_AWD1TR_HT1_1 (0x002UL << ADC_AWD1TR_HT1_Pos) /*!< 0x00020000 */
  1246. #define ADC_AWD1TR_HT1_2 (0x004UL << ADC_AWD1TR_HT1_Pos) /*!< 0x00040000 */
  1247. #define ADC_AWD1TR_HT1_3 (0x008UL << ADC_AWD1TR_HT1_Pos) /*!< 0x00080000 */
  1248. #define ADC_AWD1TR_HT1_4 (0x010UL << ADC_AWD1TR_HT1_Pos) /*!< 0x00100000 */
  1249. #define ADC_AWD1TR_HT1_5 (0x020UL << ADC_AWD1TR_HT1_Pos) /*!< 0x00200000 */
  1250. #define ADC_AWD1TR_HT1_6 (0x040UL << ADC_AWD1TR_HT1_Pos) /*!< 0x00400000 */
  1251. #define ADC_AWD1TR_HT1_7 (0x080UL << ADC_AWD1TR_HT1_Pos) /*!< 0x00800000 */
  1252. #define ADC_AWD1TR_HT1_8 (0x100UL << ADC_AWD1TR_HT1_Pos) /*!< 0x01000000 */
  1253. #define ADC_AWD1TR_HT1_9 (0x200UL << ADC_AWD1TR_HT1_Pos) /*!< 0x02000000 */
  1254. #define ADC_AWD1TR_HT1_10 (0x400UL << ADC_AWD1TR_HT1_Pos) /*!< 0x04000000 */
  1255. #define ADC_AWD1TR_HT1_11 (0x800UL << ADC_AWD1TR_HT1_Pos) /*!< 0x08000000 */
  1256. /* Legacy definitions */
  1257. #define ADC_TR1_LT1 ADC_AWD1TR_LT1
  1258. #define ADC_TR1_LT1_0 ADC_AWD1TR_LT1_0
  1259. #define ADC_TR1_LT1_1 ADC_AWD1TR_LT1_1
  1260. #define ADC_TR1_LT1_2 ADC_AWD1TR_LT1_2
  1261. #define ADC_TR1_LT1_3 ADC_AWD1TR_LT1_3
  1262. #define ADC_TR1_LT1_4 ADC_AWD1TR_LT1_4
  1263. #define ADC_TR1_LT1_5 ADC_AWD1TR_LT1_5
  1264. #define ADC_TR1_LT1_6 ADC_AWD1TR_LT1_6
  1265. #define ADC_TR1_LT1_7 ADC_AWD1TR_LT1_7
  1266. #define ADC_TR1_LT1_8 ADC_AWD1TR_LT1_8
  1267. #define ADC_TR1_LT1_9 ADC_AWD1TR_LT1_9
  1268. #define ADC_TR1_LT1_10 ADC_AWD1TR_LT1_10
  1269. #define ADC_TR1_LT1_11 ADC_AWD1TR_LT1_11
  1270. #define ADC_TR1_HT1 ADC_AWD1TR_HT1
  1271. #define ADC_TR1_HT1_0 ADC_AWD1TR_HT1_0
  1272. #define ADC_TR1_HT1_1 ADC_AWD1TR_HT1_1
  1273. #define ADC_TR1_HT1_2 ADC_AWD1TR_HT1_2
  1274. #define ADC_TR1_HT1_3 ADC_AWD1TR_HT1_3
  1275. #define ADC_TR1_HT1_4 ADC_AWD1TR_HT1_4
  1276. #define ADC_TR1_HT1_5 ADC_AWD1TR_HT1_5
  1277. #define ADC_TR1_HT1_6 ADC_AWD1TR_HT1_6
  1278. #define ADC_TR1_HT1_7 ADC_AWD1TR_HT1_7
  1279. #define ADC_TR1_HT1_8 ADC_AWD1TR_HT1_8
  1280. #define ADC_TR1_HT1_9 ADC_AWD1TR_HT1_9
  1281. #define ADC_TR1_HT1_10 ADC_AWD1TR_HT1_10
  1282. #define ADC_TR1_HT1_11 ADC_AWD1TR_HT1_11
  1283. /******************** Bit definition for ADC_AWD2TR register *******************/
  1284. #define ADC_AWD2TR_LT2_Pos (0U)
  1285. #define ADC_AWD2TR_LT2_Msk (0xFFFUL << ADC_AWD2TR_LT2_Pos) /*!< 0x00000FFF */
  1286. #define ADC_AWD2TR_LT2 ADC_AWD2TR_LT2_Msk /*!< ADC analog watchdog 2 threshold low */
  1287. #define ADC_AWD2TR_LT2_0 (0x001UL << ADC_AWD2TR_LT2_Pos) /*!< 0x00000001 */
  1288. #define ADC_AWD2TR_LT2_1 (0x002UL << ADC_AWD2TR_LT2_Pos) /*!< 0x00000002 */
  1289. #define ADC_AWD2TR_LT2_2 (0x004UL << ADC_AWD2TR_LT2_Pos) /*!< 0x00000004 */
  1290. #define ADC_AWD2TR_LT2_3 (0x008UL << ADC_AWD2TR_LT2_Pos) /*!< 0x00000008 */
  1291. #define ADC_AWD2TR_LT2_4 (0x010UL << ADC_AWD2TR_LT2_Pos) /*!< 0x00000010 */
  1292. #define ADC_AWD2TR_LT2_5 (0x020UL << ADC_AWD2TR_LT2_Pos) /*!< 0x00000020 */
  1293. #define ADC_AWD2TR_LT2_6 (0x040UL << ADC_AWD2TR_LT2_Pos) /*!< 0x00000040 */
  1294. #define ADC_AWD2TR_LT2_7 (0x080UL << ADC_AWD2TR_LT2_Pos) /*!< 0x00000080 */
  1295. #define ADC_AWD2TR_LT2_8 (0x100UL << ADC_AWD2TR_LT2_Pos) /*!< 0x00000100 */
  1296. #define ADC_AWD2TR_LT2_9 (0x200UL << ADC_AWD2TR_LT2_Pos) /*!< 0x00000200 */
  1297. #define ADC_AWD2TR_LT2_10 (0x400UL << ADC_AWD2TR_LT2_Pos) /*!< 0x00000400 */
  1298. #define ADC_AWD2TR_LT2_11 (0x800UL << ADC_AWD2TR_LT2_Pos) /*!< 0x00000800 */
  1299. #define ADC_AWD2TR_HT2_Pos (16U)
  1300. #define ADC_AWD2TR_HT2_Msk (0xFFFUL << ADC_AWD2TR_HT2_Pos) /*!< 0x0FFF0000 */
  1301. #define ADC_AWD2TR_HT2 ADC_AWD2TR_HT2_Msk /*!< ADC analog watchdog 2 threshold high */
  1302. #define ADC_AWD2TR_HT2_0 (0x001UL << ADC_AWD2TR_HT2_Pos) /*!< 0x00010000 */
  1303. #define ADC_AWD2TR_HT2_1 (0x002UL << ADC_AWD2TR_HT2_Pos) /*!< 0x00020000 */
  1304. #define ADC_AWD2TR_HT2_2 (0x004UL << ADC_AWD2TR_HT2_Pos) /*!< 0x00040000 */
  1305. #define ADC_AWD2TR_HT2_3 (0x008UL << ADC_AWD2TR_HT2_Pos) /*!< 0x00080000 */
  1306. #define ADC_AWD2TR_HT2_4 (0x010UL << ADC_AWD2TR_HT2_Pos) /*!< 0x00100000 */
  1307. #define ADC_AWD2TR_HT2_5 (0x020UL << ADC_AWD2TR_HT2_Pos) /*!< 0x00200000 */
  1308. #define ADC_AWD2TR_HT2_6 (0x040UL << ADC_AWD2TR_HT2_Pos) /*!< 0x00400000 */
  1309. #define ADC_AWD2TR_HT2_7 (0x080UL << ADC_AWD2TR_HT2_Pos) /*!< 0x00800000 */
  1310. #define ADC_AWD2TR_HT2_8 (0x100UL << ADC_AWD2TR_HT2_Pos) /*!< 0x01000000 */
  1311. #define ADC_AWD2TR_HT2_9 (0x200UL << ADC_AWD2TR_HT2_Pos) /*!< 0x02000000 */
  1312. #define ADC_AWD2TR_HT2_10 (0x400UL << ADC_AWD2TR_HT2_Pos) /*!< 0x04000000 */
  1313. #define ADC_AWD2TR_HT2_11 (0x800UL << ADC_AWD2TR_HT2_Pos) /*!< 0x08000000 */
  1314. /* Legacy definitions */
  1315. #define ADC_TR2_LT2 ADC_AWD2TR_LT2
  1316. #define ADC_TR2_LT2_0 ADC_AWD2TR_LT2_0
  1317. #define ADC_TR2_LT2_1 ADC_AWD2TR_LT2_1
  1318. #define ADC_TR2_LT2_2 ADC_AWD2TR_LT2_2
  1319. #define ADC_TR2_LT2_3 ADC_AWD2TR_LT2_3
  1320. #define ADC_TR2_LT2_4 ADC_AWD2TR_LT2_4
  1321. #define ADC_TR2_LT2_5 ADC_AWD2TR_LT2_5
  1322. #define ADC_TR2_LT2_6 ADC_AWD2TR_LT2_6
  1323. #define ADC_TR2_LT2_7 ADC_AWD2TR_LT2_7
  1324. #define ADC_TR2_LT2_8 ADC_AWD2TR_LT2_8
  1325. #define ADC_TR2_LT2_9 ADC_AWD2TR_LT2_9
  1326. #define ADC_TR2_LT2_10 ADC_AWD2TR_LT2_10
  1327. #define ADC_TR2_LT2_11 ADC_AWD2TR_LT2_11
  1328. #define ADC_TR2_HT2 ADC_AWD2TR_HT2
  1329. #define ADC_TR2_HT2_0 ADC_AWD2TR_HT2_0
  1330. #define ADC_TR2_HT2_1 ADC_AWD2TR_HT2_1
  1331. #define ADC_TR2_HT2_2 ADC_AWD2TR_HT2_2
  1332. #define ADC_TR2_HT2_3 ADC_AWD2TR_HT2_3
  1333. #define ADC_TR2_HT2_4 ADC_AWD2TR_HT2_4
  1334. #define ADC_TR2_HT2_5 ADC_AWD2TR_HT2_5
  1335. #define ADC_TR2_HT2_6 ADC_AWD2TR_HT2_6
  1336. #define ADC_TR2_HT2_7 ADC_AWD2TR_HT2_7
  1337. #define ADC_TR2_HT2_8 ADC_AWD2TR_HT2_8
  1338. #define ADC_TR2_HT2_9 ADC_AWD2TR_HT2_9
  1339. #define ADC_TR2_HT2_10 ADC_AWD2TR_HT2_10
  1340. #define ADC_TR2_HT2_11 ADC_AWD2TR_HT2_11
  1341. /******************** Bit definition for ADC_CHSELR register ****************/
  1342. #define ADC_CHSELR_CHSEL_Pos (0U)
  1343. #define ADC_CHSELR_CHSEL_Msk (0x7FFFFUL << ADC_CHSELR_CHSEL_Pos) /*!< 0x0007FFFF */
  1344. #define ADC_CHSELR_CHSEL ADC_CHSELR_CHSEL_Msk /*!< ADC group regular sequencer channels, available when ADC_CFGR1_CHSELRMOD is reset */
  1345. #define ADC_CHSELR_CHSEL18_Pos (18U)
  1346. #define ADC_CHSELR_CHSEL18_Msk (0x1UL << ADC_CHSELR_CHSEL18_Pos) /*!< 0x00040000 */
  1347. #define ADC_CHSELR_CHSEL18 ADC_CHSELR_CHSEL18_Msk /*!< ADC group regular sequencer channel 18, available when ADC_CFGR1_CHSELRMOD is reset */
  1348. #define ADC_CHSELR_CHSEL17_Pos (17U)
  1349. #define ADC_CHSELR_CHSEL17_Msk (0x1UL << ADC_CHSELR_CHSEL17_Pos) /*!< 0x00020000 */
  1350. #define ADC_CHSELR_CHSEL17 ADC_CHSELR_CHSEL17_Msk /*!< ADC group regular sequencer channel 17, available when ADC_CFGR1_CHSELRMOD is reset */
  1351. #define ADC_CHSELR_CHSEL16_Pos (16U)
  1352. #define ADC_CHSELR_CHSEL16_Msk (0x1UL << ADC_CHSELR_CHSEL16_Pos) /*!< 0x00010000 */
  1353. #define ADC_CHSELR_CHSEL16 ADC_CHSELR_CHSEL16_Msk /*!< ADC group regular sequencer channel 16, available when ADC_CFGR1_CHSELRMOD is reset */
  1354. #define ADC_CHSELR_CHSEL15_Pos (15U)
  1355. #define ADC_CHSELR_CHSEL15_Msk (0x1UL << ADC_CHSELR_CHSEL15_Pos) /*!< 0x00008000 */
  1356. #define ADC_CHSELR_CHSEL15 ADC_CHSELR_CHSEL15_Msk /*!< ADC group regular sequencer channel 15, available when ADC_CFGR1_CHSELRMOD is reset */
  1357. #define ADC_CHSELR_CHSEL14_Pos (14U)
  1358. #define ADC_CHSELR_CHSEL14_Msk (0x1UL << ADC_CHSELR_CHSEL14_Pos) /*!< 0x00004000 */
  1359. #define ADC_CHSELR_CHSEL14 ADC_CHSELR_CHSEL14_Msk /*!< ADC group regular sequencer channel 14, available when ADC_CFGR1_CHSELRMOD is reset */
  1360. #define ADC_CHSELR_CHSEL13_Pos (13U)
  1361. #define ADC_CHSELR_CHSEL13_Msk (0x1UL << ADC_CHSELR_CHSEL13_Pos) /*!< 0x00002000 */
  1362. #define ADC_CHSELR_CHSEL13 ADC_CHSELR_CHSEL13_Msk /*!< ADC group regular sequencer channel 13, available when ADC_CFGR1_CHSELRMOD is reset */
  1363. #define ADC_CHSELR_CHSEL12_Pos (12U)
  1364. #define ADC_CHSELR_CHSEL12_Msk (0x1UL << ADC_CHSELR_CHSEL12_Pos) /*!< 0x00001000 */
  1365. #define ADC_CHSELR_CHSEL12 ADC_CHSELR_CHSEL12_Msk /*!< ADC group regular sequencer channel 12, available when ADC_CFGR1_CHSELRMOD is reset */
  1366. #define ADC_CHSELR_CHSEL11_Pos (11U)
  1367. #define ADC_CHSELR_CHSEL11_Msk (0x1UL << ADC_CHSELR_CHSEL11_Pos) /*!< 0x00000800 */
  1368. #define ADC_CHSELR_CHSEL11 ADC_CHSELR_CHSEL11_Msk /*!< ADC group regular sequencer channel 11, available when ADC_CFGR1_CHSELRMOD is reset */
  1369. #define ADC_CHSELR_CHSEL10_Pos (10U)
  1370. #define ADC_CHSELR_CHSEL10_Msk (0x1UL << ADC_CHSELR_CHSEL10_Pos) /*!< 0x00000400 */
  1371. #define ADC_CHSELR_CHSEL10 ADC_CHSELR_CHSEL10_Msk /*!< ADC group regular sequencer channel 10, available when ADC_CFGR1_CHSELRMOD is reset */
  1372. #define ADC_CHSELR_CHSEL9_Pos (9U)
  1373. #define ADC_CHSELR_CHSEL9_Msk (0x1UL << ADC_CHSELR_CHSEL9_Pos) /*!< 0x00000200 */
  1374. #define ADC_CHSELR_CHSEL9 ADC_CHSELR_CHSEL9_Msk /*!< ADC group regular sequencer channel 9, available when ADC_CFGR1_CHSELRMOD is reset */
  1375. #define ADC_CHSELR_CHSEL8_Pos (8U)
  1376. #define ADC_CHSELR_CHSEL8_Msk (0x1UL << ADC_CHSELR_CHSEL8_Pos) /*!< 0x00000100 */
  1377. #define ADC_CHSELR_CHSEL8 ADC_CHSELR_CHSEL8_Msk /*!< ADC group regular sequencer channel 8, available when ADC_CFGR1_CHSELRMOD is reset */
  1378. #define ADC_CHSELR_CHSEL7_Pos (7U)
  1379. #define ADC_CHSELR_CHSEL7_Msk (0x1UL << ADC_CHSELR_CHSEL7_Pos) /*!< 0x00000080 */
  1380. #define ADC_CHSELR_CHSEL7 ADC_CHSELR_CHSEL7_Msk /*!< ADC group regular sequencer channel 7, available when ADC_CFGR1_CHSELRMOD is reset */
  1381. #define ADC_CHSELR_CHSEL6_Pos (6U)
  1382. #define ADC_CHSELR_CHSEL6_Msk (0x1UL << ADC_CHSELR_CHSEL6_Pos) /*!< 0x00000040 */
  1383. #define ADC_CHSELR_CHSEL6 ADC_CHSELR_CHSEL6_Msk /*!< ADC group regular sequencer channel 6, available when ADC_CFGR1_CHSELRMOD is reset */
  1384. #define ADC_CHSELR_CHSEL5_Pos (5U)
  1385. #define ADC_CHSELR_CHSEL5_Msk (0x1UL << ADC_CHSELR_CHSEL5_Pos) /*!< 0x00000020 */
  1386. #define ADC_CHSELR_CHSEL5 ADC_CHSELR_CHSEL5_Msk /*!< ADC group regular sequencer channel 5, available when ADC_CFGR1_CHSELRMOD is reset */
  1387. #define ADC_CHSELR_CHSEL4_Pos (4U)
  1388. #define ADC_CHSELR_CHSEL4_Msk (0x1UL << ADC_CHSELR_CHSEL4_Pos) /*!< 0x00000010 */
  1389. #define ADC_CHSELR_CHSEL4 ADC_CHSELR_CHSEL4_Msk /*!< ADC group regular sequencer channel 4, available when ADC_CFGR1_CHSELRMOD is reset */
  1390. #define ADC_CHSELR_CHSEL3_Pos (3U)
  1391. #define ADC_CHSELR_CHSEL3_Msk (0x1UL << ADC_CHSELR_CHSEL3_Pos) /*!< 0x00000008 */
  1392. #define ADC_CHSELR_CHSEL3 ADC_CHSELR_CHSEL3_Msk /*!< ADC group regular sequencer channel 3, available when ADC_CFGR1_CHSELRMOD is reset */
  1393. #define ADC_CHSELR_CHSEL2_Pos (2U)
  1394. #define ADC_CHSELR_CHSEL2_Msk (0x1UL << ADC_CHSELR_CHSEL2_Pos) /*!< 0x00000004 */
  1395. #define ADC_CHSELR_CHSEL2 ADC_CHSELR_CHSEL2_Msk /*!< ADC group regular sequencer channel 2, available when ADC_CFGR1_CHSELRMOD is reset */
  1396. #define ADC_CHSELR_CHSEL1_Pos (1U)
  1397. #define ADC_CHSELR_CHSEL1_Msk (0x1UL << ADC_CHSELR_CHSEL1_Pos) /*!< 0x00000002 */
  1398. #define ADC_CHSELR_CHSEL1 ADC_CHSELR_CHSEL1_Msk /*!< ADC group regular sequencer channel 1, available when ADC_CFGR1_CHSELRMOD is reset */
  1399. #define ADC_CHSELR_CHSEL0_Pos (0U)
  1400. #define ADC_CHSELR_CHSEL0_Msk (0x1UL << ADC_CHSELR_CHSEL0_Pos) /*!< 0x00000001 */
  1401. #define ADC_CHSELR_CHSEL0 ADC_CHSELR_CHSEL0_Msk /*!< ADC group regular sequencer channel 0, available when ADC_CFGR1_CHSELRMOD is reset */
  1402. #define ADC_CHSELR_SQ_ALL_Pos (0U)
  1403. #define ADC_CHSELR_SQ_ALL_Msk (0xFFFFFFFFUL << ADC_CHSELR_SQ_ALL_Pos) /*!< 0xFFFFFFFF */
  1404. #define ADC_CHSELR_SQ_ALL ADC_CHSELR_SQ_ALL_Msk /*!< ADC group regular sequencer all ranks, available when ADC_CFGR1_CHSELRMOD is set */
  1405. #define ADC_CHSELR_SQ8_Pos (28U)
  1406. #define ADC_CHSELR_SQ8_Msk (0xFUL << ADC_CHSELR_SQ8_Pos) /*!< 0xF0000000 */
  1407. #define ADC_CHSELR_SQ8 ADC_CHSELR_SQ8_Msk /*!< ADC group regular sequencer rank 8, available when ADC_CFGR1_CHSELRMOD is set */
  1408. #define ADC_CHSELR_SQ8_0 (0x1UL << ADC_CHSELR_SQ8_Pos) /*!< 0x10000000 */
  1409. #define ADC_CHSELR_SQ8_1 (0x2UL << ADC_CHSELR_SQ8_Pos) /*!< 0x20000000 */
  1410. #define ADC_CHSELR_SQ8_2 (0x4UL << ADC_CHSELR_SQ8_Pos) /*!< 0x40000000 */
  1411. #define ADC_CHSELR_SQ8_3 (0x8UL << ADC_CHSELR_SQ8_Pos) /*!< 0x80000000 */
  1412. #define ADC_CHSELR_SQ7_Pos (24U)
  1413. #define ADC_CHSELR_SQ7_Msk (0xFUL << ADC_CHSELR_SQ7_Pos) /*!< 0x0F000000 */
  1414. #define ADC_CHSELR_SQ7 ADC_CHSELR_SQ7_Msk /*!< ADC group regular sequencer rank 7, available when ADC_CFGR1_CHSELRMOD is set */
  1415. #define ADC_CHSELR_SQ7_0 (0x1UL << ADC_CHSELR_SQ7_Pos) /*!< 0x01000000 */
  1416. #define ADC_CHSELR_SQ7_1 (0x2UL << ADC_CHSELR_SQ7_Pos) /*!< 0x02000000 */
  1417. #define ADC_CHSELR_SQ7_2 (0x4UL << ADC_CHSELR_SQ7_Pos) /*!< 0x04000000 */
  1418. #define ADC_CHSELR_SQ7_3 (0x8UL << ADC_CHSELR_SQ7_Pos) /*!< 0x08000000 */
  1419. #define ADC_CHSELR_SQ6_Pos (20U)
  1420. #define ADC_CHSELR_SQ6_Msk (0xFUL << ADC_CHSELR_SQ6_Pos) /*!< 0x00F00000 */
  1421. #define ADC_CHSELR_SQ6 ADC_CHSELR_SQ6_Msk /*!< ADC group regular sequencer rank 6, available when ADC_CFGR1_CHSELRMOD is set */
  1422. #define ADC_CHSELR_SQ6_0 (0x1UL << ADC_CHSELR_SQ6_Pos) /*!< 0x00100000 */
  1423. #define ADC_CHSELR_SQ6_1 (0x2UL << ADC_CHSELR_SQ6_Pos) /*!< 0x00200000 */
  1424. #define ADC_CHSELR_SQ6_2 (0x4UL << ADC_CHSELR_SQ6_Pos) /*!< 0x00400000 */
  1425. #define ADC_CHSELR_SQ6_3 (0x8UL << ADC_CHSELR_SQ6_Pos) /*!< 0x00800000 */
  1426. #define ADC_CHSELR_SQ5_Pos (16U)
  1427. #define ADC_CHSELR_SQ5_Msk (0xFUL << ADC_CHSELR_SQ5_Pos) /*!< 0x000F0000 */
  1428. #define ADC_CHSELR_SQ5 ADC_CHSELR_SQ5_Msk /*!< ADC group regular sequencer rank 5, available when ADC_CFGR1_CHSELRMOD is set */
  1429. #define ADC_CHSELR_SQ5_0 (0x1UL << ADC_CHSELR_SQ5_Pos) /*!< 0x00010000 */
  1430. #define ADC_CHSELR_SQ5_1 (0x2UL << ADC_CHSELR_SQ5_Pos) /*!< 0x00020000 */
  1431. #define ADC_CHSELR_SQ5_2 (0x4UL << ADC_CHSELR_SQ5_Pos) /*!< 0x00040000 */
  1432. #define ADC_CHSELR_SQ5_3 (0x8UL << ADC_CHSELR_SQ5_Pos) /*!< 0x00080000 */
  1433. #define ADC_CHSELR_SQ4_Pos (12U)
  1434. #define ADC_CHSELR_SQ4_Msk (0xFUL << ADC_CHSELR_SQ4_Pos) /*!< 0x0000F000 */
  1435. #define ADC_CHSELR_SQ4 ADC_CHSELR_SQ4_Msk /*!< ADC group regular sequencer rank 4, available when ADC_CFGR1_CHSELRMOD is set */
  1436. #define ADC_CHSELR_SQ4_0 (0x1UL << ADC_CHSELR_SQ4_Pos) /*!< 0x00001000 */
  1437. #define ADC_CHSELR_SQ4_1 (0x2UL << ADC_CHSELR_SQ4_Pos) /*!< 0x00002000 */
  1438. #define ADC_CHSELR_SQ4_2 (0x4UL << ADC_CHSELR_SQ4_Pos) /*!< 0x00004000 */
  1439. #define ADC_CHSELR_SQ4_3 (0x8UL << ADC_CHSELR_SQ4_Pos) /*!< 0x00008000 */
  1440. #define ADC_CHSELR_SQ3_Pos (8U)
  1441. #define ADC_CHSELR_SQ3_Msk (0xFUL << ADC_CHSELR_SQ3_Pos) /*!< 0x00000F00 */
  1442. #define ADC_CHSELR_SQ3 ADC_CHSELR_SQ3_Msk /*!< ADC group regular sequencer rank 3, available when ADC_CFGR1_CHSELRMOD is set */
  1443. #define ADC_CHSELR_SQ3_0 (0x1UL << ADC_CHSELR_SQ3_Pos) /*!< 0x00000100 */
  1444. #define ADC_CHSELR_SQ3_1 (0x2UL << ADC_CHSELR_SQ3_Pos) /*!< 0x00000200 */
  1445. #define ADC_CHSELR_SQ3_2 (0x4UL << ADC_CHSELR_SQ3_Pos) /*!< 0x00000400 */
  1446. #define ADC_CHSELR_SQ3_3 (0x8UL << ADC_CHSELR_SQ3_Pos) /*!< 0x00000800 */
  1447. #define ADC_CHSELR_SQ2_Pos (4U)
  1448. #define ADC_CHSELR_SQ2_Msk (0xFUL << ADC_CHSELR_SQ2_Pos) /*!< 0x000000F0 */
  1449. #define ADC_CHSELR_SQ2 ADC_CHSELR_SQ2_Msk /*!< ADC group regular sequencer rank 2, available when ADC_CFGR1_CHSELRMOD is set */
  1450. #define ADC_CHSELR_SQ2_0 (0x1UL << ADC_CHSELR_SQ2_Pos) /*!< 0x00000010 */
  1451. #define ADC_CHSELR_SQ2_1 (0x2UL << ADC_CHSELR_SQ2_Pos) /*!< 0x00000020 */
  1452. #define ADC_CHSELR_SQ2_2 (0x4UL << ADC_CHSELR_SQ2_Pos) /*!< 0x00000040 */
  1453. #define ADC_CHSELR_SQ2_3 (0x8UL << ADC_CHSELR_SQ2_Pos) /*!< 0x00000080 */
  1454. #define ADC_CHSELR_SQ1_Pos (0U)
  1455. #define ADC_CHSELR_SQ1_Msk (0xFUL << ADC_CHSELR_SQ1_Pos) /*!< 0x0000000F */
  1456. #define ADC_CHSELR_SQ1 ADC_CHSELR_SQ1_Msk /*!< ADC group regular sequencer rank 1, available when ADC_CFGR1_CHSELRMOD is set */
  1457. #define ADC_CHSELR_SQ1_0 (0x1UL << ADC_CHSELR_SQ1_Pos) /*!< 0x00000001 */
  1458. #define ADC_CHSELR_SQ1_1 (0x2UL << ADC_CHSELR_SQ1_Pos) /*!< 0x00000002 */
  1459. #define ADC_CHSELR_SQ1_2 (0x4UL << ADC_CHSELR_SQ1_Pos) /*!< 0x00000004 */
  1460. #define ADC_CHSELR_SQ1_3 (0x8UL << ADC_CHSELR_SQ1_Pos) /*!< 0x00000008 */
  1461. /******************** Bit definition for ADC_AWD3TR register *******************/
  1462. #define ADC_AWD3TR_LT3_Pos (0U)
  1463. #define ADC_AWD3TR_LT3_Msk (0xFFFUL << ADC_AWD3TR_LT3_Pos) /*!< 0x00000FFF */
  1464. #define ADC_AWD3TR_LT3 ADC_AWD3TR_LT3_Msk /*!< ADC analog watchdog 3 threshold low */
  1465. #define ADC_AWD3TR_LT3_0 (0x001UL << ADC_AWD3TR_LT3_Pos) /*!< 0x00000001 */
  1466. #define ADC_AWD3TR_LT3_1 (0x002UL << ADC_AWD3TR_LT3_Pos) /*!< 0x00000002 */
  1467. #define ADC_AWD3TR_LT3_2 (0x004UL << ADC_AWD3TR_LT3_Pos) /*!< 0x00000004 */
  1468. #define ADC_AWD3TR_LT3_3 (0x008UL << ADC_AWD3TR_LT3_Pos) /*!< 0x00000008 */
  1469. #define ADC_AWD3TR_LT3_4 (0x010UL << ADC_AWD3TR_LT3_Pos) /*!< 0x00000010 */
  1470. #define ADC_AWD3TR_LT3_5 (0x020UL << ADC_AWD3TR_LT3_Pos) /*!< 0x00000020 */
  1471. #define ADC_AWD3TR_LT3_6 (0x040UL << ADC_AWD3TR_LT3_Pos) /*!< 0x00000040 */
  1472. #define ADC_AWD3TR_LT3_7 (0x080UL << ADC_AWD3TR_LT3_Pos) /*!< 0x00000080 */
  1473. #define ADC_AWD3TR_LT3_8 (0x100UL << ADC_AWD3TR_LT3_Pos) /*!< 0x00000100 */
  1474. #define ADC_AWD3TR_LT3_9 (0x200UL << ADC_AWD3TR_LT3_Pos) /*!< 0x00000200 */
  1475. #define ADC_AWD3TR_LT3_10 (0x400UL << ADC_AWD3TR_LT3_Pos) /*!< 0x00000400 */
  1476. #define ADC_AWD3TR_LT3_11 (0x800UL << ADC_AWD3TR_LT3_Pos) /*!< 0x00000800 */
  1477. #define ADC_AWD3TR_HT3_Pos (16U)
  1478. #define ADC_AWD3TR_HT3_Msk (0xFFFUL << ADC_AWD3TR_HT3_Pos) /*!< 0x0FFF0000 */
  1479. #define ADC_AWD3TR_HT3 ADC_AWD3TR_HT3_Msk /*!< ADC analog watchdog 3 threshold high */
  1480. #define ADC_AWD3TR_HT3_0 (0x001UL << ADC_AWD3TR_HT3_Pos) /*!< 0x00010000 */
  1481. #define ADC_AWD3TR_HT3_1 (0x002UL << ADC_AWD3TR_HT3_Pos) /*!< 0x00020000 */
  1482. #define ADC_AWD3TR_HT3_2 (0x004UL << ADC_AWD3TR_HT3_Pos) /*!< 0x00040000 */
  1483. #define ADC_AWD3TR_HT3_3 (0x008UL << ADC_AWD3TR_HT3_Pos) /*!< 0x00080000 */
  1484. #define ADC_AWD3TR_HT3_4 (0x010UL << ADC_AWD3TR_HT3_Pos) /*!< 0x00100000 */
  1485. #define ADC_AWD3TR_HT3_5 (0x020UL << ADC_AWD3TR_HT3_Pos) /*!< 0x00200000 */
  1486. #define ADC_AWD3TR_HT3_6 (0x040UL << ADC_AWD3TR_HT3_Pos) /*!< 0x00400000 */
  1487. #define ADC_AWD3TR_HT3_7 (0x080UL << ADC_AWD3TR_HT3_Pos) /*!< 0x00800000 */
  1488. #define ADC_AWD3TR_HT3_8 (0x100UL << ADC_AWD3TR_HT3_Pos) /*!< 0x01000000 */
  1489. #define ADC_AWD3TR_HT3_9 (0x200UL << ADC_AWD3TR_HT3_Pos) /*!< 0x02000000 */
  1490. #define ADC_AWD3TR_HT3_10 (0x400UL << ADC_AWD3TR_HT3_Pos) /*!< 0x04000000 */
  1491. #define ADC_AWD3TR_HT3_11 (0x800UL << ADC_AWD3TR_HT3_Pos) /*!< 0x08000000 */
  1492. /* Legacy definitions */
  1493. #define ADC_TR3_LT3 ADC_AWD3TR_LT3
  1494. #define ADC_TR3_LT3_0 ADC_AWD3TR_LT3_0
  1495. #define ADC_TR3_LT3_1 ADC_AWD3TR_LT3_1
  1496. #define ADC_TR3_LT3_2 ADC_AWD3TR_LT3_2
  1497. #define ADC_TR3_LT3_3 ADC_AWD3TR_LT3_3
  1498. #define ADC_TR3_LT3_4 ADC_AWD3TR_LT3_4
  1499. #define ADC_TR3_LT3_5 ADC_AWD3TR_LT3_5
  1500. #define ADC_TR3_LT3_6 ADC_AWD3TR_LT3_6
  1501. #define ADC_TR3_LT3_7 ADC_AWD3TR_LT3_7
  1502. #define ADC_TR3_LT3_8 ADC_AWD3TR_LT3_8
  1503. #define ADC_TR3_LT3_9 ADC_AWD3TR_LT3_9
  1504. #define ADC_TR3_LT3_10 ADC_AWD3TR_LT3_10
  1505. #define ADC_TR3_LT3_11 ADC_AWD3TR_LT3_11
  1506. #define ADC_TR3_HT3 ADC_AWD3TR_HT3
  1507. #define ADC_TR3_HT3_0 ADC_AWD3TR_HT3_0
  1508. #define ADC_TR3_HT3_1 ADC_AWD3TR_HT3_1
  1509. #define ADC_TR3_HT3_2 ADC_AWD3TR_HT3_2
  1510. #define ADC_TR3_HT3_3 ADC_AWD3TR_HT3_3
  1511. #define ADC_TR3_HT3_4 ADC_AWD3TR_HT3_4
  1512. #define ADC_TR3_HT3_5 ADC_AWD3TR_HT3_5
  1513. #define ADC_TR3_HT3_6 ADC_AWD3TR_HT3_6
  1514. #define ADC_TR3_HT3_7 ADC_AWD3TR_HT3_7
  1515. #define ADC_TR3_HT3_8 ADC_AWD3TR_HT3_8
  1516. #define ADC_TR3_HT3_9 ADC_AWD3TR_HT3_9
  1517. #define ADC_TR3_HT3_10 ADC_AWD3TR_HT3_10
  1518. #define ADC_TR3_HT3_11 ADC_AWD3TR_HT3_11
  1519. /******************** Bit definition for ADC_DR register ********************/
  1520. #define ADC_DR_DATA_Pos (0U)
  1521. #define ADC_DR_DATA_Msk (0xFFFFUL << ADC_DR_DATA_Pos) /*!< 0x0000FFFF */
  1522. #define ADC_DR_DATA ADC_DR_DATA_Msk /*!< ADC group regular conversion data */
  1523. #define ADC_DR_DATA_0 (0x0001UL << ADC_DR_DATA_Pos) /*!< 0x00000001 */
  1524. #define ADC_DR_DATA_1 (0x0002UL << ADC_DR_DATA_Pos) /*!< 0x00000002 */
  1525. #define ADC_DR_DATA_2 (0x0004UL << ADC_DR_DATA_Pos) /*!< 0x00000004 */
  1526. #define ADC_DR_DATA_3 (0x0008UL << ADC_DR_DATA_Pos) /*!< 0x00000008 */
  1527. #define ADC_DR_DATA_4 (0x0010UL << ADC_DR_DATA_Pos) /*!< 0x00000010 */
  1528. #define ADC_DR_DATA_5 (0x0020UL << ADC_DR_DATA_Pos) /*!< 0x00000020 */
  1529. #define ADC_DR_DATA_6 (0x0040UL << ADC_DR_DATA_Pos) /*!< 0x00000040 */
  1530. #define ADC_DR_DATA_7 (0x0080UL << ADC_DR_DATA_Pos) /*!< 0x00000080 */
  1531. #define ADC_DR_DATA_8 (0x0100UL << ADC_DR_DATA_Pos) /*!< 0x00000100 */
  1532. #define ADC_DR_DATA_9 (0x0200UL << ADC_DR_DATA_Pos) /*!< 0x00000200 */
  1533. #define ADC_DR_DATA_10 (0x0400UL << ADC_DR_DATA_Pos) /*!< 0x00000400 */
  1534. #define ADC_DR_DATA_11 (0x0800UL << ADC_DR_DATA_Pos) /*!< 0x00000800 */
  1535. #define ADC_DR_DATA_12 (0x1000UL << ADC_DR_DATA_Pos) /*!< 0x00001000 */
  1536. #define ADC_DR_DATA_13 (0x2000UL << ADC_DR_DATA_Pos) /*!< 0x00002000 */
  1537. #define ADC_DR_DATA_14 (0x4000UL << ADC_DR_DATA_Pos) /*!< 0x00004000 */
  1538. #define ADC_DR_DATA_15 (0x8000UL << ADC_DR_DATA_Pos) /*!< 0x00008000 */
  1539. /******************** Bit definition for ADC_AWD2CR register ****************/
  1540. #define ADC_AWD2CR_AWD2CH_Pos (0U)
  1541. #define ADC_AWD2CR_AWD2CH_Msk (0x7FFFFUL << ADC_AWD2CR_AWD2CH_Pos) /*!< 0x0007FFFF */
  1542. #define ADC_AWD2CR_AWD2CH ADC_AWD2CR_AWD2CH_Msk /*!< ADC analog watchdog 2 monitored channel selection */
  1543. #define ADC_AWD2CR_AWD2CH_0 (0x00001UL << ADC_AWD2CR_AWD2CH_Pos) /*!< 0x00000001 */
  1544. #define ADC_AWD2CR_AWD2CH_1 (0x00002UL << ADC_AWD2CR_AWD2CH_Pos) /*!< 0x00000002 */
  1545. #define ADC_AWD2CR_AWD2CH_2 (0x00004UL << ADC_AWD2CR_AWD2CH_Pos) /*!< 0x00000004 */
  1546. #define ADC_AWD2CR_AWD2CH_3 (0x00008UL << ADC_AWD2CR_AWD2CH_Pos) /*!< 0x00000008 */
  1547. #define ADC_AWD2CR_AWD2CH_4 (0x00010UL << ADC_AWD2CR_AWD2CH_Pos) /*!< 0x00000010 */
  1548. #define ADC_AWD2CR_AWD2CH_5 (0x00020UL << ADC_AWD2CR_AWD2CH_Pos) /*!< 0x00000020 */
  1549. #define ADC_AWD2CR_AWD2CH_6 (0x00040UL << ADC_AWD2CR_AWD2CH_Pos) /*!< 0x00000040 */
  1550. #define ADC_AWD2CR_AWD2CH_7 (0x00080UL << ADC_AWD2CR_AWD2CH_Pos) /*!< 0x00000080 */
  1551. #define ADC_AWD2CR_AWD2CH_8 (0x00100UL << ADC_AWD2CR_AWD2CH_Pos) /*!< 0x00000100 */
  1552. #define ADC_AWD2CR_AWD2CH_9 (0x00200UL << ADC_AWD2CR_AWD2CH_Pos) /*!< 0x00000200 */
  1553. #define ADC_AWD2CR_AWD2CH_10 (0x00400UL << ADC_AWD2CR_AWD2CH_Pos) /*!< 0x00000400 */
  1554. #define ADC_AWD2CR_AWD2CH_11 (0x00800UL << ADC_AWD2CR_AWD2CH_Pos) /*!< 0x00000800 */
  1555. #define ADC_AWD2CR_AWD2CH_12 (0x01000UL << ADC_AWD2CR_AWD2CH_Pos) /*!< 0x00001000 */
  1556. #define ADC_AWD2CR_AWD2CH_13 (0x02000UL << ADC_AWD2CR_AWD2CH_Pos) /*!< 0x00002000 */
  1557. #define ADC_AWD2CR_AWD2CH_14 (0x04000UL << ADC_AWD2CR_AWD2CH_Pos) /*!< 0x00004000 */
  1558. #define ADC_AWD2CR_AWD2CH_15 (0x08000UL << ADC_AWD2CR_AWD2CH_Pos) /*!< 0x00008000 */
  1559. #define ADC_AWD2CR_AWD2CH_16 (0x10000UL << ADC_AWD2CR_AWD2CH_Pos) /*!< 0x00010000 */
  1560. #define ADC_AWD2CR_AWD2CH_17 (0x20000UL << ADC_AWD2CR_AWD2CH_Pos) /*!< 0x00020000 */
  1561. #define ADC_AWD2CR_AWD2CH_18 (0x40000UL << ADC_AWD2CR_AWD2CH_Pos) /*!< 0x00040000 */
  1562. /******************** Bit definition for ADC_AWD3CR register ****************/
  1563. #define ADC_AWD3CR_AWD3CH_Pos (0U)
  1564. #define ADC_AWD3CR_AWD3CH_Msk (0x7FFFFUL << ADC_AWD3CR_AWD3CH_Pos) /*!< 0x0007FFFF */
  1565. #define ADC_AWD3CR_AWD3CH ADC_AWD3CR_AWD3CH_Msk /*!< ADC analog watchdog 3 monitored channel selection */
  1566. #define ADC_AWD3CR_AWD3CH_0 (0x00001UL << ADC_AWD3CR_AWD3CH_Pos) /*!< 0x00000001 */
  1567. #define ADC_AWD3CR_AWD3CH_1 (0x00002UL << ADC_AWD3CR_AWD3CH_Pos) /*!< 0x00000002 */
  1568. #define ADC_AWD3CR_AWD3CH_2 (0x00004UL << ADC_AWD3CR_AWD3CH_Pos) /*!< 0x00000004 */
  1569. #define ADC_AWD3CR_AWD3CH_3 (0x00008UL << ADC_AWD3CR_AWD3CH_Pos) /*!< 0x00000008 */
  1570. #define ADC_AWD3CR_AWD3CH_4 (0x00010UL << ADC_AWD3CR_AWD3CH_Pos) /*!< 0x00000010 */
  1571. #define ADC_AWD3CR_AWD3CH_5 (0x00020UL << ADC_AWD3CR_AWD3CH_Pos) /*!< 0x00000020 */
  1572. #define ADC_AWD3CR_AWD3CH_6 (0x00040UL << ADC_AWD3CR_AWD3CH_Pos) /*!< 0x00000040 */
  1573. #define ADC_AWD3CR_AWD3CH_7 (0x00080UL << ADC_AWD3CR_AWD3CH_Pos) /*!< 0x00000080 */
  1574. #define ADC_AWD3CR_AWD3CH_8 (0x00100UL << ADC_AWD3CR_AWD3CH_Pos) /*!< 0x00000100 */
  1575. #define ADC_AWD3CR_AWD3CH_9 (0x00200UL << ADC_AWD3CR_AWD3CH_Pos) /*!< 0x00000200 */
  1576. #define ADC_AWD3CR_AWD3CH_10 (0x00400UL << ADC_AWD3CR_AWD3CH_Pos) /*!< 0x00000400 */
  1577. #define ADC_AWD3CR_AWD3CH_11 (0x00800UL << ADC_AWD3CR_AWD3CH_Pos) /*!< 0x00000800 */
  1578. #define ADC_AWD3CR_AWD3CH_12 (0x01000UL << ADC_AWD3CR_AWD3CH_Pos) /*!< 0x00001000 */
  1579. #define ADC_AWD3CR_AWD3CH_13 (0x02000UL << ADC_AWD3CR_AWD3CH_Pos) /*!< 0x00002000 */
  1580. #define ADC_AWD3CR_AWD3CH_14 (0x04000UL << ADC_AWD3CR_AWD3CH_Pos) /*!< 0x00004000 */
  1581. #define ADC_AWD3CR_AWD3CH_15 (0x08000UL << ADC_AWD3CR_AWD3CH_Pos) /*!< 0x00008000 */
  1582. #define ADC_AWD3CR_AWD3CH_16 (0x10000UL << ADC_AWD3CR_AWD3CH_Pos) /*!< 0x00010000 */
  1583. #define ADC_AWD3CR_AWD3CH_17 (0x20000UL << ADC_AWD3CR_AWD3CH_Pos) /*!< 0x00020000 */
  1584. #define ADC_AWD3CR_AWD3CH_18 (0x40000UL << ADC_AWD3CR_AWD3CH_Pos) /*!< 0x00040000 */
  1585. /******************** Bit definition for ADC_CALFACT register ***************/
  1586. #define ADC_CALFACT_CALFACT_Pos (0U)
  1587. #define ADC_CALFACT_CALFACT_Msk (0x7FUL << ADC_CALFACT_CALFACT_Pos) /*!< 0x0000007F */
  1588. #define ADC_CALFACT_CALFACT ADC_CALFACT_CALFACT_Msk /*!< ADC calibration factor in single-ended mode */
  1589. #define ADC_CALFACT_CALFACT_0 (0x01UL << ADC_CALFACT_CALFACT_Pos) /*!< 0x00000001 */
  1590. #define ADC_CALFACT_CALFACT_1 (0x02UL << ADC_CALFACT_CALFACT_Pos) /*!< 0x00000002 */
  1591. #define ADC_CALFACT_CALFACT_2 (0x04UL << ADC_CALFACT_CALFACT_Pos) /*!< 0x00000004 */
  1592. #define ADC_CALFACT_CALFACT_3 (0x08UL << ADC_CALFACT_CALFACT_Pos) /*!< 0x00000008 */
  1593. #define ADC_CALFACT_CALFACT_4 (0x10UL << ADC_CALFACT_CALFACT_Pos) /*!< 0x00000010 */
  1594. #define ADC_CALFACT_CALFACT_5 (0x20UL << ADC_CALFACT_CALFACT_Pos) /*!< 0x00000020 */
  1595. #define ADC_CALFACT_CALFACT_6 (0x40UL << ADC_CALFACT_CALFACT_Pos) /*!< 0x00000040 */
  1596. /************************* ADC Common registers *****************************/
  1597. /******************** Bit definition for ADC_CCR register *******************/
  1598. #define ADC_CCR_PRESC_Pos (18U)
  1599. #define ADC_CCR_PRESC_Msk (0xFUL << ADC_CCR_PRESC_Pos) /*!< 0x003C0000 */
  1600. #define ADC_CCR_PRESC ADC_CCR_PRESC_Msk /*!< ADC common clock prescaler, only for clock source asynchronous */
  1601. #define ADC_CCR_PRESC_0 (0x1UL << ADC_CCR_PRESC_Pos) /*!< 0x00040000 */
  1602. #define ADC_CCR_PRESC_1 (0x2UL << ADC_CCR_PRESC_Pos) /*!< 0x00080000 */
  1603. #define ADC_CCR_PRESC_2 (0x4UL << ADC_CCR_PRESC_Pos) /*!< 0x00100000 */
  1604. #define ADC_CCR_PRESC_3 (0x8UL << ADC_CCR_PRESC_Pos) /*!< 0x00200000 */
  1605. #define ADC_CCR_VREFEN_Pos (22U)
  1606. #define ADC_CCR_VREFEN_Msk (0x1UL << ADC_CCR_VREFEN_Pos) /*!< 0x00400000 */
  1607. #define ADC_CCR_VREFEN ADC_CCR_VREFEN_Msk /*!< ADC internal path to VrefInt enable */
  1608. #define ADC_CCR_TSEN_Pos (23U)
  1609. #define ADC_CCR_TSEN_Msk (0x1UL << ADC_CCR_TSEN_Pos) /*!< 0x00800000 */
  1610. #define ADC_CCR_TSEN ADC_CCR_TSEN_Msk /*!< ADC internal path to temperature sensor enable */
  1611. #define ADC_CCR_VBATEN_Pos (24U)
  1612. #define ADC_CCR_VBATEN_Msk (0x1UL << ADC_CCR_VBATEN_Pos) /*!< 0x01000000 */
  1613. #define ADC_CCR_VBATEN ADC_CCR_VBATEN_Msk /*!< ADC internal path to battery voltage enable */
  1614. /* Legacy */
  1615. #define ADC_CCR_LFMEN_Pos (25U)
  1616. #define ADC_CCR_LFMEN_Msk (0x1UL << ADC_CCR_LFMEN_Pos) /*!< 0x02000000 */
  1617. #define ADC_CCR_LFMEN ADC_CCR_LFMEN_Msk /*!< Legacy feature, useless on STM32G0 (ADC common clock low frequency mode is automatically managed by ADC peripheral on STM32G0) */
  1618. /******************************************************************************/
  1619. /* */
  1620. /* HDMI-CEC (CEC) */
  1621. /* */
  1622. /******************************************************************************/
  1623. /******************* Bit definition for CEC_CR register *********************/
  1624. #define CEC_CR_CECEN_Pos (0U)
  1625. #define CEC_CR_CECEN_Msk (0x1UL << CEC_CR_CECEN_Pos) /*!< 0x00000001 */
  1626. #define CEC_CR_CECEN CEC_CR_CECEN_Msk /*!< CEC Enable */
  1627. #define CEC_CR_TXSOM_Pos (1U)
  1628. #define CEC_CR_TXSOM_Msk (0x1UL << CEC_CR_TXSOM_Pos) /*!< 0x00000002 */
  1629. #define CEC_CR_TXSOM CEC_CR_TXSOM_Msk /*!< CEC Tx Start Of Message */
  1630. #define CEC_CR_TXEOM_Pos (2U)
  1631. #define CEC_CR_TXEOM_Msk (0x1UL << CEC_CR_TXEOM_Pos) /*!< 0x00000004 */
  1632. #define CEC_CR_TXEOM CEC_CR_TXEOM_Msk /*!< CEC Tx End Of Message */
  1633. /******************* Bit definition for CEC_CFGR register *******************/
  1634. #define CEC_CFGR_SFT_Pos (0U)
  1635. #define CEC_CFGR_SFT_Msk (0x7UL << CEC_CFGR_SFT_Pos) /*!< 0x00000007 */
  1636. #define CEC_CFGR_SFT CEC_CFGR_SFT_Msk /*!< CEC Signal Free Time */
  1637. #define CEC_CFGR_RXTOL_Pos (3U)
  1638. #define CEC_CFGR_RXTOL_Msk (0x1UL << CEC_CFGR_RXTOL_Pos) /*!< 0x00000008 */
  1639. #define CEC_CFGR_RXTOL CEC_CFGR_RXTOL_Msk /*!< CEC Tolerance */
  1640. #define CEC_CFGR_BRESTP_Pos (4U)
  1641. #define CEC_CFGR_BRESTP_Msk (0x1UL << CEC_CFGR_BRESTP_Pos) /*!< 0x00000010 */
  1642. #define CEC_CFGR_BRESTP CEC_CFGR_BRESTP_Msk /*!< CEC Rx Stop */
  1643. #define CEC_CFGR_BREGEN_Pos (5U)
  1644. #define CEC_CFGR_BREGEN_Msk (0x1UL << CEC_CFGR_BREGEN_Pos) /*!< 0x00000020 */
  1645. #define CEC_CFGR_BREGEN CEC_CFGR_BREGEN_Msk /*!< CEC Bit Rising Error generation */
  1646. #define CEC_CFGR_LBPEGEN_Pos (6U)
  1647. #define CEC_CFGR_LBPEGEN_Msk (0x1UL << CEC_CFGR_LBPEGEN_Pos) /*!< 0x00000040 */
  1648. #define CEC_CFGR_LBPEGEN CEC_CFGR_LBPEGEN_Msk /*!< CEC Long Bit Period Error gener. */
  1649. #define CEC_CFGR_BRDNOGEN_Pos (7U)
  1650. #define CEC_CFGR_BRDNOGEN_Msk (0x1UL << CEC_CFGR_BRDNOGEN_Pos) /*!< 0x00000080 */
  1651. #define CEC_CFGR_BRDNOGEN CEC_CFGR_BRDNOGEN_Msk /*!< CEC Broadcast No Error generation */
  1652. #define CEC_CFGR_SFTOPT_Pos (8U)
  1653. #define CEC_CFGR_SFTOPT_Msk (0x1UL << CEC_CFGR_SFTOPT_Pos) /*!< 0x00000100 */
  1654. #define CEC_CFGR_SFTOPT CEC_CFGR_SFTOPT_Msk /*!< CEC Signal Free Time optional */
  1655. #define CEC_CFGR_OAR_Pos (16U)
  1656. #define CEC_CFGR_OAR_Msk (0x7FFFUL << CEC_CFGR_OAR_Pos) /*!< 0x7FFF0000 */
  1657. #define CEC_CFGR_OAR CEC_CFGR_OAR_Msk /*!< CEC Own Address */
  1658. #define CEC_CFGR_LSTN_Pos (31U)
  1659. #define CEC_CFGR_LSTN_Msk (0x1UL << CEC_CFGR_LSTN_Pos) /*!< 0x80000000 */
  1660. #define CEC_CFGR_LSTN CEC_CFGR_LSTN_Msk /*!< CEC Listen mode */
  1661. /******************* Bit definition for CEC_TXDR register *******************/
  1662. #define CEC_TXDR_TXD_Pos (0U)
  1663. #define CEC_TXDR_TXD_Msk (0xFFUL << CEC_TXDR_TXD_Pos) /*!< 0x000000FF */
  1664. #define CEC_TXDR_TXD CEC_TXDR_TXD_Msk /*!< CEC Tx Data */
  1665. /******************* Bit definition for CEC_RXDR register *******************/
  1666. #define CEC_RXDR_RXD_Pos (0U)
  1667. #define CEC_RXDR_RXD_Msk (0xFFUL << CEC_RXDR_RXD_Pos) /*!< 0x000000FF */
  1668. #define CEC_RXDR_RXD CEC_RXDR_RXD_Msk /*!< CEC Rx Data */
  1669. /******************* Bit definition for CEC_ISR register ********************/
  1670. #define CEC_ISR_RXBR_Pos (0U)
  1671. #define CEC_ISR_RXBR_Msk (0x1UL << CEC_ISR_RXBR_Pos) /*!< 0x00000001 */
  1672. #define CEC_ISR_RXBR CEC_ISR_RXBR_Msk /*!< CEC Rx-Byte Received */
  1673. #define CEC_ISR_RXEND_Pos (1U)
  1674. #define CEC_ISR_RXEND_Msk (0x1UL << CEC_ISR_RXEND_Pos) /*!< 0x00000002 */
  1675. #define CEC_ISR_RXEND CEC_ISR_RXEND_Msk /*!< CEC End Of Reception */
  1676. #define CEC_ISR_RXOVR_Pos (2U)
  1677. #define CEC_ISR_RXOVR_Msk (0x1UL << CEC_ISR_RXOVR_Pos) /*!< 0x00000004 */
  1678. #define CEC_ISR_RXOVR CEC_ISR_RXOVR_Msk /*!< CEC Rx-Overrun */
  1679. #define CEC_ISR_BRE_Pos (3U)
  1680. #define CEC_ISR_BRE_Msk (0x1UL << CEC_ISR_BRE_Pos) /*!< 0x00000008 */
  1681. #define CEC_ISR_BRE CEC_ISR_BRE_Msk /*!< CEC Rx Bit Rising Error */
  1682. #define CEC_ISR_SBPE_Pos (4U)
  1683. #define CEC_ISR_SBPE_Msk (0x1UL << CEC_ISR_SBPE_Pos) /*!< 0x00000010 */
  1684. #define CEC_ISR_SBPE CEC_ISR_SBPE_Msk /*!< CEC Rx Short Bit period Error */
  1685. #define CEC_ISR_LBPE_Pos (5U)
  1686. #define CEC_ISR_LBPE_Msk (0x1UL << CEC_ISR_LBPE_Pos) /*!< 0x00000020 */
  1687. #define CEC_ISR_LBPE CEC_ISR_LBPE_Msk /*!< CEC Rx Long Bit period Error */
  1688. #define CEC_ISR_RXACKE_Pos (6U)
  1689. #define CEC_ISR_RXACKE_Msk (0x1UL << CEC_ISR_RXACKE_Pos) /*!< 0x00000040 */
  1690. #define CEC_ISR_RXACKE CEC_ISR_RXACKE_Msk /*!< CEC Rx Missing Acknowledge */
  1691. #define CEC_ISR_ARBLST_Pos (7U)
  1692. #define CEC_ISR_ARBLST_Msk (0x1UL << CEC_ISR_ARBLST_Pos) /*!< 0x00000080 */
  1693. #define CEC_ISR_ARBLST CEC_ISR_ARBLST_Msk /*!< CEC Arbitration Lost */
  1694. #define CEC_ISR_TXBR_Pos (8U)
  1695. #define CEC_ISR_TXBR_Msk (0x1UL << CEC_ISR_TXBR_Pos) /*!< 0x00000100 */
  1696. #define CEC_ISR_TXBR CEC_ISR_TXBR_Msk /*!< CEC Tx Byte Request */
  1697. #define CEC_ISR_TXEND_Pos (9U)
  1698. #define CEC_ISR_TXEND_Msk (0x1UL << CEC_ISR_TXEND_Pos) /*!< 0x00000200 */
  1699. #define CEC_ISR_TXEND CEC_ISR_TXEND_Msk /*!< CEC End of Transmission */
  1700. #define CEC_ISR_TXUDR_Pos (10U)
  1701. #define CEC_ISR_TXUDR_Msk (0x1UL << CEC_ISR_TXUDR_Pos) /*!< 0x00000400 */
  1702. #define CEC_ISR_TXUDR CEC_ISR_TXUDR_Msk /*!< CEC Tx-Buffer Underrun */
  1703. #define CEC_ISR_TXERR_Pos (11U)
  1704. #define CEC_ISR_TXERR_Msk (0x1UL << CEC_ISR_TXERR_Pos) /*!< 0x00000800 */
  1705. #define CEC_ISR_TXERR CEC_ISR_TXERR_Msk /*!< CEC Tx-Error */
  1706. #define CEC_ISR_TXACKE_Pos (12U)
  1707. #define CEC_ISR_TXACKE_Msk (0x1UL << CEC_ISR_TXACKE_Pos) /*!< 0x00001000 */
  1708. #define CEC_ISR_TXACKE CEC_ISR_TXACKE_Msk /*!< CEC Tx Missing Acknowledge */
  1709. /******************* Bit definition for CEC_IER register ********************/
  1710. #define CEC_IER_RXBRIE_Pos (0U)
  1711. #define CEC_IER_RXBRIE_Msk (0x1UL << CEC_IER_RXBRIE_Pos) /*!< 0x00000001 */
  1712. #define CEC_IER_RXBRIE CEC_IER_RXBRIE_Msk /*!< CEC Rx-Byte Received IT Enable */
  1713. #define CEC_IER_RXENDIE_Pos (1U)
  1714. #define CEC_IER_RXENDIE_Msk (0x1UL << CEC_IER_RXENDIE_Pos) /*!< 0x00000002 */
  1715. #define CEC_IER_RXENDIE CEC_IER_RXENDIE_Msk /*!< CEC End Of Reception IT Enable */
  1716. #define CEC_IER_RXOVRIE_Pos (2U)
  1717. #define CEC_IER_RXOVRIE_Msk (0x1UL << CEC_IER_RXOVRIE_Pos) /*!< 0x00000004 */
  1718. #define CEC_IER_RXOVRIE CEC_IER_RXOVRIE_Msk /*!< CEC Rx-Overrun IT Enable */
  1719. #define CEC_IER_BREIE_Pos (3U)
  1720. #define CEC_IER_BREIE_Msk (0x1UL << CEC_IER_BREIE_Pos) /*!< 0x00000008 */
  1721. #define CEC_IER_BREIE CEC_IER_BREIE_Msk /*!< CEC Rx Bit Rising Error IT Enable */
  1722. #define CEC_IER_SBPEIE_Pos (4U)
  1723. #define CEC_IER_SBPEIE_Msk (0x1UL << CEC_IER_SBPEIE_Pos) /*!< 0x00000010 */
  1724. #define CEC_IER_SBPEIE CEC_IER_SBPEIE_Msk /*!< CEC Rx Short Bit period Error IT Enable*/
  1725. #define CEC_IER_LBPEIE_Pos (5U)
  1726. #define CEC_IER_LBPEIE_Msk (0x1UL << CEC_IER_LBPEIE_Pos) /*!< 0x00000020 */
  1727. #define CEC_IER_LBPEIE CEC_IER_LBPEIE_Msk /*!< CEC Rx Long Bit period Error IT Enable */
  1728. #define CEC_IER_RXACKEIE_Pos (6U)
  1729. #define CEC_IER_RXACKEIE_Msk (0x1UL << CEC_IER_RXACKEIE_Pos) /*!< 0x00000040 */
  1730. #define CEC_IER_RXACKEIE CEC_IER_RXACKEIE_Msk /*!< CEC Rx Missing Acknowledge IT Enable */
  1731. #define CEC_IER_ARBLSTIE_Pos (7U)
  1732. #define CEC_IER_ARBLSTIE_Msk (0x1UL << CEC_IER_ARBLSTIE_Pos) /*!< 0x00000080 */
  1733. #define CEC_IER_ARBLSTIE CEC_IER_ARBLSTIE_Msk /*!< CEC Arbitration Lost IT Enable */
  1734. #define CEC_IER_TXBRIE_Pos (8U)
  1735. #define CEC_IER_TXBRIE_Msk (0x1UL << CEC_IER_TXBRIE_Pos) /*!< 0x00000100 */
  1736. #define CEC_IER_TXBRIE CEC_IER_TXBRIE_Msk /*!< CEC Tx Byte Request IT Enable */
  1737. #define CEC_IER_TXENDIE_Pos (9U)
  1738. #define CEC_IER_TXENDIE_Msk (0x1UL << CEC_IER_TXENDIE_Pos) /*!< 0x00000200 */
  1739. #define CEC_IER_TXENDIE CEC_IER_TXENDIE_Msk /*!< CEC End of Transmission IT Enable */
  1740. #define CEC_IER_TXUDRIE_Pos (10U)
  1741. #define CEC_IER_TXUDRIE_Msk (0x1UL << CEC_IER_TXUDRIE_Pos) /*!< 0x00000400 */
  1742. #define CEC_IER_TXUDRIE CEC_IER_TXUDRIE_Msk /*!< CEC Tx-Buffer Underrun IT Enable */
  1743. #define CEC_IER_TXERRIE_Pos (11U)
  1744. #define CEC_IER_TXERRIE_Msk (0x1UL << CEC_IER_TXERRIE_Pos) /*!< 0x00000800 */
  1745. #define CEC_IER_TXERRIE CEC_IER_TXERRIE_Msk /*!< CEC Tx-Error IT Enable */
  1746. #define CEC_IER_TXACKEIE_Pos (12U)
  1747. #define CEC_IER_TXACKEIE_Msk (0x1UL << CEC_IER_TXACKEIE_Pos) /*!< 0x00001000 */
  1748. #define CEC_IER_TXACKEIE CEC_IER_TXACKEIE_Msk /*!< CEC Tx Missing Acknowledge IT Enable */
  1749. /******************************************************************************/
  1750. /* */
  1751. /* CRC calculation unit */
  1752. /* */
  1753. /******************************************************************************/
  1754. /******************* Bit definition for CRC_DR register *********************/
  1755. #define CRC_DR_DR_Pos (0U)
  1756. #define CRC_DR_DR_Msk (0xFFFFFFFFUL << CRC_DR_DR_Pos) /*!< 0xFFFFFFFF */
  1757. #define CRC_DR_DR CRC_DR_DR_Msk /*!< Data register bits */
  1758. /******************* Bit definition for CRC_IDR register ********************/
  1759. #define CRC_IDR_IDR_Pos (0U)
  1760. #define CRC_IDR_IDR_Msk (0xFFFFFFFFUL << CRC_IDR_IDR_Pos) /*!< 0xFFFFFFFF */
  1761. #define CRC_IDR_IDR CRC_IDR_IDR_Msk /*!< General-purpose 32-bits data register bits */
  1762. /******************** Bit definition for CRC_CR register ********************/
  1763. #define CRC_CR_RESET_Pos (0U)
  1764. #define CRC_CR_RESET_Msk (0x1UL << CRC_CR_RESET_Pos) /*!< 0x00000001 */
  1765. #define CRC_CR_RESET CRC_CR_RESET_Msk /*!< RESET the CRC computation unit bit */
  1766. #define CRC_CR_POLYSIZE_Pos (3U)
  1767. #define CRC_CR_POLYSIZE_Msk (0x3UL << CRC_CR_POLYSIZE_Pos) /*!< 0x00000018 */
  1768. #define CRC_CR_POLYSIZE CRC_CR_POLYSIZE_Msk /*!< Polynomial size bits */
  1769. #define CRC_CR_POLYSIZE_0 (0x1UL << CRC_CR_POLYSIZE_Pos) /*!< 0x00000008 */
  1770. #define CRC_CR_POLYSIZE_1 (0x2UL << CRC_CR_POLYSIZE_Pos) /*!< 0x00000010 */
  1771. #define CRC_CR_REV_IN_Pos (5U)
  1772. #define CRC_CR_REV_IN_Msk (0x3UL << CRC_CR_REV_IN_Pos) /*!< 0x00000060 */
  1773. #define CRC_CR_REV_IN CRC_CR_REV_IN_Msk /*!< REV_IN Reverse Input Data bits */
  1774. #define CRC_CR_REV_IN_0 (0x1UL << CRC_CR_REV_IN_Pos) /*!< 0x00000020 */
  1775. #define CRC_CR_REV_IN_1 (0x2UL << CRC_CR_REV_IN_Pos) /*!< 0x00000040 */
  1776. #define CRC_CR_REV_OUT_Pos (7U)
  1777. #define CRC_CR_REV_OUT_Msk (0x1UL << CRC_CR_REV_OUT_Pos) /*!< 0x00000080 */
  1778. #define CRC_CR_REV_OUT CRC_CR_REV_OUT_Msk /*!< REV_OUT Reverse Output Data bits */
  1779. /******************* Bit definition for CRC_INIT register *******************/
  1780. #define CRC_INIT_INIT_Pos (0U)
  1781. #define CRC_INIT_INIT_Msk (0xFFFFFFFFUL << CRC_INIT_INIT_Pos) /*!< 0xFFFFFFFF */
  1782. #define CRC_INIT_INIT CRC_INIT_INIT_Msk /*!< Initial CRC value bits */
  1783. /******************* Bit definition for CRC_POL register ********************/
  1784. #define CRC_POL_POL_Pos (0U)
  1785. #define CRC_POL_POL_Msk (0xFFFFFFFFUL << CRC_POL_POL_Pos) /*!< 0xFFFFFFFF */
  1786. #define CRC_POL_POL CRC_POL_POL_Msk /*!< Coefficients of the polynomial */
  1787. /******************************************************************************/
  1788. /* */
  1789. /* Advanced Encryption Standard (AES) */
  1790. /* */
  1791. /******************************************************************************/
  1792. /******************* Bit definition for AES_CR register *********************/
  1793. #define AES_CR_EN_Pos (0U)
  1794. #define AES_CR_EN_Msk (0x1UL << AES_CR_EN_Pos) /*!< 0x00000001 */
  1795. #define AES_CR_EN AES_CR_EN_Msk /*!< AES Enable */
  1796. #define AES_CR_DATATYPE_Pos (1U)
  1797. #define AES_CR_DATATYPE_Msk (0x3UL << AES_CR_DATATYPE_Pos) /*!< 0x00000006 */
  1798. #define AES_CR_DATATYPE AES_CR_DATATYPE_Msk /*!< Data type selection */
  1799. #define AES_CR_DATATYPE_0 (0x1UL << AES_CR_DATATYPE_Pos) /*!< 0x00000002 */
  1800. #define AES_CR_DATATYPE_1 (0x2UL << AES_CR_DATATYPE_Pos) /*!< 0x00000004 */
  1801. #define AES_CR_MODE_Pos (3U)
  1802. #define AES_CR_MODE_Msk (0x3UL << AES_CR_MODE_Pos) /*!< 0x00000018 */
  1803. #define AES_CR_MODE AES_CR_MODE_Msk /*!< AES Mode Of Operation */
  1804. #define AES_CR_MODE_0 (0x1UL << AES_CR_MODE_Pos) /*!< 0x00000008 */
  1805. #define AES_CR_MODE_1 (0x2UL << AES_CR_MODE_Pos) /*!< 0x00000010 */
  1806. #define AES_CR_CHMOD_Pos (5U)
  1807. #define AES_CR_CHMOD_Msk (0x803UL << AES_CR_CHMOD_Pos) /*!< 0x00010060 */
  1808. #define AES_CR_CHMOD AES_CR_CHMOD_Msk /*!< AES Chaining Mode */
  1809. #define AES_CR_CHMOD_0 (0x001UL << AES_CR_CHMOD_Pos) /*!< 0x00000020 */
  1810. #define AES_CR_CHMOD_1 (0x002UL << AES_CR_CHMOD_Pos) /*!< 0x00000040 */
  1811. #define AES_CR_CHMOD_2 (0x800UL << AES_CR_CHMOD_Pos) /*!< 0x00010000 */
  1812. #define AES_CR_CCFC_Pos (7U)
  1813. #define AES_CR_CCFC_Msk (0x1UL << AES_CR_CCFC_Pos) /*!< 0x00000080 */
  1814. #define AES_CR_CCFC AES_CR_CCFC_Msk /*!< Computation Complete Flag Clear */
  1815. #define AES_CR_ERRC_Pos (8U)
  1816. #define AES_CR_ERRC_Msk (0x1UL << AES_CR_ERRC_Pos) /*!< 0x00000100 */
  1817. #define AES_CR_ERRC AES_CR_ERRC_Msk /*!< Error Clear */
  1818. #define AES_CR_CCFIE_Pos (9U)
  1819. #define AES_CR_CCFIE_Msk (0x1UL << AES_CR_CCFIE_Pos) /*!< 0x00000200 */
  1820. #define AES_CR_CCFIE AES_CR_CCFIE_Msk /*!< Computation Complete Flag Interrupt Enable */
  1821. #define AES_CR_ERRIE_Pos (10U)
  1822. #define AES_CR_ERRIE_Msk (0x1UL << AES_CR_ERRIE_Pos) /*!< 0x00000400 */
  1823. #define AES_CR_ERRIE AES_CR_ERRIE_Msk /*!< Error Interrupt Enable */
  1824. #define AES_CR_DMAINEN_Pos (11U)
  1825. #define AES_CR_DMAINEN_Msk (0x1UL << AES_CR_DMAINEN_Pos) /*!< 0x00000800 */
  1826. #define AES_CR_DMAINEN AES_CR_DMAINEN_Msk /*!< Enable data input phase DMA management */
  1827. #define AES_CR_DMAOUTEN_Pos (12U)
  1828. #define AES_CR_DMAOUTEN_Msk (0x1UL << AES_CR_DMAOUTEN_Pos) /*!< 0x00001000 */
  1829. #define AES_CR_DMAOUTEN AES_CR_DMAOUTEN_Msk /*!< Enable data output phase DMA management */
  1830. #define AES_CR_NPBLB_Pos (20U)
  1831. #define AES_CR_NPBLB_Msk (0xFUL << AES_CR_NPBLB_Pos) /*!< 0x00F00000 */
  1832. #define AES_CR_NPBLB AES_CR_NPBLB_Msk /*!< Number of padding bytes in last block of payload. */
  1833. #define AES_CR_NPBLB_0 (0x1UL << AES_CR_NPBLB_Pos) /*!< 0x00100000 */
  1834. #define AES_CR_NPBLB_1 (0x2UL << AES_CR_NPBLB_Pos) /*!< 0x00200000 */
  1835. #define AES_CR_NPBLB_2 (0x4UL << AES_CR_NPBLB_Pos) /*!< 0x00400000 */
  1836. #define AES_CR_NPBLB_3 (0x8UL << AES_CR_NPBLB_Pos) /*!< 0x00800000 */
  1837. #define AES_CR_GCMPH_Pos (13U)
  1838. #define AES_CR_GCMPH_Msk (0x3UL << AES_CR_GCMPH_Pos) /*!< 0x00006000 */
  1839. #define AES_CR_GCMPH AES_CR_GCMPH_Msk /*!< GCM Phase */
  1840. #define AES_CR_GCMPH_0 (0x1UL << AES_CR_GCMPH_Pos) /*!< 0x00002000 */
  1841. #define AES_CR_GCMPH_1 (0x2UL << AES_CR_GCMPH_Pos) /*!< 0x00004000 */
  1842. #define AES_CR_KEYSIZE_Pos (18U)
  1843. #define AES_CR_KEYSIZE_Msk (0x1UL << AES_CR_KEYSIZE_Pos) /*!< 0x00040000 */
  1844. #define AES_CR_KEYSIZE AES_CR_KEYSIZE_Msk /*!< Key size selection */
  1845. /******************* Bit definition for AES_SR register *********************/
  1846. #define AES_SR_CCF_Pos (0U)
  1847. #define AES_SR_CCF_Msk (0x1UL << AES_SR_CCF_Pos) /*!< 0x00000001 */
  1848. #define AES_SR_CCF AES_SR_CCF_Msk /*!< Computation Complete Flag */
  1849. #define AES_SR_RDERR_Pos (1U)
  1850. #define AES_SR_RDERR_Msk (0x1UL << AES_SR_RDERR_Pos) /*!< 0x00000002 */
  1851. #define AES_SR_RDERR AES_SR_RDERR_Msk /*!< Read Error Flag */
  1852. #define AES_SR_WRERR_Pos (2U)
  1853. #define AES_SR_WRERR_Msk (0x1UL << AES_SR_WRERR_Pos) /*!< 0x00000004 */
  1854. #define AES_SR_WRERR AES_SR_WRERR_Msk /*!< Write Error Flag */
  1855. #define AES_SR_BUSY_Pos (3U)
  1856. #define AES_SR_BUSY_Msk (0x1UL << AES_SR_BUSY_Pos) /*!< 0x00000008 */
  1857. #define AES_SR_BUSY AES_SR_BUSY_Msk /*!< Busy Flag */
  1858. /******************* Bit definition for AES_DINR register *******************/
  1859. #define AES_DINR_Pos (0U)
  1860. #define AES_DINR_Msk (0xFFFFFFFFUL << AES_DINR_Pos) /*!< 0xFFFFFFFF */
  1861. #define AES_DINR AES_DINR_Msk /*!< AES Data Input Register */
  1862. /******************* Bit definition for AES_DOUTR register ******************/
  1863. #define AES_DOUTR_Pos (0U)
  1864. #define AES_DOUTR_Msk (0xFFFFFFFFUL << AES_DOUTR_Pos) /*!< 0xFFFFFFFF */
  1865. #define AES_DOUTR AES_DOUTR_Msk /*!< AES Data Output Register */
  1866. /******************* Bit definition for AES_KEYR0 register ******************/
  1867. #define AES_KEYR0_Pos (0U)
  1868. #define AES_KEYR0_Msk (0xFFFFFFFFUL << AES_KEYR0_Pos) /*!< 0xFFFFFFFF */
  1869. #define AES_KEYR0 AES_KEYR0_Msk /*!< AES Key Register 0 */
  1870. /******************* Bit definition for AES_KEYR1 register ******************/
  1871. #define AES_KEYR1_Pos (0U)
  1872. #define AES_KEYR1_Msk (0xFFFFFFFFUL << AES_KEYR1_Pos) /*!< 0xFFFFFFFF */
  1873. #define AES_KEYR1 AES_KEYR1_Msk /*!< AES Key Register 1 */
  1874. /******************* Bit definition for AES_KEYR2 register ******************/
  1875. #define AES_KEYR2_Pos (0U)
  1876. #define AES_KEYR2_Msk (0xFFFFFFFFUL << AES_KEYR2_Pos) /*!< 0xFFFFFFFF */
  1877. #define AES_KEYR2 AES_KEYR2_Msk /*!< AES Key Register 2 */
  1878. /******************* Bit definition for AES_KEYR3 register ******************/
  1879. #define AES_KEYR3_Pos (0U)
  1880. #define AES_KEYR3_Msk (0xFFFFFFFFUL << AES_KEYR3_Pos) /*!< 0xFFFFFFFF */
  1881. #define AES_KEYR3 AES_KEYR3_Msk /*!< AES Key Register 3 */
  1882. /******************* Bit definition for AES_KEYR4 register ******************/
  1883. #define AES_KEYR4_Pos (0U)
  1884. #define AES_KEYR4_Msk (0xFFFFFFFFUL << AES_KEYR4_Pos) /*!< 0xFFFFFFFF */
  1885. #define AES_KEYR4 AES_KEYR4_Msk /*!< AES Key Register 4 */
  1886. /******************* Bit definition for AES_KEYR5 register ******************/
  1887. #define AES_KEYR5_Pos (0U)
  1888. #define AES_KEYR5_Msk (0xFFFFFFFFUL << AES_KEYR5_Pos) /*!< 0xFFFFFFFF */
  1889. #define AES_KEYR5 AES_KEYR5_Msk /*!< AES Key Register 5 */
  1890. /******************* Bit definition for AES_KEYR6 register ******************/
  1891. #define AES_KEYR6_Pos (0U)
  1892. #define AES_KEYR6_Msk (0xFFFFFFFFUL << AES_KEYR6_Pos) /*!< 0xFFFFFFFF */
  1893. #define AES_KEYR6 AES_KEYR6_Msk /*!< AES Key Register 6 */
  1894. /******************* Bit definition for AES_KEYR7 register ******************/
  1895. #define AES_KEYR7_Pos (0U)
  1896. #define AES_KEYR7_Msk (0xFFFFFFFFUL << AES_KEYR7_Pos) /*!< 0xFFFFFFFF */
  1897. #define AES_KEYR7 AES_KEYR7_Msk /*!< AES Key Register 7 */
  1898. /******************* Bit definition for AES_IVR0 register ******************/
  1899. #define AES_IVR0_Pos (0U)
  1900. #define AES_IVR0_Msk (0xFFFFFFFFUL << AES_IVR0_Pos) /*!< 0xFFFFFFFF */
  1901. #define AES_IVR0 AES_IVR0_Msk /*!< AES Initialization Vector Register 0 */
  1902. /******************* Bit definition for AES_IVR1 register ******************/
  1903. #define AES_IVR1_Pos (0U)
  1904. #define AES_IVR1_Msk (0xFFFFFFFFUL << AES_IVR1_Pos) /*!< 0xFFFFFFFF */
  1905. #define AES_IVR1 AES_IVR1_Msk /*!< AES Initialization Vector Register 1 */
  1906. /******************* Bit definition for AES_IVR2 register ******************/
  1907. #define AES_IVR2_Pos (0U)
  1908. #define AES_IVR2_Msk (0xFFFFFFFFUL << AES_IVR2_Pos) /*!< 0xFFFFFFFF */
  1909. #define AES_IVR2 AES_IVR2_Msk /*!< AES Initialization Vector Register 2 */
  1910. /******************* Bit definition for AES_IVR3 register ******************/
  1911. #define AES_IVR3_Pos (0U)
  1912. #define AES_IVR3_Msk (0xFFFFFFFFUL << AES_IVR3_Pos) /*!< 0xFFFFFFFF */
  1913. #define AES_IVR3 AES_IVR3_Msk /*!< AES Initialization Vector Register 3 */
  1914. /******************* Bit definition for AES_SUSP0R register ******************/
  1915. #define AES_SUSP0R_Pos (0U)
  1916. #define AES_SUSP0R_Msk (0xFFFFFFFFUL << AES_SUSP0R_Pos) /*!< 0xFFFFFFFF */
  1917. #define AES_SUSP0R AES_SUSP0R_Msk /*!< AES Suspend registers 0 */
  1918. /******************* Bit definition for AES_SUSP1R register ******************/
  1919. #define AES_SUSP1R_Pos (0U)
  1920. #define AES_SUSP1R_Msk (0xFFFFFFFFUL << AES_SUSP1R_Pos) /*!< 0xFFFFFFFF */
  1921. #define AES_SUSP1R AES_SUSP1R_Msk /*!< AES Suspend registers 1 */
  1922. /******************* Bit definition for AES_SUSP2R register ******************/
  1923. #define AES_SUSP2R_Pos (0U)
  1924. #define AES_SUSP2R_Msk (0xFFFFFFFFUL << AES_SUSP2R_Pos) /*!< 0xFFFFFFFF */
  1925. #define AES_SUSP2R AES_SUSP2R_Msk /*!< AES Suspend registers 2 */
  1926. /******************* Bit definition for AES_SUSP3R register ******************/
  1927. #define AES_SUSP3R_Pos (0U)
  1928. #define AES_SUSP3R_Msk (0xFFFFFFFFUL << AES_SUSP3R_Pos) /*!< 0xFFFFFFFF */
  1929. #define AES_SUSP3R AES_SUSP3R_Msk /*!< AES Suspend registers 3 */
  1930. /******************* Bit definition for AES_SUSP4R register ******************/
  1931. #define AES_SUSP4R_Pos (0U)
  1932. #define AES_SUSP4R_Msk (0xFFFFFFFFUL << AES_SUSP4R_Pos) /*!< 0xFFFFFFFF */
  1933. #define AES_SUSP4R AES_SUSP4R_Msk /*!< AES Suspend registers 4 */
  1934. /******************* Bit definition for AES_SUSP5R register ******************/
  1935. #define AES_SUSP5R_Pos (0U)
  1936. #define AES_SUSP5R_Msk (0xFFFFFFFFUL << AES_SUSP5R_Pos) /*!< 0xFFFFFFFF */
  1937. #define AES_SUSP5R AES_SUSP5R_Msk /*!< AES Suspend registers 5 */
  1938. /******************* Bit definition for AES_SUSP6R register ******************/
  1939. #define AES_SUSP6R_Pos (0U)
  1940. #define AES_SUSP6R_Msk (0xFFFFFFFFUL << AES_SUSP6R_Pos) /*!< 0xFFFFFFFF */
  1941. #define AES_SUSP6R AES_SUSP6R_Msk /*!< AES Suspend registers 6 */
  1942. /******************* Bit definition for AES_SUSP7R register ******************/
  1943. #define AES_SUSP7R_Pos (0U)
  1944. #define AES_SUSP7R_Msk (0xFFFFFFFFUL << AES_SUSP7R_Pos) /*!< 0xFFFFFFFF */
  1945. #define AES_SUSP7R AES_SUSP7R_Msk /*!< AES Suspend registers 7 */
  1946. /******************************************************************************/
  1947. /* */
  1948. /* Digital to Analog Converter */
  1949. /* */
  1950. /******************************************************************************/
  1951. /*
  1952. * @brief Specific device feature definitions
  1953. */
  1954. #define DAC_ADDITIONAL_TRIGGERS_SUPPORT
  1955. /******************** Bit definition for DAC_CR register ********************/
  1956. #define DAC_CR_EN1_Pos (0U)
  1957. #define DAC_CR_EN1_Msk (0x1UL << DAC_CR_EN1_Pos) /*!< 0x00000001 */
  1958. #define DAC_CR_EN1 DAC_CR_EN1_Msk /*!<DAC channel1 enable */
  1959. #define DAC_CR_TEN1_Pos (1U)
  1960. #define DAC_CR_TEN1_Msk (0x1UL << DAC_CR_TEN1_Pos) /*!< 0x00000002 */
  1961. #define DAC_CR_TEN1 DAC_CR_TEN1_Msk /*!<DAC channel1 Trigger enable */
  1962. #define DAC_CR_TSEL1_Pos (2U)
  1963. #define DAC_CR_TSEL1_Msk (0xFUL << DAC_CR_TSEL1_Pos) /*!< 0x0000003C */
  1964. #define DAC_CR_TSEL1 DAC_CR_TSEL1_Msk /*!<TSEL1[3:0] (DAC channel1 Trigger selection) */
  1965. #define DAC_CR_TSEL1_0 (0x1UL << DAC_CR_TSEL1_Pos) /*!< 0x00000004 */
  1966. #define DAC_CR_TSEL1_1 (0x2UL << DAC_CR_TSEL1_Pos) /*!< 0x00000008 */
  1967. #define DAC_CR_TSEL1_2 (0x4UL << DAC_CR_TSEL1_Pos) /*!< 0x00000010 */
  1968. #define DAC_CR_TSEL1_3 (0x8UL << DAC_CR_TSEL1_Pos) /*!< 0x00000020 */
  1969. #define DAC_CR_WAVE1_Pos (6U)
  1970. #define DAC_CR_WAVE1_Msk (0x3UL << DAC_CR_WAVE1_Pos) /*!< 0x000000C0 */
  1971. #define DAC_CR_WAVE1 DAC_CR_WAVE1_Msk /*!<WAVE1[1:0] (DAC channel1 noise/triangle wave generation enable) */
  1972. #define DAC_CR_WAVE1_0 (0x1UL << DAC_CR_WAVE1_Pos) /*!< 0x00000040 */
  1973. #define DAC_CR_WAVE1_1 (0x2UL << DAC_CR_WAVE1_Pos) /*!< 0x00000080 */
  1974. #define DAC_CR_MAMP1_Pos (8U)
  1975. #define DAC_CR_MAMP1_Msk (0xFUL << DAC_CR_MAMP1_Pos) /*!< 0x00000F00 */
  1976. #define DAC_CR_MAMP1 DAC_CR_MAMP1_Msk /*!<MAMP1[3:0] (DAC channel1 Mask/Amplitude selector) */
  1977. #define DAC_CR_MAMP1_0 (0x1UL << DAC_CR_MAMP1_Pos) /*!< 0x00000100 */
  1978. #define DAC_CR_MAMP1_1 (0x2UL << DAC_CR_MAMP1_Pos) /*!< 0x00000200 */
  1979. #define DAC_CR_MAMP1_2 (0x4UL << DAC_CR_MAMP1_Pos) /*!< 0x00000400 */
  1980. #define DAC_CR_MAMP1_3 (0x8UL << DAC_CR_MAMP1_Pos) /*!< 0x00000800 */
  1981. #define DAC_CR_DMAEN1_Pos (12U)
  1982. #define DAC_CR_DMAEN1_Msk (0x1UL << DAC_CR_DMAEN1_Pos) /*!< 0x00001000 */
  1983. #define DAC_CR_DMAEN1 DAC_CR_DMAEN1_Msk /*!<DAC channel1 DMA enable */
  1984. #define DAC_CR_DMAUDRIE1_Pos (13U)
  1985. #define DAC_CR_DMAUDRIE1_Msk (0x1UL << DAC_CR_DMAUDRIE1_Pos) /*!< 0x00002000 */
  1986. #define DAC_CR_DMAUDRIE1 DAC_CR_DMAUDRIE1_Msk /*!<DAC channel 1 DMA underrun interrupt enable >*/
  1987. #define DAC_CR_CEN1_Pos (14U)
  1988. #define DAC_CR_CEN1_Msk (0x1UL << DAC_CR_CEN1_Pos) /*!< 0x00004000 */
  1989. #define DAC_CR_CEN1 DAC_CR_CEN1_Msk /*!<DAC channel 1 calibration enable >*/
  1990. #define DAC_CR_EN2_Pos (16U)
  1991. #define DAC_CR_EN2_Msk (0x1UL << DAC_CR_EN2_Pos) /*!< 0x00010000 */
  1992. #define DAC_CR_EN2 DAC_CR_EN2_Msk /*!<DAC channel2 enable */
  1993. #define DAC_CR_TEN2_Pos (17U)
  1994. #define DAC_CR_TEN2_Msk (0x1UL << DAC_CR_TEN2_Pos) /*!< 0x00020000 */
  1995. #define DAC_CR_TEN2 DAC_CR_TEN2_Msk /*!<DAC channel2 Trigger enable */
  1996. #define DAC_CR_TSEL2_Pos (18U)
  1997. #define DAC_CR_TSEL2_Msk (0xFUL << DAC_CR_TSEL2_Pos) /*!< 0x003C0000 */
  1998. #define DAC_CR_TSEL2 DAC_CR_TSEL2_Msk /*!<TSEL2[2:0] (DAC channel2 Trigger selection) */
  1999. #define DAC_CR_TSEL2_0 (0x1UL << DAC_CR_TSEL2_Pos) /*!< 0x00040000 */
  2000. #define DAC_CR_TSEL2_1 (0x2UL << DAC_CR_TSEL2_Pos) /*!< 0x00080000 */
  2001. #define DAC_CR_TSEL2_2 (0x4UL << DAC_CR_TSEL2_Pos) /*!< 0x00100000 */
  2002. #define DAC_CR_TSEL2_3 (0x8UL << DAC_CR_TSEL2_Pos) /*!< 0x00200000 */
  2003. #define DAC_CR_WAVE2_Pos (22U)
  2004. #define DAC_CR_WAVE2_Msk (0x3UL << DAC_CR_WAVE2_Pos) /*!< 0x00C00000 */
  2005. #define DAC_CR_WAVE2 DAC_CR_WAVE2_Msk /*!<WAVE2[1:0] (DAC channel2 noise/triangle wave generation enable) */
  2006. #define DAC_CR_WAVE2_0 (0x1UL << DAC_CR_WAVE2_Pos) /*!< 0x00400000 */
  2007. #define DAC_CR_WAVE2_1 (0x2UL << DAC_CR_WAVE2_Pos) /*!< 0x00800000 */
  2008. #define DAC_CR_MAMP2_Pos (24U)
  2009. #define DAC_CR_MAMP2_Msk (0xFUL << DAC_CR_MAMP2_Pos) /*!< 0x0F000000 */
  2010. #define DAC_CR_MAMP2 DAC_CR_MAMP2_Msk /*!<MAMP2[3:0] (DAC channel2 Mask/Amplitude selector) */
  2011. #define DAC_CR_MAMP2_0 (0x1UL << DAC_CR_MAMP2_Pos) /*!< 0x01000000 */
  2012. #define DAC_CR_MAMP2_1 (0x2UL << DAC_CR_MAMP2_Pos) /*!< 0x02000000 */
  2013. #define DAC_CR_MAMP2_2 (0x4UL << DAC_CR_MAMP2_Pos) /*!< 0x04000000 */
  2014. #define DAC_CR_MAMP2_3 (0x8UL << DAC_CR_MAMP2_Pos) /*!< 0x08000000 */
  2015. #define DAC_CR_DMAEN2_Pos (28U)
  2016. #define DAC_CR_DMAEN2_Msk (0x1UL << DAC_CR_DMAEN2_Pos) /*!< 0x10000000 */
  2017. #define DAC_CR_DMAEN2 DAC_CR_DMAEN2_Msk /*!<DAC channel2 DMA enabled */
  2018. #define DAC_CR_DMAUDRIE2_Pos (29U)
  2019. #define DAC_CR_DMAUDRIE2_Msk (0x1UL << DAC_CR_DMAUDRIE2_Pos) /*!< 0x20000000 */
  2020. #define DAC_CR_DMAUDRIE2 DAC_CR_DMAUDRIE2_Msk /*!<DAC channel2 DMA underrun interrupt enable >*/
  2021. #define DAC_CR_CEN2_Pos (30U)
  2022. #define DAC_CR_CEN2_Msk (0x1UL << DAC_CR_CEN2_Pos) /*!< 0x40000000 */
  2023. #define DAC_CR_CEN2 DAC_CR_CEN2_Msk /*!<DAC channel2 calibration enable >*/
  2024. /***************** Bit definition for DAC_SWTRIGR register ******************/
  2025. #define DAC_SWTRIGR_SWTRIG1_Pos (0U)
  2026. #define DAC_SWTRIGR_SWTRIG1_Msk (0x1UL << DAC_SWTRIGR_SWTRIG1_Pos) /*!< 0x00000001 */
  2027. #define DAC_SWTRIGR_SWTRIG1 DAC_SWTRIGR_SWTRIG1_Msk /*!<DAC channel1 software trigger */
  2028. #define DAC_SWTRIGR_SWTRIG2_Pos (1U)
  2029. #define DAC_SWTRIGR_SWTRIG2_Msk (0x1UL << DAC_SWTRIGR_SWTRIG2_Pos) /*!< 0x00000002 */
  2030. #define DAC_SWTRIGR_SWTRIG2 DAC_SWTRIGR_SWTRIG2_Msk /*!<DAC channel2 software trigger */
  2031. /***************** Bit definition for DAC_DHR12R1 register ******************/
  2032. #define DAC_DHR12R1_DACC1DHR_Pos (0U)
  2033. #define DAC_DHR12R1_DACC1DHR_Msk (0xFFFUL << DAC_DHR12R1_DACC1DHR_Pos) /*!< 0x00000FFF */
  2034. #define DAC_DHR12R1_DACC1DHR DAC_DHR12R1_DACC1DHR_Msk /*!<DAC channel1 12-bit Right aligned data */
  2035. /***************** Bit definition for DAC_DHR12L1 register ******************/
  2036. #define DAC_DHR12L1_DACC1DHR_Pos (4U)
  2037. #define DAC_DHR12L1_DACC1DHR_Msk (0xFFFUL << DAC_DHR12L1_DACC1DHR_Pos) /*!< 0x0000FFF0 */
  2038. #define DAC_DHR12L1_DACC1DHR DAC_DHR12L1_DACC1DHR_Msk /*!<DAC channel1 12-bit Left aligned data */
  2039. /****************** Bit definition for DAC_DHR8R1 register ******************/
  2040. #define DAC_DHR8R1_DACC1DHR_Pos (0U)
  2041. #define DAC_DHR8R1_DACC1DHR_Msk (0xFFUL << DAC_DHR8R1_DACC1DHR_Pos) /*!< 0x000000FF */
  2042. #define DAC_DHR8R1_DACC1DHR DAC_DHR8R1_DACC1DHR_Msk /*!<DAC channel1 8-bit Right aligned data */
  2043. /***************** Bit definition for DAC_DHR12R2 register ******************/
  2044. #define DAC_DHR12R2_DACC2DHR_Pos (0U)
  2045. #define DAC_DHR12R2_DACC2DHR_Msk (0xFFFUL << DAC_DHR12R2_DACC2DHR_Pos) /*!< 0x00000FFF */
  2046. #define DAC_DHR12R2_DACC2DHR DAC_DHR12R2_DACC2DHR_Msk /*!<DAC channel2 12-bit Right aligned data */
  2047. /***************** Bit definition for DAC_DHR12L2 register ******************/
  2048. #define DAC_DHR12L2_DACC2DHR_Pos (4U)
  2049. #define DAC_DHR12L2_DACC2DHR_Msk (0xFFFUL << DAC_DHR12L2_DACC2DHR_Pos) /*!< 0x0000FFF0 */
  2050. #define DAC_DHR12L2_DACC2DHR DAC_DHR12L2_DACC2DHR_Msk /*!<DAC channel2 12-bit Left aligned data */
  2051. /****************** Bit definition for DAC_DHR8R2 register ******************/
  2052. #define DAC_DHR8R2_DACC2DHR_Pos (0U)
  2053. #define DAC_DHR8R2_DACC2DHR_Msk (0xFFUL << DAC_DHR8R2_DACC2DHR_Pos) /*!< 0x000000FF */
  2054. #define DAC_DHR8R2_DACC2DHR DAC_DHR8R2_DACC2DHR_Msk /*!<DAC channel2 8-bit Right aligned data */
  2055. /***************** Bit definition for DAC_DHR12RD register ******************/
  2056. #define DAC_DHR12RD_DACC1DHR_Pos (0U)
  2057. #define DAC_DHR12RD_DACC1DHR_Msk (0xFFFUL << DAC_DHR12RD_DACC1DHR_Pos) /*!< 0x00000FFF */
  2058. #define DAC_DHR12RD_DACC1DHR DAC_DHR12RD_DACC1DHR_Msk /*!<DAC channel1 12-bit Right aligned data */
  2059. #define DAC_DHR12RD_DACC2DHR_Pos (16U)
  2060. #define DAC_DHR12RD_DACC2DHR_Msk (0xFFFUL << DAC_DHR12RD_DACC2DHR_Pos) /*!< 0x0FFF0000 */
  2061. #define DAC_DHR12RD_DACC2DHR DAC_DHR12RD_DACC2DHR_Msk /*!<DAC channel2 12-bit Right aligned data */
  2062. /***************** Bit definition for DAC_DHR12LD register ******************/
  2063. #define DAC_DHR12LD_DACC1DHR_Pos (4U)
  2064. #define DAC_DHR12LD_DACC1DHR_Msk (0xFFFUL << DAC_DHR12LD_DACC1DHR_Pos) /*!< 0x0000FFF0 */
  2065. #define DAC_DHR12LD_DACC1DHR DAC_DHR12LD_DACC1DHR_Msk /*!<DAC channel1 12-bit Left aligned data */
  2066. #define DAC_DHR12LD_DACC2DHR_Pos (20U)
  2067. #define DAC_DHR12LD_DACC2DHR_Msk (0xFFFUL << DAC_DHR12LD_DACC2DHR_Pos) /*!< 0xFFF00000 */
  2068. #define DAC_DHR12LD_DACC2DHR DAC_DHR12LD_DACC2DHR_Msk /*!<DAC channel2 12-bit Left aligned data */
  2069. /****************** Bit definition for DAC_DHR8RD register ******************/
  2070. #define DAC_DHR8RD_DACC1DHR_Pos (0U)
  2071. #define DAC_DHR8RD_DACC1DHR_Msk (0xFFUL << DAC_DHR8RD_DACC1DHR_Pos) /*!< 0x000000FF */
  2072. #define DAC_DHR8RD_DACC1DHR DAC_DHR8RD_DACC1DHR_Msk /*!<DAC channel1 8-bit Right aligned data */
  2073. #define DAC_DHR8RD_DACC2DHR_Pos (8U)
  2074. #define DAC_DHR8RD_DACC2DHR_Msk (0xFFUL << DAC_DHR8RD_DACC2DHR_Pos) /*!< 0x0000FF00 */
  2075. #define DAC_DHR8RD_DACC2DHR DAC_DHR8RD_DACC2DHR_Msk /*!<DAC channel2 8-bit Right aligned data */
  2076. /******************* Bit definition for DAC_DOR1 register *******************/
  2077. #define DAC_DOR1_DACC1DOR_Pos (0U)
  2078. #define DAC_DOR1_DACC1DOR_Msk (0xFFFUL << DAC_DOR1_DACC1DOR_Pos) /*!< 0x00000FFF */
  2079. #define DAC_DOR1_DACC1DOR DAC_DOR1_DACC1DOR_Msk /*!<DAC channel1 data output */
  2080. /******************* Bit definition for DAC_DOR2 register *******************/
  2081. #define DAC_DOR2_DACC2DOR_Pos (0U)
  2082. #define DAC_DOR2_DACC2DOR_Msk (0xFFFUL << DAC_DOR2_DACC2DOR_Pos) /*!< 0x00000FFF */
  2083. #define DAC_DOR2_DACC2DOR DAC_DOR2_DACC2DOR_Msk /*!<DAC channel2 data output */
  2084. /******************** Bit definition for DAC_SR register ********************/
  2085. #define DAC_SR_DMAUDR1_Pos (13U)
  2086. #define DAC_SR_DMAUDR1_Msk (0x1UL << DAC_SR_DMAUDR1_Pos) /*!< 0x00002000 */
  2087. #define DAC_SR_DMAUDR1 DAC_SR_DMAUDR1_Msk /*!<DAC channel1 DMA underrun flag */
  2088. #define DAC_SR_CAL_FLAG1_Pos (14U)
  2089. #define DAC_SR_CAL_FLAG1_Msk (0x1UL << DAC_SR_CAL_FLAG1_Pos) /*!< 0x00004000 */
  2090. #define DAC_SR_CAL_FLAG1 DAC_SR_CAL_FLAG1_Msk /*!<DAC channel1 calibration offset status */
  2091. #define DAC_SR_BWST1_Pos (15U)
  2092. #define DAC_SR_BWST1_Msk (0x1UL << DAC_SR_BWST1_Pos) /*!< 0x00008000 */
  2093. #define DAC_SR_BWST1 DAC_SR_BWST1_Msk /*!<DAC channel1 busy writing sample time flag */
  2094. #define DAC_SR_DMAUDR2_Pos (29U)
  2095. #define DAC_SR_DMAUDR2_Msk (0x1UL << DAC_SR_DMAUDR2_Pos) /*!< 0x20000000 */
  2096. #define DAC_SR_DMAUDR2 DAC_SR_DMAUDR2_Msk /*!<DAC channel2 DMA underrun flag */
  2097. #define DAC_SR_CAL_FLAG2_Pos (30U)
  2098. #define DAC_SR_CAL_FLAG2_Msk (0x1UL << DAC_SR_CAL_FLAG2_Pos) /*!< 0x40000000 */
  2099. #define DAC_SR_CAL_FLAG2 DAC_SR_CAL_FLAG2_Msk /*!<DAC channel2 calibration offset status */
  2100. #define DAC_SR_BWST2_Pos (31U)
  2101. #define DAC_SR_BWST2_Msk (0x1UL << DAC_SR_BWST2_Pos) /*!< 0x80000000 */
  2102. #define DAC_SR_BWST2 DAC_SR_BWST2_Msk /*!<DAC channel2 busy writing sample time flag */
  2103. /******************* Bit definition for DAC_CCR register ********************/
  2104. #define DAC_CCR_OTRIM1_Pos (0U)
  2105. #define DAC_CCR_OTRIM1_Msk (0x1FUL << DAC_CCR_OTRIM1_Pos) /*!< 0x0000001F */
  2106. #define DAC_CCR_OTRIM1 DAC_CCR_OTRIM1_Msk /*!<DAC channel1 offset trimming value */
  2107. #define DAC_CCR_OTRIM2_Pos (16U)
  2108. #define DAC_CCR_OTRIM2_Msk (0x1FUL << DAC_CCR_OTRIM2_Pos) /*!< 0x001F0000 */
  2109. #define DAC_CCR_OTRIM2 DAC_CCR_OTRIM2_Msk /*!<DAC channel2 offset trimming value */
  2110. /******************* Bit definition for DAC_MCR register *******************/
  2111. #define DAC_MCR_MODE1_Pos (0U)
  2112. #define DAC_MCR_MODE1_Msk (0x7UL << DAC_MCR_MODE1_Pos) /*!< 0x00000007 */
  2113. #define DAC_MCR_MODE1 DAC_MCR_MODE1_Msk /*!<MODE1[2:0] (DAC channel1 mode) */
  2114. #define DAC_MCR_MODE1_0 (0x1UL << DAC_MCR_MODE1_Pos) /*!< 0x00000001 */
  2115. #define DAC_MCR_MODE1_1 (0x2UL << DAC_MCR_MODE1_Pos) /*!< 0x00000002 */
  2116. #define DAC_MCR_MODE1_2 (0x4UL << DAC_MCR_MODE1_Pos) /*!< 0x00000004 */
  2117. #define DAC_MCR_MODE2_Pos (16U)
  2118. #define DAC_MCR_MODE2_Msk (0x7UL << DAC_MCR_MODE2_Pos) /*!< 0x00070000 */
  2119. #define DAC_MCR_MODE2 DAC_MCR_MODE2_Msk /*!<MODE2[2:0] (DAC channel2 mode) */
  2120. #define DAC_MCR_MODE2_0 (0x1UL << DAC_MCR_MODE2_Pos) /*!< 0x00010000 */
  2121. #define DAC_MCR_MODE2_1 (0x2UL << DAC_MCR_MODE2_Pos) /*!< 0x00020000 */
  2122. #define DAC_MCR_MODE2_2 (0x4UL << DAC_MCR_MODE2_Pos) /*!< 0x00040000 */
  2123. /****************** Bit definition for DAC_SHSR1 register ******************/
  2124. #define DAC_SHSR1_TSAMPLE1_Pos (0U)
  2125. #define DAC_SHSR1_TSAMPLE1_Msk (0x3FFUL << DAC_SHSR1_TSAMPLE1_Pos) /*!< 0x000003FF */
  2126. #define DAC_SHSR1_TSAMPLE1 DAC_SHSR1_TSAMPLE1_Msk /*!<DAC channel1 sample time */
  2127. /****************** Bit definition for DAC_SHSR2 register ******************/
  2128. #define DAC_SHSR2_TSAMPLE2_Pos (0U)
  2129. #define DAC_SHSR2_TSAMPLE2_Msk (0x3FFUL << DAC_SHSR2_TSAMPLE2_Pos) /*!< 0x000003FF */
  2130. #define DAC_SHSR2_TSAMPLE2 DAC_SHSR2_TSAMPLE2_Msk /*!<DAC channel2 sample time */
  2131. /****************** Bit definition for DAC_SHHR register ******************/
  2132. #define DAC_SHHR_THOLD1_Pos (0U)
  2133. #define DAC_SHHR_THOLD1_Msk (0x3FFUL << DAC_SHHR_THOLD1_Pos) /*!< 0x000003FF */
  2134. #define DAC_SHHR_THOLD1 DAC_SHHR_THOLD1_Msk /*!<DAC channel1 hold time */
  2135. #define DAC_SHHR_THOLD2_Pos (16U)
  2136. #define DAC_SHHR_THOLD2_Msk (0x3FFUL << DAC_SHHR_THOLD2_Pos) /*!< 0x03FF0000 */
  2137. #define DAC_SHHR_THOLD2 DAC_SHHR_THOLD2_Msk /*!<DAC channel2 hold time */
  2138. /****************** Bit definition for DAC_SHRR register ******************/
  2139. #define DAC_SHRR_TREFRESH1_Pos (0U)
  2140. #define DAC_SHRR_TREFRESH1_Msk (0xFFUL << DAC_SHRR_TREFRESH1_Pos) /*!< 0x000000FF */
  2141. #define DAC_SHRR_TREFRESH1 DAC_SHRR_TREFRESH1_Msk /*!<DAC channel1 refresh time */
  2142. #define DAC_SHRR_TREFRESH2_Pos (16U)
  2143. #define DAC_SHRR_TREFRESH2_Msk (0xFFUL << DAC_SHRR_TREFRESH2_Pos) /*!< 0x00FF0000 */
  2144. #define DAC_SHRR_TREFRESH2 DAC_SHRR_TREFRESH2_Msk /*!<DAC channel2 refresh time */
  2145. /******************************************************************************/
  2146. /* */
  2147. /* Debug MCU */
  2148. /* */
  2149. /******************************************************************************/
  2150. /******************************************************************************/
  2151. /* */
  2152. /* CRS Clock Recovery System */
  2153. /******************************************************************************/
  2154. /******************* Bit definition for CRS_CR register *********************/
  2155. #define CRS_CR_SYNCOKIE_Pos (0U)
  2156. #define CRS_CR_SYNCOKIE_Msk (0x1UL << CRS_CR_SYNCOKIE_Pos) /*!< 0x00000001 */
  2157. #define CRS_CR_SYNCOKIE CRS_CR_SYNCOKIE_Msk /*!< SYNC event OK interrupt enable */
  2158. #define CRS_CR_SYNCWARNIE_Pos (1U)
  2159. #define CRS_CR_SYNCWARNIE_Msk (0x1UL << CRS_CR_SYNCWARNIE_Pos) /*!< 0x00000002 */
  2160. #define CRS_CR_SYNCWARNIE CRS_CR_SYNCWARNIE_Msk /*!< SYNC warning interrupt enable */
  2161. #define CRS_CR_ERRIE_Pos (2U)
  2162. #define CRS_CR_ERRIE_Msk (0x1UL << CRS_CR_ERRIE_Pos) /*!< 0x00000004 */
  2163. #define CRS_CR_ERRIE CRS_CR_ERRIE_Msk /*!< SYNC error or trimming error interrupt enable */
  2164. #define CRS_CR_ESYNCIE_Pos (3U)
  2165. #define CRS_CR_ESYNCIE_Msk (0x1UL << CRS_CR_ESYNCIE_Pos) /*!< 0x00000008 */
  2166. #define CRS_CR_ESYNCIE CRS_CR_ESYNCIE_Msk /*!< Expected SYNC interrupt enable */
  2167. #define CRS_CR_CEN_Pos (5U)
  2168. #define CRS_CR_CEN_Msk (0x1UL << CRS_CR_CEN_Pos) /*!< 0x00000020 */
  2169. #define CRS_CR_CEN CRS_CR_CEN_Msk /*!< Frequency error counter enable */
  2170. #define CRS_CR_AUTOTRIMEN_Pos (6U)
  2171. #define CRS_CR_AUTOTRIMEN_Msk (0x1UL << CRS_CR_AUTOTRIMEN_Pos) /*!< 0x00000040 */
  2172. #define CRS_CR_AUTOTRIMEN CRS_CR_AUTOTRIMEN_Msk /*!< Automatic trimming enable */
  2173. #define CRS_CR_SWSYNC_Pos (7U)
  2174. #define CRS_CR_SWSYNC_Msk (0x1UL << CRS_CR_SWSYNC_Pos) /*!< 0x00000080 */
  2175. #define CRS_CR_SWSYNC CRS_CR_SWSYNC_Msk /*!< Generate software SYNC event */
  2176. #define CRS_CR_TRIM_Pos (8U)
  2177. #define CRS_CR_TRIM_Msk (0x7FUL << CRS_CR_TRIM_Pos) /*!< 0x00007F00 */
  2178. #define CRS_CR_TRIM CRS_CR_TRIM_Msk /*!< HSI48 oscillator smooth trimming */
  2179. /******************* Bit definition for CRS_CFGR register *********************/
  2180. #define CRS_CFGR_RELOAD_Pos (0U)
  2181. #define CRS_CFGR_RELOAD_Msk (0xFFFFUL << CRS_CFGR_RELOAD_Pos) /*!< 0x0000FFFF */
  2182. #define CRS_CFGR_RELOAD CRS_CFGR_RELOAD_Msk /*!< Counter reload value */
  2183. #define CRS_CFGR_FELIM_Pos (16U)
  2184. #define CRS_CFGR_FELIM_Msk (0xFFUL << CRS_CFGR_FELIM_Pos) /*!< 0x00FF0000 */
  2185. #define CRS_CFGR_FELIM CRS_CFGR_FELIM_Msk /*!< Frequency error limit */
  2186. #define CRS_CFGR_SYNCDIV_Pos (24U)
  2187. #define CRS_CFGR_SYNCDIV_Msk (0x7UL << CRS_CFGR_SYNCDIV_Pos) /*!< 0x07000000 */
  2188. #define CRS_CFGR_SYNCDIV CRS_CFGR_SYNCDIV_Msk /*!< SYNC divider */
  2189. #define CRS_CFGR_SYNCDIV_0 (0x1UL << CRS_CFGR_SYNCDIV_Pos) /*!< 0x01000000 */
  2190. #define CRS_CFGR_SYNCDIV_1 (0x2UL << CRS_CFGR_SYNCDIV_Pos) /*!< 0x02000000 */
  2191. #define CRS_CFGR_SYNCDIV_2 (0x4UL << CRS_CFGR_SYNCDIV_Pos) /*!< 0x04000000 */
  2192. #define CRS_CFGR_SYNCSRC_Pos (28U)
  2193. #define CRS_CFGR_SYNCSRC_Msk (0x3UL << CRS_CFGR_SYNCSRC_Pos) /*!< 0x30000000 */
  2194. #define CRS_CFGR_SYNCSRC CRS_CFGR_SYNCSRC_Msk /*!< SYNC signal source selection */
  2195. #define CRS_CFGR_SYNCSRC_0 (0x1UL << CRS_CFGR_SYNCSRC_Pos) /*!< 0x10000000 */
  2196. #define CRS_CFGR_SYNCSRC_1 (0x2UL << CRS_CFGR_SYNCSRC_Pos) /*!< 0x20000000 */
  2197. #define CRS_CFGR_SYNCPOL_Pos (31U)
  2198. #define CRS_CFGR_SYNCPOL_Msk (0x1UL << CRS_CFGR_SYNCPOL_Pos) /*!< 0x80000000 */
  2199. #define CRS_CFGR_SYNCPOL CRS_CFGR_SYNCPOL_Msk /*!< SYNC polarity selection */
  2200. /******************* Bit definition for CRS_ISR register *********************/
  2201. #define CRS_ISR_SYNCOKF_Pos (0U)
  2202. #define CRS_ISR_SYNCOKF_Msk (0x1UL << CRS_ISR_SYNCOKF_Pos) /*!< 0x00000001 */
  2203. #define CRS_ISR_SYNCOKF CRS_ISR_SYNCOKF_Msk /*!< SYNC event OK flag */
  2204. #define CRS_ISR_SYNCWARNF_Pos (1U)
  2205. #define CRS_ISR_SYNCWARNF_Msk (0x1UL << CRS_ISR_SYNCWARNF_Pos) /*!< 0x00000002 */
  2206. #define CRS_ISR_SYNCWARNF CRS_ISR_SYNCWARNF_Msk /*!< SYNC warning flag */
  2207. #define CRS_ISR_ERRF_Pos (2U)
  2208. #define CRS_ISR_ERRF_Msk (0x1UL << CRS_ISR_ERRF_Pos) /*!< 0x00000004 */
  2209. #define CRS_ISR_ERRF CRS_ISR_ERRF_Msk /*!< Error flag */
  2210. #define CRS_ISR_ESYNCF_Pos (3U)
  2211. #define CRS_ISR_ESYNCF_Msk (0x1UL << CRS_ISR_ESYNCF_Pos) /*!< 0x00000008 */
  2212. #define CRS_ISR_ESYNCF CRS_ISR_ESYNCF_Msk /*!< Expected SYNC flag */
  2213. #define CRS_ISR_SYNCERR_Pos (8U)
  2214. #define CRS_ISR_SYNCERR_Msk (0x1UL << CRS_ISR_SYNCERR_Pos) /*!< 0x00000100 */
  2215. #define CRS_ISR_SYNCERR CRS_ISR_SYNCERR_Msk /*!< SYNC error */
  2216. #define CRS_ISR_SYNCMISS_Pos (9U)
  2217. #define CRS_ISR_SYNCMISS_Msk (0x1UL << CRS_ISR_SYNCMISS_Pos) /*!< 0x00000200 */
  2218. #define CRS_ISR_SYNCMISS CRS_ISR_SYNCMISS_Msk /*!< SYNC missed */
  2219. #define CRS_ISR_TRIMOVF_Pos (10U)
  2220. #define CRS_ISR_TRIMOVF_Msk (0x1UL << CRS_ISR_TRIMOVF_Pos) /*!< 0x00000400 */
  2221. #define CRS_ISR_TRIMOVF CRS_ISR_TRIMOVF_Msk /*!< Trimming overflow or underflow */
  2222. #define CRS_ISR_FEDIR_Pos (15U)
  2223. #define CRS_ISR_FEDIR_Msk (0x1UL << CRS_ISR_FEDIR_Pos) /*!< 0x00008000 */
  2224. #define CRS_ISR_FEDIR CRS_ISR_FEDIR_Msk /*!< Frequency error direction */
  2225. #define CRS_ISR_FECAP_Pos (16U)
  2226. #define CRS_ISR_FECAP_Msk (0xFFFFUL << CRS_ISR_FECAP_Pos) /*!< 0xFFFF0000 */
  2227. #define CRS_ISR_FECAP CRS_ISR_FECAP_Msk /*!< Frequency error capture */
  2228. /******************* Bit definition for CRS_ICR register *********************/
  2229. #define CRS_ICR_SYNCOKC_Pos (0U)
  2230. #define CRS_ICR_SYNCOKC_Msk (0x1UL << CRS_ICR_SYNCOKC_Pos) /*!< 0x00000001 */
  2231. #define CRS_ICR_SYNCOKC CRS_ICR_SYNCOKC_Msk /*!< SYNC event OK clear flag */
  2232. #define CRS_ICR_SYNCWARNC_Pos (1U)
  2233. #define CRS_ICR_SYNCWARNC_Msk (0x1UL << CRS_ICR_SYNCWARNC_Pos) /*!< 0x00000002 */
  2234. #define CRS_ICR_SYNCWARNC CRS_ICR_SYNCWARNC_Msk /*!< SYNC warning clear flag */
  2235. #define CRS_ICR_ERRC_Pos (2U)
  2236. #define CRS_ICR_ERRC_Msk (0x1UL << CRS_ICR_ERRC_Pos) /*!< 0x00000004 */
  2237. #define CRS_ICR_ERRC CRS_ICR_ERRC_Msk /*!< Error clear flag */
  2238. #define CRS_ICR_ESYNCC_Pos (3U)
  2239. #define CRS_ICR_ESYNCC_Msk (0x1UL << CRS_ICR_ESYNCC_Pos) /*!< 0x00000008 */
  2240. #define CRS_ICR_ESYNCC CRS_ICR_ESYNCC_Msk /*!< Expected SYNC clear flag */
  2241. /******************************************************************************/
  2242. /* */
  2243. /* DMA Controller (DMA) */
  2244. /* */
  2245. /******************************************************************************/
  2246. /******************* Bit definition for DMA_ISR register ********************/
  2247. #define DMA_ISR_GIF1_Pos (0U)
  2248. #define DMA_ISR_GIF1_Msk (0x1UL << DMA_ISR_GIF1_Pos) /*!< 0x00000001 */
  2249. #define DMA_ISR_GIF1 DMA_ISR_GIF1_Msk /*!< Channel 1 Global interrupt flag */
  2250. #define DMA_ISR_TCIF1_Pos (1U)
  2251. #define DMA_ISR_TCIF1_Msk (0x1UL << DMA_ISR_TCIF1_Pos) /*!< 0x00000002 */
  2252. #define DMA_ISR_TCIF1 DMA_ISR_TCIF1_Msk /*!< Channel 1 Transfer Complete flag */
  2253. #define DMA_ISR_HTIF1_Pos (2U)
  2254. #define DMA_ISR_HTIF1_Msk (0x1UL << DMA_ISR_HTIF1_Pos) /*!< 0x00000004 */
  2255. #define DMA_ISR_HTIF1 DMA_ISR_HTIF1_Msk /*!< Channel 1 Half Transfer flag */
  2256. #define DMA_ISR_TEIF1_Pos (3U)
  2257. #define DMA_ISR_TEIF1_Msk (0x1UL << DMA_ISR_TEIF1_Pos) /*!< 0x00000008 */
  2258. #define DMA_ISR_TEIF1 DMA_ISR_TEIF1_Msk /*!< Channel 1 Transfer Error flag */
  2259. #define DMA_ISR_GIF2_Pos (4U)
  2260. #define DMA_ISR_GIF2_Msk (0x1UL << DMA_ISR_GIF2_Pos) /*!< 0x00000010 */
  2261. #define DMA_ISR_GIF2 DMA_ISR_GIF2_Msk /*!< Channel 2 Global interrupt flag */
  2262. #define DMA_ISR_TCIF2_Pos (5U)
  2263. #define DMA_ISR_TCIF2_Msk (0x1UL << DMA_ISR_TCIF2_Pos) /*!< 0x00000020 */
  2264. #define DMA_ISR_TCIF2 DMA_ISR_TCIF2_Msk /*!< Channel 2 Transfer Complete flag */
  2265. #define DMA_ISR_HTIF2_Pos (6U)
  2266. #define DMA_ISR_HTIF2_Msk (0x1UL << DMA_ISR_HTIF2_Pos) /*!< 0x00000040 */
  2267. #define DMA_ISR_HTIF2 DMA_ISR_HTIF2_Msk /*!< Channel 2 Half Transfer flag */
  2268. #define DMA_ISR_TEIF2_Pos (7U)
  2269. #define DMA_ISR_TEIF2_Msk (0x1UL << DMA_ISR_TEIF2_Pos) /*!< 0x00000080 */
  2270. #define DMA_ISR_TEIF2 DMA_ISR_TEIF2_Msk /*!< Channel 2 Transfer Error flag */
  2271. #define DMA_ISR_GIF3_Pos (8U)
  2272. #define DMA_ISR_GIF3_Msk (0x1UL << DMA_ISR_GIF3_Pos) /*!< 0x00000100 */
  2273. #define DMA_ISR_GIF3 DMA_ISR_GIF3_Msk /*!< Channel 3 Global interrupt flag */
  2274. #define DMA_ISR_TCIF3_Pos (9U)
  2275. #define DMA_ISR_TCIF3_Msk (0x1UL << DMA_ISR_TCIF3_Pos) /*!< 0x00000200 */
  2276. #define DMA_ISR_TCIF3 DMA_ISR_TCIF3_Msk /*!< Channel 3 Transfer Complete flag */
  2277. #define DMA_ISR_HTIF3_Pos (10U)
  2278. #define DMA_ISR_HTIF3_Msk (0x1UL << DMA_ISR_HTIF3_Pos) /*!< 0x00000400 */
  2279. #define DMA_ISR_HTIF3 DMA_ISR_HTIF3_Msk /*!< Channel 3 Half Transfer flag */
  2280. #define DMA_ISR_TEIF3_Pos (11U)
  2281. #define DMA_ISR_TEIF3_Msk (0x1UL << DMA_ISR_TEIF3_Pos) /*!< 0x00000800 */
  2282. #define DMA_ISR_TEIF3 DMA_ISR_TEIF3_Msk /*!< Channel 3 Transfer Error flag */
  2283. #define DMA_ISR_GIF4_Pos (12U)
  2284. #define DMA_ISR_GIF4_Msk (0x1UL << DMA_ISR_GIF4_Pos) /*!< 0x00001000 */
  2285. #define DMA_ISR_GIF4 DMA_ISR_GIF4_Msk /*!< Channel 4 Global interrupt flag */
  2286. #define DMA_ISR_TCIF4_Pos (13U)
  2287. #define DMA_ISR_TCIF4_Msk (0x1UL << DMA_ISR_TCIF4_Pos) /*!< 0x00002000 */
  2288. #define DMA_ISR_TCIF4 DMA_ISR_TCIF4_Msk /*!< Channel 4 Transfer Complete flag */
  2289. #define DMA_ISR_HTIF4_Pos (14U)
  2290. #define DMA_ISR_HTIF4_Msk (0x1UL << DMA_ISR_HTIF4_Pos) /*!< 0x00004000 */
  2291. #define DMA_ISR_HTIF4 DMA_ISR_HTIF4_Msk /*!< Channel 4 Half Transfer flag */
  2292. #define DMA_ISR_TEIF4_Pos (15U)
  2293. #define DMA_ISR_TEIF4_Msk (0x1UL << DMA_ISR_TEIF4_Pos) /*!< 0x00008000 */
  2294. #define DMA_ISR_TEIF4 DMA_ISR_TEIF4_Msk /*!< Channel 4 Transfer Error flag */
  2295. #define DMA_ISR_GIF5_Pos (16U)
  2296. #define DMA_ISR_GIF5_Msk (0x1UL << DMA_ISR_GIF5_Pos) /*!< 0x00010000 */
  2297. #define DMA_ISR_GIF5 DMA_ISR_GIF5_Msk /*!< Channel 5 Global interrupt flag */
  2298. #define DMA_ISR_TCIF5_Pos (17U)
  2299. #define DMA_ISR_TCIF5_Msk (0x1UL << DMA_ISR_TCIF5_Pos) /*!< 0x00020000 */
  2300. #define DMA_ISR_TCIF5 DMA_ISR_TCIF5_Msk /*!< Channel 5 Transfer Complete flag */
  2301. #define DMA_ISR_HTIF5_Pos (18U)
  2302. #define DMA_ISR_HTIF5_Msk (0x1UL << DMA_ISR_HTIF5_Pos) /*!< 0x00040000 */
  2303. #define DMA_ISR_HTIF5 DMA_ISR_HTIF5_Msk /*!< Channel 5 Half Transfer flag */
  2304. #define DMA_ISR_TEIF5_Pos (19U)
  2305. #define DMA_ISR_TEIF5_Msk (0x1UL << DMA_ISR_TEIF5_Pos) /*!< 0x00080000 */
  2306. #define DMA_ISR_TEIF5 DMA_ISR_TEIF5_Msk /*!< Channel 5 Transfer Error flag */
  2307. #define DMA_ISR_GIF6_Pos (20U)
  2308. #define DMA_ISR_GIF6_Msk (0x1UL << DMA_ISR_GIF6_Pos) /*!< 0x00100000 */
  2309. #define DMA_ISR_GIF6 DMA_ISR_GIF6_Msk /*!< Channel 6 Global interrupt flag */
  2310. #define DMA_ISR_TCIF6_Pos (21U)
  2311. #define DMA_ISR_TCIF6_Msk (0x1UL << DMA_ISR_TCIF6_Pos) /*!< 0x00200000 */
  2312. #define DMA_ISR_TCIF6 DMA_ISR_TCIF6_Msk /*!< Channel 6 Transfer Complete flag */
  2313. #define DMA_ISR_HTIF6_Pos (22U)
  2314. #define DMA_ISR_HTIF6_Msk (0x1UL << DMA_ISR_HTIF6_Pos) /*!< 0x00400000 */
  2315. #define DMA_ISR_HTIF6 DMA_ISR_HTIF6_Msk /*!< Channel 6 Half Transfer flag */
  2316. #define DMA_ISR_TEIF6_Pos (23U)
  2317. #define DMA_ISR_TEIF6_Msk (0x1UL << DMA_ISR_TEIF6_Pos) /*!< 0x00800000 */
  2318. #define DMA_ISR_TEIF6 DMA_ISR_TEIF6_Msk /*!< Channel 6 Transfer Error flag */
  2319. #define DMA_ISR_GIF7_Pos (24U)
  2320. #define DMA_ISR_GIF7_Msk (0x1UL << DMA_ISR_GIF7_Pos) /*!< 0x01000000 */
  2321. #define DMA_ISR_GIF7 DMA_ISR_GIF7_Msk /*!< Channel 7 Global interrupt flag */
  2322. #define DMA_ISR_TCIF7_Pos (25U)
  2323. #define DMA_ISR_TCIF7_Msk (0x1UL << DMA_ISR_TCIF7_Pos) /*!< 0x02000000 */
  2324. #define DMA_ISR_TCIF7 DMA_ISR_TCIF7_Msk /*!< Channel 7 Transfer Complete flag */
  2325. #define DMA_ISR_HTIF7_Pos (26U)
  2326. #define DMA_ISR_HTIF7_Msk (0x1UL << DMA_ISR_HTIF7_Pos) /*!< 0x04000000 */
  2327. #define DMA_ISR_HTIF7 DMA_ISR_HTIF7_Msk /*!< Channel 7 Half Transfer flag */
  2328. #define DMA_ISR_TEIF7_Pos (27U)
  2329. #define DMA_ISR_TEIF7_Msk (0x1UL << DMA_ISR_TEIF7_Pos) /*!< 0x08000000 */
  2330. #define DMA_ISR_TEIF7 DMA_ISR_TEIF7_Msk /*!< Channel 7 Transfer Error flag */
  2331. /******************* Bit definition for DMA_IFCR register *******************/
  2332. #define DMA_IFCR_CGIF1_Pos (0U)
  2333. #define DMA_IFCR_CGIF1_Msk (0x1UL << DMA_IFCR_CGIF1_Pos) /*!< 0x00000001 */
  2334. #define DMA_IFCR_CGIF1 DMA_IFCR_CGIF1_Msk /*!< Channel 1 Global interrupt clearr */
  2335. #define DMA_IFCR_CTCIF1_Pos (1U)
  2336. #define DMA_IFCR_CTCIF1_Msk (0x1UL << DMA_IFCR_CTCIF1_Pos) /*!< 0x00000002 */
  2337. #define DMA_IFCR_CTCIF1 DMA_IFCR_CTCIF1_Msk /*!< Channel 1 Transfer Complete clear */
  2338. #define DMA_IFCR_CHTIF1_Pos (2U)
  2339. #define DMA_IFCR_CHTIF1_Msk (0x1UL << DMA_IFCR_CHTIF1_Pos) /*!< 0x00000004 */
  2340. #define DMA_IFCR_CHTIF1 DMA_IFCR_CHTIF1_Msk /*!< Channel 1 Half Transfer clear */
  2341. #define DMA_IFCR_CTEIF1_Pos (3U)
  2342. #define DMA_IFCR_CTEIF1_Msk (0x1UL << DMA_IFCR_CTEIF1_Pos) /*!< 0x00000008 */
  2343. #define DMA_IFCR_CTEIF1 DMA_IFCR_CTEIF1_Msk /*!< Channel 1 Transfer Error clear */
  2344. #define DMA_IFCR_CGIF2_Pos (4U)
  2345. #define DMA_IFCR_CGIF2_Msk (0x1UL << DMA_IFCR_CGIF2_Pos) /*!< 0x00000010 */
  2346. #define DMA_IFCR_CGIF2 DMA_IFCR_CGIF2_Msk /*!< Channel 2 Global interrupt clear */
  2347. #define DMA_IFCR_CTCIF2_Pos (5U)
  2348. #define DMA_IFCR_CTCIF2_Msk (0x1UL << DMA_IFCR_CTCIF2_Pos) /*!< 0x00000020 */
  2349. #define DMA_IFCR_CTCIF2 DMA_IFCR_CTCIF2_Msk /*!< Channel 2 Transfer Complete clear */
  2350. #define DMA_IFCR_CHTIF2_Pos (6U)
  2351. #define DMA_IFCR_CHTIF2_Msk (0x1UL << DMA_IFCR_CHTIF2_Pos) /*!< 0x00000040 */
  2352. #define DMA_IFCR_CHTIF2 DMA_IFCR_CHTIF2_Msk /*!< Channel 2 Half Transfer clear */
  2353. #define DMA_IFCR_CTEIF2_Pos (7U)
  2354. #define DMA_IFCR_CTEIF2_Msk (0x1UL << DMA_IFCR_CTEIF2_Pos) /*!< 0x00000080 */
  2355. #define DMA_IFCR_CTEIF2 DMA_IFCR_CTEIF2_Msk /*!< Channel 2 Transfer Error clear */
  2356. #define DMA_IFCR_CGIF3_Pos (8U)
  2357. #define DMA_IFCR_CGIF3_Msk (0x1UL << DMA_IFCR_CGIF3_Pos) /*!< 0x00000100 */
  2358. #define DMA_IFCR_CGIF3 DMA_IFCR_CGIF3_Msk /*!< Channel 3 Global interrupt clear */
  2359. #define DMA_IFCR_CTCIF3_Pos (9U)
  2360. #define DMA_IFCR_CTCIF3_Msk (0x1UL << DMA_IFCR_CTCIF3_Pos) /*!< 0x00000200 */
  2361. #define DMA_IFCR_CTCIF3 DMA_IFCR_CTCIF3_Msk /*!< Channel 3 Transfer Complete clear */
  2362. #define DMA_IFCR_CHTIF3_Pos (10U)
  2363. #define DMA_IFCR_CHTIF3_Msk (0x1UL << DMA_IFCR_CHTIF3_Pos) /*!< 0x00000400 */
  2364. #define DMA_IFCR_CHTIF3 DMA_IFCR_CHTIF3_Msk /*!< Channel 3 Half Transfer clear */
  2365. #define DMA_IFCR_CTEIF3_Pos (11U)
  2366. #define DMA_IFCR_CTEIF3_Msk (0x1UL << DMA_IFCR_CTEIF3_Pos) /*!< 0x00000800 */
  2367. #define DMA_IFCR_CTEIF3 DMA_IFCR_CTEIF3_Msk /*!< Channel 3 Transfer Error clear */
  2368. #define DMA_IFCR_CGIF4_Pos (12U)
  2369. #define DMA_IFCR_CGIF4_Msk (0x1UL << DMA_IFCR_CGIF4_Pos) /*!< 0x00001000 */
  2370. #define DMA_IFCR_CGIF4 DMA_IFCR_CGIF4_Msk /*!< Channel 4 Global interrupt clear */
  2371. #define DMA_IFCR_CTCIF4_Pos (13U)
  2372. #define DMA_IFCR_CTCIF4_Msk (0x1UL << DMA_IFCR_CTCIF4_Pos) /*!< 0x00002000 */
  2373. #define DMA_IFCR_CTCIF4 DMA_IFCR_CTCIF4_Msk /*!< Channel 4 Transfer Complete clear */
  2374. #define DMA_IFCR_CHTIF4_Pos (14U)
  2375. #define DMA_IFCR_CHTIF4_Msk (0x1UL << DMA_IFCR_CHTIF4_Pos) /*!< 0x00004000 */
  2376. #define DMA_IFCR_CHTIF4 DMA_IFCR_CHTIF4_Msk /*!< Channel 4 Half Transfer clear */
  2377. #define DMA_IFCR_CTEIF4_Pos (15U)
  2378. #define DMA_IFCR_CTEIF4_Msk (0x1UL << DMA_IFCR_CTEIF4_Pos) /*!< 0x00008000 */
  2379. #define DMA_IFCR_CTEIF4 DMA_IFCR_CTEIF4_Msk /*!< Channel 4 Transfer Error clear */
  2380. #define DMA_IFCR_CGIF5_Pos (16U)
  2381. #define DMA_IFCR_CGIF5_Msk (0x1UL << DMA_IFCR_CGIF5_Pos) /*!< 0x00010000 */
  2382. #define DMA_IFCR_CGIF5 DMA_IFCR_CGIF5_Msk /*!< Channel 5 Global interrupt clear */
  2383. #define DMA_IFCR_CTCIF5_Pos (17U)
  2384. #define DMA_IFCR_CTCIF5_Msk (0x1UL << DMA_IFCR_CTCIF5_Pos) /*!< 0x00020000 */
  2385. #define DMA_IFCR_CTCIF5 DMA_IFCR_CTCIF5_Msk /*!< Channel 5 Transfer Complete clear */
  2386. #define DMA_IFCR_CHTIF5_Pos (18U)
  2387. #define DMA_IFCR_CHTIF5_Msk (0x1UL << DMA_IFCR_CHTIF5_Pos) /*!< 0x00040000 */
  2388. #define DMA_IFCR_CHTIF5 DMA_IFCR_CHTIF5_Msk /*!< Channel 5 Half Transfer clear */
  2389. #define DMA_IFCR_CTEIF5_Pos (19U)
  2390. #define DMA_IFCR_CTEIF5_Msk (0x1UL << DMA_IFCR_CTEIF5_Pos) /*!< 0x00080000 */
  2391. #define DMA_IFCR_CTEIF5 DMA_IFCR_CTEIF5_Msk /*!< Channel 5 Transfer Error clear */
  2392. #define DMA_IFCR_CGIF6_Pos (20U)
  2393. #define DMA_IFCR_CGIF6_Msk (0x1UL << DMA_IFCR_CGIF6_Pos) /*!< 0x00100000 */
  2394. #define DMA_IFCR_CGIF6 DMA_IFCR_CGIF6_Msk /*!< Channel 6 Global interrupt clear */
  2395. #define DMA_IFCR_CTCIF6_Pos (21U)
  2396. #define DMA_IFCR_CTCIF6_Msk (0x1UL << DMA_IFCR_CTCIF6_Pos) /*!< 0x00200000 */
  2397. #define DMA_IFCR_CTCIF6 DMA_IFCR_CTCIF6_Msk /*!< Channel 6 Transfer Complete clear */
  2398. #define DMA_IFCR_CHTIF6_Pos (22U)
  2399. #define DMA_IFCR_CHTIF6_Msk (0x1UL << DMA_IFCR_CHTIF6_Pos) /*!< 0x00400000 */
  2400. #define DMA_IFCR_CHTIF6 DMA_IFCR_CHTIF6_Msk /*!< Channel 6 Half Transfer clear */
  2401. #define DMA_IFCR_CTEIF6_Pos (23U)
  2402. #define DMA_IFCR_CTEIF6_Msk (0x1UL << DMA_IFCR_CTEIF6_Pos) /*!< 0x00800000 */
  2403. #define DMA_IFCR_CTEIF6 DMA_IFCR_CTEIF6_Msk /*!< Channel 6 Transfer Error clear */
  2404. #define DMA_IFCR_CGIF7_Pos (24U)
  2405. #define DMA_IFCR_CGIF7_Msk (0x1UL << DMA_IFCR_CGIF7_Pos) /*!< 0x01000000 */
  2406. #define DMA_IFCR_CGIF7 DMA_IFCR_CGIF7_Msk /*!< Channel 7 Global interrupt clear */
  2407. #define DMA_IFCR_CTCIF7_Pos (25U)
  2408. #define DMA_IFCR_CTCIF7_Msk (0x1UL << DMA_IFCR_CTCIF7_Pos) /*!< 0x02000000 */
  2409. #define DMA_IFCR_CTCIF7 DMA_IFCR_CTCIF7_Msk /*!< Channel 7 Transfer Complete clear */
  2410. #define DMA_IFCR_CHTIF7_Pos (26U)
  2411. #define DMA_IFCR_CHTIF7_Msk (0x1UL << DMA_IFCR_CHTIF7_Pos) /*!< 0x04000000 */
  2412. #define DMA_IFCR_CHTIF7 DMA_IFCR_CHTIF7_Msk /*!< Channel 7 Half Transfer clear */
  2413. #define DMA_IFCR_CTEIF7_Pos (27U)
  2414. #define DMA_IFCR_CTEIF7_Msk (0x1UL << DMA_IFCR_CTEIF7_Pos) /*!< 0x08000000 */
  2415. #define DMA_IFCR_CTEIF7 DMA_IFCR_CTEIF7_Msk /*!< Channel 7 Transfer Error clear */
  2416. /******************* Bit definition for DMA_CCR register ********************/
  2417. #define DMA_CCR_EN_Pos (0U)
  2418. #define DMA_CCR_EN_Msk (0x1UL << DMA_CCR_EN_Pos) /*!< 0x00000001 */
  2419. #define DMA_CCR_EN DMA_CCR_EN_Msk /*!< Channel enable */
  2420. #define DMA_CCR_TCIE_Pos (1U)
  2421. #define DMA_CCR_TCIE_Msk (0x1UL << DMA_CCR_TCIE_Pos) /*!< 0x00000002 */
  2422. #define DMA_CCR_TCIE DMA_CCR_TCIE_Msk /*!< Transfer complete interrupt enable */
  2423. #define DMA_CCR_HTIE_Pos (2U)
  2424. #define DMA_CCR_HTIE_Msk (0x1UL << DMA_CCR_HTIE_Pos) /*!< 0x00000004 */
  2425. #define DMA_CCR_HTIE DMA_CCR_HTIE_Msk /*!< Half Transfer interrupt enable */
  2426. #define DMA_CCR_TEIE_Pos (3U)
  2427. #define DMA_CCR_TEIE_Msk (0x1UL << DMA_CCR_TEIE_Pos) /*!< 0x00000008 */
  2428. #define DMA_CCR_TEIE DMA_CCR_TEIE_Msk /*!< Transfer error interrupt enable */
  2429. #define DMA_CCR_DIR_Pos (4U)
  2430. #define DMA_CCR_DIR_Msk (0x1UL << DMA_CCR_DIR_Pos) /*!< 0x00000010 */
  2431. #define DMA_CCR_DIR DMA_CCR_DIR_Msk /*!< Data transfer direction */
  2432. #define DMA_CCR_CIRC_Pos (5U)
  2433. #define DMA_CCR_CIRC_Msk (0x1UL << DMA_CCR_CIRC_Pos) /*!< 0x00000020 */
  2434. #define DMA_CCR_CIRC DMA_CCR_CIRC_Msk /*!< Circular mode */
  2435. #define DMA_CCR_PINC_Pos (6U)
  2436. #define DMA_CCR_PINC_Msk (0x1UL << DMA_CCR_PINC_Pos) /*!< 0x00000040 */
  2437. #define DMA_CCR_PINC DMA_CCR_PINC_Msk /*!< Peripheral increment mode */
  2438. #define DMA_CCR_MINC_Pos (7U)
  2439. #define DMA_CCR_MINC_Msk (0x1UL << DMA_CCR_MINC_Pos) /*!< 0x00000080 */
  2440. #define DMA_CCR_MINC DMA_CCR_MINC_Msk /*!< Memory increment mode */
  2441. #define DMA_CCR_PSIZE_Pos (8U)
  2442. #define DMA_CCR_PSIZE_Msk (0x3UL << DMA_CCR_PSIZE_Pos) /*!< 0x00000300 */
  2443. #define DMA_CCR_PSIZE DMA_CCR_PSIZE_Msk /*!< PSIZE[1:0] bits (Peripheral size) */
  2444. #define DMA_CCR_PSIZE_0 (0x1UL << DMA_CCR_PSIZE_Pos) /*!< 0x00000100 */
  2445. #define DMA_CCR_PSIZE_1 (0x2UL << DMA_CCR_PSIZE_Pos) /*!< 0x00000200 */
  2446. #define DMA_CCR_MSIZE_Pos (10U)
  2447. #define DMA_CCR_MSIZE_Msk (0x3UL << DMA_CCR_MSIZE_Pos) /*!< 0x00000C00 */
  2448. #define DMA_CCR_MSIZE DMA_CCR_MSIZE_Msk /*!< MSIZE[1:0] bits (Memory size) */
  2449. #define DMA_CCR_MSIZE_0 (0x1UL << DMA_CCR_MSIZE_Pos) /*!< 0x00000400 */
  2450. #define DMA_CCR_MSIZE_1 (0x2UL << DMA_CCR_MSIZE_Pos) /*!< 0x00000800 */
  2451. #define DMA_CCR_PL_Pos (12U)
  2452. #define DMA_CCR_PL_Msk (0x3UL << DMA_CCR_PL_Pos) /*!< 0x00003000 */
  2453. #define DMA_CCR_PL DMA_CCR_PL_Msk /*!< PL[1:0] bits(Channel Priority level)*/
  2454. #define DMA_CCR_PL_0 (0x1UL << DMA_CCR_PL_Pos) /*!< 0x00001000 */
  2455. #define DMA_CCR_PL_1 (0x2UL << DMA_CCR_PL_Pos) /*!< 0x00002000 */
  2456. #define DMA_CCR_MEM2MEM_Pos (14U)
  2457. #define DMA_CCR_MEM2MEM_Msk (0x1UL << DMA_CCR_MEM2MEM_Pos) /*!< 0x00004000 */
  2458. #define DMA_CCR_MEM2MEM DMA_CCR_MEM2MEM_Msk /*!< Memory to memory mode */
  2459. /****************** Bit definition for DMA_CNDTR register *******************/
  2460. #define DMA_CNDTR_NDT_Pos (0U)
  2461. #define DMA_CNDTR_NDT_Msk (0xFFFFUL << DMA_CNDTR_NDT_Pos) /*!< 0x0000FFFF */
  2462. #define DMA_CNDTR_NDT DMA_CNDTR_NDT_Msk /*!< Number of data to Transfer */
  2463. /****************** Bit definition for DMA_CPAR register ********************/
  2464. #define DMA_CPAR_PA_Pos (0U)
  2465. #define DMA_CPAR_PA_Msk (0xFFFFFFFFUL << DMA_CPAR_PA_Pos) /*!< 0xFFFFFFFF */
  2466. #define DMA_CPAR_PA DMA_CPAR_PA_Msk /*!< Peripheral Address */
  2467. /****************** Bit definition for DMA_CMAR register ********************/
  2468. #define DMA_CMAR_MA_Pos (0U)
  2469. #define DMA_CMAR_MA_Msk (0xFFFFFFFFUL << DMA_CMAR_MA_Pos) /*!< 0xFFFFFFFF */
  2470. #define DMA_CMAR_MA DMA_CMAR_MA_Msk /*!< Memory Address */
  2471. /******************************************************************************/
  2472. /* */
  2473. /* DMAMUX Controller */
  2474. /* */
  2475. /******************************************************************************/
  2476. /******************** Bits definition for DMAMUX_CxCR register **************/
  2477. #define DMAMUX_CxCR_DMAREQ_ID_Pos (0U)
  2478. #define DMAMUX_CxCR_DMAREQ_ID_Msk (0x7FUL << DMAMUX_CxCR_DMAREQ_ID_Pos) /*!< 0x0000007F */
  2479. #define DMAMUX_CxCR_DMAREQ_ID DMAMUX_CxCR_DMAREQ_ID_Msk /*!< DMA Request ID */
  2480. #define DMAMUX_CxCR_DMAREQ_ID_0 (0x01UL << DMAMUX_CxCR_DMAREQ_ID_Pos) /*!< 0x00000001 */
  2481. #define DMAMUX_CxCR_DMAREQ_ID_1 (0x02UL << DMAMUX_CxCR_DMAREQ_ID_Pos) /*!< 0x00000002 */
  2482. #define DMAMUX_CxCR_DMAREQ_ID_2 (0x04UL << DMAMUX_CxCR_DMAREQ_ID_Pos) /*!< 0x00000004 */
  2483. #define DMAMUX_CxCR_DMAREQ_ID_3 (0x08UL << DMAMUX_CxCR_DMAREQ_ID_Pos) /*!< 0x00000008 */
  2484. #define DMAMUX_CxCR_DMAREQ_ID_4 (0x10UL << DMAMUX_CxCR_DMAREQ_ID_Pos) /*!< 0x00000010 */
  2485. #define DMAMUX_CxCR_DMAREQ_ID_5 (0x20UL << DMAMUX_CxCR_DMAREQ_ID_Pos) /*!< 0x00000020 */
  2486. #define DMAMUX_CxCR_DMAREQ_ID_6 (0x40UL << DMAMUX_CxCR_DMAREQ_ID_Pos) /*!< 0x00000040 */
  2487. #define DMAMUX_CxCR_SOIE_Pos (8U)
  2488. #define DMAMUX_CxCR_SOIE_Msk (0x1UL << DMAMUX_CxCR_SOIE_Pos) /*!< 0x00000100 */
  2489. #define DMAMUX_CxCR_SOIE DMAMUX_CxCR_SOIE_Msk /*!< Synchro overrun interrupt enable */
  2490. #define DMAMUX_CxCR_EGE_Pos (9U)
  2491. #define DMAMUX_CxCR_EGE_Msk (0x1UL << DMAMUX_CxCR_EGE_Pos) /*!< 0x00000200 */
  2492. #define DMAMUX_CxCR_EGE DMAMUX_CxCR_EGE_Msk /*!< Event generation interrupt enable */
  2493. #define DMAMUX_CxCR_SE_Pos (16U)
  2494. #define DMAMUX_CxCR_SE_Msk (0x1UL << DMAMUX_CxCR_SE_Pos) /*!< 0x00010000 */
  2495. #define DMAMUX_CxCR_SE DMAMUX_CxCR_SE_Msk /*!< Synchronization enable */
  2496. #define DMAMUX_CxCR_SPOL_Pos (17U)
  2497. #define DMAMUX_CxCR_SPOL_Msk (0x3UL << DMAMUX_CxCR_SPOL_Pos) /*!< 0x00060000 */
  2498. #define DMAMUX_CxCR_SPOL DMAMUX_CxCR_SPOL_Msk /*!< Synchronization polarity */
  2499. #define DMAMUX_CxCR_SPOL_0 (0x1UL << DMAMUX_CxCR_SPOL_Pos) /*!< 0x00020000 */
  2500. #define DMAMUX_CxCR_SPOL_1 (0x2UL << DMAMUX_CxCR_SPOL_Pos) /*!< 0x00040000 */
  2501. #define DMAMUX_CxCR_NBREQ_Pos (19U)
  2502. #define DMAMUX_CxCR_NBREQ_Msk (0x1FUL << DMAMUX_CxCR_NBREQ_Pos) /*!< 0x00F80000 */
  2503. #define DMAMUX_CxCR_NBREQ DMAMUX_CxCR_NBREQ_Msk /*!< Number of request */
  2504. #define DMAMUX_CxCR_NBREQ_0 (0x01UL << DMAMUX_CxCR_NBREQ_Pos) /*!< 0x00080000 */
  2505. #define DMAMUX_CxCR_NBREQ_1 (0x02UL << DMAMUX_CxCR_NBREQ_Pos) /*!< 0x00100000 */
  2506. #define DMAMUX_CxCR_NBREQ_2 (0x04UL << DMAMUX_CxCR_NBREQ_Pos) /*!< 0x00200000 */
  2507. #define DMAMUX_CxCR_NBREQ_3 (0x08UL << DMAMUX_CxCR_NBREQ_Pos) /*!< 0x00400000 */
  2508. #define DMAMUX_CxCR_NBREQ_4 (0x10UL << DMAMUX_CxCR_NBREQ_Pos) /*!< 0x00800000 */
  2509. #define DMAMUX_CxCR_SYNC_ID_Pos (24U)
  2510. #define DMAMUX_CxCR_SYNC_ID_Msk (0x1FUL << DMAMUX_CxCR_SYNC_ID_Pos) /*!< 0x1F000000 */
  2511. #define DMAMUX_CxCR_SYNC_ID DMAMUX_CxCR_SYNC_ID_Msk /*!< Synchronization ID */
  2512. #define DMAMUX_CxCR_SYNC_ID_0 (0x01UL << DMAMUX_CxCR_SYNC_ID_Pos) /*!< 0x01000000 */
  2513. #define DMAMUX_CxCR_SYNC_ID_1 (0x02UL << DMAMUX_CxCR_SYNC_ID_Pos) /*!< 0x02000000 */
  2514. #define DMAMUX_CxCR_SYNC_ID_2 (0x04UL << DMAMUX_CxCR_SYNC_ID_Pos) /*!< 0x04000000 */
  2515. #define DMAMUX_CxCR_SYNC_ID_3 (0x08UL << DMAMUX_CxCR_SYNC_ID_Pos) /*!< 0x08000000 */
  2516. #define DMAMUX_CxCR_SYNC_ID_4 (0x10UL << DMAMUX_CxCR_SYNC_ID_Pos) /*!< 0x10000000 */
  2517. /******************* Bits definition for DMAMUX_CSR register **************/
  2518. #define DMAMUX_CSR_SOF0_Pos (0U)
  2519. #define DMAMUX_CSR_SOF0_Msk (0x1UL << DMAMUX_CSR_SOF0_Pos) /*!< 0x00000001 */
  2520. #define DMAMUX_CSR_SOF0 DMAMUX_CSR_SOF0_Msk /*!< Synchronization Overrun Flag 0 */
  2521. #define DMAMUX_CSR_SOF1_Pos (1U)
  2522. #define DMAMUX_CSR_SOF1_Msk (0x1UL << DMAMUX_CSR_SOF1_Pos) /*!< 0x00000002 */
  2523. #define DMAMUX_CSR_SOF1 DMAMUX_CSR_SOF1_Msk /*!< Synchronization Overrun Flag 1 */
  2524. #define DMAMUX_CSR_SOF2_Pos (2U)
  2525. #define DMAMUX_CSR_SOF2_Msk (0x1UL << DMAMUX_CSR_SOF2_Pos) /*!< 0x00000004 */
  2526. #define DMAMUX_CSR_SOF2 DMAMUX_CSR_SOF2_Msk /*!< Synchronization Overrun Flag 2 */
  2527. #define DMAMUX_CSR_SOF3_Pos (3U)
  2528. #define DMAMUX_CSR_SOF3_Msk (0x1UL << DMAMUX_CSR_SOF3_Pos) /*!< 0x00000008 */
  2529. #define DMAMUX_CSR_SOF3 DMAMUX_CSR_SOF3_Msk /*!< Synchronization Overrun Flag 3 */
  2530. #define DMAMUX_CSR_SOF4_Pos (4U)
  2531. #define DMAMUX_CSR_SOF4_Msk (0x1UL << DMAMUX_CSR_SOF4_Pos) /*!< 0x00000010 */
  2532. #define DMAMUX_CSR_SOF4 DMAMUX_CSR_SOF4_Msk /*!< Synchronization Overrun Flag 4 */
  2533. #define DMAMUX_CSR_SOF5_Pos (5U)
  2534. #define DMAMUX_CSR_SOF5_Msk (0x1UL << DMAMUX_CSR_SOF5_Pos) /*!< 0x00000020 */
  2535. #define DMAMUX_CSR_SOF5 DMAMUX_CSR_SOF5_Msk /*!< Synchronization Overrun Flag 5 */
  2536. #define DMAMUX_CSR_SOF6_Pos (6U)
  2537. #define DMAMUX_CSR_SOF6_Msk (0x1UL << DMAMUX_CSR_SOF6_Pos) /*!< 0x00000040 */
  2538. #define DMAMUX_CSR_SOF6 DMAMUX_CSR_SOF6_Msk /*!< Synchronization Overrun Flag 6 */
  2539. #define DMAMUX_CSR_SOF7_Pos (7U)
  2540. #define DMAMUX_CSR_SOF7_Msk (0x1UL << DMAMUX_CSR_SOF7_Pos) /*!< 0x00000080 */
  2541. #define DMAMUX_CSR_SOF7 DMAMUX_CSR_SOF7_Msk /*!< Synchronization Overrun Flag 7 */
  2542. #define DMAMUX_CSR_SOF8_Pos (8U)
  2543. #define DMAMUX_CSR_SOF8_Msk (0x1UL << DMAMUX_CSR_SOF8_Pos) /*!< 0x00000100 */
  2544. #define DMAMUX_CSR_SOF8 DMAMUX_CSR_SOF8_Msk /*!< Synchronization Overrun Flag 8 */
  2545. #define DMAMUX_CSR_SOF9_Pos (9U)
  2546. #define DMAMUX_CSR_SOF9_Msk (0x1UL << DMAMUX_CSR_SOF9_Pos) /*!< 0x00000200 */
  2547. #define DMAMUX_CSR_SOF9 DMAMUX_CSR_SOF9_Msk /*!< Synchronization Overrun Flag 9 */
  2548. #define DMAMUX_CSR_SOF10_Pos (10U)
  2549. #define DMAMUX_CSR_SOF10_Msk (0x1UL << DMAMUX_CSR_SOF10_Pos) /*!< 0x00000400 */
  2550. #define DMAMUX_CSR_SOF10 DMAMUX_CSR_SOF10_Msk /*!< Synchronization Overrun Flag 10 */
  2551. #define DMAMUX_CSR_SOF11_Pos (11U)
  2552. #define DMAMUX_CSR_SOF11_Msk (0x1UL << DMAMUX_CSR_SOF11_Pos) /*!< 0x00000800 */
  2553. #define DMAMUX_CSR_SOF11 DMAMUX_CSR_SOF11_Msk /*!< Synchronization Overrun Flag 11 */
  2554. /******************** Bits definition for DMAMUX_CFR register **************/
  2555. #define DMAMUX_CFR_CSOF0_Pos (0U)
  2556. #define DMAMUX_CFR_CSOF0_Msk (0x1UL << DMAMUX_CFR_CSOF0_Pos) /*!< 0x00000001 */
  2557. #define DMAMUX_CFR_CSOF0 DMAMUX_CFR_CSOF0_Msk /*!< Clear Overrun Flag 0 */
  2558. #define DMAMUX_CFR_CSOF1_Pos (1U)
  2559. #define DMAMUX_CFR_CSOF1_Msk (0x1UL << DMAMUX_CFR_CSOF1_Pos) /*!< 0x00000002 */
  2560. #define DMAMUX_CFR_CSOF1 DMAMUX_CFR_CSOF1_Msk /*!< Clear Overrun Flag 1 */
  2561. #define DMAMUX_CFR_CSOF2_Pos (2U)
  2562. #define DMAMUX_CFR_CSOF2_Msk (0x1UL << DMAMUX_CFR_CSOF2_Pos) /*!< 0x00000004 */
  2563. #define DMAMUX_CFR_CSOF2 DMAMUX_CFR_CSOF2_Msk /*!< Clear Overrun Flag 2 */
  2564. #define DMAMUX_CFR_CSOF3_Pos (3U)
  2565. #define DMAMUX_CFR_CSOF3_Msk (0x1UL << DMAMUX_CFR_CSOF3_Pos) /*!< 0x00000008 */
  2566. #define DMAMUX_CFR_CSOF3 DMAMUX_CFR_CSOF3_Msk /*!< Clear Overrun Flag 3 */
  2567. #define DMAMUX_CFR_CSOF4_Pos (4U)
  2568. #define DMAMUX_CFR_CSOF4_Msk (0x1UL << DMAMUX_CFR_CSOF4_Pos) /*!< 0x00000010 */
  2569. #define DMAMUX_CFR_CSOF4 DMAMUX_CFR_CSOF4_Msk /*!< Clear Overrun Flag 4 */
  2570. #define DMAMUX_CFR_CSOF5_Pos (5U)
  2571. #define DMAMUX_CFR_CSOF5_Msk (0x1UL << DMAMUX_CFR_CSOF5_Pos) /*!< 0x00000020 */
  2572. #define DMAMUX_CFR_CSOF5 DMAMUX_CFR_CSOF5_Msk /*!< Clear Overrun Flag 5 */
  2573. #define DMAMUX_CFR_CSOF6_Pos (6U)
  2574. #define DMAMUX_CFR_CSOF6_Msk (0x1UL << DMAMUX_CFR_CSOF6_Pos) /*!< 0x00000040 */
  2575. #define DMAMUX_CFR_CSOF6 DMAMUX_CFR_CSOF6_Msk /*!< Clear Overrun Flag 6 */
  2576. #define DMAMUX_CFR_CSOF7_Pos (7U)
  2577. #define DMAMUX_CFR_CSOF7_Msk (0x1UL << DMAMUX_CFR_CSOF7_Pos) /*!< 0x00000080 */
  2578. #define DMAMUX_CFR_CSOF7 DMAMUX_CFR_CSOF7_Msk /*!< Clear Overrun Flag 7 */
  2579. #define DMAMUX_CFR_CSOF8_Pos (8U)
  2580. #define DMAMUX_CFR_CSOF8_Msk (0x1UL << DMAMUX_CFR_CSOF8_Pos) /*!< 0x00000100 */
  2581. #define DMAMUX_CFR_CSOF8 DMAMUX_CFR_CSOF8_Msk /*!< Clear Overrun Flag 8 */
  2582. #define DMAMUX_CFR_CSOF9_Pos (9U)
  2583. #define DMAMUX_CFR_CSOF9_Msk (0x1UL << DMAMUX_CFR_CSOF9_Pos) /*!< 0x00000200 */
  2584. #define DMAMUX_CFR_CSOF9 DMAMUX_CFR_CSOF9_Msk /*!< Clear Overrun Flag 9 */
  2585. #define DMAMUX_CFR_CSOF10_Pos (10U)
  2586. #define DMAMUX_CFR_CSOF10_Msk (0x1UL << DMAMUX_CFR_CSOF10_Pos) /*!< 0x00000400 */
  2587. #define DMAMUX_CFR_CSOF10 DMAMUX_CFR_CSOF10_Msk /*!< Clear Overrun Flag 10 */
  2588. #define DMAMUX_CFR_CSOF11_Pos (11U)
  2589. #define DMAMUX_CFR_CSOF11_Msk (0x1UL << DMAMUX_CFR_CSOF11_Pos) /*!< 0x00000800 */
  2590. #define DMAMUX_CFR_CSOF11 DMAMUX_CFR_CSOF11_Msk /*!< Clear Overrun Flag 11 */
  2591. /******************** Bits definition for DMAMUX_RGxCR register ************/
  2592. #define DMAMUX_RGxCR_SIG_ID_Pos (0U)
  2593. #define DMAMUX_RGxCR_SIG_ID_Msk (0x1FUL << DMAMUX_RGxCR_SIG_ID_Pos) /*!< 0x0000001F */
  2594. #define DMAMUX_RGxCR_SIG_ID DMAMUX_RGxCR_SIG_ID_Msk /*!< Signal ID */
  2595. #define DMAMUX_RGxCR_SIG_ID_0 (0x01UL << DMAMUX_RGxCR_SIG_ID_Pos) /*!< 0x00000001 */
  2596. #define DMAMUX_RGxCR_SIG_ID_1 (0x02UL << DMAMUX_RGxCR_SIG_ID_Pos) /*!< 0x00000002 */
  2597. #define DMAMUX_RGxCR_SIG_ID_2 (0x04UL << DMAMUX_RGxCR_SIG_ID_Pos) /*!< 0x00000004 */
  2598. #define DMAMUX_RGxCR_SIG_ID_3 (0x08UL << DMAMUX_RGxCR_SIG_ID_Pos) /*!< 0x00000008 */
  2599. #define DMAMUX_RGxCR_SIG_ID_4 (0x10UL << DMAMUX_RGxCR_SIG_ID_Pos) /*!< 0x00000010 */
  2600. #define DMAMUX_RGxCR_OIE_Pos (8U)
  2601. #define DMAMUX_RGxCR_OIE_Msk (0x1UL << DMAMUX_RGxCR_OIE_Pos) /*!< 0x00000100 */
  2602. #define DMAMUX_RGxCR_OIE DMAMUX_RGxCR_OIE_Msk /*!< Overrun interrupt enable */
  2603. #define DMAMUX_RGxCR_GE_Pos (16U)
  2604. #define DMAMUX_RGxCR_GE_Msk (0x1UL << DMAMUX_RGxCR_GE_Pos) /*!< 0x00010000 */
  2605. #define DMAMUX_RGxCR_GE DMAMUX_RGxCR_GE_Msk /*!< Generation enable */
  2606. #define DMAMUX_RGxCR_GPOL_Pos (17U)
  2607. #define DMAMUX_RGxCR_GPOL_Msk (0x3UL << DMAMUX_RGxCR_GPOL_Pos) /*!< 0x00060000 */
  2608. #define DMAMUX_RGxCR_GPOL DMAMUX_RGxCR_GPOL_Msk /*!< Generation polarity */
  2609. #define DMAMUX_RGxCR_GPOL_0 (0x1UL << DMAMUX_RGxCR_GPOL_Pos) /*!< 0x00020000 */
  2610. #define DMAMUX_RGxCR_GPOL_1 (0x2UL << DMAMUX_RGxCR_GPOL_Pos) /*!< 0x00040000 */
  2611. #define DMAMUX_RGxCR_GNBREQ_Pos (19U)
  2612. #define DMAMUX_RGxCR_GNBREQ_Msk (0x1FUL << DMAMUX_RGxCR_GNBREQ_Pos) /*!< 0x00F80000 */
  2613. #define DMAMUX_RGxCR_GNBREQ DMAMUX_RGxCR_GNBREQ_Msk /*!< Number of request */
  2614. #define DMAMUX_RGxCR_GNBREQ_0 (0x01UL << DMAMUX_RGxCR_GNBREQ_Pos) /*!< 0x00080000 */
  2615. #define DMAMUX_RGxCR_GNBREQ_1 (0x02UL << DMAMUX_RGxCR_GNBREQ_Pos) /*!< 0x00100000 */
  2616. #define DMAMUX_RGxCR_GNBREQ_2 (0x04UL << DMAMUX_RGxCR_GNBREQ_Pos) /*!< 0x00200000 */
  2617. #define DMAMUX_RGxCR_GNBREQ_3 (0x08UL << DMAMUX_RGxCR_GNBREQ_Pos) /*!< 0x00400000 */
  2618. #define DMAMUX_RGxCR_GNBREQ_4 (0x10UL << DMAMUX_RGxCR_GNBREQ_Pos) /*!< 0x00800000 */
  2619. /******************** Bits definition for DMAMUX_RGSR register **************/
  2620. #define DMAMUX_RGSR_OF0_Pos (0U)
  2621. #define DMAMUX_RGSR_OF0_Msk (0x1UL << DMAMUX_RGSR_OF0_Pos) /*!< 0x00000001 */
  2622. #define DMAMUX_RGSR_OF0 DMAMUX_RGSR_OF0_Msk /*!< Overrun flag 0 */
  2623. #define DMAMUX_RGSR_OF1_Pos (1U)
  2624. #define DMAMUX_RGSR_OF1_Msk (0x1UL << DMAMUX_RGSR_OF1_Pos) /*!< 0x00000002 */
  2625. #define DMAMUX_RGSR_OF1 DMAMUX_RGSR_OF1_Msk /*!< Overrun flag 1 */
  2626. #define DMAMUX_RGSR_OF2_Pos (2U)
  2627. #define DMAMUX_RGSR_OF2_Msk (0x1UL << DMAMUX_RGSR_OF2_Pos) /*!< 0x00000004 */
  2628. #define DMAMUX_RGSR_OF2 DMAMUX_RGSR_OF2_Msk /*!< Overrun flag 2 */
  2629. #define DMAMUX_RGSR_OF3_Pos (3U)
  2630. #define DMAMUX_RGSR_OF3_Msk (0x1UL << DMAMUX_RGSR_OF3_Pos) /*!< 0x00000008 */
  2631. #define DMAMUX_RGSR_OF3 DMAMUX_RGSR_OF3_Msk /*!< Overrun flag 3 */
  2632. /******************** Bits definition for DMAMUX_RGCFR register **************/
  2633. #define DMAMUX_RGCFR_COF0_Pos (0U)
  2634. #define DMAMUX_RGCFR_COF0_Msk (0x1UL << DMAMUX_RGCFR_COF0_Pos) /*!< 0x00000001 */
  2635. #define DMAMUX_RGCFR_COF0 DMAMUX_RGCFR_COF0_Msk /*!< Clear Overrun flag 0 */
  2636. #define DMAMUX_RGCFR_COF1_Pos (1U)
  2637. #define DMAMUX_RGCFR_COF1_Msk (0x1UL << DMAMUX_RGCFR_COF1_Pos) /*!< 0x00000002 */
  2638. #define DMAMUX_RGCFR_COF1 DMAMUX_RGCFR_COF1_Msk /*!< Clear Overrun flag 1 */
  2639. #define DMAMUX_RGCFR_COF2_Pos (2U)
  2640. #define DMAMUX_RGCFR_COF2_Msk (0x1UL << DMAMUX_RGCFR_COF2_Pos) /*!< 0x00000004 */
  2641. #define DMAMUX_RGCFR_COF2 DMAMUX_RGCFR_COF2_Msk /*!< Clear Overrun flag 2 */
  2642. #define DMAMUX_RGCFR_COF3_Pos (3U)
  2643. #define DMAMUX_RGCFR_COF3_Msk (0x1UL << DMAMUX_RGCFR_COF3_Pos) /*!< 0x00000008 */
  2644. #define DMAMUX_RGCFR_COF3 DMAMUX_RGCFR_COF3_Msk /*!< Clear Overrun flag 3 */
  2645. /******************************************************************************/
  2646. /* */
  2647. /* External Interrupt/Event Controller */
  2648. /* */
  2649. /******************************************************************************/
  2650. /****************** Bit definition for EXTI_RTSR1 register ******************/
  2651. #define EXTI_RTSR1_RT0_Pos (0U)
  2652. #define EXTI_RTSR1_RT0_Msk (0x1UL << EXTI_RTSR1_RT0_Pos) /*!< 0x00000001 */
  2653. #define EXTI_RTSR1_RT0 EXTI_RTSR1_RT0_Msk /*!< Rising trigger configuration for input line 0 */
  2654. #define EXTI_RTSR1_RT1_Pos (1U)
  2655. #define EXTI_RTSR1_RT1_Msk (0x1UL << EXTI_RTSR1_RT1_Pos) /*!< 0x00000002 */
  2656. #define EXTI_RTSR1_RT1 EXTI_RTSR1_RT1_Msk /*!< Rising trigger configuration for input line 1 */
  2657. #define EXTI_RTSR1_RT2_Pos (2U)
  2658. #define EXTI_RTSR1_RT2_Msk (0x1UL << EXTI_RTSR1_RT2_Pos) /*!< 0x00000004 */
  2659. #define EXTI_RTSR1_RT2 EXTI_RTSR1_RT2_Msk /*!< Rising trigger configuration for input line 2 */
  2660. #define EXTI_RTSR1_RT3_Pos (3U)
  2661. #define EXTI_RTSR1_RT3_Msk (0x1UL << EXTI_RTSR1_RT3_Pos) /*!< 0x00000008 */
  2662. #define EXTI_RTSR1_RT3 EXTI_RTSR1_RT3_Msk /*!< Rising trigger configuration for input line 3 */
  2663. #define EXTI_RTSR1_RT4_Pos (4U)
  2664. #define EXTI_RTSR1_RT4_Msk (0x1UL << EXTI_RTSR1_RT4_Pos) /*!< 0x00000010 */
  2665. #define EXTI_RTSR1_RT4 EXTI_RTSR1_RT4_Msk /*!< Rising trigger configuration for input line 4 */
  2666. #define EXTI_RTSR1_RT5_Pos (5U)
  2667. #define EXTI_RTSR1_RT5_Msk (0x1UL << EXTI_RTSR1_RT5_Pos) /*!< 0x00000020 */
  2668. #define EXTI_RTSR1_RT5 EXTI_RTSR1_RT5_Msk /*!< Rising trigger configuration for input line 5 */
  2669. #define EXTI_RTSR1_RT6_Pos (6U)
  2670. #define EXTI_RTSR1_RT6_Msk (0x1UL << EXTI_RTSR1_RT6_Pos) /*!< 0x00000040 */
  2671. #define EXTI_RTSR1_RT6 EXTI_RTSR1_RT6_Msk /*!< Rising trigger configuration for input line 6 */
  2672. #define EXTI_RTSR1_RT7_Pos (7U)
  2673. #define EXTI_RTSR1_RT7_Msk (0x1UL << EXTI_RTSR1_RT7_Pos) /*!< 0x00000080 */
  2674. #define EXTI_RTSR1_RT7 EXTI_RTSR1_RT7_Msk /*!< Rising trigger configuration for input line 7 */
  2675. #define EXTI_RTSR1_RT8_Pos (8U)
  2676. #define EXTI_RTSR1_RT8_Msk (0x1UL << EXTI_RTSR1_RT8_Pos) /*!< 0x00000100 */
  2677. #define EXTI_RTSR1_RT8 EXTI_RTSR1_RT8_Msk /*!< Rising trigger configuration for input line 8 */
  2678. #define EXTI_RTSR1_RT9_Pos (9U)
  2679. #define EXTI_RTSR1_RT9_Msk (0x1UL << EXTI_RTSR1_RT9_Pos) /*!< 0x00000200 */
  2680. #define EXTI_RTSR1_RT9 EXTI_RTSR1_RT9_Msk /*!< Rising trigger configuration for input line 9 */
  2681. #define EXTI_RTSR1_RT10_Pos (10U)
  2682. #define EXTI_RTSR1_RT10_Msk (0x1UL << EXTI_RTSR1_RT10_Pos) /*!< 0x00000400 */
  2683. #define EXTI_RTSR1_RT10 EXTI_RTSR1_RT10_Msk /*!< Rising trigger configuration for input line 10 */
  2684. #define EXTI_RTSR1_RT11_Pos (11U)
  2685. #define EXTI_RTSR1_RT11_Msk (0x1UL << EXTI_RTSR1_RT11_Pos) /*!< 0x00000800 */
  2686. #define EXTI_RTSR1_RT11 EXTI_RTSR1_RT11_Msk /*!< Rising trigger configuration for input line 11 */
  2687. #define EXTI_RTSR1_RT12_Pos (12U)
  2688. #define EXTI_RTSR1_RT12_Msk (0x1UL << EXTI_RTSR1_RT12_Pos) /*!< 0x00001000 */
  2689. #define EXTI_RTSR1_RT12 EXTI_RTSR1_RT12_Msk /*!< Rising trigger configuration for input line 12 */
  2690. #define EXTI_RTSR1_RT13_Pos (13U)
  2691. #define EXTI_RTSR1_RT13_Msk (0x1UL << EXTI_RTSR1_RT13_Pos) /*!< 0x00002000 */
  2692. #define EXTI_RTSR1_RT13 EXTI_RTSR1_RT13_Msk /*!< Rising trigger configuration for input line 13 */
  2693. #define EXTI_RTSR1_RT14_Pos (14U)
  2694. #define EXTI_RTSR1_RT14_Msk (0x1UL << EXTI_RTSR1_RT14_Pos) /*!< 0x00004000 */
  2695. #define EXTI_RTSR1_RT14 EXTI_RTSR1_RT14_Msk /*!< Rising trigger configuration for input line 14 */
  2696. #define EXTI_RTSR1_RT15_Pos (15U)
  2697. #define EXTI_RTSR1_RT15_Msk (0x1UL << EXTI_RTSR1_RT15_Pos) /*!< 0x00008000 */
  2698. #define EXTI_RTSR1_RT15 EXTI_RTSR1_RT15_Msk /*!< Rising trigger configuration for input line 15 */
  2699. #define EXTI_RTSR1_RT16_Pos (16U)
  2700. #define EXTI_RTSR1_RT16_Msk (0x1UL << EXTI_RTSR1_RT16_Pos) /*!< 0x00010000 */
  2701. #define EXTI_RTSR1_RT16 EXTI_RTSR1_RT16_Msk /*!< Rising trigger configuration for input line 16 */
  2702. #define EXTI_RTSR1_RT17_Pos (17U)
  2703. #define EXTI_RTSR1_RT17_Msk (0x1UL << EXTI_RTSR1_RT17_Pos) /*!< 0x00020000 */
  2704. #define EXTI_RTSR1_RT17 EXTI_RTSR1_RT17_Msk /*!< Rising trigger configuration for input line 17 */
  2705. #define EXTI_RTSR1_RT18_Pos (18U)
  2706. #define EXTI_RTSR1_RT18_Msk (0x1UL << EXTI_RTSR1_RT18_Pos) /*!< 0x00040000 */
  2707. #define EXTI_RTSR1_RT18 EXTI_RTSR1_RT18_Msk /*!< Rising trigger configuration for input line 18 */
  2708. #define EXTI_RTSR1_RT20_Pos (20U)
  2709. #define EXTI_RTSR1_RT20_Msk (0x1UL << EXTI_RTSR1_RT20_Pos) /*!< 0x00100000 */
  2710. #define EXTI_RTSR1_RT20 EXTI_RTSR1_RT20_Msk /*!< Rising trigger configuration for input line 20 */
  2711. /****************** Bit definition for EXTI_FTSR1 register ******************/
  2712. #define EXTI_FTSR1_FT0_Pos (0U)
  2713. #define EXTI_FTSR1_FT0_Msk (0x1UL << EXTI_FTSR1_FT0_Pos) /*!< 0x00000001 */
  2714. #define EXTI_FTSR1_FT0 EXTI_FTSR1_FT0_Msk /*!< Falling trigger configuration for input line 0 */
  2715. #define EXTI_FTSR1_FT1_Pos (1U)
  2716. #define EXTI_FTSR1_FT1_Msk (0x1UL << EXTI_FTSR1_FT1_Pos) /*!< 0x00000002 */
  2717. #define EXTI_FTSR1_FT1 EXTI_FTSR1_FT1_Msk /*!< Falling trigger configuration for input line 1 */
  2718. #define EXTI_FTSR1_FT2_Pos (2U)
  2719. #define EXTI_FTSR1_FT2_Msk (0x1UL << EXTI_FTSR1_FT2_Pos) /*!< 0x00000004 */
  2720. #define EXTI_FTSR1_FT2 EXTI_FTSR1_FT2_Msk /*!< Falling trigger configuration for input line 2 */
  2721. #define EXTI_FTSR1_FT3_Pos (3U)
  2722. #define EXTI_FTSR1_FT3_Msk (0x1UL << EXTI_FTSR1_FT3_Pos) /*!< 0x00000008 */
  2723. #define EXTI_FTSR1_FT3 EXTI_FTSR1_FT3_Msk /*!< Falling trigger configuration for input line 3 */
  2724. #define EXTI_FTSR1_FT4_Pos (4U)
  2725. #define EXTI_FTSR1_FT4_Msk (0x1UL << EXTI_FTSR1_FT4_Pos) /*!< 0x00000010 */
  2726. #define EXTI_FTSR1_FT4 EXTI_FTSR1_FT4_Msk /*!< Falling trigger configuration for input line 4 */
  2727. #define EXTI_FTSR1_FT5_Pos (5U)
  2728. #define EXTI_FTSR1_FT5_Msk (0x1UL << EXTI_FTSR1_FT5_Pos) /*!< 0x00000020 */
  2729. #define EXTI_FTSR1_FT5 EXTI_FTSR1_FT5_Msk /*!< Falling trigger configuration for input line 5 */
  2730. #define EXTI_FTSR1_FT6_Pos (6U)
  2731. #define EXTI_FTSR1_FT6_Msk (0x1UL << EXTI_FTSR1_FT6_Pos) /*!< 0x00000040 */
  2732. #define EXTI_FTSR1_FT6 EXTI_FTSR1_FT6_Msk /*!< Falling trigger configuration for input line 6 */
  2733. #define EXTI_FTSR1_FT7_Pos (7U)
  2734. #define EXTI_FTSR1_FT7_Msk (0x1UL << EXTI_FTSR1_FT7_Pos) /*!< 0x00000080 */
  2735. #define EXTI_FTSR1_FT7 EXTI_FTSR1_FT7_Msk /*!< Falling trigger configuration for input line 7 */
  2736. #define EXTI_FTSR1_FT8_Pos (8U)
  2737. #define EXTI_FTSR1_FT8_Msk (0x1UL << EXTI_FTSR1_FT8_Pos) /*!< 0x00000100 */
  2738. #define EXTI_FTSR1_FT8 EXTI_FTSR1_FT8_Msk /*!< Falling trigger configuration for input line 8 */
  2739. #define EXTI_FTSR1_FT9_Pos (9U)
  2740. #define EXTI_FTSR1_FT9_Msk (0x1UL << EXTI_FTSR1_FT9_Pos) /*!< 0x00000200 */
  2741. #define EXTI_FTSR1_FT9 EXTI_FTSR1_FT9_Msk /*!< Falling trigger configuration for input line 9 */
  2742. #define EXTI_FTSR1_FT10_Pos (10U)
  2743. #define EXTI_FTSR1_FT10_Msk (0x1UL << EXTI_FTSR1_FT10_Pos) /*!< 0x00000400 */
  2744. #define EXTI_FTSR1_FT10 EXTI_FTSR1_FT10_Msk /*!< Falling trigger configuration for input line 10 */
  2745. #define EXTI_FTSR1_FT11_Pos (11U)
  2746. #define EXTI_FTSR1_FT11_Msk (0x1UL << EXTI_FTSR1_FT11_Pos) /*!< 0x00000800 */
  2747. #define EXTI_FTSR1_FT11 EXTI_FTSR1_FT11_Msk /*!< Falling trigger configuration for input line 11 */
  2748. #define EXTI_FTSR1_FT12_Pos (12U)
  2749. #define EXTI_FTSR1_FT12_Msk (0x1UL << EXTI_FTSR1_FT12_Pos) /*!< 0x00001000 */
  2750. #define EXTI_FTSR1_FT12 EXTI_FTSR1_FT12_Msk /*!< Falling trigger configuration for input line 12 */
  2751. #define EXTI_FTSR1_FT13_Pos (13U)
  2752. #define EXTI_FTSR1_FT13_Msk (0x1UL << EXTI_FTSR1_FT13_Pos) /*!< 0x00002000 */
  2753. #define EXTI_FTSR1_FT13 EXTI_FTSR1_FT13_Msk /*!< Falling trigger configuration for input line 13 */
  2754. #define EXTI_FTSR1_FT14_Pos (14U)
  2755. #define EXTI_FTSR1_FT14_Msk (0x1UL << EXTI_FTSR1_FT14_Pos) /*!< 0x00004000 */
  2756. #define EXTI_FTSR1_FT14 EXTI_FTSR1_FT14_Msk /*!< Falling trigger configuration for input line 14 */
  2757. #define EXTI_FTSR1_FT15_Pos (15U)
  2758. #define EXTI_FTSR1_FT15_Msk (0x1UL << EXTI_FTSR1_FT15_Pos) /*!< 0x00008000 */
  2759. #define EXTI_FTSR1_FT15 EXTI_FTSR1_FT15_Msk /*!< Falling trigger configuration for input line 15 */
  2760. #define EXTI_FTSR1_FT16_Pos (16U)
  2761. #define EXTI_FTSR1_FT16_Msk (0x1UL << EXTI_FTSR1_FT16_Pos) /*!< 0x00010000 */
  2762. #define EXTI_FTSR1_FT16 EXTI_FTSR1_FT16_Msk /*!< Falling trigger configuration for input line 16 */
  2763. #define EXTI_FTSR1_FT17_Pos (17U)
  2764. #define EXTI_FTSR1_FT17_Msk (0x1UL << EXTI_FTSR1_FT17_Pos) /*!< 0x00020000 */
  2765. #define EXTI_FTSR1_FT17 EXTI_FTSR1_FT17_Msk /*!< Falling trigger configuration for input line 17 */
  2766. #define EXTI_FTSR1_FT18_Pos (18U)
  2767. #define EXTI_FTSR1_FT18_Msk (0x1UL << EXTI_FTSR1_FT18_Pos) /*!< 0x00040000 */
  2768. #define EXTI_FTSR1_FT18 EXTI_FTSR1_FT18_Msk /*!< Falling trigger configuration for input line 18 */
  2769. #define EXTI_FTSR1_FT20_Pos (20U)
  2770. #define EXTI_FTSR1_FT20_Msk (0x1UL << EXTI_FTSR1_FT20_Pos) /*!< 0x00100000 */
  2771. #define EXTI_FTSR1_FT20 EXTI_FTSR1_FT20_Msk /*!< Falling trigger configuration for input line 20 */
  2772. /****************** Bit definition for EXTI_SWIER1 register *****************/
  2773. #define EXTI_SWIER1_SWI0_Pos (0U)
  2774. #define EXTI_SWIER1_SWI0_Msk (0x1UL << EXTI_SWIER1_SWI0_Pos) /*!< 0x00000001 */
  2775. #define EXTI_SWIER1_SWI0 EXTI_SWIER1_SWI0_Msk /*!< Software Interrupt on line 0 */
  2776. #define EXTI_SWIER1_SWI1_Pos (1U)
  2777. #define EXTI_SWIER1_SWI1_Msk (0x1UL << EXTI_SWIER1_SWI1_Pos) /*!< 0x00000002 */
  2778. #define EXTI_SWIER1_SWI1 EXTI_SWIER1_SWI1_Msk /*!< Software Interrupt on line 1 */
  2779. #define EXTI_SWIER1_SWI2_Pos (2U)
  2780. #define EXTI_SWIER1_SWI2_Msk (0x1UL << EXTI_SWIER1_SWI2_Pos) /*!< 0x00000004 */
  2781. #define EXTI_SWIER1_SWI2 EXTI_SWIER1_SWI2_Msk /*!< Software Interrupt on line 2 */
  2782. #define EXTI_SWIER1_SWI3_Pos (3U)
  2783. #define EXTI_SWIER1_SWI3_Msk (0x1UL << EXTI_SWIER1_SWI3_Pos) /*!< 0x00000008 */
  2784. #define EXTI_SWIER1_SWI3 EXTI_SWIER1_SWI3_Msk /*!< Software Interrupt on line 3 */
  2785. #define EXTI_SWIER1_SWI4_Pos (4U)
  2786. #define EXTI_SWIER1_SWI4_Msk (0x1UL << EXTI_SWIER1_SWI4_Pos) /*!< 0x00000010 */
  2787. #define EXTI_SWIER1_SWI4 EXTI_SWIER1_SWI4_Msk /*!< Software Interrupt on line 4 */
  2788. #define EXTI_SWIER1_SWI5_Pos (5U)
  2789. #define EXTI_SWIER1_SWI5_Msk (0x1UL << EXTI_SWIER1_SWI5_Pos) /*!< 0x00000020 */
  2790. #define EXTI_SWIER1_SWI5 EXTI_SWIER1_SWI5_Msk /*!< Software Interrupt on line 5 */
  2791. #define EXTI_SWIER1_SWI6_Pos (6U)
  2792. #define EXTI_SWIER1_SWI6_Msk (0x1UL << EXTI_SWIER1_SWI6_Pos) /*!< 0x00000040 */
  2793. #define EXTI_SWIER1_SWI6 EXTI_SWIER1_SWI6_Msk /*!< Software Interrupt on line 6 */
  2794. #define EXTI_SWIER1_SWI7_Pos (7U)
  2795. #define EXTI_SWIER1_SWI7_Msk (0x1UL << EXTI_SWIER1_SWI7_Pos) /*!< 0x00000080 */
  2796. #define EXTI_SWIER1_SWI7 EXTI_SWIER1_SWI7_Msk /*!< Software Interrupt on line 7 */
  2797. #define EXTI_SWIER1_SWI8_Pos (8U)
  2798. #define EXTI_SWIER1_SWI8_Msk (0x1UL << EXTI_SWIER1_SWI8_Pos) /*!< 0x00000100 */
  2799. #define EXTI_SWIER1_SWI8 EXTI_SWIER1_SWI8_Msk /*!< Software Interrupt on line 8 */
  2800. #define EXTI_SWIER1_SWI9_Pos (9U)
  2801. #define EXTI_SWIER1_SWI9_Msk (0x1UL << EXTI_SWIER1_SWI9_Pos) /*!< 0x00000200 */
  2802. #define EXTI_SWIER1_SWI9 EXTI_SWIER1_SWI9_Msk /*!< Software Interrupt on line 9 */
  2803. #define EXTI_SWIER1_SWI10_Pos (10U)
  2804. #define EXTI_SWIER1_SWI10_Msk (0x1UL << EXTI_SWIER1_SWI10_Pos) /*!< 0x00000400 */
  2805. #define EXTI_SWIER1_SWI10 EXTI_SWIER1_SWI10_Msk /*!< Software Interrupt on line 10 */
  2806. #define EXTI_SWIER1_SWI11_Pos (11U)
  2807. #define EXTI_SWIER1_SWI11_Msk (0x1UL << EXTI_SWIER1_SWI11_Pos) /*!< 0x00000800 */
  2808. #define EXTI_SWIER1_SWI11 EXTI_SWIER1_SWI11_Msk /*!< Software Interrupt on line 11 */
  2809. #define EXTI_SWIER1_SWI12_Pos (12U)
  2810. #define EXTI_SWIER1_SWI12_Msk (0x1UL << EXTI_SWIER1_SWI12_Pos) /*!< 0x00001000 */
  2811. #define EXTI_SWIER1_SWI12 EXTI_SWIER1_SWI12_Msk /*!< Software Interrupt on line 12 */
  2812. #define EXTI_SWIER1_SWI13_Pos (13U)
  2813. #define EXTI_SWIER1_SWI13_Msk (0x1UL << EXTI_SWIER1_SWI13_Pos) /*!< 0x00002000 */
  2814. #define EXTI_SWIER1_SWI13 EXTI_SWIER1_SWI13_Msk /*!< Software Interrupt on line 13 */
  2815. #define EXTI_SWIER1_SWI14_Pos (14U)
  2816. #define EXTI_SWIER1_SWI14_Msk (0x1UL << EXTI_SWIER1_SWI14_Pos) /*!< 0x00004000 */
  2817. #define EXTI_SWIER1_SWI14 EXTI_SWIER1_SWI14_Msk /*!< Software Interrupt on line 14 */
  2818. #define EXTI_SWIER1_SWI15_Pos (15U)
  2819. #define EXTI_SWIER1_SWI15_Msk (0x1UL << EXTI_SWIER1_SWI15_Pos) /*!< 0x00008000 */
  2820. #define EXTI_SWIER1_SWI15 EXTI_SWIER1_SWI15_Msk /*!< Software Interrupt on line 15 */
  2821. #define EXTI_SWIER1_SWI16_Pos (16U)
  2822. #define EXTI_SWIER1_SWI16_Msk (0x1UL << EXTI_SWIER1_SWI16_Pos) /*!< 0x00010000 */
  2823. #define EXTI_SWIER1_SWI16 EXTI_SWIER1_SWI16_Msk /*!< Software Interrupt on line 16 */
  2824. #define EXTI_SWIER1_SWI17_Pos (17U)
  2825. #define EXTI_SWIER1_SWI17_Msk (0x1UL << EXTI_SWIER1_SWI17_Pos) /*!< 0x00020000 */
  2826. #define EXTI_SWIER1_SWI17 EXTI_SWIER1_SWI17_Msk /*!< Software Interrupt on line 17 */
  2827. #define EXTI_SWIER1_SWI18_Pos (18U)
  2828. #define EXTI_SWIER1_SWI18_Msk (0x1UL << EXTI_SWIER1_SWI18_Pos) /*!< 0x00040000 */
  2829. #define EXTI_SWIER1_SWI18 EXTI_SWIER1_SWI18_Msk /*!< Software Interrupt on line 18 */
  2830. #define EXTI_SWIER1_SWI20_Pos (20U)
  2831. #define EXTI_SWIER1_SWI20_Msk (0x1UL << EXTI_SWIER1_SWI20_Pos) /*!< 0x00100000 */
  2832. #define EXTI_SWIER1_SWI20 EXTI_SWIER1_SWI20_Msk /*!< Software Interrupt on line 20 */
  2833. /******************* Bit definition for EXTI_RPR1 register ******************/
  2834. #define EXTI_RPR1_RPIF0_Pos (0U)
  2835. #define EXTI_RPR1_RPIF0_Msk (0x1UL << EXTI_RPR1_RPIF0_Pos) /*!< 0x00000001 */
  2836. #define EXTI_RPR1_RPIF0 EXTI_RPR1_RPIF0_Msk /*!< Rising Pending Interrupt Flag on line 0 */
  2837. #define EXTI_RPR1_RPIF1_Pos (1U)
  2838. #define EXTI_RPR1_RPIF1_Msk (0x1UL << EXTI_RPR1_RPIF1_Pos) /*!< 0x00000002 */
  2839. #define EXTI_RPR1_RPIF1 EXTI_RPR1_RPIF1_Msk /*!< Rising Pending Interrupt Flag on line 1 */
  2840. #define EXTI_RPR1_RPIF2_Pos (2U)
  2841. #define EXTI_RPR1_RPIF2_Msk (0x1UL << EXTI_RPR1_RPIF2_Pos) /*!< 0x00000004 */
  2842. #define EXTI_RPR1_RPIF2 EXTI_RPR1_RPIF2_Msk /*!< Rising Pending Interrupt Flag on line 2 */
  2843. #define EXTI_RPR1_RPIF3_Pos (3U)
  2844. #define EXTI_RPR1_RPIF3_Msk (0x1UL << EXTI_RPR1_RPIF3_Pos) /*!< 0x00000008 */
  2845. #define EXTI_RPR1_RPIF3 EXTI_RPR1_RPIF3_Msk /*!< Rising Pending Interrupt Flag on line 3 */
  2846. #define EXTI_RPR1_RPIF4_Pos (4U)
  2847. #define EXTI_RPR1_RPIF4_Msk (0x1UL << EXTI_RPR1_RPIF4_Pos) /*!< 0x00000010 */
  2848. #define EXTI_RPR1_RPIF4 EXTI_RPR1_RPIF4_Msk /*!< Rising Pending Interrupt Flag on line 4 */
  2849. #define EXTI_RPR1_RPIF5_Pos (5U)
  2850. #define EXTI_RPR1_RPIF5_Msk (0x1UL << EXTI_RPR1_RPIF5_Pos) /*!< 0x00000020 */
  2851. #define EXTI_RPR1_RPIF5 EXTI_RPR1_RPIF5_Msk /*!< Rising Pending Interrupt Flag on line 5 */
  2852. #define EXTI_RPR1_RPIF6_Pos (6U)
  2853. #define EXTI_RPR1_RPIF6_Msk (0x1UL << EXTI_RPR1_RPIF6_Pos) /*!< 0x00000040 */
  2854. #define EXTI_RPR1_RPIF6 EXTI_RPR1_RPIF6_Msk /*!< Rising Pending Interrupt Flag on line 6 */
  2855. #define EXTI_RPR1_RPIF7_Pos (7U)
  2856. #define EXTI_RPR1_RPIF7_Msk (0x1UL << EXTI_RPR1_RPIF7_Pos) /*!< 0x00000080 */
  2857. #define EXTI_RPR1_RPIF7 EXTI_RPR1_RPIF7_Msk /*!< Rising Pending Interrupt Flag on line 7 */
  2858. #define EXTI_RPR1_RPIF8_Pos (8U)
  2859. #define EXTI_RPR1_RPIF8_Msk (0x1UL << EXTI_RPR1_RPIF8_Pos) /*!< 0x00000100 */
  2860. #define EXTI_RPR1_RPIF8 EXTI_RPR1_RPIF8_Msk /*!< Rising Pending Interrupt Flag on line 8 */
  2861. #define EXTI_RPR1_RPIF9_Pos (9U)
  2862. #define EXTI_RPR1_RPIF9_Msk (0x1UL << EXTI_RPR1_RPIF9_Pos) /*!< 0x00000200 */
  2863. #define EXTI_RPR1_RPIF9 EXTI_RPR1_RPIF9_Msk /*!< Rising Pending Interrupt Flag on line 9 */
  2864. #define EXTI_RPR1_RPIF10_Pos (10U)
  2865. #define EXTI_RPR1_RPIF10_Msk (0x1UL << EXTI_RPR1_RPIF10_Pos) /*!< 0x00000400 */
  2866. #define EXTI_RPR1_RPIF10 EXTI_RPR1_RPIF10_Msk /*!< Rising Pending Interrupt Flag on line 10 */
  2867. #define EXTI_RPR1_RPIF11_Pos (11U)
  2868. #define EXTI_RPR1_RPIF11_Msk (0x1UL << EXTI_RPR1_RPIF11_Pos) /*!< 0x00000800 */
  2869. #define EXTI_RPR1_RPIF11 EXTI_RPR1_RPIF11_Msk /*!< Rising Pending Interrupt Flag on line 11 */
  2870. #define EXTI_RPR1_RPIF12_Pos (12U)
  2871. #define EXTI_RPR1_RPIF12_Msk (0x1UL << EXTI_RPR1_RPIF12_Pos) /*!< 0x00001000 */
  2872. #define EXTI_RPR1_RPIF12 EXTI_RPR1_RPIF12_Msk /*!< Rising Pending Interrupt Flag on line 12 */
  2873. #define EXTI_RPR1_RPIF13_Pos (13U)
  2874. #define EXTI_RPR1_RPIF13_Msk (0x1UL << EXTI_RPR1_RPIF13_Pos) /*!< 0x00002000 */
  2875. #define EXTI_RPR1_RPIF13 EXTI_RPR1_RPIF13_Msk /*!< Rising Pending Interrupt Flag on line 13 */
  2876. #define EXTI_RPR1_RPIF14_Pos (14U)
  2877. #define EXTI_RPR1_RPIF14_Msk (0x1UL << EXTI_RPR1_RPIF14_Pos) /*!< 0x00004000 */
  2878. #define EXTI_RPR1_RPIF14 EXTI_RPR1_RPIF14_Msk /*!< Rising Pending Interrupt Flag on line 14 */
  2879. #define EXTI_RPR1_RPIF15_Pos (15U)
  2880. #define EXTI_RPR1_RPIF15_Msk (0x1UL << EXTI_RPR1_RPIF15_Pos) /*!< 0x00008000 */
  2881. #define EXTI_RPR1_RPIF15 EXTI_RPR1_RPIF15_Msk /*!< Rising Pending Interrupt Flag on line 15 */
  2882. #define EXTI_RPR1_RPIF16_Pos (16U)
  2883. #define EXTI_RPR1_RPIF16_Msk (0x1UL << EXTI_RPR1_RPIF16_Pos) /*!< 0x00010000 */
  2884. #define EXTI_RPR1_RPIF16 EXTI_RPR1_RPIF16_Msk /*!< Rising Pending Interrupt Flag on line 16 */
  2885. #define EXTI_RPR1_RPIF17_Pos (17U)
  2886. #define EXTI_RPR1_RPIF17_Msk (0x1UL << EXTI_RPR1_RPIF17_Pos) /*!< 0x00020000 */
  2887. #define EXTI_RPR1_RPIF17 EXTI_RPR1_RPIF17_Msk /*!< Rising Pending Interrupt Flag on line 17 */
  2888. #define EXTI_RPR1_RPIF18_Pos (18U)
  2889. #define EXTI_RPR1_RPIF18_Msk (0x1UL << EXTI_RPR1_RPIF18_Pos) /*!< 0x00040000 */
  2890. #define EXTI_RPR1_RPIF18 EXTI_RPR1_RPIF18_Msk /*!< Rising Pending Interrupt Flag on line 18 */
  2891. #define EXTI_RPR1_RPIF20_Pos (20U)
  2892. #define EXTI_RPR1_RPIF20_Msk (0x1UL << EXTI_RPR1_RPIF20_Pos) /*!< 0x00100000 */
  2893. #define EXTI_RPR1_RPIF20 EXTI_RPR1_RPIF20_Msk /*!< Rising Pending Interrupt Flag on line 20 */
  2894. /******************* Bit definition for EXTI_FPR1 register ******************/
  2895. #define EXTI_FPR1_FPIF0_Pos (0U)
  2896. #define EXTI_FPR1_FPIF0_Msk (0x1UL << EXTI_FPR1_FPIF0_Pos) /*!< 0x00000001 */
  2897. #define EXTI_FPR1_FPIF0 EXTI_FPR1_FPIF0_Msk /*!< Falling Pending Interrupt Flag on line 0 */
  2898. #define EXTI_FPR1_FPIF1_Pos (1U)
  2899. #define EXTI_FPR1_FPIF1_Msk (0x1UL << EXTI_FPR1_FPIF1_Pos) /*!< 0x00000002 */
  2900. #define EXTI_FPR1_FPIF1 EXTI_FPR1_FPIF1_Msk /*!< Falling Pending Interrupt Flag on line 1 */
  2901. #define EXTI_FPR1_FPIF2_Pos (2U)
  2902. #define EXTI_FPR1_FPIF2_Msk (0x1UL << EXTI_FPR1_FPIF2_Pos) /*!< 0x00000004 */
  2903. #define EXTI_FPR1_FPIF2 EXTI_FPR1_FPIF2_Msk /*!< Falling Pending Interrupt Flag on line 2 */
  2904. #define EXTI_FPR1_FPIF3_Pos (3U)
  2905. #define EXTI_FPR1_FPIF3_Msk (0x1UL << EXTI_FPR1_FPIF3_Pos) /*!< 0x00000008 */
  2906. #define EXTI_FPR1_FPIF3 EXTI_FPR1_FPIF3_Msk /*!< Falling Pending Interrupt Flag on line 3 */
  2907. #define EXTI_FPR1_FPIF4_Pos (4U)
  2908. #define EXTI_FPR1_FPIF4_Msk (0x1UL << EXTI_FPR1_FPIF4_Pos) /*!< 0x00000010 */
  2909. #define EXTI_FPR1_FPIF4 EXTI_FPR1_FPIF4_Msk /*!< Falling Pending Interrupt Flag on line 4 */
  2910. #define EXTI_FPR1_FPIF5_Pos (5U)
  2911. #define EXTI_FPR1_FPIF5_Msk (0x1UL << EXTI_FPR1_FPIF5_Pos) /*!< 0x00000020 */
  2912. #define EXTI_FPR1_FPIF5 EXTI_FPR1_FPIF5_Msk /*!< Falling Pending Interrupt Flag on line 5 */
  2913. #define EXTI_FPR1_FPIF6_Pos (6U)
  2914. #define EXTI_FPR1_FPIF6_Msk (0x1UL << EXTI_FPR1_FPIF6_Pos) /*!< 0x00000040 */
  2915. #define EXTI_FPR1_FPIF6 EXTI_FPR1_FPIF6_Msk /*!< Falling Pending Interrupt Flag on line 6 */
  2916. #define EXTI_FPR1_FPIF7_Pos (7U)
  2917. #define EXTI_FPR1_FPIF7_Msk (0x1UL << EXTI_FPR1_FPIF7_Pos) /*!< 0x00000080 */
  2918. #define EXTI_FPR1_FPIF7 EXTI_FPR1_FPIF7_Msk /*!< Falling Pending Interrupt Flag on line 7 */
  2919. #define EXTI_FPR1_FPIF8_Pos (8U)
  2920. #define EXTI_FPR1_FPIF8_Msk (0x1UL << EXTI_FPR1_FPIF8_Pos) /*!< 0x00000100 */
  2921. #define EXTI_FPR1_FPIF8 EXTI_FPR1_FPIF8_Msk /*!< Falling Pending Interrupt Flag on line 8 */
  2922. #define EXTI_FPR1_FPIF9_Pos (9U)
  2923. #define EXTI_FPR1_FPIF9_Msk (0x1UL << EXTI_FPR1_FPIF9_Pos) /*!< 0x00000200 */
  2924. #define EXTI_FPR1_FPIF9 EXTI_FPR1_FPIF9_Msk /*!< Falling Pending Interrupt Flag on line 9 */
  2925. #define EXTI_FPR1_FPIF10_Pos (10U)
  2926. #define EXTI_FPR1_FPIF10_Msk (0x1UL << EXTI_FPR1_FPIF10_Pos) /*!< 0x00000400 */
  2927. #define EXTI_FPR1_FPIF10 EXTI_FPR1_FPIF10_Msk /*!< Falling Pending Interrupt Flag on line 10 */
  2928. #define EXTI_FPR1_FPIF11_Pos (11U)
  2929. #define EXTI_FPR1_FPIF11_Msk (0x1UL << EXTI_FPR1_FPIF11_Pos) /*!< 0x00000800 */
  2930. #define EXTI_FPR1_FPIF11 EXTI_FPR1_FPIF11_Msk /*!< Falling Pending Interrupt Flag on line 11 */
  2931. #define EXTI_FPR1_FPIF12_Pos (12U)
  2932. #define EXTI_FPR1_FPIF12_Msk (0x1UL << EXTI_FPR1_FPIF12_Pos) /*!< 0x00001000 */
  2933. #define EXTI_FPR1_FPIF12 EXTI_FPR1_FPIF12_Msk /*!< Falling Pending Interrupt Flag on line 12 */
  2934. #define EXTI_FPR1_FPIF13_Pos (13U)
  2935. #define EXTI_FPR1_FPIF13_Msk (0x1UL << EXTI_FPR1_FPIF13_Pos) /*!< 0x00002000 */
  2936. #define EXTI_FPR1_FPIF13 EXTI_FPR1_FPIF13_Msk /*!< Falling Pending Interrupt Flag on line 13 */
  2937. #define EXTI_FPR1_FPIF14_Pos (14U)
  2938. #define EXTI_FPR1_FPIF14_Msk (0x1UL << EXTI_FPR1_FPIF14_Pos) /*!< 0x00004000 */
  2939. #define EXTI_FPR1_FPIF14 EXTI_FPR1_FPIF14_Msk /*!< Falling Pending Interrupt Flag on line 14 */
  2940. #define EXTI_FPR1_FPIF15_Pos (15U)
  2941. #define EXTI_FPR1_FPIF15_Msk (0x1UL << EXTI_FPR1_FPIF15_Pos) /*!< 0x00008000 */
  2942. #define EXTI_FPR1_FPIF15 EXTI_FPR1_FPIF15_Msk /*!< Falling Pending Interrupt Flag on line 15 */
  2943. #define EXTI_FPR1_FPIF16_Pos (16U)
  2944. #define EXTI_FPR1_FPIF16_Msk (0x1UL << EXTI_FPR1_FPIF16_Pos) /*!< 0x00010000 */
  2945. #define EXTI_FPR1_FPIF16 EXTI_FPR1_FPIF16_Msk /*!< Falling Pending Interrupt Flag on line 16 */
  2946. #define EXTI_FPR1_FPIF17_Pos (17U)
  2947. #define EXTI_FPR1_FPIF17_Msk (0x1UL << EXTI_FPR1_FPIF17_Pos) /*!< 0x00020000 */
  2948. #define EXTI_FPR1_FPIF17 EXTI_FPR1_FPIF17_Msk /*!< Falling Pending Interrupt Flag on line 17 */
  2949. #define EXTI_FPR1_FPIF18_Pos (18U)
  2950. #define EXTI_FPR1_FPIF18_Msk (0x1UL << EXTI_FPR1_FPIF18_Pos) /*!< 0x00040000 */
  2951. #define EXTI_FPR1_FPIF18 EXTI_FPR1_FPIF18_Msk /*!< Falling Pending Interrupt Flag on line 18 */
  2952. #define EXTI_FPR1_FPIF20_Pos (20U)
  2953. #define EXTI_FPR1_FPIF20_Msk (0x1UL << EXTI_FPR1_FPIF20_Pos) /*!< 0x00100000 */
  2954. #define EXTI_FPR1_FPIF20 EXTI_FPR1_FPIF20_Msk /*!< Falling Pending Interrupt Flag on line 20 */
  2955. /****************** Bit definition for EXTI_RTSR2 register ******************/
  2956. #define EXTI_RTSR2_RT34_Pos (2U)
  2957. #define EXTI_RTSR2_RT34_Msk (0x1UL << EXTI_RTSR2_RT34_Pos) /*!< 0x00000004 */
  2958. #define EXTI_RTSR2_RT34 EXTI_RTSR2_RT34_Msk /*!< Rising trigger configuration for input line 34 */
  2959. /****************** Bit definition for EXTI_FTSR2 register ******************/
  2960. #define EXTI_FTSR2_FT34_Pos (2U)
  2961. #define EXTI_FTSR2_FT34_Msk (0x1UL << EXTI_FTSR2_FT34_Pos) /*!< 0x00000004 */
  2962. #define EXTI_FTSR2_FT34 EXTI_FTSR2_FT34_Msk /*!< Falling trigger configuration for input line 34 */
  2963. /****************** Bit definition for EXTI_SWIER2 register *****************/
  2964. #define EXTI_SWIER2_SWI34_Pos (2U)
  2965. #define EXTI_SWIER2_SWI34_Msk (0x1UL << EXTI_SWIER2_SWI34_Pos) /*!< 0x00000004 */
  2966. #define EXTI_SWIER2_SWI34 EXTI_SWIER2_SWI34_Msk /*!< Software Interrupt on line 34 */
  2967. /******************* Bit definition for EXTI_RPR2 register ******************/
  2968. #define EXTI_RPR2_RPIF34_Pos (2U)
  2969. #define EXTI_RPR2_RPIF34_Msk (0x1UL << EXTI_RPR2_RPIF34_Pos) /*!< 0x00000004 */
  2970. #define EXTI_RPR2_RPIF34 EXTI_RPR2_RPIF34_Msk /*!< Rising Pending Interrupt Flag on line 34 */
  2971. /******************* Bit definition for EXTI_FPR2 register ******************/
  2972. #define EXTI_FPR2_RPIF34_Pos (2U)
  2973. #define EXTI_FPR2_RPIF34_Msk (0x1UL << EXTI_FPR2_RPIF34_Pos) /*!< 0x00000004 */
  2974. #define EXTI_FPR2_RPIF34 EXTI_FPR2_RPIF34_Msk /*!< Rising Pending Interrupt Flag on line 34 */
  2975. /***************** Bit definition for EXTI_EXTICR1 register **************/
  2976. #define EXTI_EXTICR1_EXTI0_Pos (0U)
  2977. #define EXTI_EXTICR1_EXTI0_Msk (0x7UL << EXTI_EXTICR1_EXTI0_Pos) /*!< 0x00000007 */
  2978. #define EXTI_EXTICR1_EXTI0 EXTI_EXTICR1_EXTI0_Msk /*!< EXTI 0 configuration */
  2979. #define EXTI_EXTICR1_EXTI0_0 (0x1UL << EXTI_EXTICR1_EXTI0_Pos) /*!< 0x00000001 */
  2980. #define EXTI_EXTICR1_EXTI0_1 (0x2UL << EXTI_EXTICR1_EXTI0_Pos) /*!< 0x00000002 */
  2981. #define EXTI_EXTICR1_EXTI0_2 (0x4UL << EXTI_EXTICR1_EXTI0_Pos) /*!< 0x00000004 */
  2982. #define EXTI_EXTICR1_EXTI1_Pos (8U)
  2983. #define EXTI_EXTICR1_EXTI1_Msk (0x7UL << EXTI_EXTICR1_EXTI1_Pos) /*!< 0x00000700 */
  2984. #define EXTI_EXTICR1_EXTI1 EXTI_EXTICR1_EXTI1_Msk /*!< EXTI 1 configuration */
  2985. #define EXTI_EXTICR1_EXTI1_0 (0x1UL << EXTI_EXTICR1_EXTI1_Pos) /*!< 0x00000100 */
  2986. #define EXTI_EXTICR1_EXTI1_1 (0x2UL << EXTI_EXTICR1_EXTI1_Pos) /*!< 0x00000200 */
  2987. #define EXTI_EXTICR1_EXTI1_2 (0x4UL << EXTI_EXTICR1_EXTI1_Pos) /*!< 0x00000400 */
  2988. #define EXTI_EXTICR1_EXTI2_Pos (16U)
  2989. #define EXTI_EXTICR1_EXTI2_Msk (0x7UL << EXTI_EXTICR1_EXTI2_Pos) /*!< 0x00070000 */
  2990. #define EXTI_EXTICR1_EXTI2 EXTI_EXTICR1_EXTI2_Msk /*!< EXTI 2 configuration */
  2991. #define EXTI_EXTICR1_EXTI2_0 (0x1UL << EXTI_EXTICR1_EXTI2_Pos) /*!< 0x00010000 */
  2992. #define EXTI_EXTICR1_EXTI2_1 (0x2UL << EXTI_EXTICR1_EXTI2_Pos) /*!< 0x00020000 */
  2993. #define EXTI_EXTICR1_EXTI2_2 (0x4UL << EXTI_EXTICR1_EXTI2_Pos) /*!< 0x00040000 */
  2994. #define EXTI_EXTICR1_EXTI3_Pos (24U)
  2995. #define EXTI_EXTICR1_EXTI3_Msk (0x7UL << EXTI_EXTICR1_EXTI3_Pos) /*!< 0x07000000 */
  2996. #define EXTI_EXTICR1_EXTI3 EXTI_EXTICR1_EXTI3_Msk /*!< EXTI 3 configuration */
  2997. #define EXTI_EXTICR1_EXTI3_0 (0x1UL << EXTI_EXTICR1_EXTI3_Pos) /*!< 0x01000000 */
  2998. #define EXTI_EXTICR1_EXTI3_1 (0x2UL << EXTI_EXTICR1_EXTI3_Pos) /*!< 0x02000000 */
  2999. #define EXTI_EXTICR1_EXTI3_2 (0x4UL << EXTI_EXTICR1_EXTI3_Pos) /*!< 0x04000000 */
  3000. /***************** Bit definition for EXTI_EXTICR2 register **************/
  3001. #define EXTI_EXTICR2_EXTI4_Pos (0U)
  3002. #define EXTI_EXTICR2_EXTI4_Msk (0x7UL << EXTI_EXTICR2_EXTI4_Pos) /*!< 0x00000007 */
  3003. #define EXTI_EXTICR2_EXTI4 EXTI_EXTICR2_EXTI4_Msk /*!< EXTI 4 configuration */
  3004. #define EXTI_EXTICR2_EXTI4_0 (0x1UL << EXTI_EXTICR2_EXTI4_Pos) /*!< 0x00000001 */
  3005. #define EXTI_EXTICR2_EXTI4_1 (0x2UL << EXTI_EXTICR2_EXTI4_Pos) /*!< 0x00000002 */
  3006. #define EXTI_EXTICR2_EXTI4_2 (0x4UL << EXTI_EXTICR2_EXTI4_Pos) /*!< 0x00000004 */
  3007. #define EXTI_EXTICR2_EXTI5_Pos (8U)
  3008. #define EXTI_EXTICR2_EXTI5_Msk (0x7UL << EXTI_EXTICR2_EXTI5_Pos) /*!< 0x00000700 */
  3009. #define EXTI_EXTICR2_EXTI5 EXTI_EXTICR2_EXTI5_Msk /*!< EXTI 5 configuration */
  3010. #define EXTI_EXTICR2_EXTI5_0 (0x1UL << EXTI_EXTICR2_EXTI5_Pos) /*!< 0x00000100 */
  3011. #define EXTI_EXTICR2_EXTI5_1 (0x2UL << EXTI_EXTICR2_EXTI5_Pos) /*!< 0x00000200 */
  3012. #define EXTI_EXTICR2_EXTI5_2 (0x4UL << EXTI_EXTICR2_EXTI5_Pos) /*!< 0x00000400 */
  3013. #define EXTI_EXTICR2_EXTI6_Pos (16U)
  3014. #define EXTI_EXTICR2_EXTI6_Msk (0x7UL << EXTI_EXTICR2_EXTI6_Pos) /*!< 0x00070000 */
  3015. #define EXTI_EXTICR2_EXTI6 EXTI_EXTICR2_EXTI6_Msk /*!< EXTI 6 configuration */
  3016. #define EXTI_EXTICR2_EXTI6_0 (0x1UL << EXTI_EXTICR2_EXTI6_Pos) /*!< 0x00010000 */
  3017. #define EXTI_EXTICR2_EXTI6_1 (0x2UL << EXTI_EXTICR2_EXTI6_Pos) /*!< 0x00020000 */
  3018. #define EXTI_EXTICR2_EXTI6_2 (0x4UL << EXTI_EXTICR2_EXTI6_Pos) /*!< 0x00040000 */
  3019. #define EXTI_EXTICR2_EXTI7_Pos (24U)
  3020. #define EXTI_EXTICR2_EXTI7_Msk (0x7UL << EXTI_EXTICR2_EXTI7_Pos) /*!< 0x07000000 */
  3021. #define EXTI_EXTICR2_EXTI7 EXTI_EXTICR2_EXTI7_Msk /*!< EXTI 7 configuration */
  3022. #define EXTI_EXTICR2_EXTI7_0 (0x1UL << EXTI_EXTICR2_EXTI7_Pos) /*!< 0x01000000 */
  3023. #define EXTI_EXTICR2_EXTI7_1 (0x2UL << EXTI_EXTICR2_EXTI7_Pos) /*!< 0x02000000 */
  3024. #define EXTI_EXTICR2_EXTI7_2 (0x4UL << EXTI_EXTICR2_EXTI7_Pos) /*!< 0x04000000 */
  3025. /***************** Bit definition for EXTI_EXTICR3 register **************/
  3026. #define EXTI_EXTICR3_EXTI8_Pos (0U)
  3027. #define EXTI_EXTICR3_EXTI8_Msk (0x7UL << EXTI_EXTICR3_EXTI8_Pos) /*!< 0x00000007 */
  3028. #define EXTI_EXTICR3_EXTI8 EXTI_EXTICR3_EXTI8_Msk /*!< EXTI 8 configuration */
  3029. #define EXTI_EXTICR3_EXTI8_0 (0x1UL << EXTI_EXTICR3_EXTI8_Pos) /*!< 0x00000001 */
  3030. #define EXTI_EXTICR3_EXTI8_1 (0x2UL << EXTI_EXTICR3_EXTI8_Pos) /*!< 0x00000002 */
  3031. #define EXTI_EXTICR3_EXTI8_2 (0x4UL << EXTI_EXTICR3_EXTI8_Pos) /*!< 0x00000004 */
  3032. #define EXTI_EXTICR3_EXTI9_Pos (8U)
  3033. #define EXTI_EXTICR3_EXTI9_Msk (0x7UL << EXTI_EXTICR3_EXTI9_Pos) /*!< 0x00000700 */
  3034. #define EXTI_EXTICR3_EXTI9 EXTI_EXTICR3_EXTI9_Msk /*!< EXTI 9 configuration */
  3035. #define EXTI_EXTICR3_EXTI9_0 (0x1UL << EXTI_EXTICR3_EXTI9_Pos) /*!< 0x00000100 */
  3036. #define EXTI_EXTICR3_EXTI9_1 (0x2UL << EXTI_EXTICR3_EXTI9_Pos) /*!< 0x00000200 */
  3037. #define EXTI_EXTICR3_EXTI9_2 (0x4UL << EXTI_EXTICR3_EXTI9_Pos) /*!< 0x00000400 */
  3038. #define EXTI_EXTICR3_EXTI10_Pos (16U)
  3039. #define EXTI_EXTICR3_EXTI10_Msk (0x7UL << EXTI_EXTICR3_EXTI10_Pos) /*!< 0x00070000 */
  3040. #define EXTI_EXTICR3_EXTI10 EXTI_EXTICR3_EXTI10_Msk /*!< EXTI 10 configuration */
  3041. #define EXTI_EXTICR3_EXTI10_0 (0x1UL << EXTI_EXTICR3_EXTI10_Pos) /*!< 0x00010000 */
  3042. #define EXTI_EXTICR3_EXTI10_1 (0x2UL << EXTI_EXTICR3_EXTI10_Pos) /*!< 0x00020000 */
  3043. #define EXTI_EXTICR3_EXTI10_2 (0x4UL << EXTI_EXTICR3_EXTI10_Pos) /*!< 0x00040000 */
  3044. #define EXTI_EXTICR3_EXTI11_Pos (24U)
  3045. #define EXTI_EXTICR3_EXTI11_Msk (0x7UL << EXTI_EXTICR3_EXTI11_Pos) /*!< 0x07000000 */
  3046. #define EXTI_EXTICR3_EXTI11 EXTI_EXTICR3_EXTI11_Msk /*!< EXTI 11 configuration */
  3047. #define EXTI_EXTICR3_EXTI11_0 (0x1UL << EXTI_EXTICR3_EXTI11_Pos) /*!< 0x01000000 */
  3048. #define EXTI_EXTICR3_EXTI11_1 (0x2UL << EXTI_EXTICR3_EXTI11_Pos) /*!< 0x02000000 */
  3049. #define EXTI_EXTICR3_EXTI11_2 (0x4UL << EXTI_EXTICR3_EXTI11_Pos) /*!< 0x04000000 */
  3050. /***************** Bit definition for EXTI_EXTICR4 register **************/
  3051. #define EXTI_EXTICR4_EXTI12_Pos (0U)
  3052. #define EXTI_EXTICR4_EXTI12_Msk (0x7UL << EXTI_EXTICR4_EXTI12_Pos) /*!< 0x00000007 */
  3053. #define EXTI_EXTICR4_EXTI12 EXTI_EXTICR4_EXTI12_Msk /*!< EXTI 12 configuration */
  3054. #define EXTI_EXTICR4_EXTI12_0 (0x1UL << EXTI_EXTICR4_EXTI12_Pos) /*!< 0x00000001 */
  3055. #define EXTI_EXTICR4_EXTI12_1 (0x2UL << EXTI_EXTICR4_EXTI12_Pos) /*!< 0x00000002 */
  3056. #define EXTI_EXTICR4_EXTI12_2 (0x4UL << EXTI_EXTICR4_EXTI12_Pos) /*!< 0x00000004 */
  3057. #define EXTI_EXTICR4_EXTI13_Pos (8U)
  3058. #define EXTI_EXTICR4_EXTI13_Msk (0x7UL << EXTI_EXTICR4_EXTI13_Pos) /*!< 0x00000700 */
  3059. #define EXTI_EXTICR4_EXTI13 EXTI_EXTICR4_EXTI13_Msk /*!< EXTI 13 configuration */
  3060. #define EXTI_EXTICR4_EXTI13_0 (0x1UL << EXTI_EXTICR4_EXTI13_Pos) /*!< 0x00000100 */
  3061. #define EXTI_EXTICR4_EXTI13_1 (0x2UL << EXTI_EXTICR4_EXTI13_Pos) /*!< 0x00000200 */
  3062. #define EXTI_EXTICR4_EXTI13_2 (0x4UL << EXTI_EXTICR4_EXTI13_Pos) /*!< 0x00000400 */
  3063. #define EXTI_EXTICR4_EXTI14_Pos (16U)
  3064. #define EXTI_EXTICR4_EXTI14_Msk (0x7UL << EXTI_EXTICR4_EXTI14_Pos) /*!< 0x00070000 */
  3065. #define EXTI_EXTICR4_EXTI14 EXTI_EXTICR4_EXTI14_Msk /*!< EXTI 14 configuration */
  3066. #define EXTI_EXTICR4_EXTI14_0 (0x1UL << EXTI_EXTICR4_EXTI14_Pos) /*!< 0x00010000 */
  3067. #define EXTI_EXTICR4_EXTI14_1 (0x2UL << EXTI_EXTICR4_EXTI14_Pos) /*!< 0x00020000 */
  3068. #define EXTI_EXTICR4_EXTI14_2 (0x4UL << EXTI_EXTICR4_EXTI14_Pos) /*!< 0x00040000 */
  3069. #define EXTI_EXTICR4_EXTI15_Pos (24U)
  3070. #define EXTI_EXTICR4_EXTI15_Msk (0x7UL << EXTI_EXTICR4_EXTI15_Pos) /*!< 0x07000000 */
  3071. #define EXTI_EXTICR4_EXTI15 EXTI_EXTICR4_EXTI15_Msk /*!< EXTI 15 configuration */
  3072. #define EXTI_EXTICR4_EXTI15_0 (0x1UL << EXTI_EXTICR4_EXTI15_Pos) /*!< 0x01000000 */
  3073. #define EXTI_EXTICR4_EXTI15_1 (0x2UL << EXTI_EXTICR4_EXTI15_Pos) /*!< 0x02000000 */
  3074. #define EXTI_EXTICR4_EXTI15_2 (0x4UL << EXTI_EXTICR4_EXTI15_Pos) /*!< 0x04000000 */
  3075. /******************* Bit definition for EXTI_IMR1 register ******************/
  3076. #define EXTI_IMR1_IM0_Pos (0U)
  3077. #define EXTI_IMR1_IM0_Msk (0x1UL << EXTI_IMR1_IM0_Pos) /*!< 0x00000001 */
  3078. #define EXTI_IMR1_IM0 EXTI_IMR1_IM0_Msk /*!< Interrupt Mask on line 0 */
  3079. #define EXTI_IMR1_IM1_Pos (1U)
  3080. #define EXTI_IMR1_IM1_Msk (0x1UL << EXTI_IMR1_IM1_Pos) /*!< 0x00000002 */
  3081. #define EXTI_IMR1_IM1 EXTI_IMR1_IM1_Msk /*!< Interrupt Mask on line 1 */
  3082. #define EXTI_IMR1_IM2_Pos (2U)
  3083. #define EXTI_IMR1_IM2_Msk (0x1UL << EXTI_IMR1_IM2_Pos) /*!< 0x00000004 */
  3084. #define EXTI_IMR1_IM2 EXTI_IMR1_IM2_Msk /*!< Interrupt Mask on line 2 */
  3085. #define EXTI_IMR1_IM3_Pos (3U)
  3086. #define EXTI_IMR1_IM3_Msk (0x1UL << EXTI_IMR1_IM3_Pos) /*!< 0x00000008 */
  3087. #define EXTI_IMR1_IM3 EXTI_IMR1_IM3_Msk /*!< Interrupt Mask on line 3 */
  3088. #define EXTI_IMR1_IM4_Pos (4U)
  3089. #define EXTI_IMR1_IM4_Msk (0x1UL << EXTI_IMR1_IM4_Pos) /*!< 0x00000010 */
  3090. #define EXTI_IMR1_IM4 EXTI_IMR1_IM4_Msk /*!< Interrupt Mask on line 4 */
  3091. #define EXTI_IMR1_IM5_Pos (5U)
  3092. #define EXTI_IMR1_IM5_Msk (0x1UL << EXTI_IMR1_IM5_Pos) /*!< 0x00000020 */
  3093. #define EXTI_IMR1_IM5 EXTI_IMR1_IM5_Msk /*!< Interrupt Mask on line 5 */
  3094. #define EXTI_IMR1_IM6_Pos (6U)
  3095. #define EXTI_IMR1_IM6_Msk (0x1UL << EXTI_IMR1_IM6_Pos) /*!< 0x00000040 */
  3096. #define EXTI_IMR1_IM6 EXTI_IMR1_IM6_Msk /*!< Interrupt Mask on line 6 */
  3097. #define EXTI_IMR1_IM7_Pos (7U)
  3098. #define EXTI_IMR1_IM7_Msk (0x1UL << EXTI_IMR1_IM7_Pos) /*!< 0x00000080 */
  3099. #define EXTI_IMR1_IM7 EXTI_IMR1_IM7_Msk /*!< Interrupt Mask on line 7 */
  3100. #define EXTI_IMR1_IM8_Pos (8U)
  3101. #define EXTI_IMR1_IM8_Msk (0x1UL << EXTI_IMR1_IM8_Pos) /*!< 0x00000100 */
  3102. #define EXTI_IMR1_IM8 EXTI_IMR1_IM8_Msk /*!< Interrupt Mask on line 8 */
  3103. #define EXTI_IMR1_IM9_Pos (9U)
  3104. #define EXTI_IMR1_IM9_Msk (0x1UL << EXTI_IMR1_IM9_Pos) /*!< 0x00000200 */
  3105. #define EXTI_IMR1_IM9 EXTI_IMR1_IM9_Msk /*!< Interrupt Mask on line 9 */
  3106. #define EXTI_IMR1_IM10_Pos (10U)
  3107. #define EXTI_IMR1_IM10_Msk (0x1UL << EXTI_IMR1_IM10_Pos) /*!< 0x00000400 */
  3108. #define EXTI_IMR1_IM10 EXTI_IMR1_IM10_Msk /*!< Interrupt Mask on line 10 */
  3109. #define EXTI_IMR1_IM11_Pos (11U)
  3110. #define EXTI_IMR1_IM11_Msk (0x1UL << EXTI_IMR1_IM11_Pos) /*!< 0x00000800 */
  3111. #define EXTI_IMR1_IM11 EXTI_IMR1_IM11_Msk /*!< Interrupt Mask on line 11 */
  3112. #define EXTI_IMR1_IM12_Pos (12U)
  3113. #define EXTI_IMR1_IM12_Msk (0x1UL << EXTI_IMR1_IM12_Pos) /*!< 0x00001000 */
  3114. #define EXTI_IMR1_IM12 EXTI_IMR1_IM12_Msk /*!< Interrupt Mask on line 12 */
  3115. #define EXTI_IMR1_IM13_Pos (13U)
  3116. #define EXTI_IMR1_IM13_Msk (0x1UL << EXTI_IMR1_IM13_Pos) /*!< 0x00002000 */
  3117. #define EXTI_IMR1_IM13 EXTI_IMR1_IM13_Msk /*!< Interrupt Mask on line 13 */
  3118. #define EXTI_IMR1_IM14_Pos (14U)
  3119. #define EXTI_IMR1_IM14_Msk (0x1UL << EXTI_IMR1_IM14_Pos) /*!< 0x00004000 */
  3120. #define EXTI_IMR1_IM14 EXTI_IMR1_IM14_Msk /*!< Interrupt Mask on line 14 */
  3121. #define EXTI_IMR1_IM15_Pos (15U)
  3122. #define EXTI_IMR1_IM15_Msk (0x1UL << EXTI_IMR1_IM15_Pos) /*!< 0x00008000 */
  3123. #define EXTI_IMR1_IM15 EXTI_IMR1_IM15_Msk /*!< Interrupt Mask on line 15 */
  3124. #define EXTI_IMR1_IM16_Pos (16U)
  3125. #define EXTI_IMR1_IM16_Msk (0x1UL << EXTI_IMR1_IM16_Pos) /*!< 0x00010000 */
  3126. #define EXTI_IMR1_IM16 EXTI_IMR1_IM16_Msk /*!< Interrupt Mask on line 16 */
  3127. #define EXTI_IMR1_IM17_Pos (17U)
  3128. #define EXTI_IMR1_IM17_Msk (0x1UL << EXTI_IMR1_IM17_Pos) /*!< 0x00020000 */
  3129. #define EXTI_IMR1_IM17 EXTI_IMR1_IM17_Msk /*!< Interrupt Mask on line 17 */
  3130. #define EXTI_IMR1_IM18_Pos (18U)
  3131. #define EXTI_IMR1_IM18_Msk (0x1UL << EXTI_IMR1_IM18_Pos) /*!< 0x00040000 */
  3132. #define EXTI_IMR1_IM18 EXTI_IMR1_IM18_Msk /*!< Interrupt Mask on line 18 */
  3133. #define EXTI_IMR1_IM19_Pos (19U)
  3134. #define EXTI_IMR1_IM19_Msk (0x1UL << EXTI_IMR1_IM19_Pos) /*!< 0x00080000 */
  3135. #define EXTI_IMR1_IM19 EXTI_IMR1_IM19_Msk /*!< Interrupt Mask on line 19 */
  3136. #define EXTI_IMR1_IM20_Pos (20U)
  3137. #define EXTI_IMR1_IM20_Msk (0x1UL << EXTI_IMR1_IM20_Pos) /*!< 0x00100000 */
  3138. #define EXTI_IMR1_IM20 EXTI_IMR1_IM20_Msk /*!< Interrupt Mask on line 20 */
  3139. #define EXTI_IMR1_IM21_Pos (21U)
  3140. #define EXTI_IMR1_IM21_Msk (0x1UL << EXTI_IMR1_IM21_Pos) /*!< 0x00200000 */
  3141. #define EXTI_IMR1_IM21 EXTI_IMR1_IM21_Msk /*!< Interrupt Mask on line 21 */
  3142. #define EXTI_IMR1_IM22_Pos (22U)
  3143. #define EXTI_IMR1_IM22_Msk (0x1UL << EXTI_IMR1_IM22_Pos) /*!< 0x00400000 */
  3144. #define EXTI_IMR1_IM22 EXTI_IMR1_IM22_Msk /*!< Interrupt Mask on line 22 */
  3145. #define EXTI_IMR1_IM23_Pos (23U)
  3146. #define EXTI_IMR1_IM23_Msk (0x1UL << EXTI_IMR1_IM23_Pos) /*!< 0x00800000 */
  3147. #define EXTI_IMR1_IM23 EXTI_IMR1_IM23_Msk /*!< Interrupt Mask on line 23 */
  3148. #define EXTI_IMR1_IM24_Pos (24U)
  3149. #define EXTI_IMR1_IM24_Msk (0x1UL << EXTI_IMR1_IM24_Pos) /*!< 0x01000000 */
  3150. #define EXTI_IMR1_IM24 EXTI_IMR1_IM24_Msk /*!< Interrupt Mask on line 24 */
  3151. #define EXTI_IMR1_IM25_Pos (25U)
  3152. #define EXTI_IMR1_IM25_Msk (0x1UL << EXTI_IMR1_IM25_Pos) /*!< 0x02000000 */
  3153. #define EXTI_IMR1_IM25 EXTI_IMR1_IM25_Msk /*!< Interrupt Mask on line 25 */
  3154. #define EXTI_IMR1_IM26_Pos (26U)
  3155. #define EXTI_IMR1_IM26_Msk (0x1UL << EXTI_IMR1_IM26_Pos) /*!< 0x04000000 */
  3156. #define EXTI_IMR1_IM26 EXTI_IMR1_IM26_Msk /*!< Interrupt Mask on line 26 */
  3157. #define EXTI_IMR1_IM27_Pos (27U)
  3158. #define EXTI_IMR1_IM27_Msk (0x1UL << EXTI_IMR1_IM27_Pos) /*!< 0x08000000 */
  3159. #define EXTI_IMR1_IM27 EXTI_IMR1_IM27_Msk /*!< Interrupt Mask on line 27 */
  3160. #define EXTI_IMR1_IM28_Pos (28U)
  3161. #define EXTI_IMR1_IM28_Msk (0x1UL << EXTI_IMR1_IM28_Pos) /*!< 0x10000000 */
  3162. #define EXTI_IMR1_IM28 EXTI_IMR1_IM28_Msk /*!< Interrupt Mask on line 28 */
  3163. #define EXTI_IMR1_IM29_Pos (29U)
  3164. #define EXTI_IMR1_IM29_Msk (0x1UL << EXTI_IMR1_IM29_Pos) /*!< 0x20000000 */
  3165. #define EXTI_IMR1_IM29 EXTI_IMR1_IM29_Msk /*!< Interrupt Mask on line 29 */
  3166. #define EXTI_IMR1_IM30_Pos (30U)
  3167. #define EXTI_IMR1_IM30_Msk (0x1UL << EXTI_IMR1_IM30_Pos) /*!< 0x40000000 */
  3168. #define EXTI_IMR1_IM30 EXTI_IMR1_IM30_Msk /*!< Interrupt Mask on line 30 */
  3169. #define EXTI_IMR1_IM31_Pos (31U)
  3170. #define EXTI_IMR1_IM31_Msk (0x1UL << EXTI_IMR1_IM31_Pos) /*!< 0x80000000 */
  3171. #define EXTI_IMR1_IM31 EXTI_IMR1_IM31_Msk /*!< Interrupt Mask on line 31 */
  3172. #define EXTI_IMR1_IM_Pos (0U)
  3173. #define EXTI_IMR1_IM_Msk (0xFFFFFFFFUL << EXTI_IMR1_IM_Pos) /*!< 0xFFFFFFFF */
  3174. #define EXTI_IMR1_IM EXTI_IMR1_IM_Msk /*!< Interrupt Mask All */
  3175. /******************* Bit definition for EXTI_IMR2 register ******************/
  3176. #define EXTI_IMR2_IM32_Pos (0U)
  3177. #define EXTI_IMR2_IM32_Msk (0x1UL << EXTI_IMR2_IM32_Pos) /*!< 0x00000001 */
  3178. #define EXTI_IMR2_IM32 EXTI_IMR2_IM32_Msk /*!< Interrupt Mask on line 32 */
  3179. #define EXTI_IMR2_IM33_Pos (1U)
  3180. #define EXTI_IMR2_IM33_Msk (0x1UL << EXTI_IMR2_IM33_Pos) /*!< 0x00000002 */
  3181. #define EXTI_IMR2_IM33 EXTI_IMR2_IM33_Msk /*!< Interrupt Mask on line 33 */
  3182. #define EXTI_IMR2_IM34_Pos (2U)
  3183. #define EXTI_IMR2_IM34_Msk (0x1UL << EXTI_IMR2_IM34_Pos) /*!< 0x00000004 */
  3184. #define EXTI_IMR2_IM34 EXTI_IMR2_IM34_Msk /*!< Interrupt Mask on line 34 */
  3185. #define EXTI_IMR2_IM35_Pos (3U)
  3186. #define EXTI_IMR2_IM35_Msk (0x1UL << EXTI_IMR2_IM35_Pos) /*!< 0x00000008 */
  3187. #define EXTI_IMR2_IM35 EXTI_IMR2_IM35_Msk /*!< Interrupt Mask on line 35 */
  3188. #define EXTI_IMR2_IM36_Pos (4U)
  3189. #define EXTI_IMR2_IM36_Msk (0x1UL << EXTI_IMR2_IM36_Pos) /*!< 0x00000010 */
  3190. #define EXTI_IMR2_IM36 EXTI_IMR2_IM36_Msk /*!< Interrupt Mask on line 36 */
  3191. #define EXTI_IMR2_IM_Pos (0U)
  3192. #define EXTI_IMR2_IM_Msk (0x1FUL << EXTI_IMR2_IM_Pos) /*!< 0x0000001F */
  3193. #define EXTI_IMR2_IM EXTI_IMR2_IM_Msk /*!< Interrupt Mask All */
  3194. /******************* Bit definition for EXTI_EMR1 register ******************/
  3195. #define EXTI_EMR1_EM0_Pos (0U)
  3196. #define EXTI_EMR1_EM0_Msk (0x1UL << EXTI_EMR1_EM0_Pos) /*!< 0x00000001 */
  3197. #define EXTI_EMR1_EM0 EXTI_EMR1_EM0_Msk /*!< Event Mask on line 0 */
  3198. #define EXTI_EMR1_EM1_Pos (1U)
  3199. #define EXTI_EMR1_EM1_Msk (0x1UL << EXTI_EMR1_EM1_Pos) /*!< 0x00000002 */
  3200. #define EXTI_EMR1_EM1 EXTI_EMR1_EM1_Msk /*!< Event Mask on line 1 */
  3201. #define EXTI_EMR1_EM2_Pos (2U)
  3202. #define EXTI_EMR1_EM2_Msk (0x1UL << EXTI_EMR1_EM2_Pos) /*!< 0x00000004 */
  3203. #define EXTI_EMR1_EM2 EXTI_EMR1_EM2_Msk /*!< Event Mask on line 2 */
  3204. #define EXTI_EMR1_EM3_Pos (3U)
  3205. #define EXTI_EMR1_EM3_Msk (0x1UL << EXTI_EMR1_EM3_Pos) /*!< 0x00000008 */
  3206. #define EXTI_EMR1_EM3 EXTI_EMR1_EM3_Msk /*!< Event Mask on line 3 */
  3207. #define EXTI_EMR1_EM4_Pos (4U)
  3208. #define EXTI_EMR1_EM4_Msk (0x1UL << EXTI_EMR1_EM4_Pos) /*!< 0x00000010 */
  3209. #define EXTI_EMR1_EM4 EXTI_EMR1_EM4_Msk /*!< Event Mask on line 4 */
  3210. #define EXTI_EMR1_EM5_Pos (5U)
  3211. #define EXTI_EMR1_EM5_Msk (0x1UL << EXTI_EMR1_EM5_Pos) /*!< 0x00000020 */
  3212. #define EXTI_EMR1_EM5 EXTI_EMR1_EM5_Msk /*!< Event Mask on line 5 */
  3213. #define EXTI_EMR1_EM6_Pos (6U)
  3214. #define EXTI_EMR1_EM6_Msk (0x1UL << EXTI_EMR1_EM6_Pos) /*!< 0x00000040 */
  3215. #define EXTI_EMR1_EM6 EXTI_EMR1_EM6_Msk /*!< Event Mask on line 6 */
  3216. #define EXTI_EMR1_EM7_Pos (7U)
  3217. #define EXTI_EMR1_EM7_Msk (0x1UL << EXTI_EMR1_EM7_Pos) /*!< 0x00000080 */
  3218. #define EXTI_EMR1_EM7 EXTI_EMR1_EM7_Msk /*!< Event Mask on line 7 */
  3219. #define EXTI_EMR1_EM8_Pos (8U)
  3220. #define EXTI_EMR1_EM8_Msk (0x1UL << EXTI_EMR1_EM8_Pos) /*!< 0x00000100 */
  3221. #define EXTI_EMR1_EM8 EXTI_EMR1_EM8_Msk /*!< Event Mask on line 8 */
  3222. #define EXTI_EMR1_EM9_Pos (9U)
  3223. #define EXTI_EMR1_EM9_Msk (0x1UL << EXTI_EMR1_EM9_Pos) /*!< 0x00000200 */
  3224. #define EXTI_EMR1_EM9 EXTI_EMR1_EM9_Msk /*!< Event Mask on line 9 */
  3225. #define EXTI_EMR1_EM10_Pos (10U)
  3226. #define EXTI_EMR1_EM10_Msk (0x1UL << EXTI_EMR1_EM10_Pos) /*!< 0x00000400 */
  3227. #define EXTI_EMR1_EM10 EXTI_EMR1_EM10_Msk /*!< Event Mask on line 10 */
  3228. #define EXTI_EMR1_EM11_Pos (11U)
  3229. #define EXTI_EMR1_EM11_Msk (0x1UL << EXTI_EMR1_EM11_Pos) /*!< 0x00000800 */
  3230. #define EXTI_EMR1_EM11 EXTI_EMR1_EM11_Msk /*!< Event Mask on line 11 */
  3231. #define EXTI_EMR1_EM12_Pos (12U)
  3232. #define EXTI_EMR1_EM12_Msk (0x1UL << EXTI_EMR1_EM12_Pos) /*!< 0x00001000 */
  3233. #define EXTI_EMR1_EM12 EXTI_EMR1_EM12_Msk /*!< Event Mask on line 12 */
  3234. #define EXTI_EMR1_EM13_Pos (13U)
  3235. #define EXTI_EMR1_EM13_Msk (0x1UL << EXTI_EMR1_EM13_Pos) /*!< 0x00002000 */
  3236. #define EXTI_EMR1_EM13 EXTI_EMR1_EM13_Msk /*!< Event Mask on line 13 */
  3237. #define EXTI_EMR1_EM14_Pos (14U)
  3238. #define EXTI_EMR1_EM14_Msk (0x1UL << EXTI_EMR1_EM14_Pos) /*!< 0x00004000 */
  3239. #define EXTI_EMR1_EM14 EXTI_EMR1_EM14_Msk /*!< Event Mask on line 14 */
  3240. #define EXTI_EMR1_EM15_Pos (15U)
  3241. #define EXTI_EMR1_EM15_Msk (0x1UL << EXTI_EMR1_EM15_Pos) /*!< 0x00008000 */
  3242. #define EXTI_EMR1_EM15 EXTI_EMR1_EM15_Msk /*!< Event Mask on line 15 */
  3243. #define EXTI_EMR1_EM16_Pos (16U)
  3244. #define EXTI_EMR1_EM16_Msk (0x1UL << EXTI_EMR1_EM16_Pos) /*!< 0x00010000 */
  3245. #define EXTI_EMR1_EM16 EXTI_EMR1_EM16_Msk /*!< Event Mask on line 16 */
  3246. #define EXTI_EMR1_EM17_Pos (17U)
  3247. #define EXTI_EMR1_EM17_Msk (0x1UL << EXTI_EMR1_EM17_Pos) /*!< 0x00020000 */
  3248. #define EXTI_EMR1_EM17 EXTI_EMR1_EM17_Msk /*!< Event Mask on line 17 */
  3249. #define EXTI_EMR1_EM18_Pos (18U)
  3250. #define EXTI_EMR1_EM18_Msk (0x1UL << EXTI_EMR1_EM18_Pos) /*!< 0x00040000 */
  3251. #define EXTI_EMR1_EM18 EXTI_EMR1_EM18_Msk /*!< Event Mask on line 18 */
  3252. #define EXTI_EMR1_EM19_Pos (19U)
  3253. #define EXTI_EMR1_EM19_Msk (0x1UL << EXTI_EMR1_EM19_Pos) /*!< 0x00080000 */
  3254. #define EXTI_EMR1_EM19 EXTI_EMR1_EM19_Msk /*!< Event Mask on line 19 */
  3255. #define EXTI_EMR1_EM20_Pos (20U)
  3256. #define EXTI_EMR1_EM20_Msk (0x1UL << EXTI_EMR1_EM20_Pos) /*!< 0x00100000 */
  3257. #define EXTI_EMR1_EM20 EXTI_EMR1_EM20_Msk /*!< Event Mask on line 20 */
  3258. #define EXTI_EMR1_EM21_Pos (21U)
  3259. #define EXTI_EMR1_EM21_Msk (0x1UL << EXTI_EMR1_EM21_Pos) /*!< 0x00200000 */
  3260. #define EXTI_EMR1_EM21 EXTI_EMR1_EM21_Msk /*!< Event Mask on line 21 */
  3261. #define EXTI_EMR1_EM22_Pos (22U)
  3262. #define EXTI_EMR1_EM22_Msk (0x1UL << EXTI_EMR1_EM22_Pos) /*!< 0x00400000 */
  3263. #define EXTI_EMR1_EM22 EXTI_EMR1_EM22_Msk /*!< Event Mask on line 22 */
  3264. #define EXTI_EMR1_EM23_Pos (23U)
  3265. #define EXTI_EMR1_EM23_Msk (0x1UL << EXTI_EMR1_EM23_Pos) /*!< 0x00800000 */
  3266. #define EXTI_EMR1_EM23 EXTI_EMR1_EM23_Msk /*!< Event Mask on line 23 */
  3267. #define EXTI_EMR1_EM24_Pos (24U)
  3268. #define EXTI_EMR1_EM24_Msk (0x1UL << EXTI_EMR1_EM24_Pos) /*!< 0x01000000 */
  3269. #define EXTI_EMR1_EM24 EXTI_EMR1_EM24_Msk /*!< Event Mask on line 24 */
  3270. #define EXTI_EMR1_EM25_Pos (25U)
  3271. #define EXTI_EMR1_EM25_Msk (0x1UL << EXTI_EMR1_EM25_Pos) /*!< 0x02000000 */
  3272. #define EXTI_EMR1_EM25 EXTI_EMR1_EM25_Msk /*!< Event Mask on line 25 */
  3273. #define EXTI_EMR1_EM26_Pos (26U)
  3274. #define EXTI_EMR1_EM26_Msk (0x1UL << EXTI_EMR1_EM26_Pos) /*!< 0x04000000 */
  3275. #define EXTI_EMR1_EM26 EXTI_EMR1_EM26_Msk /*!< Event Mask on line 26 */
  3276. #define EXTI_EMR1_EM27_Pos (27U)
  3277. #define EXTI_EMR1_EM27_Msk (0x1UL << EXTI_EMR1_EM27_Pos) /*!< 0x08000000 */
  3278. #define EXTI_EMR1_EM27 EXTI_EMR1_EM27_Msk /*!< Event Mask on line 27 */
  3279. #define EXTI_EMR1_EM28_Pos (28U)
  3280. #define EXTI_EMR1_EM28_Msk (0x1UL << EXTI_EMR1_EM28_Pos) /*!< 0x10000000 */
  3281. #define EXTI_EMR1_EM28 EXTI_EMR1_EM28_Msk /*!< Event Mask on line 28 */
  3282. #define EXTI_EMR1_EM29_Pos (29U)
  3283. #define EXTI_EMR1_EM29_Msk (0x1UL << EXTI_EMR1_EM29_Pos) /*!< 0x20000000 */
  3284. #define EXTI_EMR1_EM29 EXTI_EMR1_EM29_Msk /*!< Event Mask on line 29 */
  3285. #define EXTI_EMR1_EM30_Pos (30U)
  3286. #define EXTI_EMR1_EM30_Msk (0x1UL << EXTI_EMR1_EM30_Pos) /*!< 0x40000000 */
  3287. #define EXTI_EMR1_EM30 EXTI_EMR1_EM30_Msk /*!< Event Mask on line 30 */
  3288. #define EXTI_EMR1_EM31_Pos (31U)
  3289. #define EXTI_EMR1_EM31_Msk (0x1UL << EXTI_EMR1_EM31_Pos) /*!< 0x80000000 */
  3290. #define EXTI_EMR1_EM31 EXTI_EMR1_EM31_Msk /*!< Event Mask on line 31 */
  3291. /******************* Bit definition for EXTI_EMR2 register ******************/
  3292. #define EXTI_EMR2_EM32_Pos (0U)
  3293. #define EXTI_EMR2_EM32_Msk (0x1UL << EXTI_EMR2_EM32_Pos) /*!< 0x00000001 */
  3294. #define EXTI_EMR2_EM32 EXTI_EMR2_EM32_Msk /*!< Event Mask on line 32 */
  3295. #define EXTI_EMR2_EM33_Pos (1U)
  3296. #define EXTI_EMR2_EM33_Msk (0x1UL << EXTI_EMR2_EM33_Pos) /*!< 0x00000002 */
  3297. #define EXTI_EMR2_EM33 EXTI_EMR2_EM33_Msk /*!< Event Mask on line 33 */
  3298. #define EXTI_EMR2_EM34_Pos (2U)
  3299. #define EXTI_EMR2_EM34_Msk (0x1UL << EXTI_EMR2_EM34_Pos) /*!< 0x00000004 */
  3300. #define EXTI_EMR2_EM34 EXTI_EMR2_EM34_Msk /*!< Event Mask on line 34 */
  3301. #define EXTI_EMR2_EM35_Pos (3U)
  3302. #define EXTI_EMR2_EM35_Msk (0x1UL << EXTI_EMR2_EM35_Pos) /*!< 0x00000008 */
  3303. #define EXTI_EMR2_EM35 EXTI_EMR2_EM35_Msk /*!< Event Mask on line 35 */
  3304. #define EXTI_EMR2_EM36_Pos (4U)
  3305. #define EXTI_EMR2_EM36_Msk (0x1UL << EXTI_EMR2_EM36_Pos) /*!< 0x00000010 */
  3306. #define EXTI_EMR2_EM36 EXTI_EMR2_EM36_Msk /*!< Event Mask on line 36 */
  3307. /******************************************************************************/
  3308. /* */
  3309. /* Flexible Datarate Controller Area Network */
  3310. /* */
  3311. /******************************************************************************/
  3312. /*!<FDCAN control and status registers */
  3313. /***************** Bit definition for FDCAN_CREL register *******************/
  3314. #define FDCAN_CREL_DAY_Pos (0U)
  3315. #define FDCAN_CREL_DAY_Msk (0xFFUL << FDCAN_CREL_DAY_Pos) /*!< 0x000000FF */
  3316. #define FDCAN_CREL_DAY FDCAN_CREL_DAY_Msk /*!<Timestamp Day */
  3317. #define FDCAN_CREL_MON_Pos (8U)
  3318. #define FDCAN_CREL_MON_Msk (0xFFUL << FDCAN_CREL_MON_Pos) /*!< 0x0000FF00 */
  3319. #define FDCAN_CREL_MON FDCAN_CREL_MON_Msk /*!<Timestamp Month */
  3320. #define FDCAN_CREL_YEAR_Pos (16U)
  3321. #define FDCAN_CREL_YEAR_Msk (0xFUL << FDCAN_CREL_YEAR_Pos) /*!< 0x000F0000 */
  3322. #define FDCAN_CREL_YEAR FDCAN_CREL_YEAR_Msk /*!<Timestamp Year */
  3323. #define FDCAN_CREL_SUBSTEP_Pos (20U)
  3324. #define FDCAN_CREL_SUBSTEP_Msk (0xFUL << FDCAN_CREL_SUBSTEP_Pos) /*!< 0x00F00000 */
  3325. #define FDCAN_CREL_SUBSTEP FDCAN_CREL_SUBSTEP_Msk /*!<Sub-step of Core release */
  3326. #define FDCAN_CREL_STEP_Pos (24U)
  3327. #define FDCAN_CREL_STEP_Msk (0xFUL << FDCAN_CREL_STEP_Pos) /*!< 0x0F000000 */
  3328. #define FDCAN_CREL_STEP FDCAN_CREL_STEP_Msk /*!<Step of Core release */
  3329. #define FDCAN_CREL_REL_Pos (28U)
  3330. #define FDCAN_CREL_REL_Msk (0xFUL << FDCAN_CREL_REL_Pos) /*!< 0xF0000000 */
  3331. #define FDCAN_CREL_REL FDCAN_CREL_REL_Msk /*!<Core release */
  3332. /***************** Bit definition for FDCAN_ENDN register *******************/
  3333. #define FDCAN_ENDN_ETV_Pos (0U)
  3334. #define FDCAN_ENDN_ETV_Msk (0xFFFFFFFFUL << FDCAN_ENDN_ETV_Pos) /*!< 0xFFFFFFFF */
  3335. #define FDCAN_ENDN_ETV FDCAN_ENDN_ETV_Msk /*!<Endianness Test Value */
  3336. /***************** Bit definition for FDCAN_DBTP register *******************/
  3337. #define FDCAN_DBTP_DSJW_Pos (0U)
  3338. #define FDCAN_DBTP_DSJW_Msk (0xFUL << FDCAN_DBTP_DSJW_Pos) /*!< 0x0000000F */
  3339. #define FDCAN_DBTP_DSJW FDCAN_DBTP_DSJW_Msk /*!<Synchronization Jump Width */
  3340. #define FDCAN_DBTP_DTSEG2_Pos (4U)
  3341. #define FDCAN_DBTP_DTSEG2_Msk (0xFUL << FDCAN_DBTP_DTSEG2_Pos) /*!< 0x000000F0 */
  3342. #define FDCAN_DBTP_DTSEG2 FDCAN_DBTP_DTSEG2_Msk /*!<Data time segment after sample point */
  3343. #define FDCAN_DBTP_DTSEG1_Pos (8U)
  3344. #define FDCAN_DBTP_DTSEG1_Msk (0x1FUL << FDCAN_DBTP_DTSEG1_Pos) /*!< 0x00001F00 */
  3345. #define FDCAN_DBTP_DTSEG1 FDCAN_DBTP_DTSEG1_Msk /*!<Data time segment before sample point */
  3346. #define FDCAN_DBTP_DBRP_Pos (16U)
  3347. #define FDCAN_DBTP_DBRP_Msk (0x1FUL << FDCAN_DBTP_DBRP_Pos) /*!< 0x001F0000 */
  3348. #define FDCAN_DBTP_DBRP FDCAN_DBTP_DBRP_Msk /*!<Data BIt Rate Prescaler */
  3349. #define FDCAN_DBTP_TDC_Pos (23U)
  3350. #define FDCAN_DBTP_TDC_Msk (0x1UL << FDCAN_DBTP_TDC_Pos) /*!< 0x00800000 */
  3351. #define FDCAN_DBTP_TDC FDCAN_DBTP_TDC_Msk /*!<Transceiver Delay Compensation */
  3352. /***************** Bit definition for FDCAN_TEST register *******************/
  3353. #define FDCAN_TEST_LBCK_Pos (4U)
  3354. #define FDCAN_TEST_LBCK_Msk (0x1UL << FDCAN_TEST_LBCK_Pos) /*!< 0x00000010 */
  3355. #define FDCAN_TEST_LBCK FDCAN_TEST_LBCK_Msk /*!<Loop Back mode */
  3356. #define FDCAN_TEST_TX_Pos (5U)
  3357. #define FDCAN_TEST_TX_Msk (0x3UL << FDCAN_TEST_TX_Pos) /*!< 0x00000060 */
  3358. #define FDCAN_TEST_TX FDCAN_TEST_TX_Msk /*!<Control of Transmit Pin */
  3359. #define FDCAN_TEST_RX_Pos (7U)
  3360. #define FDCAN_TEST_RX_Msk (0x1UL << FDCAN_TEST_RX_Pos) /*!< 0x00000080 */
  3361. #define FDCAN_TEST_RX FDCAN_TEST_RX_Msk /*!<Receive Pin */
  3362. /***************** Bit definition for FDCAN_RWD register ********************/
  3363. #define FDCAN_RWD_WDC_Pos (0U)
  3364. #define FDCAN_RWD_WDC_Msk (0xFFUL << FDCAN_RWD_WDC_Pos) /*!< 0x000000FF */
  3365. #define FDCAN_RWD_WDC FDCAN_RWD_WDC_Msk /*!<Watchdog configuration */
  3366. #define FDCAN_RWD_WDV_Pos (8U)
  3367. #define FDCAN_RWD_WDV_Msk (0xFFUL << FDCAN_RWD_WDV_Pos) /*!< 0x0000FF00 */
  3368. #define FDCAN_RWD_WDV FDCAN_RWD_WDV_Msk /*!<Watchdog value */
  3369. /***************** Bit definition for FDCAN_CCCR register ********************/
  3370. #define FDCAN_CCCR_INIT_Pos (0U)
  3371. #define FDCAN_CCCR_INIT_Msk (0x1UL << FDCAN_CCCR_INIT_Pos) /*!< 0x00000001 */
  3372. #define FDCAN_CCCR_INIT FDCAN_CCCR_INIT_Msk /*!<Initialization */
  3373. #define FDCAN_CCCR_CCE_Pos (1U)
  3374. #define FDCAN_CCCR_CCE_Msk (0x1UL << FDCAN_CCCR_CCE_Pos) /*!< 0x00000002 */
  3375. #define FDCAN_CCCR_CCE FDCAN_CCCR_CCE_Msk /*!<Configuration Change Enable */
  3376. #define FDCAN_CCCR_ASM_Pos (2U)
  3377. #define FDCAN_CCCR_ASM_Msk (0x1UL << FDCAN_CCCR_ASM_Pos) /*!< 0x00000004 */
  3378. #define FDCAN_CCCR_ASM FDCAN_CCCR_ASM_Msk /*!<ASM Restricted Operation Mode */
  3379. #define FDCAN_CCCR_CSA_Pos (3U)
  3380. #define FDCAN_CCCR_CSA_Msk (0x1UL << FDCAN_CCCR_CSA_Pos) /*!< 0x00000008 */
  3381. #define FDCAN_CCCR_CSA FDCAN_CCCR_CSA_Msk /*!<Clock Stop Acknowledge */
  3382. #define FDCAN_CCCR_CSR_Pos (4U)
  3383. #define FDCAN_CCCR_CSR_Msk (0x1UL << FDCAN_CCCR_CSR_Pos) /*!< 0x00000010 */
  3384. #define FDCAN_CCCR_CSR FDCAN_CCCR_CSR_Msk /*!<Clock Stop Request */
  3385. #define FDCAN_CCCR_MON_Pos (5U)
  3386. #define FDCAN_CCCR_MON_Msk (0x1UL << FDCAN_CCCR_MON_Pos) /*!< 0x00000020 */
  3387. #define FDCAN_CCCR_MON FDCAN_CCCR_MON_Msk /*!<Bus Monitoring Mode */
  3388. #define FDCAN_CCCR_DAR_Pos (6U)
  3389. #define FDCAN_CCCR_DAR_Msk (0x1UL << FDCAN_CCCR_DAR_Pos) /*!< 0x00000040 */
  3390. #define FDCAN_CCCR_DAR FDCAN_CCCR_DAR_Msk /*!<Disable Automatic Retransmission */
  3391. #define FDCAN_CCCR_TEST_Pos (7U)
  3392. #define FDCAN_CCCR_TEST_Msk (0x1UL << FDCAN_CCCR_TEST_Pos) /*!< 0x00000080 */
  3393. #define FDCAN_CCCR_TEST FDCAN_CCCR_TEST_Msk /*!<Test Mode Enable */
  3394. #define FDCAN_CCCR_FDOE_Pos (8U)
  3395. #define FDCAN_CCCR_FDOE_Msk (0x1UL << FDCAN_CCCR_FDOE_Pos) /*!< 0x00000100 */
  3396. #define FDCAN_CCCR_FDOE FDCAN_CCCR_FDOE_Msk /*!<FD Operation Enable */
  3397. #define FDCAN_CCCR_BRSE_Pos (9U)
  3398. #define FDCAN_CCCR_BRSE_Msk (0x1UL << FDCAN_CCCR_BRSE_Pos) /*!< 0x00000200 */
  3399. #define FDCAN_CCCR_BRSE FDCAN_CCCR_BRSE_Msk /*!<FDCAN Bit Rate Switching */
  3400. #define FDCAN_CCCR_PXHD_Pos (12U)
  3401. #define FDCAN_CCCR_PXHD_Msk (0x1UL << FDCAN_CCCR_PXHD_Pos) /*!< 0x00001000 */
  3402. #define FDCAN_CCCR_PXHD FDCAN_CCCR_PXHD_Msk /*!<Protocol Exception Handling Disable */
  3403. #define FDCAN_CCCR_EFBI_Pos (13U)
  3404. #define FDCAN_CCCR_EFBI_Msk (0x1UL << FDCAN_CCCR_EFBI_Pos) /*!< 0x00002000 */
  3405. #define FDCAN_CCCR_EFBI FDCAN_CCCR_EFBI_Msk /*!<Edge Filtering during Bus Integration */
  3406. #define FDCAN_CCCR_TXP_Pos (14U)
  3407. #define FDCAN_CCCR_TXP_Msk (0x1UL << FDCAN_CCCR_TXP_Pos) /*!< 0x00004000 */
  3408. #define FDCAN_CCCR_TXP FDCAN_CCCR_TXP_Msk /*!<Two CAN bit times Pause */
  3409. #define FDCAN_CCCR_NISO_Pos (15U)
  3410. #define FDCAN_CCCR_NISO_Msk (0x1UL << FDCAN_CCCR_NISO_Pos) /*!< 0x00008000 */
  3411. #define FDCAN_CCCR_NISO FDCAN_CCCR_NISO_Msk /*!<Non ISO Operation */
  3412. /***************** Bit definition for FDCAN_NBTP register ********************/
  3413. #define FDCAN_NBTP_NTSEG2_Pos (0U)
  3414. #define FDCAN_NBTP_NTSEG2_Msk (0x7FUL << FDCAN_NBTP_NTSEG2_Pos) /*!< 0x0000007F */
  3415. #define FDCAN_NBTP_NTSEG2 FDCAN_NBTP_NTSEG2_Msk /*!<Nominal Time segment after sample point */
  3416. #define FDCAN_NBTP_NTSEG1_Pos (8U)
  3417. #define FDCAN_NBTP_NTSEG1_Msk (0xFFUL << FDCAN_NBTP_NTSEG1_Pos) /*!< 0x0000FF00 */
  3418. #define FDCAN_NBTP_NTSEG1 FDCAN_NBTP_NTSEG1_Msk /*!<Nominal Time segment before sample point */
  3419. #define FDCAN_NBTP_NBRP_Pos (16U)
  3420. #define FDCAN_NBTP_NBRP_Msk (0x1FFUL << FDCAN_NBTP_NBRP_Pos) /*!< 0x01FF0000 */
  3421. #define FDCAN_NBTP_NBRP FDCAN_NBTP_NBRP_Msk /*!<Bit Rate Prescaler */
  3422. #define FDCAN_NBTP_NSJW_Pos (25U)
  3423. #define FDCAN_NBTP_NSJW_Msk (0x7FUL << FDCAN_NBTP_NSJW_Pos) /*!< 0xFE000000 */
  3424. #define FDCAN_NBTP_NSJW FDCAN_NBTP_NSJW_Msk /*!<Nominal (Re)Synchronization Jump Width */
  3425. /***************** Bit definition for FDCAN_TSCC register ********************/
  3426. #define FDCAN_TSCC_TSS_Pos (0U)
  3427. #define FDCAN_TSCC_TSS_Msk (0x3UL << FDCAN_TSCC_TSS_Pos) /*!< 0x00000003 */
  3428. #define FDCAN_TSCC_TSS FDCAN_TSCC_TSS_Msk /*!<Timestamp Select */
  3429. #define FDCAN_TSCC_TCP_Pos (16U)
  3430. #define FDCAN_TSCC_TCP_Msk (0xFUL << FDCAN_TSCC_TCP_Pos) /*!< 0x000F0000 */
  3431. #define FDCAN_TSCC_TCP FDCAN_TSCC_TCP_Msk /*!<Timestamp Counter Prescaler */
  3432. /***************** Bit definition for FDCAN_TSCV register ********************/
  3433. #define FDCAN_TSCV_TSC_Pos (0U)
  3434. #define FDCAN_TSCV_TSC_Msk (0xFFFFUL << FDCAN_TSCV_TSC_Pos) /*!< 0x0000FFFF */
  3435. #define FDCAN_TSCV_TSC FDCAN_TSCV_TSC_Msk /*!<Timestamp Counter */
  3436. /***************** Bit definition for FDCAN_TOCC register ********************/
  3437. #define FDCAN_TOCC_ETOC_Pos (0U)
  3438. #define FDCAN_TOCC_ETOC_Msk (0x1UL << FDCAN_TOCC_ETOC_Pos) /*!< 0x00000001 */
  3439. #define FDCAN_TOCC_ETOC FDCAN_TOCC_ETOC_Msk /*!<Enable Timeout Counter */
  3440. #define FDCAN_TOCC_TOS_Pos (1U)
  3441. #define FDCAN_TOCC_TOS_Msk (0x3UL << FDCAN_TOCC_TOS_Pos) /*!< 0x00000006 */
  3442. #define FDCAN_TOCC_TOS FDCAN_TOCC_TOS_Msk /*!<Timeout Select */
  3443. #define FDCAN_TOCC_TOP_Pos (16U)
  3444. #define FDCAN_TOCC_TOP_Msk (0xFFFFUL << FDCAN_TOCC_TOP_Pos) /*!< 0xFFFF0000 */
  3445. #define FDCAN_TOCC_TOP FDCAN_TOCC_TOP_Msk /*!<Timeout Period */
  3446. /***************** Bit definition for FDCAN_TOCV register ********************/
  3447. #define FDCAN_TOCV_TOC_Pos (0U)
  3448. #define FDCAN_TOCV_TOC_Msk (0xFFFFUL << FDCAN_TOCV_TOC_Pos) /*!< 0x0000FFFF */
  3449. #define FDCAN_TOCV_TOC FDCAN_TOCV_TOC_Msk /*!<Timeout Counter */
  3450. /***************** Bit definition for FDCAN_ECR register *********************/
  3451. #define FDCAN_ECR_TEC_Pos (0U)
  3452. #define FDCAN_ECR_TEC_Msk (0xFFUL << FDCAN_ECR_TEC_Pos) /*!< 0x000000FF */
  3453. #define FDCAN_ECR_TEC FDCAN_ECR_TEC_Msk /*!<Transmit Error Counter */
  3454. #define FDCAN_ECR_REC_Pos (8U)
  3455. #define FDCAN_ECR_REC_Msk (0x7FUL << FDCAN_ECR_REC_Pos) /*!< 0x00007F00 */
  3456. #define FDCAN_ECR_REC FDCAN_ECR_REC_Msk /*!<Receive Error Counter */
  3457. #define FDCAN_ECR_RP_Pos (15U)
  3458. #define FDCAN_ECR_RP_Msk (0x1UL << FDCAN_ECR_RP_Pos) /*!< 0x00008000 */
  3459. #define FDCAN_ECR_RP FDCAN_ECR_RP_Msk /*!<Receive Error Passive */
  3460. #define FDCAN_ECR_CEL_Pos (16U)
  3461. #define FDCAN_ECR_CEL_Msk (0xFFUL << FDCAN_ECR_CEL_Pos) /*!< 0x00FF0000 */
  3462. #define FDCAN_ECR_CEL FDCAN_ECR_CEL_Msk /*!<CAN Error Logging */
  3463. /***************** Bit definition for FDCAN_PSR register *********************/
  3464. #define FDCAN_PSR_LEC_Pos (0U)
  3465. #define FDCAN_PSR_LEC_Msk (0x7UL << FDCAN_PSR_LEC_Pos) /*!< 0x00000007 */
  3466. #define FDCAN_PSR_LEC FDCAN_PSR_LEC_Msk /*!<Last Error Code */
  3467. #define FDCAN_PSR_ACT_Pos (3U)
  3468. #define FDCAN_PSR_ACT_Msk (0x3UL << FDCAN_PSR_ACT_Pos) /*!< 0x00000018 */
  3469. #define FDCAN_PSR_ACT FDCAN_PSR_ACT_Msk /*!<Activity */
  3470. #define FDCAN_PSR_EP_Pos (5U)
  3471. #define FDCAN_PSR_EP_Msk (0x1UL << FDCAN_PSR_EP_Pos) /*!< 0x00000020 */
  3472. #define FDCAN_PSR_EP FDCAN_PSR_EP_Msk /*!<Error Passive */
  3473. #define FDCAN_PSR_EW_Pos (6U)
  3474. #define FDCAN_PSR_EW_Msk (0x1UL << FDCAN_PSR_EW_Pos) /*!< 0x00000040 */
  3475. #define FDCAN_PSR_EW FDCAN_PSR_EW_Msk /*!<Warning Status */
  3476. #define FDCAN_PSR_BO_Pos (7U)
  3477. #define FDCAN_PSR_BO_Msk (0x1UL << FDCAN_PSR_BO_Pos) /*!< 0x00000080 */
  3478. #define FDCAN_PSR_BO FDCAN_PSR_BO_Msk /*!<Bus_Off Status */
  3479. #define FDCAN_PSR_DLEC_Pos (8U)
  3480. #define FDCAN_PSR_DLEC_Msk (0x7UL << FDCAN_PSR_DLEC_Pos) /*!< 0x00000700 */
  3481. #define FDCAN_PSR_DLEC FDCAN_PSR_DLEC_Msk /*!<Data Last Error Code */
  3482. #define FDCAN_PSR_RESI_Pos (11U)
  3483. #define FDCAN_PSR_RESI_Msk (0x1UL << FDCAN_PSR_RESI_Pos) /*!< 0x00000800 */
  3484. #define FDCAN_PSR_RESI FDCAN_PSR_RESI_Msk /*!<ESI flag of last received FDCAN Message */
  3485. #define FDCAN_PSR_RBRS_Pos (12U)
  3486. #define FDCAN_PSR_RBRS_Msk (0x1UL << FDCAN_PSR_RBRS_Pos) /*!< 0x00001000 */
  3487. #define FDCAN_PSR_RBRS FDCAN_PSR_RBRS_Msk /*!<BRS flag of last received FDCAN Message */
  3488. #define FDCAN_PSR_REDL_Pos (13U)
  3489. #define FDCAN_PSR_REDL_Msk (0x1UL << FDCAN_PSR_REDL_Pos) /*!< 0x00002000 */
  3490. #define FDCAN_PSR_REDL FDCAN_PSR_REDL_Msk /*!<Received FDCAN Message */
  3491. #define FDCAN_PSR_PXE_Pos (14U)
  3492. #define FDCAN_PSR_PXE_Msk (0x1UL << FDCAN_PSR_PXE_Pos) /*!< 0x00004000 */
  3493. #define FDCAN_PSR_PXE FDCAN_PSR_PXE_Msk /*!<Protocol Exception Event */
  3494. #define FDCAN_PSR_TDCV_Pos (16U)
  3495. #define FDCAN_PSR_TDCV_Msk (0x7FUL << FDCAN_PSR_TDCV_Pos) /*!< 0x007F0000 */
  3496. #define FDCAN_PSR_TDCV FDCAN_PSR_TDCV_Msk /*!<Transmitter Delay Compensation Value */
  3497. /***************** Bit definition for FDCAN_TDCR register ********************/
  3498. #define FDCAN_TDCR_TDCF_Pos (0U)
  3499. #define FDCAN_TDCR_TDCF_Msk (0x7FUL << FDCAN_TDCR_TDCF_Pos) /*!< 0x0000007F */
  3500. #define FDCAN_TDCR_TDCF FDCAN_TDCR_TDCF_Msk /*!<Transmitter Delay Compensation Filter */
  3501. #define FDCAN_TDCR_TDCO_Pos (8U)
  3502. #define FDCAN_TDCR_TDCO_Msk (0x7FUL << FDCAN_TDCR_TDCO_Pos) /*!< 0x00007F00 */
  3503. #define FDCAN_TDCR_TDCO FDCAN_TDCR_TDCO_Msk /*!<Transmitter Delay Compensation Offset */
  3504. /***************** Bit definition for FDCAN_IR register **********************/
  3505. #define FDCAN_IR_RF0N_Pos (0U)
  3506. #define FDCAN_IR_RF0N_Msk (0x1UL << FDCAN_IR_RF0N_Pos) /*!< 0x00000001 */
  3507. #define FDCAN_IR_RF0N FDCAN_IR_RF0N_Msk /*!<Rx FIFO 0 New Message */
  3508. #define FDCAN_IR_RF0F_Pos (1U)
  3509. #define FDCAN_IR_RF0F_Msk (0x1UL << FDCAN_IR_RF0F_Pos) /*!< 0x00000002 */
  3510. #define FDCAN_IR_RF0F FDCAN_IR_RF0F_Msk /*!<Rx FIFO 0 Full */
  3511. #define FDCAN_IR_RF0L_Pos (2U)
  3512. #define FDCAN_IR_RF0L_Msk (0x1UL << FDCAN_IR_RF0L_Pos) /*!< 0x00000004 */
  3513. #define FDCAN_IR_RF0L FDCAN_IR_RF0L_Msk /*!<Rx FIFO 0 Message Lost */
  3514. #define FDCAN_IR_RF1N_Pos (3U)
  3515. #define FDCAN_IR_RF1N_Msk (0x1UL << FDCAN_IR_RF1N_Pos) /*!< 0x00000008 */
  3516. #define FDCAN_IR_RF1N FDCAN_IR_RF1N_Msk /*!<Rx FIFO 1 New Message */
  3517. #define FDCAN_IR_RF1F_Pos (4U)
  3518. #define FDCAN_IR_RF1F_Msk (0x1UL << FDCAN_IR_RF1F_Pos) /*!< 0x00000010 */
  3519. #define FDCAN_IR_RF1F FDCAN_IR_RF1F_Msk /*!<Rx FIFO 1 Full */
  3520. #define FDCAN_IR_RF1L_Pos (5U)
  3521. #define FDCAN_IR_RF1L_Msk (0x1UL << FDCAN_IR_RF1L_Pos) /*!< 0x00000020 */
  3522. #define FDCAN_IR_RF1L FDCAN_IR_RF1L_Msk /*!<Rx FIFO 1 Message Lost */
  3523. #define FDCAN_IR_HPM_Pos (6U)
  3524. #define FDCAN_IR_HPM_Msk (0x1UL << FDCAN_IR_HPM_Pos) /*!< 0x00000040 */
  3525. #define FDCAN_IR_HPM FDCAN_IR_HPM_Msk /*!<High Priority Message */
  3526. #define FDCAN_IR_TC_Pos (7U)
  3527. #define FDCAN_IR_TC_Msk (0x1UL << FDCAN_IR_TC_Pos) /*!< 0x00000080 */
  3528. #define FDCAN_IR_TC FDCAN_IR_TC_Msk /*!<Transmission Completed */
  3529. #define FDCAN_IR_TCF_Pos (8U)
  3530. #define FDCAN_IR_TCF_Msk (0x1UL << FDCAN_IR_TCF_Pos) /*!< 0x00000100 */
  3531. #define FDCAN_IR_TCF FDCAN_IR_TCF_Msk /*!<Transmission Cancellation Finished */
  3532. #define FDCAN_IR_TFE_Pos (9U)
  3533. #define FDCAN_IR_TFE_Msk (0x1UL << FDCAN_IR_TFE_Pos) /*!< 0x00000200 */
  3534. #define FDCAN_IR_TFE FDCAN_IR_TFE_Msk /*!<Tx FIFO Empty */
  3535. #define FDCAN_IR_TEFN_Pos (10U)
  3536. #define FDCAN_IR_TEFN_Msk (0x1UL << FDCAN_IR_TEFN_Pos) /*!< 0x00000400 */
  3537. #define FDCAN_IR_TEFN FDCAN_IR_TEFN_Msk /*!<Tx Event FIFO New Entry */
  3538. #define FDCAN_IR_TEFF_Pos (11U)
  3539. #define FDCAN_IR_TEFF_Msk (0x1UL << FDCAN_IR_TEFF_Pos) /*!< 0x00000800 */
  3540. #define FDCAN_IR_TEFF FDCAN_IR_TEFF_Msk /*!<Tx Event FIFO Full */
  3541. #define FDCAN_IR_TEFL_Pos (12U)
  3542. #define FDCAN_IR_TEFL_Msk (0x1UL << FDCAN_IR_TEFL_Pos) /*!< 0x00001000 */
  3543. #define FDCAN_IR_TEFL FDCAN_IR_TEFL_Msk /*!<Tx Event FIFO Element Lost */
  3544. #define FDCAN_IR_TSW_Pos (13U)
  3545. #define FDCAN_IR_TSW_Msk (0x1UL << FDCAN_IR_TSW_Pos) /*!< 0x00002000 */
  3546. #define FDCAN_IR_TSW FDCAN_IR_TSW_Msk /*!<Timestamp Wraparound */
  3547. #define FDCAN_IR_MRAF_Pos (14U)
  3548. #define FDCAN_IR_MRAF_Msk (0x1UL << FDCAN_IR_MRAF_Pos) /*!< 0x00004000 */
  3549. #define FDCAN_IR_MRAF FDCAN_IR_MRAF_Msk /*!<Message RAM Access Failure */
  3550. #define FDCAN_IR_TOO_Pos (15U)
  3551. #define FDCAN_IR_TOO_Msk (0x1UL << FDCAN_IR_TOO_Pos) /*!< 0x00008000 */
  3552. #define FDCAN_IR_TOO FDCAN_IR_TOO_Msk /*!<Timeout Occurred */
  3553. #define FDCAN_IR_ELO_Pos (16U)
  3554. #define FDCAN_IR_ELO_Msk (0x1UL << FDCAN_IR_ELO_Pos) /*!< 0x00010000 */
  3555. #define FDCAN_IR_ELO FDCAN_IR_ELO_Msk /*!<Error Logging Overflow */
  3556. #define FDCAN_IR_EP_Pos (17U)
  3557. #define FDCAN_IR_EP_Msk (0x1UL << FDCAN_IR_EP_Pos) /*!< 0x00020000 */
  3558. #define FDCAN_IR_EP FDCAN_IR_EP_Msk /*!<Error Passive */
  3559. #define FDCAN_IR_EW_Pos (18U)
  3560. #define FDCAN_IR_EW_Msk (0x1UL << FDCAN_IR_EW_Pos) /*!< 0x00040000 */
  3561. #define FDCAN_IR_EW FDCAN_IR_EW_Msk /*!<Warning Status */
  3562. #define FDCAN_IR_BO_Pos (19U)
  3563. #define FDCAN_IR_BO_Msk (0x1UL << FDCAN_IR_BO_Pos) /*!< 0x00080000 */
  3564. #define FDCAN_IR_BO FDCAN_IR_BO_Msk /*!<Bus_Off Status */
  3565. #define FDCAN_IR_WDI_Pos (20U)
  3566. #define FDCAN_IR_WDI_Msk (0x1UL << FDCAN_IR_WDI_Pos) /*!< 0x00100000 */
  3567. #define FDCAN_IR_WDI FDCAN_IR_WDI_Msk /*!<Watchdog Interrupt */
  3568. #define FDCAN_IR_PEA_Pos (21U)
  3569. #define FDCAN_IR_PEA_Msk (0x1UL << FDCAN_IR_PEA_Pos) /*!< 0x00200000 */
  3570. #define FDCAN_IR_PEA FDCAN_IR_PEA_Msk /*!<Protocol Error in Arbitration Phase */
  3571. #define FDCAN_IR_PED_Pos (22U)
  3572. #define FDCAN_IR_PED_Msk (0x1UL << FDCAN_IR_PED_Pos) /*!< 0x00400000 */
  3573. #define FDCAN_IR_PED FDCAN_IR_PED_Msk /*!<Protocol Error in Data Phase */
  3574. #define FDCAN_IR_ARA_Pos (23U)
  3575. #define FDCAN_IR_ARA_Msk (0x1UL << FDCAN_IR_ARA_Pos) /*!< 0x00800000 */
  3576. #define FDCAN_IR_ARA FDCAN_IR_ARA_Msk /*!<Access to Reserved Address */
  3577. /***************** Bit definition for FDCAN_IE register **********************/
  3578. #define FDCAN_IE_RF0NE_Pos (0U)
  3579. #define FDCAN_IE_RF0NE_Msk (0x1UL << FDCAN_IE_RF0NE_Pos) /*!< 0x00000001 */
  3580. #define FDCAN_IE_RF0NE FDCAN_IE_RF0NE_Msk /*!<Rx FIFO 0 New Message Enable */
  3581. #define FDCAN_IE_RF0FE_Pos (1U)
  3582. #define FDCAN_IE_RF0FE_Msk (0x1UL << FDCAN_IE_RF0FE_Pos) /*!< 0x00000002 */
  3583. #define FDCAN_IE_RF0FE FDCAN_IE_RF0FE_Msk /*!<Rx FIFO 0 Full Enable */
  3584. #define FDCAN_IE_RF0LE_Pos (2U)
  3585. #define FDCAN_IE_RF0LE_Msk (0x1UL << FDCAN_IE_RF0LE_Pos) /*!< 0x00000004 */
  3586. #define FDCAN_IE_RF0LE FDCAN_IE_RF0LE_Msk /*!<Rx FIFO 0 Message Lost Enable */
  3587. #define FDCAN_IE_RF1NE_Pos (3U)
  3588. #define FDCAN_IE_RF1NE_Msk (0x1UL << FDCAN_IE_RF1NE_Pos) /*!< 0x00000008 */
  3589. #define FDCAN_IE_RF1NE FDCAN_IE_RF1NE_Msk /*!<Rx FIFO 1 New Message Enable */
  3590. #define FDCAN_IE_RF1FE_Pos (4U)
  3591. #define FDCAN_IE_RF1FE_Msk (0x1UL << FDCAN_IE_RF1FE_Pos) /*!< 0x00000010 */
  3592. #define FDCAN_IE_RF1FE FDCAN_IE_RF1FE_Msk /*!<Rx FIFO 1 Full Enable */
  3593. #define FDCAN_IE_RF1LE_Pos (5U)
  3594. #define FDCAN_IE_RF1LE_Msk (0x1UL << FDCAN_IE_RF1LE_Pos) /*!< 0x00000020 */
  3595. #define FDCAN_IE_RF1LE FDCAN_IE_RF1LE_Msk /*!<Rx FIFO 1 Message Lost Enable */
  3596. #define FDCAN_IE_HPME_Pos (6U)
  3597. #define FDCAN_IE_HPME_Msk (0x1UL << FDCAN_IE_HPME_Pos) /*!< 0x00000040 */
  3598. #define FDCAN_IE_HPME FDCAN_IE_HPME_Msk /*!<High Priority Message Enable */
  3599. #define FDCAN_IE_TCE_Pos (7U)
  3600. #define FDCAN_IE_TCE_Msk (0x1UL << FDCAN_IE_TCE_Pos) /*!< 0x00000080 */
  3601. #define FDCAN_IE_TCE FDCAN_IE_TCE_Msk /*!<Transmission Completed Enable */
  3602. #define FDCAN_IE_TCFE_Pos (8U)
  3603. #define FDCAN_IE_TCFE_Msk (0x1UL << FDCAN_IE_TCFE_Pos) /*!< 0x00000100 */
  3604. #define FDCAN_IE_TCFE FDCAN_IE_TCFE_Msk /*!<Transmission Cancellation Finished Enable*/
  3605. #define FDCAN_IE_TFEE_Pos (9U)
  3606. #define FDCAN_IE_TFEE_Msk (0x1UL << FDCAN_IE_TFEE_Pos) /*!< 0x00000200 */
  3607. #define FDCAN_IE_TFEE FDCAN_IE_TFEE_Msk /*!<Tx FIFO Empty Enable */
  3608. #define FDCAN_IE_TEFNE_Pos (10U)
  3609. #define FDCAN_IE_TEFNE_Msk (0x1UL << FDCAN_IE_TEFNE_Pos) /*!< 0x00000400 */
  3610. #define FDCAN_IE_TEFNE FDCAN_IE_TEFNE_Msk /*!<Tx Event FIFO New Entry Enable */
  3611. #define FDCAN_IE_TEFFE_Pos (11U)
  3612. #define FDCAN_IE_TEFFE_Msk (0x1UL << FDCAN_IE_TEFFE_Pos) /*!< 0x00000800 */
  3613. #define FDCAN_IE_TEFFE FDCAN_IE_TEFFE_Msk /*!<Tx Event FIFO Full Enable */
  3614. #define FDCAN_IE_TEFLE_Pos (12U)
  3615. #define FDCAN_IE_TEFLE_Msk (0x1UL << FDCAN_IE_TEFLE_Pos) /*!< 0x00001000 */
  3616. #define FDCAN_IE_TEFLE FDCAN_IE_TEFLE_Msk /*!<Tx Event FIFO Element Lost Enable */
  3617. #define FDCAN_IE_TSWE_Pos (13U)
  3618. #define FDCAN_IE_TSWE_Msk (0x1UL << FDCAN_IE_TSWE_Pos) /*!< 0x00002000 */
  3619. #define FDCAN_IE_TSWE FDCAN_IE_TSWE_Msk /*!<Timestamp Wraparound Enable */
  3620. #define FDCAN_IE_MRAFE_Pos (14U)
  3621. #define FDCAN_IE_MRAFE_Msk (0x1UL << FDCAN_IE_MRAFE_Pos) /*!< 0x00004000 */
  3622. #define FDCAN_IE_MRAFE FDCAN_IE_MRAFE_Msk /*!<Message RAM Access Failure Enable */
  3623. #define FDCAN_IE_TOOE_Pos (15U)
  3624. #define FDCAN_IE_TOOE_Msk (0x1UL << FDCAN_IE_TOOE_Pos) /*!< 0x00008000 */
  3625. #define FDCAN_IE_TOOE FDCAN_IE_TOOE_Msk /*!<Timeout Occurred Enable */
  3626. #define FDCAN_IE_ELOE_Pos (16U)
  3627. #define FDCAN_IE_ELOE_Msk (0x1UL << FDCAN_IE_ELOE_Pos) /*!< 0x00010000 */
  3628. #define FDCAN_IE_ELOE FDCAN_IE_ELOE_Msk /*!<Error Logging Overflow Enable */
  3629. #define FDCAN_IE_EPE_Pos (17U)
  3630. #define FDCAN_IE_EPE_Msk (0x1UL << FDCAN_IE_EPE_Pos) /*!< 0x00020000 */
  3631. #define FDCAN_IE_EPE FDCAN_IE_EPE_Msk /*!<Error Passive Enable */
  3632. #define FDCAN_IE_EWE_Pos (18U)
  3633. #define FDCAN_IE_EWE_Msk (0x1UL << FDCAN_IE_EWE_Pos) /*!< 0x00040000 */
  3634. #define FDCAN_IE_EWE FDCAN_IE_EWE_Msk /*!<Warning Status Enable */
  3635. #define FDCAN_IE_BOE_Pos (19U)
  3636. #define FDCAN_IE_BOE_Msk (0x1UL << FDCAN_IE_BOE_Pos) /*!< 0x00080000 */
  3637. #define FDCAN_IE_BOE FDCAN_IE_BOE_Msk /*!<Bus_Off Status Enable */
  3638. #define FDCAN_IE_WDIE_Pos (20U)
  3639. #define FDCAN_IE_WDIE_Msk (0x1UL << FDCAN_IE_WDIE_Pos) /*!< 0x00100000 */
  3640. #define FDCAN_IE_WDIE FDCAN_IE_WDIE_Msk /*!<Watchdog Interrupt Enable */
  3641. #define FDCAN_IE_PEAE_Pos (21U)
  3642. #define FDCAN_IE_PEAE_Msk (0x1UL << FDCAN_IE_PEAE_Pos) /*!< 0x00200000 */
  3643. #define FDCAN_IE_PEAE FDCAN_IE_PEAE_Msk /*!<Protocol Error in Arbitration Phase Enable*/
  3644. #define FDCAN_IE_PEDE_Pos (22U)
  3645. #define FDCAN_IE_PEDE_Msk (0x1UL << FDCAN_IE_PEDE_Pos) /*!< 0x00400000 */
  3646. #define FDCAN_IE_PEDE FDCAN_IE_PEDE_Msk /*!<Protocol Error in Data Phase Enable */
  3647. #define FDCAN_IE_ARAE_Pos (23U)
  3648. #define FDCAN_IE_ARAE_Msk (0x1UL << FDCAN_IE_ARAE_Pos) /*!< 0x00800000 */
  3649. #define FDCAN_IE_ARAE FDCAN_IE_ARAE_Msk /*!<Access to Reserved Address Enable */
  3650. /***************** Bit definition for FDCAN_ILS register **********************/
  3651. #define FDCAN_ILS_RXFIFO0_Pos (0U)
  3652. #define FDCAN_ILS_RXFIFO0_Msk (0x1UL << FDCAN_ILS_RXFIFO0_Pos) /*!< 0x00000001 */
  3653. #define FDCAN_ILS_RXFIFO0 FDCAN_ILS_RXFIFO0_Msk /*!<Rx FIFO 0 Message Lost
  3654. Rx FIFO 0 is Full
  3655. Rx FIFO 0 Has New Message */
  3656. #define FDCAN_ILS_RXFIFO1_Pos (1U)
  3657. #define FDCAN_ILS_RXFIFO1_Msk (0x1UL << FDCAN_ILS_RXFIFO1_Pos) /*!< 0x00000002 */
  3658. #define FDCAN_ILS_RXFIFO1 FDCAN_ILS_RXFIFO1_Msk /*!<Rx FIFO 1 Message Lost
  3659. Rx FIFO 1 is Full
  3660. Rx FIFO 1 Has New Message */
  3661. #define FDCAN_ILS_SMSG_Pos (2U)
  3662. #define FDCAN_ILS_SMSG_Msk (0x1UL << FDCAN_ILS_SMSG_Pos) /*!< 0x00000004 */
  3663. #define FDCAN_ILS_SMSG FDCAN_ILS_SMSG_Msk /*!<Transmission Cancellation Finished
  3664. Transmission Completed
  3665. High Priority Message */
  3666. #define FDCAN_ILS_TFERR_Pos (3U)
  3667. #define FDCAN_ILS_TFERR_Msk (0x1UL << FDCAN_ILS_TFERR_Pos) /*!< 0x00000008 */
  3668. #define FDCAN_ILS_TFERR FDCAN_ILS_TFERR_Msk /*!<Tx Event FIFO Element Lost
  3669. Tx Event FIFO Full
  3670. Tx Event FIFO New Entry
  3671. Tx FIFO Empty Interrupt Line */
  3672. #define FDCAN_ILS_MISC_Pos (4U)
  3673. #define FDCAN_ILS_MISC_Msk (0x1UL << FDCAN_ILS_MISC_Pos) /*!< 0x00000010 */
  3674. #define FDCAN_ILS_MISC FDCAN_ILS_MISC_Msk /*!<Timeout Occurred
  3675. Message RAM Access Failure
  3676. Timestamp Wraparound */
  3677. #define FDCAN_ILS_BERR_Pos (5U)
  3678. #define FDCAN_ILS_BERR_Msk (0x1UL << FDCAN_ILS_BERR_Pos) /*!< 0x00000020 */
  3679. #define FDCAN_ILS_BERR FDCAN_ILS_BERR_Msk /*!<Error Passive
  3680. Error Logging Overflow */
  3681. #define FDCAN_ILS_PERR_Pos (6U)
  3682. #define FDCAN_ILS_PERR_Msk (0x1UL << FDCAN_ILS_PERR_Pos) /*!< 0x00000040 */
  3683. #define FDCAN_ILS_PERR FDCAN_ILS_PERR_Msk /*!<Access to Reserved Address Line
  3684. Protocol Error in Data Phase Line
  3685. Protocol Error in Arbitration Phase Line
  3686. Watchdog Interrupt Line
  3687. Bus_Off Status
  3688. Warning Status */
  3689. /***************** Bit definition for FDCAN_ILE register **********************/
  3690. #define FDCAN_ILE_EINT0_Pos (0U)
  3691. #define FDCAN_ILE_EINT0_Msk (0x1UL << FDCAN_ILE_EINT0_Pos) /*!< 0x00000001 */
  3692. #define FDCAN_ILE_EINT0 FDCAN_ILE_EINT0_Msk /*!<Enable Interrupt Line 0 */
  3693. #define FDCAN_ILE_EINT1_Pos (1U)
  3694. #define FDCAN_ILE_EINT1_Msk (0x1UL << FDCAN_ILE_EINT1_Pos) /*!< 0x00000002 */
  3695. #define FDCAN_ILE_EINT1 FDCAN_ILE_EINT1_Msk /*!<Enable Interrupt Line 1 */
  3696. /***************** Bit definition for FDCAN_RXGFC register ********************/
  3697. #define FDCAN_RXGFC_RRFE_Pos (0U)
  3698. #define FDCAN_RXGFC_RRFE_Msk (0x1UL << FDCAN_RXGFC_RRFE_Pos) /*!< 0x00000001 */
  3699. #define FDCAN_RXGFC_RRFE FDCAN_RXGFC_RRFE_Msk /*!<Reject Remote Frames Extended */
  3700. #define FDCAN_RXGFC_RRFS_Pos (1U)
  3701. #define FDCAN_RXGFC_RRFS_Msk (0x1UL << FDCAN_RXGFC_RRFS_Pos) /*!< 0x00000002 */
  3702. #define FDCAN_RXGFC_RRFS FDCAN_RXGFC_RRFS_Msk /*!<Reject Remote Frames Standard */
  3703. #define FDCAN_RXGFC_ANFE_Pos (2U)
  3704. #define FDCAN_RXGFC_ANFE_Msk (0x3UL << FDCAN_RXGFC_ANFE_Pos) /*!< 0x0000000C */
  3705. #define FDCAN_RXGFC_ANFE FDCAN_RXGFC_ANFE_Msk /*!<Accept Non-matching Frames Extended */
  3706. #define FDCAN_RXGFC_ANFS_Pos (4U)
  3707. #define FDCAN_RXGFC_ANFS_Msk (0x3UL << FDCAN_RXGFC_ANFS_Pos) /*!< 0x00000030 */
  3708. #define FDCAN_RXGFC_ANFS FDCAN_RXGFC_ANFS_Msk /*!<Accept Non-matching Frames Standard */
  3709. #define FDCAN_RXGFC_F1OM_Pos (8U)
  3710. #define FDCAN_RXGFC_F1OM_Msk (0x1UL << FDCAN_RXGFC_F1OM_Pos) /*!< 0x00000100 */
  3711. #define FDCAN_RXGFC_F1OM FDCAN_RXGFC_F1OM_Msk /*!<FIFO 1 operation mode */
  3712. #define FDCAN_RXGFC_F0OM_Pos (9U)
  3713. #define FDCAN_RXGFC_F0OM_Msk (0x1UL << FDCAN_RXGFC_F0OM_Pos) /*!< 0x00000200 */
  3714. #define FDCAN_RXGFC_F0OM FDCAN_RXGFC_F0OM_Msk /*!<FIFO 0 operation mode */
  3715. #define FDCAN_RXGFC_LSS_Pos (16U)
  3716. #define FDCAN_RXGFC_LSS_Msk (0x1FUL << FDCAN_RXGFC_LSS_Pos) /*!< 0x001F0000 */
  3717. #define FDCAN_RXGFC_LSS FDCAN_RXGFC_LSS_Msk /*!<List Size Standard */
  3718. #define FDCAN_RXGFC_LSE_Pos (24U)
  3719. #define FDCAN_RXGFC_LSE_Msk (0xFUL << FDCAN_RXGFC_LSE_Pos) /*!< 0x0F000000 */
  3720. #define FDCAN_RXGFC_LSE FDCAN_RXGFC_LSE_Msk /*!<List Size Extended */
  3721. /***************** Bit definition for FDCAN_XIDAM register ********************/
  3722. #define FDCAN_XIDAM_EIDM_Pos (0U)
  3723. #define FDCAN_XIDAM_EIDM_Msk (0x1FFFFFFFUL << FDCAN_XIDAM_EIDM_Pos) /*!< 0x1FFFFFFF */
  3724. #define FDCAN_XIDAM_EIDM FDCAN_XIDAM_EIDM_Msk /*!<Extended ID Mask */
  3725. /***************** Bit definition for FDCAN_HPMS register *********************/
  3726. #define FDCAN_HPMS_BIDX_Pos (0U)
  3727. #define FDCAN_HPMS_BIDX_Msk (0x7UL << FDCAN_HPMS_BIDX_Pos) /*!< 0x00000007 */
  3728. #define FDCAN_HPMS_BIDX FDCAN_HPMS_BIDX_Msk /*!<Buffer Index */
  3729. #define FDCAN_HPMS_MSI_Pos (6U)
  3730. #define FDCAN_HPMS_MSI_Msk (0x3UL << FDCAN_HPMS_MSI_Pos) /*!< 0x000000C0 */
  3731. #define FDCAN_HPMS_MSI FDCAN_HPMS_MSI_Msk /*!<Message Storage Indicator */
  3732. #define FDCAN_HPMS_FIDX_Pos (8U)
  3733. #define FDCAN_HPMS_FIDX_Msk (0x1FUL << FDCAN_HPMS_FIDX_Pos) /*!< 0x00001F00 */
  3734. #define FDCAN_HPMS_FIDX FDCAN_HPMS_FIDX_Msk /*!<Filter Index */
  3735. #define FDCAN_HPMS_FLST_Pos (15U)
  3736. #define FDCAN_HPMS_FLST_Msk (0x1UL << FDCAN_HPMS_FLST_Pos) /*!< 0x00008000 */
  3737. #define FDCAN_HPMS_FLST FDCAN_HPMS_FLST_Msk /*!<Filter List */
  3738. /***************** Bit definition for FDCAN_RXF0S register ********************/
  3739. #define FDCAN_RXF0S_F0FL_Pos (0U)
  3740. #define FDCAN_RXF0S_F0FL_Msk (0xFUL << FDCAN_RXF0S_F0FL_Pos) /*!< 0x0000000F */
  3741. #define FDCAN_RXF0S_F0FL FDCAN_RXF0S_F0FL_Msk /*!<Rx FIFO 0 Fill Level */
  3742. #define FDCAN_RXF0S_F0GI_Pos (8U)
  3743. #define FDCAN_RXF0S_F0GI_Msk (0x3UL << FDCAN_RXF0S_F0GI_Pos) /*!< 0x00000300 */
  3744. #define FDCAN_RXF0S_F0GI FDCAN_RXF0S_F0GI_Msk /*!<Rx FIFO 0 Get Index */
  3745. #define FDCAN_RXF0S_F0PI_Pos (16U)
  3746. #define FDCAN_RXF0S_F0PI_Msk (0x3UL << FDCAN_RXF0S_F0PI_Pos) /*!< 0x00030000 */
  3747. #define FDCAN_RXF0S_F0PI FDCAN_RXF0S_F0PI_Msk /*!<Rx FIFO 0 Put Index */
  3748. #define FDCAN_RXF0S_F0F_Pos (24U)
  3749. #define FDCAN_RXF0S_F0F_Msk (0x1UL << FDCAN_RXF0S_F0F_Pos) /*!< 0x01000000 */
  3750. #define FDCAN_RXF0S_F0F FDCAN_RXF0S_F0F_Msk /*!<Rx FIFO 0 Full */
  3751. #define FDCAN_RXF0S_RF0L_Pos (25U)
  3752. #define FDCAN_RXF0S_RF0L_Msk (0x1UL << FDCAN_RXF0S_RF0L_Pos) /*!< 0x02000000 */
  3753. #define FDCAN_RXF0S_RF0L FDCAN_RXF0S_RF0L_Msk /*!<Rx FIFO 0 Message Lost */
  3754. /***************** Bit definition for FDCAN_RXF0A register ********************/
  3755. #define FDCAN_RXF0A_F0AI_Pos (0U)
  3756. #define FDCAN_RXF0A_F0AI_Msk (0x7UL << FDCAN_RXF0A_F0AI_Pos) /*!< 0x00000007 */
  3757. #define FDCAN_RXF0A_F0AI FDCAN_RXF0A_F0AI_Msk /*!<Rx FIFO 0 Acknowledge Index */
  3758. /***************** Bit definition for FDCAN_RXF1S register ********************/
  3759. #define FDCAN_RXF1S_F1FL_Pos (0U)
  3760. #define FDCAN_RXF1S_F1FL_Msk (0xFUL << FDCAN_RXF1S_F1FL_Pos) /*!< 0x0000000F */
  3761. #define FDCAN_RXF1S_F1FL FDCAN_RXF1S_F1FL_Msk /*!<Rx FIFO 1 Fill Level */
  3762. #define FDCAN_RXF1S_F1GI_Pos (8U)
  3763. #define FDCAN_RXF1S_F1GI_Msk (0x3UL << FDCAN_RXF1S_F1GI_Pos) /*!< 0x00000300 */
  3764. #define FDCAN_RXF1S_F1GI FDCAN_RXF1S_F1GI_Msk /*!<Rx FIFO 1 Get Index */
  3765. #define FDCAN_RXF1S_F1PI_Pos (16U)
  3766. #define FDCAN_RXF1S_F1PI_Msk (0x3UL << FDCAN_RXF1S_F1PI_Pos) /*!< 0x00030000 */
  3767. #define FDCAN_RXF1S_F1PI FDCAN_RXF1S_F1PI_Msk /*!<Rx FIFO 1 Put Index */
  3768. #define FDCAN_RXF1S_F1F_Pos (24U)
  3769. #define FDCAN_RXF1S_F1F_Msk (0x1UL << FDCAN_RXF1S_F1F_Pos) /*!< 0x01000000 */
  3770. #define FDCAN_RXF1S_F1F FDCAN_RXF1S_F1F_Msk /*!<Rx FIFO 1 Full */
  3771. #define FDCAN_RXF1S_RF1L_Pos (25U)
  3772. #define FDCAN_RXF1S_RF1L_Msk (0x1UL << FDCAN_RXF1S_RF1L_Pos) /*!< 0x02000000 */
  3773. #define FDCAN_RXF1S_RF1L FDCAN_RXF1S_RF1L_Msk /*!<Rx FIFO 1 Message Lost */
  3774. /***************** Bit definition for FDCAN_RXF1A register ********************/
  3775. #define FDCAN_RXF1A_F1AI_Pos (0U)
  3776. #define FDCAN_RXF1A_F1AI_Msk (0x7UL << FDCAN_RXF1A_F1AI_Pos) /*!< 0x00000007 */
  3777. #define FDCAN_RXF1A_F1AI FDCAN_RXF1A_F1AI_Msk /*!<Rx FIFO 1 Acknowledge Index */
  3778. /***************** Bit definition for FDCAN_TXBC register *********************/
  3779. #define FDCAN_TXBC_TFQM_Pos (24U)
  3780. #define FDCAN_TXBC_TFQM_Msk (0x1UL << FDCAN_TXBC_TFQM_Pos) /*!< 0x01000000 */
  3781. #define FDCAN_TXBC_TFQM FDCAN_TXBC_TFQM_Msk /*!<Tx FIFO/Queue Mode */
  3782. /***************** Bit definition for FDCAN_TXFQS register *********************/
  3783. #define FDCAN_TXFQS_TFFL_Pos (0U)
  3784. #define FDCAN_TXFQS_TFFL_Msk (0x7UL << FDCAN_TXFQS_TFFL_Pos) /*!< 0x00000007 */
  3785. #define FDCAN_TXFQS_TFFL FDCAN_TXFQS_TFFL_Msk /*!<Tx FIFO Free Level */
  3786. #define FDCAN_TXFQS_TFGI_Pos (8U)
  3787. #define FDCAN_TXFQS_TFGI_Msk (0x3UL << FDCAN_TXFQS_TFGI_Pos) /*!< 0x00000300 */
  3788. #define FDCAN_TXFQS_TFGI FDCAN_TXFQS_TFGI_Msk /*!<Tx FIFO Get Index */
  3789. #define FDCAN_TXFQS_TFQPI_Pos (16U)
  3790. #define FDCAN_TXFQS_TFQPI_Msk (0x3UL << FDCAN_TXFQS_TFQPI_Pos) /*!< 0x00030000 */
  3791. #define FDCAN_TXFQS_TFQPI FDCAN_TXFQS_TFQPI_Msk /*!<Tx FIFO/Queue Put Index */
  3792. #define FDCAN_TXFQS_TFQF_Pos (21U)
  3793. #define FDCAN_TXFQS_TFQF_Msk (0x1UL << FDCAN_TXFQS_TFQF_Pos) /*!< 0x00200000 */
  3794. #define FDCAN_TXFQS_TFQF FDCAN_TXFQS_TFQF_Msk /*!<Tx FIFO/Queue Full */
  3795. /***************** Bit definition for FDCAN_TXBRP register *********************/
  3796. #define FDCAN_TXBRP_TRP_Pos (0U)
  3797. #define FDCAN_TXBRP_TRP_Msk (0x7UL << FDCAN_TXBRP_TRP_Pos) /*!< 0x00000007 */
  3798. #define FDCAN_TXBRP_TRP FDCAN_TXBRP_TRP_Msk /*!<Transmission Request Pending */
  3799. /***************** Bit definition for FDCAN_TXBAR register *********************/
  3800. #define FDCAN_TXBAR_AR_Pos (0U)
  3801. #define FDCAN_TXBAR_AR_Msk (0x7UL << FDCAN_TXBAR_AR_Pos) /*!< 0x00000007 */
  3802. #define FDCAN_TXBAR_AR FDCAN_TXBAR_AR_Msk /*!<Add Request */
  3803. /***************** Bit definition for FDCAN_TXBCR register *********************/
  3804. #define FDCAN_TXBCR_CR_Pos (0U)
  3805. #define FDCAN_TXBCR_CR_Msk (0x7UL << FDCAN_TXBCR_CR_Pos) /*!< 0x00000007 */
  3806. #define FDCAN_TXBCR_CR FDCAN_TXBCR_CR_Msk /*!<Cancellation Request */
  3807. /***************** Bit definition for FDCAN_TXBTO register *********************/
  3808. #define FDCAN_TXBTO_TO_Pos (0U)
  3809. #define FDCAN_TXBTO_TO_Msk (0x7UL << FDCAN_TXBTO_TO_Pos) /*!< 0x00000007 */
  3810. #define FDCAN_TXBTO_TO FDCAN_TXBTO_TO_Msk /*!<Transmission Occurred */
  3811. /***************** Bit definition for FDCAN_TXBCF register *********************/
  3812. #define FDCAN_TXBCF_CF_Pos (0U)
  3813. #define FDCAN_TXBCF_CF_Msk (0x7UL << FDCAN_TXBCF_CF_Pos) /*!< 0x00000007 */
  3814. #define FDCAN_TXBCF_CF FDCAN_TXBCF_CF_Msk /*!<Cancellation Finished */
  3815. /***************** Bit definition for FDCAN_TXBTIE register ********************/
  3816. #define FDCAN_TXBTIE_TIE_Pos (0U)
  3817. #define FDCAN_TXBTIE_TIE_Msk (0x7UL << FDCAN_TXBTIE_TIE_Pos) /*!< 0x00000007 */
  3818. #define FDCAN_TXBTIE_TIE FDCAN_TXBTIE_TIE_Msk /*!<Transmission Interrupt Enable */
  3819. /***************** Bit definition for FDCAN_ TXBCIE register *******************/
  3820. #define FDCAN_TXBCIE_CFIE_Pos (0U)
  3821. #define FDCAN_TXBCIE_CFIE_Msk (0x7UL << FDCAN_TXBCIE_CFIE_Pos) /*!< 0x00000007 */
  3822. #define FDCAN_TXBCIE_CFIE FDCAN_TXBCIE_CFIE_Msk /*!<Cancellation Finished Interrupt Enable */
  3823. /***************** Bit definition for FDCAN_TXEFS register *********************/
  3824. #define FDCAN_TXEFS_EFFL_Pos (0U)
  3825. #define FDCAN_TXEFS_EFFL_Msk (0x7UL << FDCAN_TXEFS_EFFL_Pos) /*!< 0x00000007 */
  3826. #define FDCAN_TXEFS_EFFL FDCAN_TXEFS_EFFL_Msk /*!<Event FIFO Fill Level */
  3827. #define FDCAN_TXEFS_EFGI_Pos (8U)
  3828. #define FDCAN_TXEFS_EFGI_Msk (0x3UL << FDCAN_TXEFS_EFGI_Pos) /*!< 0x00000300 */
  3829. #define FDCAN_TXEFS_EFGI FDCAN_TXEFS_EFGI_Msk /*!<Event FIFO Get Index */
  3830. #define FDCAN_TXEFS_EFPI_Pos (16U)
  3831. #define FDCAN_TXEFS_EFPI_Msk (0x3UL << FDCAN_TXEFS_EFPI_Pos) /*!< 0x00030000 */
  3832. #define FDCAN_TXEFS_EFPI FDCAN_TXEFS_EFPI_Msk /*!<Event FIFO Put Index */
  3833. #define FDCAN_TXEFS_EFF_Pos (24U)
  3834. #define FDCAN_TXEFS_EFF_Msk (0x1UL << FDCAN_TXEFS_EFF_Pos) /*!< 0x01000000 */
  3835. #define FDCAN_TXEFS_EFF FDCAN_TXEFS_EFF_Msk /*!<Event FIFO Full */
  3836. #define FDCAN_TXEFS_TEFL_Pos (25U)
  3837. #define FDCAN_TXEFS_TEFL_Msk (0x1UL << FDCAN_TXEFS_TEFL_Pos) /*!< 0x02000000 */
  3838. #define FDCAN_TXEFS_TEFL FDCAN_TXEFS_TEFL_Msk /*!<Tx Event FIFO Element Lost */
  3839. /***************** Bit definition for FDCAN_TXEFA register *********************/
  3840. #define FDCAN_TXEFA_EFAI_Pos (0U)
  3841. #define FDCAN_TXEFA_EFAI_Msk (0x3UL << FDCAN_TXEFA_EFAI_Pos) /*!< 0x00000003 */
  3842. #define FDCAN_TXEFA_EFAI FDCAN_TXEFA_EFAI_Msk /*!<Event FIFO Acknowledge Index */
  3843. /*!<FDCAN config registers */
  3844. /***************** Bit definition for FDCAN_CKDIV register *********************/
  3845. #define FDCAN_CKDIV_PDIV_Pos (0U)
  3846. #define FDCAN_CKDIV_PDIV_Msk (0xFUL << FDCAN_CKDIV_PDIV_Pos) /*!< 0x0000000F */
  3847. #define FDCAN_CKDIV_PDIV FDCAN_CKDIV_PDIV_Msk /*!<Input Clock Divider */
  3848. /******************************************************************************/
  3849. /* */
  3850. /* FLASH */
  3851. /* */
  3852. /******************************************************************************/
  3853. #define GPIO_NRST_CONFIG_SUPPORT /*!< GPIO feature available only on specific devices: Configure NRST pin */
  3854. #define FLASH_SECURABLE_MEMORY_SUPPORT /*!< Flash feature available only on specific devices: allow to secure memory */
  3855. #define FLASH_PCROP_SUPPORT /*!< Flash feature available only on specific devices: proprietary code read protection areas selected by option */
  3856. #define FLASH_DBANK_SUPPORT /*!< Flash feature available only on specific devices: dualbank */
  3857. /******************* Bits definition for FLASH_ACR register *****************/
  3858. #define FLASH_ACR_LATENCY_Pos (0U)
  3859. #define FLASH_ACR_LATENCY_Msk (0x7UL << FLASH_ACR_LATENCY_Pos) /*!< 0x00000007 */
  3860. #define FLASH_ACR_LATENCY FLASH_ACR_LATENCY_Msk
  3861. #define FLASH_ACR_LATENCY_0 (0x1UL << FLASH_ACR_LATENCY_Pos) /*!< 0x00000001 */
  3862. #define FLASH_ACR_LATENCY_1 (0x2UL << FLASH_ACR_LATENCY_Pos) /*!< 0x00000002 */
  3863. #define FLASH_ACR_LATENCY_2 (0x4UL << FLASH_ACR_LATENCY_Pos) /*!< 0x00000004 */
  3864. #define FLASH_ACR_PRFTEN_Pos (8U)
  3865. #define FLASH_ACR_PRFTEN_Msk (0x1UL << FLASH_ACR_PRFTEN_Pos) /*!< 0x00000100 */
  3866. #define FLASH_ACR_PRFTEN FLASH_ACR_PRFTEN_Msk
  3867. #define FLASH_ACR_ICEN_Pos (9U)
  3868. #define FLASH_ACR_ICEN_Msk (0x1UL << FLASH_ACR_ICEN_Pos) /*!< 0x00000200 */
  3869. #define FLASH_ACR_ICEN FLASH_ACR_ICEN_Msk
  3870. #define FLASH_ACR_ICRST_Pos (11U)
  3871. #define FLASH_ACR_ICRST_Msk (0x1UL << FLASH_ACR_ICRST_Pos) /*!< 0x00000800 */
  3872. #define FLASH_ACR_ICRST FLASH_ACR_ICRST_Msk
  3873. #define FLASH_ACR_PROGEMPTY_Pos (16U)
  3874. #define FLASH_ACR_PROGEMPTY_Msk (0x1UL << FLASH_ACR_PROGEMPTY_Pos) /*!< 0x00010000 */
  3875. #define FLASH_ACR_PROGEMPTY FLASH_ACR_PROGEMPTY_Msk
  3876. #define FLASH_ACR_DBG_SWEN_Pos (18U)
  3877. #define FLASH_ACR_DBG_SWEN_Msk (0x1UL << FLASH_ACR_DBG_SWEN_Pos) /*!< 0x00040000 */
  3878. #define FLASH_ACR_DBG_SWEN FLASH_ACR_DBG_SWEN_Msk
  3879. /******************* Bits definition for FLASH_SR register ******************/
  3880. #define FLASH_SR_EOP_Pos (0U)
  3881. #define FLASH_SR_EOP_Msk (0x1UL << FLASH_SR_EOP_Pos) /*!< 0x00000001 */
  3882. #define FLASH_SR_EOP FLASH_SR_EOP_Msk
  3883. #define FLASH_SR_OPERR_Pos (1U)
  3884. #define FLASH_SR_OPERR_Msk (0x1UL << FLASH_SR_OPERR_Pos) /*!< 0x00000002 */
  3885. #define FLASH_SR_OPERR FLASH_SR_OPERR_Msk
  3886. #define FLASH_SR_PROGERR_Pos (3U)
  3887. #define FLASH_SR_PROGERR_Msk (0x1UL << FLASH_SR_PROGERR_Pos) /*!< 0x00000008 */
  3888. #define FLASH_SR_PROGERR FLASH_SR_PROGERR_Msk
  3889. #define FLASH_SR_WRPERR_Pos (4U)
  3890. #define FLASH_SR_WRPERR_Msk (0x1UL << FLASH_SR_WRPERR_Pos) /*!< 0x00000010 */
  3891. #define FLASH_SR_WRPERR FLASH_SR_WRPERR_Msk
  3892. #define FLASH_SR_PGAERR_Pos (5U)
  3893. #define FLASH_SR_PGAERR_Msk (0x1UL << FLASH_SR_PGAERR_Pos) /*!< 0x00000020 */
  3894. #define FLASH_SR_PGAERR FLASH_SR_PGAERR_Msk
  3895. #define FLASH_SR_SIZERR_Pos (6U)
  3896. #define FLASH_SR_SIZERR_Msk (0x1UL << FLASH_SR_SIZERR_Pos) /*!< 0x00000040 */
  3897. #define FLASH_SR_SIZERR FLASH_SR_SIZERR_Msk
  3898. #define FLASH_SR_PGSERR_Pos (7U)
  3899. #define FLASH_SR_PGSERR_Msk (0x1UL << FLASH_SR_PGSERR_Pos) /*!< 0x00000080 */
  3900. #define FLASH_SR_PGSERR FLASH_SR_PGSERR_Msk
  3901. #define FLASH_SR_MISERR_Pos (8U)
  3902. #define FLASH_SR_MISERR_Msk (0x1UL << FLASH_SR_MISERR_Pos) /*!< 0x00000100 */
  3903. #define FLASH_SR_MISERR FLASH_SR_MISERR_Msk
  3904. #define FLASH_SR_FASTERR_Pos (9U)
  3905. #define FLASH_SR_FASTERR_Msk (0x1UL << FLASH_SR_FASTERR_Pos) /*!< 0x00000200 */
  3906. #define FLASH_SR_FASTERR FLASH_SR_FASTERR_Msk
  3907. #define FLASH_SR_RDERR_Pos (14U)
  3908. #define FLASH_SR_RDERR_Msk (0x1UL << FLASH_SR_RDERR_Pos) /*!< 0x00004000 */
  3909. #define FLASH_SR_RDERR FLASH_SR_RDERR_Msk
  3910. #define FLASH_SR_OPTVERR_Pos (15U)
  3911. #define FLASH_SR_OPTVERR_Msk (0x1UL << FLASH_SR_OPTVERR_Pos) /*!< 0x00008000 */
  3912. #define FLASH_SR_OPTVERR FLASH_SR_OPTVERR_Msk
  3913. #define FLASH_SR_BSY1_Pos (16U)
  3914. #define FLASH_SR_BSY1_Msk (0x1UL << FLASH_SR_BSY1_Pos) /*!< 0x00010000 */
  3915. #define FLASH_SR_BSY1 FLASH_SR_BSY1_Msk
  3916. #define FLASH_SR_BSY2_Pos (17U)
  3917. #define FLASH_SR_BSY2_Msk (0x1UL << FLASH_SR_BSY2_Pos) /*!< 0x00020000 */
  3918. #define FLASH_SR_BSY2 FLASH_SR_BSY2_Msk
  3919. #define FLASH_SR_CFGBSY_Pos (18U)
  3920. #define FLASH_SR_CFGBSY_Msk (0x1UL << FLASH_SR_CFGBSY_Pos) /*!< 0x00040000 */
  3921. #define FLASH_SR_CFGBSY FLASH_SR_CFGBSY_Msk
  3922. #define FLASH_SR_PESD_Pos (19U)
  3923. #define FLASH_SR_PESD_Msk (0x1UL << FLASH_SR_PESD_Pos) /*!< 0x00080000 */
  3924. #define FLASH_SR_PESD FLASH_SR_PESD_Msk
  3925. /******************* Bits definition for FLASH_CR register ******************/
  3926. #define FLASH_CR_PG_Pos (0U)
  3927. #define FLASH_CR_PG_Msk (0x1UL << FLASH_CR_PG_Pos) /*!< 0x00000001 */
  3928. #define FLASH_CR_PG FLASH_CR_PG_Msk
  3929. #define FLASH_CR_PER_Pos (1U)
  3930. #define FLASH_CR_PER_Msk (0x1UL << FLASH_CR_PER_Pos) /*!< 0x00000002 */
  3931. #define FLASH_CR_PER FLASH_CR_PER_Msk
  3932. #define FLASH_CR_MER1_Pos (2U)
  3933. #define FLASH_CR_MER1_Msk (0x1UL << FLASH_CR_MER1_Pos) /*!< 0x00000004 */
  3934. #define FLASH_CR_MER1 FLASH_CR_MER1_Msk
  3935. #define FLASH_CR_PNB_Pos (3U)
  3936. #define FLASH_CR_PNB_Msk (0x3FFUL << FLASH_CR_PNB_Pos) /*!< 0x00001FF8 */
  3937. #define FLASH_CR_PNB FLASH_CR_PNB_Msk
  3938. #define FLASH_CR_BKER_Pos (13U)
  3939. #define FLASH_CR_BKER_Msk (0x1UL << FLASH_CR_BKER_Pos) /*!< 0x00002000 */
  3940. #define FLASH_CR_BKER FLASH_CR_BKER_Msk
  3941. #define FLASH_CR_MER2_Pos (15U)
  3942. #define FLASH_CR_MER2_Msk (0x1UL << FLASH_CR_MER2_Pos) /*!< 0x00008000 */
  3943. #define FLASH_CR_MER2 FLASH_CR_MER2_Msk
  3944. #define FLASH_CR_STRT_Pos (16U)
  3945. #define FLASH_CR_STRT_Msk (0x1UL << FLASH_CR_STRT_Pos) /*!< 0x00010000 */
  3946. #define FLASH_CR_STRT FLASH_CR_STRT_Msk
  3947. #define FLASH_CR_OPTSTRT_Pos (17U)
  3948. #define FLASH_CR_OPTSTRT_Msk (0x1UL << FLASH_CR_OPTSTRT_Pos) /*!< 0x00020000 */
  3949. #define FLASH_CR_OPTSTRT FLASH_CR_OPTSTRT_Msk
  3950. #define FLASH_CR_FSTPG_Pos (18U)
  3951. #define FLASH_CR_FSTPG_Msk (0x1UL << FLASH_CR_FSTPG_Pos) /*!< 0x00040000 */
  3952. #define FLASH_CR_FSTPG FLASH_CR_FSTPG_Msk
  3953. #define FLASH_CR_EOPIE_Pos (24U)
  3954. #define FLASH_CR_EOPIE_Msk (0x1UL << FLASH_CR_EOPIE_Pos) /*!< 0x01000000 */
  3955. #define FLASH_CR_EOPIE FLASH_CR_EOPIE_Msk
  3956. #define FLASH_CR_ERRIE_Pos (25U)
  3957. #define FLASH_CR_ERRIE_Msk (0x1UL << FLASH_CR_ERRIE_Pos) /*!< 0x02000000 */
  3958. #define FLASH_CR_ERRIE FLASH_CR_ERRIE_Msk
  3959. #define FLASH_CR_RDERRIE_Pos (26U)
  3960. #define FLASH_CR_RDERRIE_Msk (0x1UL << FLASH_CR_RDERRIE_Pos) /*!< 0x04000000 */
  3961. #define FLASH_CR_RDERRIE FLASH_CR_RDERRIE_Msk
  3962. #define FLASH_CR_OBL_LAUNCH_Pos (27U)
  3963. #define FLASH_CR_OBL_LAUNCH_Msk (0x1UL << FLASH_CR_OBL_LAUNCH_Pos) /*!< 0x08000000 */
  3964. #define FLASH_CR_OBL_LAUNCH FLASH_CR_OBL_LAUNCH_Msk
  3965. #define FLASH_CR_SEC_PROT_Pos (28U)
  3966. #define FLASH_CR_SEC_PROT_Msk (0x1UL << FLASH_CR_SEC_PROT_Pos) /*!< 0x10000000 */
  3967. #define FLASH_CR_SEC_PROT FLASH_CR_SEC_PROT_Msk
  3968. #define FLASH_CR_SEC_PROT2_Pos (29U)
  3969. #define FLASH_CR_SEC_PROT2_Msk (0x1UL << FLASH_CR_SEC_PROT2_Pos) /*!< 0x20000000 */
  3970. #define FLASH_CR_SEC_PROT2 FLASH_CR_SEC_PROT2_Msk
  3971. #define FLASH_CR_OPTLOCK_Pos (30U)
  3972. #define FLASH_CR_OPTLOCK_Msk (0x1UL << FLASH_CR_OPTLOCK_Pos) /*!< 0x40000000 */
  3973. #define FLASH_CR_OPTLOCK FLASH_CR_OPTLOCK_Msk
  3974. #define FLASH_CR_LOCK_Pos (31U)
  3975. #define FLASH_CR_LOCK_Msk (0x1UL << FLASH_CR_LOCK_Pos) /*!< 0x80000000 */
  3976. #define FLASH_CR_LOCK FLASH_CR_LOCK_Msk
  3977. /******************* Bits definition for FLASH_ECCR register ****************/
  3978. #define FLASH_ECCR_ADDR_ECC_Pos (0U)
  3979. #define FLASH_ECCR_ADDR_ECC_Msk (0x7FFFUL << FLASH_ECCR_ADDR_ECC_Pos) /*!< 0x00007FFF */
  3980. #define FLASH_ECCR_ADDR_ECC FLASH_ECCR_ADDR_ECC_Msk
  3981. #define FLASH_ECCR_SYSF_ECC_Pos (20U)
  3982. #define FLASH_ECCR_SYSF_ECC_Msk (0x1UL << FLASH_ECCR_SYSF_ECC_Pos) /*!< 0x00100000 */
  3983. #define FLASH_ECCR_SYSF_ECC FLASH_ECCR_SYSF_ECC_Msk
  3984. #define FLASH_ECCR_ECCCIE_Pos (24U)
  3985. #define FLASH_ECCR_ECCCIE_Msk (0x1UL << FLASH_ECCR_ECCCIE_Pos) /*!< 0x01000000 */
  3986. #define FLASH_ECCR_ECCCIE FLASH_ECCR_ECCCIE_Msk
  3987. #define FLASH_ECCR_ECCC_Pos (30U)
  3988. #define FLASH_ECCR_ECCC_Msk (0x1UL << FLASH_ECCR_ECCC_Pos) /*!< 0x40000000 */
  3989. #define FLASH_ECCR_ECCC FLASH_ECCR_ECCC_Msk
  3990. #define FLASH_ECCR_ECCD_Pos (31U)
  3991. #define FLASH_ECCR_ECCD_Msk (0x1UL << FLASH_ECCR_ECCD_Pos) /*!< 0x80000000 */
  3992. #define FLASH_ECCR_ECCD FLASH_ECCR_ECCD_Msk
  3993. /******************* Bits definition for FLASH_ECC2R register ****************/
  3994. #define FLASH_ECC2R_ADDR_ECC_Pos (0U)
  3995. #define FLASH_ECC2R_ADDR_ECC_Msk (0x7FFFUL << FLASH_ECC2R_ADDR_ECC_Pos) /*!< 0x00007FFF */
  3996. #define FLASH_ECC2R_ADDR_ECC FLASH_ECC2R_ADDR_ECC_Msk
  3997. #define FLASH_ECC2R_SYSF_ECC_Pos (20U)
  3998. #define FLASH_ECC2R_SYSF_ECC_Msk (0x1UL << FLASH_ECC2R_SYSF_ECC_Pos) /*!< 0x00100000 */
  3999. #define FLASH_ECC2R_SYSF_ECC FLASH_ECC2R_SYSF_ECC_Msk
  4000. #define FLASH_ECC2R_ECCCIE_Pos (24U)
  4001. #define FLASH_ECC2R_ECCCIE_Msk (0x1UL << FLASH_ECC2R_ECCCIE_Pos) /*!< 0x01000000 */
  4002. #define FLASH_ECC2R_ECCCIE FLASH_ECC2R_ECCCIE_Msk
  4003. #define FLASH_ECC2R_ECCC_Pos (30U)
  4004. #define FLASH_ECC2R_ECCC_Msk (0x1UL << FLASH_ECC2R_ECCC_Pos) /*!< 0x40000000 */
  4005. #define FLASH_ECC2R_ECCC FLASH_ECC2R_ECCC_Msk
  4006. #define FLASH_ECC2R_ECCD_Pos (31U)
  4007. #define FLASH_ECC2R_ECCD_Msk (0x1UL << FLASH_ECC2R_ECCD_Pos) /*!< 0x80000000 */
  4008. #define FLASH_ECC2R_ECCD FLASH_ECC2R_ECCD_Msk
  4009. /******************* Bits definition for FLASH_OPTR register ****************/
  4010. #define FLASH_OPTR_RDP_Pos (0U)
  4011. #define FLASH_OPTR_RDP_Msk (0xFFUL << FLASH_OPTR_RDP_Pos) /*!< 0x000000FF */
  4012. #define FLASH_OPTR_RDP FLASH_OPTR_RDP_Msk
  4013. #define FLASH_OPTR_BOR_EN_Pos (8U)
  4014. #define FLASH_OPTR_BOR_EN_Msk (0x1UL << FLASH_OPTR_BOR_EN_Pos) /*!< 0x00000100 */
  4015. #define FLASH_OPTR_BOR_EN FLASH_OPTR_BOR_EN_Msk
  4016. #define FLASH_OPTR_BORR_LEV_Pos (9U)
  4017. #define FLASH_OPTR_BORR_LEV_Msk (0x3UL << FLASH_OPTR_BORR_LEV_Pos) /*!< 0x00000600 */
  4018. #define FLASH_OPTR_BORR_LEV FLASH_OPTR_BORR_LEV_Msk
  4019. #define FLASH_OPTR_BORR_LEV_0 (0x1UL << FLASH_OPTR_BORR_LEV_Pos) /*!< 0x00000200 */
  4020. #define FLASH_OPTR_BORR_LEV_1 (0x2UL << FLASH_OPTR_BORR_LEV_Pos) /*!< 0x00000400 */
  4021. #define FLASH_OPTR_BORF_LEV_Pos (11U)
  4022. #define FLASH_OPTR_BORF_LEV_Msk (0x3UL << FLASH_OPTR_BORF_LEV_Pos) /*!< 0x00001800 */
  4023. #define FLASH_OPTR_BORF_LEV FLASH_OPTR_BORF_LEV_Msk
  4024. #define FLASH_OPTR_BORF_LEV_0 (0x1UL << FLASH_OPTR_BORF_LEV_Pos) /*!< 0x00000800 */
  4025. #define FLASH_OPTR_BORF_LEV_1 (0x2UL << FLASH_OPTR_BORF_LEV_Pos) /*!< 0x00001000 */
  4026. #define FLASH_OPTR_nRST_STOP_Pos (13U)
  4027. #define FLASH_OPTR_nRST_STOP_Msk (0x1UL << FLASH_OPTR_nRST_STOP_Pos) /*!< 0x00002000 */
  4028. #define FLASH_OPTR_nRST_STOP FLASH_OPTR_nRST_STOP_Msk
  4029. #define FLASH_OPTR_nRST_STDBY_Pos (14U)
  4030. #define FLASH_OPTR_nRST_STDBY_Msk (0x1UL << FLASH_OPTR_nRST_STDBY_Pos) /*!< 0x00004000 */
  4031. #define FLASH_OPTR_nRST_STDBY FLASH_OPTR_nRST_STDBY_Msk
  4032. #define FLASH_OPTR_nRST_SHDW_Pos (15U)
  4033. #define FLASH_OPTR_nRST_SHDW_Msk (0x1UL << FLASH_OPTR_nRST_SHDW_Pos) /*!< 0x00008000 */
  4034. #define FLASH_OPTR_nRST_SHDW FLASH_OPTR_nRST_SHDW_Msk
  4035. #define FLASH_OPTR_IWDG_SW_Pos (16U)
  4036. #define FLASH_OPTR_IWDG_SW_Msk (0x1UL << FLASH_OPTR_IWDG_SW_Pos) /*!< 0x00010000 */
  4037. #define FLASH_OPTR_IWDG_SW FLASH_OPTR_IWDG_SW_Msk
  4038. #define FLASH_OPTR_IWDG_STOP_Pos (17U)
  4039. #define FLASH_OPTR_IWDG_STOP_Msk (0x1UL << FLASH_OPTR_IWDG_STOP_Pos) /*!< 0x00020000 */
  4040. #define FLASH_OPTR_IWDG_STOP FLASH_OPTR_IWDG_STOP_Msk
  4041. #define FLASH_OPTR_IWDG_STDBY_Pos (18U)
  4042. #define FLASH_OPTR_IWDG_STDBY_Msk (0x1UL << FLASH_OPTR_IWDG_STDBY_Pos) /*!< 0x00040000 */
  4043. #define FLASH_OPTR_IWDG_STDBY FLASH_OPTR_IWDG_STDBY_Msk
  4044. #define FLASH_OPTR_WWDG_SW_Pos (19U)
  4045. #define FLASH_OPTR_WWDG_SW_Msk (0x1UL << FLASH_OPTR_WWDG_SW_Pos) /*!< 0x00080000 */
  4046. #define FLASH_OPTR_WWDG_SW FLASH_OPTR_WWDG_SW_Msk
  4047. #define FLASH_OPTR_nSWAP_BANK_Pos (20U)
  4048. #define FLASH_OPTR_nSWAP_BANK_Msk (0x1UL << FLASH_OPTR_nSWAP_BANK_Pos) /*!< 0x00100000 */
  4049. #define FLASH_OPTR_nSWAP_BANK FLASH_OPTR_nSWAP_BANK_Msk
  4050. #define FLASH_OPTR_DUAL_BANK_Pos (21U)
  4051. #define FLASH_OPTR_DUAL_BANK_Msk (0x1UL << FLASH_OPTR_DUAL_BANK_Pos) /*!< 0x00200000 */
  4052. #define FLASH_OPTR_DUAL_BANK FLASH_OPTR_DUAL_BANK_Msk
  4053. #define FLASH_OPTR_RAM_PARITY_CHECK_Pos (22U)
  4054. #define FLASH_OPTR_RAM_PARITY_CHECK_Msk (0x1UL << FLASH_OPTR_RAM_PARITY_CHECK_Pos) /*!< 0x00400000 */
  4055. #define FLASH_OPTR_RAM_PARITY_CHECK FLASH_OPTR_RAM_PARITY_CHECK_Msk
  4056. #define FLASH_OPTR_nBOOT_SEL_Pos (24U)
  4057. #define FLASH_OPTR_nBOOT_SEL_Msk (0x1UL << FLASH_OPTR_nBOOT_SEL_Pos) /*!< 0x01000000 */
  4058. #define FLASH_OPTR_nBOOT_SEL FLASH_OPTR_nBOOT_SEL_Msk
  4059. #define FLASH_OPTR_nBOOT1_Pos (25U)
  4060. #define FLASH_OPTR_nBOOT1_Msk (0x1UL << FLASH_OPTR_nBOOT1_Pos) /*!< 0x02000000 */
  4061. #define FLASH_OPTR_nBOOT1 FLASH_OPTR_nBOOT1_Msk
  4062. #define FLASH_OPTR_nBOOT0_Pos (26U)
  4063. #define FLASH_OPTR_nBOOT0_Msk (0x1UL << FLASH_OPTR_nBOOT0_Pos) /*!< 0x04000000 */
  4064. #define FLASH_OPTR_nBOOT0 FLASH_OPTR_nBOOT0_Msk
  4065. #define FLASH_OPTR_NRST_MODE_Pos (27U)
  4066. #define FLASH_OPTR_NRST_MODE_Msk (0x3UL << FLASH_OPTR_NRST_MODE_Pos) /*!< 0x18000000 */
  4067. #define FLASH_OPTR_NRST_MODE FLASH_OPTR_NRST_MODE_Msk
  4068. #define FLASH_OPTR_NRST_MODE_0 (0x1UL << FLASH_OPTR_NRST_MODE_Pos) /*!< 0x08000000 */
  4069. #define FLASH_OPTR_NRST_MODE_1 (0x2UL << FLASH_OPTR_NRST_MODE_Pos) /*!< 0x10000000 */
  4070. #define FLASH_OPTR_IRHEN_Pos (29U)
  4071. #define FLASH_OPTR_IRHEN_Msk (0x1UL << FLASH_OPTR_IRHEN_Pos) /*!< 0x20000000 */
  4072. #define FLASH_OPTR_IRHEN FLASH_OPTR_IRHEN_Msk
  4073. /****************** Bits definition for FLASH_PCROP1ASR register ************/
  4074. #define FLASH_PCROP1ASR_PCROP1A_STRT_Pos (0U)
  4075. #define FLASH_PCROP1ASR_PCROP1A_STRT_Msk (0x1FFUL << FLASH_PCROP1ASR_PCROP1A_STRT_Pos) /*!< 0x0000001FF */
  4076. #define FLASH_PCROP1ASR_PCROP1A_STRT FLASH_PCROP1ASR_PCROP1A_STRT_Msk
  4077. /****************** Bits definition for FLASH_PCROP1AER register ************/
  4078. #define FLASH_PCROP1AER_PCROP1A_END_Pos (0U)
  4079. #define FLASH_PCROP1AER_PCROP1A_END_Msk (0x1FFUL << FLASH_PCROP1AER_PCROP1A_END_Pos) /*!< 0x0000001FF */
  4080. #define FLASH_PCROP1AER_PCROP1A_END FLASH_PCROP1AER_PCROP1A_END_Msk
  4081. #define FLASH_PCROP1AER_PCROP_RDP_Pos (31U)
  4082. #define FLASH_PCROP1AER_PCROP_RDP_Msk (0x1UL << FLASH_PCROP1AER_PCROP_RDP_Pos) /*!< 0x80000000 */
  4083. #define FLASH_PCROP1AER_PCROP_RDP FLASH_PCROP1AER_PCROP_RDP_Msk
  4084. /****************** Bits definition for FLASH_WRP1AR register ***************/
  4085. #define FLASH_WRP1AR_WRP1A_STRT_Pos (0U)
  4086. #define FLASH_WRP1AR_WRP1A_STRT_Msk (0x7FUL << FLASH_WRP1AR_WRP1A_STRT_Pos) /*!< 0x0000007F */
  4087. #define FLASH_WRP1AR_WRP1A_STRT FLASH_WRP1AR_WRP1A_STRT_Msk
  4088. #define FLASH_WRP1AR_WRP1A_END_Pos (16U)
  4089. #define FLASH_WRP1AR_WRP1A_END_Msk (0x7FUL << FLASH_WRP1AR_WRP1A_END_Pos) /*!< 0x007F0000 */
  4090. #define FLASH_WRP1AR_WRP1A_END FLASH_WRP1AR_WRP1A_END_Msk
  4091. /****************** Bits definition for FLASH_WRP1BR register ***************/
  4092. #define FLASH_WRP1BR_WRP1B_STRT_Pos (0U)
  4093. #define FLASH_WRP1BR_WRP1B_STRT_Msk (0x7FUL << FLASH_WRP1BR_WRP1B_STRT_Pos) /*!< 0x0000007F */
  4094. #define FLASH_WRP1BR_WRP1B_STRT FLASH_WRP1BR_WRP1B_STRT_Msk
  4095. #define FLASH_WRP1BR_WRP1B_END_Pos (16U)
  4096. #define FLASH_WRP1BR_WRP1B_END_Msk (0x7FUL << FLASH_WRP1BR_WRP1B_END_Pos) /*!< 0x007F0000 */
  4097. #define FLASH_WRP1BR_WRP1B_END FLASH_WRP1BR_WRP1B_END_Msk
  4098. /****************** Bits definition for FLASH_PCROP1BSR register ************/
  4099. #define FLASH_PCROP1BSR_PCROP1B_STRT_Pos (0U)
  4100. #define FLASH_PCROP1BSR_PCROP1B_STRT_Msk (0x1FFUL << FLASH_PCROP1BSR_PCROP1B_STRT_Pos) /*!< 0x0000001FF */
  4101. #define FLASH_PCROP1BSR_PCROP1B_STRT FLASH_PCROP1BSR_PCROP1B_STRT_Msk
  4102. /****************** Bits definition for FLASH_PCROP1BER register ************/
  4103. #define FLASH_PCROP1BER_PCROP1B_END_Pos (0U)
  4104. #define FLASH_PCROP1BER_PCROP1B_END_Msk (0x1FFUL << FLASH_PCROP1BER_PCROP1B_END_Pos) /*!< 0x0000001FF */
  4105. #define FLASH_PCROP1BER_PCROP1B_END FLASH_PCROP1BER_PCROP1B_END_Msk
  4106. /****************** Bits definition for FLASH_PCROP2ASR register ************/
  4107. #define FLASH_PCROP2ASR_PCROP2A_STRT_Pos (0U)
  4108. #define FLASH_PCROP2ASR_PCROP2A_STRT_Msk (0x1FFUL << FLASH_PCROP2ASR_PCROP2A_STRT_Pos) /*!< 0x0000001FF */
  4109. #define FLASH_PCROP2ASR_PCROP2A_STRT FLASH_PCROP2ASR_PCROP2A_STRT_Msk
  4110. /****************** Bits definition for FLASH_PCROP2AER register ************/
  4111. #define FLASH_PCROP2AER_PCROP2A_END_Pos (0U)
  4112. #define FLASH_PCROP2AER_PCROP2A_END_Msk (0x1FFUL << FLASH_PCROP2AER_PCROP2A_END_Pos) /*!< 0x0000001FF */
  4113. #define FLASH_PCROP2AER_PCROP2A_END FLASH_PCROP2AER_PCROP2A_END_Msk
  4114. /****************** Bits definition for FLASH_WRP2AR register ***************/
  4115. #define FLASH_WRP2AR_WRP2A_STRT_Pos (0U)
  4116. #define FLASH_WRP2AR_WRP2A_STRT_Msk (0x7FUL << FLASH_WRP2AR_WRP2A_STRT_Pos) /*!< 0x0000007F */
  4117. #define FLASH_WRP2AR_WRP2A_STRT FLASH_WRP2AR_WRP2A_STRT_Msk
  4118. #define FLASH_WRP2AR_WRP2A_END_Pos (16U)
  4119. #define FLASH_WRP2AR_WRP2A_END_Msk (0x7FUL << FLASH_WRP2AR_WRP2A_END_Pos) /*!< 0x007F0000 */
  4120. #define FLASH_WRP2AR_WRP2A_END FLASH_WRP2AR_WRP2A_END_Msk
  4121. /****************** Bits definition for FLASH_WRP2BSR register ***************/
  4122. #define FLASH_WRP2BR_WRP2B_STRT_Pos (0U)
  4123. #define FLASH_WRP2BR_WRP2B_STRT_Msk (0x7FUL << FLASH_WRP2BR_WRP2B_STRT_Pos) /*!< 0x0000007F */
  4124. #define FLASH_WRP2BR_WRP2B_STRT FLASH_WRP2BR_WRP2B_STRT_Msk
  4125. #define FLASH_WRP2BR_WRP2B_END_Pos (16U)
  4126. #define FLASH_WRP2BR_WRP2B_END_Msk (0x7FUL << FLASH_WRP2BR_WRP2B_END_Pos) /*!< 0x007F0000 */
  4127. #define FLASH_WRP2BR_WRP2B_END FLASH_WRP2BR_WRP2B_END_Msk
  4128. /****************** Bits definition for FLASH_PCROP2BSR register ************/
  4129. #define FLASH_PCROP2BSR_PCROP2B_STRT_Pos (0U)
  4130. #define FLASH_PCROP2BSR_PCROP2B_STRT_Msk (0x1FFUL << FLASH_PCROP2BSR_PCROP2B_STRT_Pos) /*!< 0x0000001FF */
  4131. #define FLASH_PCROP2BSR_PCROP2B_STRT FLASH_PCROP2BSR_PCROP2B_STRT_Msk
  4132. /****************** Bits definition for FLASH_PCROP2BER register ************/
  4133. #define FLASH_PCROP2BER_PCROP2B_END_Pos (0U)
  4134. #define FLASH_PCROP2BER_PCROP2B_END_Msk (0x1FFUL << FLASH_PCROP2BER_PCROP2B_END_Pos) /*!< 0x0000001FF */
  4135. #define FLASH_PCROP2BER_PCROP2B_END FLASH_PCROP2BER_PCROP2B_END_Msk
  4136. /****************** Bits definition for FLASH_SECR register *****************/
  4137. #define FLASH_SECR_SEC_SIZE_Pos (0U)
  4138. #define FLASH_SECR_SEC_SIZE_Msk (0xFFUL << FLASH_SECR_SEC_SIZE_Pos) /*!< 0x000000FF */
  4139. #define FLASH_SECR_SEC_SIZE FLASH_SECR_SEC_SIZE_Msk
  4140. #define FLASH_SECR_BOOT_LOCK_Pos (16U)
  4141. #define FLASH_SECR_BOOT_LOCK_Msk (0x1UL << FLASH_SECR_BOOT_LOCK_Pos) /*!< 0x00010000 */
  4142. #define FLASH_SECR_BOOT_LOCK FLASH_SECR_BOOT_LOCK_Msk
  4143. #define FLASH_SECR_SEC_SIZE2_Pos (20U)
  4144. #define FLASH_SECR_SEC_SIZE2_Msk (0xFFUL << FLASH_SECR_SEC_SIZE2_Pos) /*!< 0x0FF00000 */
  4145. #define FLASH_SECR_SEC_SIZE2 FLASH_SECR_SEC_SIZE2_Msk
  4146. /******************************************************************************/
  4147. /* */
  4148. /* General Purpose I/O */
  4149. /* */
  4150. /******************************************************************************/
  4151. /****************** Bits definition for GPIO_MODER register *****************/
  4152. #define GPIO_MODER_MODE0_Pos (0U)
  4153. #define GPIO_MODER_MODE0_Msk (0x3UL << GPIO_MODER_MODE0_Pos) /*!< 0x00000003 */
  4154. #define GPIO_MODER_MODE0 GPIO_MODER_MODE0_Msk
  4155. #define GPIO_MODER_MODE0_0 (0x1UL << GPIO_MODER_MODE0_Pos) /*!< 0x00000001 */
  4156. #define GPIO_MODER_MODE0_1 (0x2UL << GPIO_MODER_MODE0_Pos) /*!< 0x00000002 */
  4157. #define GPIO_MODER_MODE1_Pos (2U)
  4158. #define GPIO_MODER_MODE1_Msk (0x3UL << GPIO_MODER_MODE1_Pos) /*!< 0x0000000C */
  4159. #define GPIO_MODER_MODE1 GPIO_MODER_MODE1_Msk
  4160. #define GPIO_MODER_MODE1_0 (0x1UL << GPIO_MODER_MODE1_Pos) /*!< 0x00000004 */
  4161. #define GPIO_MODER_MODE1_1 (0x2UL << GPIO_MODER_MODE1_Pos) /*!< 0x00000008 */
  4162. #define GPIO_MODER_MODE2_Pos (4U)
  4163. #define GPIO_MODER_MODE2_Msk (0x3UL << GPIO_MODER_MODE2_Pos) /*!< 0x00000030 */
  4164. #define GPIO_MODER_MODE2 GPIO_MODER_MODE2_Msk
  4165. #define GPIO_MODER_MODE2_0 (0x1UL << GPIO_MODER_MODE2_Pos) /*!< 0x00000010 */
  4166. #define GPIO_MODER_MODE2_1 (0x2UL << GPIO_MODER_MODE2_Pos) /*!< 0x00000020 */
  4167. #define GPIO_MODER_MODE3_Pos (6U)
  4168. #define GPIO_MODER_MODE3_Msk (0x3UL << GPIO_MODER_MODE3_Pos) /*!< 0x000000C0 */
  4169. #define GPIO_MODER_MODE3 GPIO_MODER_MODE3_Msk
  4170. #define GPIO_MODER_MODE3_0 (0x1UL << GPIO_MODER_MODE3_Pos) /*!< 0x00000040 */
  4171. #define GPIO_MODER_MODE3_1 (0x2UL << GPIO_MODER_MODE3_Pos) /*!< 0x00000080 */
  4172. #define GPIO_MODER_MODE4_Pos (8U)
  4173. #define GPIO_MODER_MODE4_Msk (0x3UL << GPIO_MODER_MODE4_Pos) /*!< 0x00000300 */
  4174. #define GPIO_MODER_MODE4 GPIO_MODER_MODE4_Msk
  4175. #define GPIO_MODER_MODE4_0 (0x1UL << GPIO_MODER_MODE4_Pos) /*!< 0x00000100 */
  4176. #define GPIO_MODER_MODE4_1 (0x2UL << GPIO_MODER_MODE4_Pos) /*!< 0x00000200 */
  4177. #define GPIO_MODER_MODE5_Pos (10U)
  4178. #define GPIO_MODER_MODE5_Msk (0x3UL << GPIO_MODER_MODE5_Pos) /*!< 0x00000C00 */
  4179. #define GPIO_MODER_MODE5 GPIO_MODER_MODE5_Msk
  4180. #define GPIO_MODER_MODE5_0 (0x1UL << GPIO_MODER_MODE5_Pos) /*!< 0x00000400 */
  4181. #define GPIO_MODER_MODE5_1 (0x2UL << GPIO_MODER_MODE5_Pos) /*!< 0x00000800 */
  4182. #define GPIO_MODER_MODE6_Pos (12U)
  4183. #define GPIO_MODER_MODE6_Msk (0x3UL << GPIO_MODER_MODE6_Pos) /*!< 0x00003000 */
  4184. #define GPIO_MODER_MODE6 GPIO_MODER_MODE6_Msk
  4185. #define GPIO_MODER_MODE6_0 (0x1UL << GPIO_MODER_MODE6_Pos) /*!< 0x00001000 */
  4186. #define GPIO_MODER_MODE6_1 (0x2UL << GPIO_MODER_MODE6_Pos) /*!< 0x00002000 */
  4187. #define GPIO_MODER_MODE7_Pos (14U)
  4188. #define GPIO_MODER_MODE7_Msk (0x3UL << GPIO_MODER_MODE7_Pos) /*!< 0x0000C000 */
  4189. #define GPIO_MODER_MODE7 GPIO_MODER_MODE7_Msk
  4190. #define GPIO_MODER_MODE7_0 (0x1UL << GPIO_MODER_MODE7_Pos) /*!< 0x00004000 */
  4191. #define GPIO_MODER_MODE7_1 (0x2UL << GPIO_MODER_MODE7_Pos) /*!< 0x00008000 */
  4192. #define GPIO_MODER_MODE8_Pos (16U)
  4193. #define GPIO_MODER_MODE8_Msk (0x3UL << GPIO_MODER_MODE8_Pos) /*!< 0x00030000 */
  4194. #define GPIO_MODER_MODE8 GPIO_MODER_MODE8_Msk
  4195. #define GPIO_MODER_MODE8_0 (0x1UL << GPIO_MODER_MODE8_Pos) /*!< 0x00010000 */
  4196. #define GPIO_MODER_MODE8_1 (0x2UL << GPIO_MODER_MODE8_Pos) /*!< 0x00020000 */
  4197. #define GPIO_MODER_MODE9_Pos (18U)
  4198. #define GPIO_MODER_MODE9_Msk (0x3UL << GPIO_MODER_MODE9_Pos) /*!< 0x000C0000 */
  4199. #define GPIO_MODER_MODE9 GPIO_MODER_MODE9_Msk
  4200. #define GPIO_MODER_MODE9_0 (0x1UL << GPIO_MODER_MODE9_Pos) /*!< 0x00040000 */
  4201. #define GPIO_MODER_MODE9_1 (0x2UL << GPIO_MODER_MODE9_Pos) /*!< 0x00080000 */
  4202. #define GPIO_MODER_MODE10_Pos (20U)
  4203. #define GPIO_MODER_MODE10_Msk (0x3UL << GPIO_MODER_MODE10_Pos) /*!< 0x00300000 */
  4204. #define GPIO_MODER_MODE10 GPIO_MODER_MODE10_Msk
  4205. #define GPIO_MODER_MODE10_0 (0x1UL << GPIO_MODER_MODE10_Pos) /*!< 0x00100000 */
  4206. #define GPIO_MODER_MODE10_1 (0x2UL << GPIO_MODER_MODE10_Pos) /*!< 0x00200000 */
  4207. #define GPIO_MODER_MODE11_Pos (22U)
  4208. #define GPIO_MODER_MODE11_Msk (0x3UL << GPIO_MODER_MODE11_Pos) /*!< 0x00C00000 */
  4209. #define GPIO_MODER_MODE11 GPIO_MODER_MODE11_Msk
  4210. #define GPIO_MODER_MODE11_0 (0x1UL << GPIO_MODER_MODE11_Pos) /*!< 0x00400000 */
  4211. #define GPIO_MODER_MODE11_1 (0x2UL << GPIO_MODER_MODE11_Pos) /*!< 0x00800000 */
  4212. #define GPIO_MODER_MODE12_Pos (24U)
  4213. #define GPIO_MODER_MODE12_Msk (0x3UL << GPIO_MODER_MODE12_Pos) /*!< 0x03000000 */
  4214. #define GPIO_MODER_MODE12 GPIO_MODER_MODE12_Msk
  4215. #define GPIO_MODER_MODE12_0 (0x1UL << GPIO_MODER_MODE12_Pos) /*!< 0x01000000 */
  4216. #define GPIO_MODER_MODE12_1 (0x2UL << GPIO_MODER_MODE12_Pos) /*!< 0x02000000 */
  4217. #define GPIO_MODER_MODE13_Pos (26U)
  4218. #define GPIO_MODER_MODE13_Msk (0x3UL << GPIO_MODER_MODE13_Pos) /*!< 0x0C000000 */
  4219. #define GPIO_MODER_MODE13 GPIO_MODER_MODE13_Msk
  4220. #define GPIO_MODER_MODE13_0 (0x1UL << GPIO_MODER_MODE13_Pos) /*!< 0x04000000 */
  4221. #define GPIO_MODER_MODE13_1 (0x2UL << GPIO_MODER_MODE13_Pos) /*!< 0x08000000 */
  4222. #define GPIO_MODER_MODE14_Pos (28U)
  4223. #define GPIO_MODER_MODE14_Msk (0x3UL << GPIO_MODER_MODE14_Pos) /*!< 0x30000000 */
  4224. #define GPIO_MODER_MODE14 GPIO_MODER_MODE14_Msk
  4225. #define GPIO_MODER_MODE14_0 (0x1UL << GPIO_MODER_MODE14_Pos) /*!< 0x10000000 */
  4226. #define GPIO_MODER_MODE14_1 (0x2UL << GPIO_MODER_MODE14_Pos) /*!< 0x20000000 */
  4227. #define GPIO_MODER_MODE15_Pos (30U)
  4228. #define GPIO_MODER_MODE15_Msk (0x3UL << GPIO_MODER_MODE15_Pos) /*!< 0xC0000000 */
  4229. #define GPIO_MODER_MODE15 GPIO_MODER_MODE15_Msk
  4230. #define GPIO_MODER_MODE15_0 (0x1UL << GPIO_MODER_MODE15_Pos) /*!< 0x40000000 */
  4231. #define GPIO_MODER_MODE15_1 (0x2UL << GPIO_MODER_MODE15_Pos) /*!< 0x80000000 */
  4232. /****************** Bits definition for GPIO_OTYPER register ****************/
  4233. #define GPIO_OTYPER_OT0_Pos (0U)
  4234. #define GPIO_OTYPER_OT0_Msk (0x1UL << GPIO_OTYPER_OT0_Pos) /*!< 0x00000001 */
  4235. #define GPIO_OTYPER_OT0 GPIO_OTYPER_OT0_Msk
  4236. #define GPIO_OTYPER_OT1_Pos (1U)
  4237. #define GPIO_OTYPER_OT1_Msk (0x1UL << GPIO_OTYPER_OT1_Pos) /*!< 0x00000002 */
  4238. #define GPIO_OTYPER_OT1 GPIO_OTYPER_OT1_Msk
  4239. #define GPIO_OTYPER_OT2_Pos (2U)
  4240. #define GPIO_OTYPER_OT2_Msk (0x1UL << GPIO_OTYPER_OT2_Pos) /*!< 0x00000004 */
  4241. #define GPIO_OTYPER_OT2 GPIO_OTYPER_OT2_Msk
  4242. #define GPIO_OTYPER_OT3_Pos (3U)
  4243. #define GPIO_OTYPER_OT3_Msk (0x1UL << GPIO_OTYPER_OT3_Pos) /*!< 0x00000008 */
  4244. #define GPIO_OTYPER_OT3 GPIO_OTYPER_OT3_Msk
  4245. #define GPIO_OTYPER_OT4_Pos (4U)
  4246. #define GPIO_OTYPER_OT4_Msk (0x1UL << GPIO_OTYPER_OT4_Pos) /*!< 0x00000010 */
  4247. #define GPIO_OTYPER_OT4 GPIO_OTYPER_OT4_Msk
  4248. #define GPIO_OTYPER_OT5_Pos (5U)
  4249. #define GPIO_OTYPER_OT5_Msk (0x1UL << GPIO_OTYPER_OT5_Pos) /*!< 0x00000020 */
  4250. #define GPIO_OTYPER_OT5 GPIO_OTYPER_OT5_Msk
  4251. #define GPIO_OTYPER_OT6_Pos (6U)
  4252. #define GPIO_OTYPER_OT6_Msk (0x1UL << GPIO_OTYPER_OT6_Pos) /*!< 0x00000040 */
  4253. #define GPIO_OTYPER_OT6 GPIO_OTYPER_OT6_Msk
  4254. #define GPIO_OTYPER_OT7_Pos (7U)
  4255. #define GPIO_OTYPER_OT7_Msk (0x1UL << GPIO_OTYPER_OT7_Pos) /*!< 0x00000080 */
  4256. #define GPIO_OTYPER_OT7 GPIO_OTYPER_OT7_Msk
  4257. #define GPIO_OTYPER_OT8_Pos (8U)
  4258. #define GPIO_OTYPER_OT8_Msk (0x1UL << GPIO_OTYPER_OT8_Pos) /*!< 0x00000100 */
  4259. #define GPIO_OTYPER_OT8 GPIO_OTYPER_OT8_Msk
  4260. #define GPIO_OTYPER_OT9_Pos (9U)
  4261. #define GPIO_OTYPER_OT9_Msk (0x1UL << GPIO_OTYPER_OT9_Pos) /*!< 0x00000200 */
  4262. #define GPIO_OTYPER_OT9 GPIO_OTYPER_OT9_Msk
  4263. #define GPIO_OTYPER_OT10_Pos (10U)
  4264. #define GPIO_OTYPER_OT10_Msk (0x1UL << GPIO_OTYPER_OT10_Pos) /*!< 0x00000400 */
  4265. #define GPIO_OTYPER_OT10 GPIO_OTYPER_OT10_Msk
  4266. #define GPIO_OTYPER_OT11_Pos (11U)
  4267. #define GPIO_OTYPER_OT11_Msk (0x1UL << GPIO_OTYPER_OT11_Pos) /*!< 0x00000800 */
  4268. #define GPIO_OTYPER_OT11 GPIO_OTYPER_OT11_Msk
  4269. #define GPIO_OTYPER_OT12_Pos (12U)
  4270. #define GPIO_OTYPER_OT12_Msk (0x1UL << GPIO_OTYPER_OT12_Pos) /*!< 0x00001000 */
  4271. #define GPIO_OTYPER_OT12 GPIO_OTYPER_OT12_Msk
  4272. #define GPIO_OTYPER_OT13_Pos (13U)
  4273. #define GPIO_OTYPER_OT13_Msk (0x1UL << GPIO_OTYPER_OT13_Pos) /*!< 0x00002000 */
  4274. #define GPIO_OTYPER_OT13 GPIO_OTYPER_OT13_Msk
  4275. #define GPIO_OTYPER_OT14_Pos (14U)
  4276. #define GPIO_OTYPER_OT14_Msk (0x1UL << GPIO_OTYPER_OT14_Pos) /*!< 0x00004000 */
  4277. #define GPIO_OTYPER_OT14 GPIO_OTYPER_OT14_Msk
  4278. #define GPIO_OTYPER_OT15_Pos (15U)
  4279. #define GPIO_OTYPER_OT15_Msk (0x1UL << GPIO_OTYPER_OT15_Pos) /*!< 0x00008000 */
  4280. #define GPIO_OTYPER_OT15 GPIO_OTYPER_OT15_Msk
  4281. /****************** Bits definition for GPIO_OSPEEDR register ***************/
  4282. #define GPIO_OSPEEDR_OSPEED0_Pos (0U)
  4283. #define GPIO_OSPEEDR_OSPEED0_Msk (0x3UL << GPIO_OSPEEDR_OSPEED0_Pos) /*!< 0x00000003 */
  4284. #define GPIO_OSPEEDR_OSPEED0 GPIO_OSPEEDR_OSPEED0_Msk
  4285. #define GPIO_OSPEEDR_OSPEED0_0 (0x1UL << GPIO_OSPEEDR_OSPEED0_Pos) /*!< 0x00000001 */
  4286. #define GPIO_OSPEEDR_OSPEED0_1 (0x2UL << GPIO_OSPEEDR_OSPEED0_Pos) /*!< 0x00000002 */
  4287. #define GPIO_OSPEEDR_OSPEED1_Pos (2U)
  4288. #define GPIO_OSPEEDR_OSPEED1_Msk (0x3UL << GPIO_OSPEEDR_OSPEED1_Pos) /*!< 0x0000000C */
  4289. #define GPIO_OSPEEDR_OSPEED1 GPIO_OSPEEDR_OSPEED1_Msk
  4290. #define GPIO_OSPEEDR_OSPEED1_0 (0x1UL << GPIO_OSPEEDR_OSPEED1_Pos) /*!< 0x00000004 */
  4291. #define GPIO_OSPEEDR_OSPEED1_1 (0x2UL << GPIO_OSPEEDR_OSPEED1_Pos) /*!< 0x00000008 */
  4292. #define GPIO_OSPEEDR_OSPEED2_Pos (4U)
  4293. #define GPIO_OSPEEDR_OSPEED2_Msk (0x3UL << GPIO_OSPEEDR_OSPEED2_Pos) /*!< 0x00000030 */
  4294. #define GPIO_OSPEEDR_OSPEED2 GPIO_OSPEEDR_OSPEED2_Msk
  4295. #define GPIO_OSPEEDR_OSPEED2_0 (0x1UL << GPIO_OSPEEDR_OSPEED2_Pos) /*!< 0x00000010 */
  4296. #define GPIO_OSPEEDR_OSPEED2_1 (0x2UL << GPIO_OSPEEDR_OSPEED2_Pos) /*!< 0x00000020 */
  4297. #define GPIO_OSPEEDR_OSPEED3_Pos (6U)
  4298. #define GPIO_OSPEEDR_OSPEED3_Msk (0x3UL << GPIO_OSPEEDR_OSPEED3_Pos) /*!< 0x000000C0 */
  4299. #define GPIO_OSPEEDR_OSPEED3 GPIO_OSPEEDR_OSPEED3_Msk
  4300. #define GPIO_OSPEEDR_OSPEED3_0 (0x1UL << GPIO_OSPEEDR_OSPEED3_Pos) /*!< 0x00000040 */
  4301. #define GPIO_OSPEEDR_OSPEED3_1 (0x2UL << GPIO_OSPEEDR_OSPEED3_Pos) /*!< 0x00000080 */
  4302. #define GPIO_OSPEEDR_OSPEED4_Pos (8U)
  4303. #define GPIO_OSPEEDR_OSPEED4_Msk (0x3UL << GPIO_OSPEEDR_OSPEED4_Pos) /*!< 0x00000300 */
  4304. #define GPIO_OSPEEDR_OSPEED4 GPIO_OSPEEDR_OSPEED4_Msk
  4305. #define GPIO_OSPEEDR_OSPEED4_0 (0x1UL << GPIO_OSPEEDR_OSPEED4_Pos) /*!< 0x00000100 */
  4306. #define GPIO_OSPEEDR_OSPEED4_1 (0x2UL << GPIO_OSPEEDR_OSPEED4_Pos) /*!< 0x00000200 */
  4307. #define GPIO_OSPEEDR_OSPEED5_Pos (10U)
  4308. #define GPIO_OSPEEDR_OSPEED5_Msk (0x3UL << GPIO_OSPEEDR_OSPEED5_Pos) /*!< 0x00000C00 */
  4309. #define GPIO_OSPEEDR_OSPEED5 GPIO_OSPEEDR_OSPEED5_Msk
  4310. #define GPIO_OSPEEDR_OSPEED5_0 (0x1UL << GPIO_OSPEEDR_OSPEED5_Pos) /*!< 0x00000400 */
  4311. #define GPIO_OSPEEDR_OSPEED5_1 (0x2UL << GPIO_OSPEEDR_OSPEED5_Pos) /*!< 0x00000800 */
  4312. #define GPIO_OSPEEDR_OSPEED6_Pos (12U)
  4313. #define GPIO_OSPEEDR_OSPEED6_Msk (0x3UL << GPIO_OSPEEDR_OSPEED6_Pos) /*!< 0x00003000 */
  4314. #define GPIO_OSPEEDR_OSPEED6 GPIO_OSPEEDR_OSPEED6_Msk
  4315. #define GPIO_OSPEEDR_OSPEED6_0 (0x1UL << GPIO_OSPEEDR_OSPEED6_Pos) /*!< 0x00001000 */
  4316. #define GPIO_OSPEEDR_OSPEED6_1 (0x2UL << GPIO_OSPEEDR_OSPEED6_Pos) /*!< 0x00002000 */
  4317. #define GPIO_OSPEEDR_OSPEED7_Pos (14U)
  4318. #define GPIO_OSPEEDR_OSPEED7_Msk (0x3UL << GPIO_OSPEEDR_OSPEED7_Pos) /*!< 0x0000C000 */
  4319. #define GPIO_OSPEEDR_OSPEED7 GPIO_OSPEEDR_OSPEED7_Msk
  4320. #define GPIO_OSPEEDR_OSPEED7_0 (0x1UL << GPIO_OSPEEDR_OSPEED7_Pos) /*!< 0x00004000 */
  4321. #define GPIO_OSPEEDR_OSPEED7_1 (0x2UL << GPIO_OSPEEDR_OSPEED7_Pos) /*!< 0x00008000 */
  4322. #define GPIO_OSPEEDR_OSPEED8_Pos (16U)
  4323. #define GPIO_OSPEEDR_OSPEED8_Msk (0x3UL << GPIO_OSPEEDR_OSPEED8_Pos) /*!< 0x00030000 */
  4324. #define GPIO_OSPEEDR_OSPEED8 GPIO_OSPEEDR_OSPEED8_Msk
  4325. #define GPIO_OSPEEDR_OSPEED8_0 (0x1UL << GPIO_OSPEEDR_OSPEED8_Pos) /*!< 0x00010000 */
  4326. #define GPIO_OSPEEDR_OSPEED8_1 (0x2UL << GPIO_OSPEEDR_OSPEED8_Pos) /*!< 0x00020000 */
  4327. #define GPIO_OSPEEDR_OSPEED9_Pos (18U)
  4328. #define GPIO_OSPEEDR_OSPEED9_Msk (0x3UL << GPIO_OSPEEDR_OSPEED9_Pos) /*!< 0x000C0000 */
  4329. #define GPIO_OSPEEDR_OSPEED9 GPIO_OSPEEDR_OSPEED9_Msk
  4330. #define GPIO_OSPEEDR_OSPEED9_0 (0x1UL << GPIO_OSPEEDR_OSPEED9_Pos) /*!< 0x00040000 */
  4331. #define GPIO_OSPEEDR_OSPEED9_1 (0x2UL << GPIO_OSPEEDR_OSPEED9_Pos) /*!< 0x00080000 */
  4332. #define GPIO_OSPEEDR_OSPEED10_Pos (20U)
  4333. #define GPIO_OSPEEDR_OSPEED10_Msk (0x3UL << GPIO_OSPEEDR_OSPEED10_Pos) /*!< 0x00300000 */
  4334. #define GPIO_OSPEEDR_OSPEED10 GPIO_OSPEEDR_OSPEED10_Msk
  4335. #define GPIO_OSPEEDR_OSPEED10_0 (0x1UL << GPIO_OSPEEDR_OSPEED10_Pos) /*!< 0x00100000 */
  4336. #define GPIO_OSPEEDR_OSPEED10_1 (0x2UL << GPIO_OSPEEDR_OSPEED10_Pos) /*!< 0x00200000 */
  4337. #define GPIO_OSPEEDR_OSPEED11_Pos (22U)
  4338. #define GPIO_OSPEEDR_OSPEED11_Msk (0x3UL << GPIO_OSPEEDR_OSPEED11_Pos) /*!< 0x00C00000 */
  4339. #define GPIO_OSPEEDR_OSPEED11 GPIO_OSPEEDR_OSPEED11_Msk
  4340. #define GPIO_OSPEEDR_OSPEED11_0 (0x1UL << GPIO_OSPEEDR_OSPEED11_Pos) /*!< 0x00400000 */
  4341. #define GPIO_OSPEEDR_OSPEED11_1 (0x2UL << GPIO_OSPEEDR_OSPEED11_Pos) /*!< 0x00800000 */
  4342. #define GPIO_OSPEEDR_OSPEED12_Pos (24U)
  4343. #define GPIO_OSPEEDR_OSPEED12_Msk (0x3UL << GPIO_OSPEEDR_OSPEED12_Pos) /*!< 0x03000000 */
  4344. #define GPIO_OSPEEDR_OSPEED12 GPIO_OSPEEDR_OSPEED12_Msk
  4345. #define GPIO_OSPEEDR_OSPEED12_0 (0x1UL << GPIO_OSPEEDR_OSPEED12_Pos) /*!< 0x01000000 */
  4346. #define GPIO_OSPEEDR_OSPEED12_1 (0x2UL << GPIO_OSPEEDR_OSPEED12_Pos) /*!< 0x02000000 */
  4347. #define GPIO_OSPEEDR_OSPEED13_Pos (26U)
  4348. #define GPIO_OSPEEDR_OSPEED13_Msk (0x3UL << GPIO_OSPEEDR_OSPEED13_Pos) /*!< 0x0C000000 */
  4349. #define GPIO_OSPEEDR_OSPEED13 GPIO_OSPEEDR_OSPEED13_Msk
  4350. #define GPIO_OSPEEDR_OSPEED13_0 (0x1UL << GPIO_OSPEEDR_OSPEED13_Pos) /*!< 0x04000000 */
  4351. #define GPIO_OSPEEDR_OSPEED13_1 (0x2UL << GPIO_OSPEEDR_OSPEED13_Pos) /*!< 0x08000000 */
  4352. #define GPIO_OSPEEDR_OSPEED14_Pos (28U)
  4353. #define GPIO_OSPEEDR_OSPEED14_Msk (0x3UL << GPIO_OSPEEDR_OSPEED14_Pos) /*!< 0x30000000 */
  4354. #define GPIO_OSPEEDR_OSPEED14 GPIO_OSPEEDR_OSPEED14_Msk
  4355. #define GPIO_OSPEEDR_OSPEED14_0 (0x1UL << GPIO_OSPEEDR_OSPEED14_Pos) /*!< 0x10000000 */
  4356. #define GPIO_OSPEEDR_OSPEED14_1 (0x2UL << GPIO_OSPEEDR_OSPEED14_Pos) /*!< 0x20000000 */
  4357. #define GPIO_OSPEEDR_OSPEED15_Pos (30U)
  4358. #define GPIO_OSPEEDR_OSPEED15_Msk (0x3UL << GPIO_OSPEEDR_OSPEED15_Pos) /*!< 0xC0000000 */
  4359. #define GPIO_OSPEEDR_OSPEED15 GPIO_OSPEEDR_OSPEED15_Msk
  4360. #define GPIO_OSPEEDR_OSPEED15_0 (0x1UL << GPIO_OSPEEDR_OSPEED15_Pos) /*!< 0x40000000 */
  4361. #define GPIO_OSPEEDR_OSPEED15_1 (0x2UL << GPIO_OSPEEDR_OSPEED15_Pos) /*!< 0x80000000 */
  4362. /****************** Bits definition for GPIO_PUPDR register *****************/
  4363. #define GPIO_PUPDR_PUPD0_Pos (0U)
  4364. #define GPIO_PUPDR_PUPD0_Msk (0x3UL << GPIO_PUPDR_PUPD0_Pos) /*!< 0x00000003 */
  4365. #define GPIO_PUPDR_PUPD0 GPIO_PUPDR_PUPD0_Msk
  4366. #define GPIO_PUPDR_PUPD0_0 (0x1UL << GPIO_PUPDR_PUPD0_Pos) /*!< 0x00000001 */
  4367. #define GPIO_PUPDR_PUPD0_1 (0x2UL << GPIO_PUPDR_PUPD0_Pos) /*!< 0x00000002 */
  4368. #define GPIO_PUPDR_PUPD1_Pos (2U)
  4369. #define GPIO_PUPDR_PUPD1_Msk (0x3UL << GPIO_PUPDR_PUPD1_Pos) /*!< 0x0000000C */
  4370. #define GPIO_PUPDR_PUPD1 GPIO_PUPDR_PUPD1_Msk
  4371. #define GPIO_PUPDR_PUPD1_0 (0x1UL << GPIO_PUPDR_PUPD1_Pos) /*!< 0x00000004 */
  4372. #define GPIO_PUPDR_PUPD1_1 (0x2UL << GPIO_PUPDR_PUPD1_Pos) /*!< 0x00000008 */
  4373. #define GPIO_PUPDR_PUPD2_Pos (4U)
  4374. #define GPIO_PUPDR_PUPD2_Msk (0x3UL << GPIO_PUPDR_PUPD2_Pos) /*!< 0x00000030 */
  4375. #define GPIO_PUPDR_PUPD2 GPIO_PUPDR_PUPD2_Msk
  4376. #define GPIO_PUPDR_PUPD2_0 (0x1UL << GPIO_PUPDR_PUPD2_Pos) /*!< 0x00000010 */
  4377. #define GPIO_PUPDR_PUPD2_1 (0x2UL << GPIO_PUPDR_PUPD2_Pos) /*!< 0x00000020 */
  4378. #define GPIO_PUPDR_PUPD3_Pos (6U)
  4379. #define GPIO_PUPDR_PUPD3_Msk (0x3UL << GPIO_PUPDR_PUPD3_Pos) /*!< 0x000000C0 */
  4380. #define GPIO_PUPDR_PUPD3 GPIO_PUPDR_PUPD3_Msk
  4381. #define GPIO_PUPDR_PUPD3_0 (0x1UL << GPIO_PUPDR_PUPD3_Pos) /*!< 0x00000040 */
  4382. #define GPIO_PUPDR_PUPD3_1 (0x2UL << GPIO_PUPDR_PUPD3_Pos) /*!< 0x00000080 */
  4383. #define GPIO_PUPDR_PUPD4_Pos (8U)
  4384. #define GPIO_PUPDR_PUPD4_Msk (0x3UL << GPIO_PUPDR_PUPD4_Pos) /*!< 0x00000300 */
  4385. #define GPIO_PUPDR_PUPD4 GPIO_PUPDR_PUPD4_Msk
  4386. #define GPIO_PUPDR_PUPD4_0 (0x1UL << GPIO_PUPDR_PUPD4_Pos) /*!< 0x00000100 */
  4387. #define GPIO_PUPDR_PUPD4_1 (0x2UL << GPIO_PUPDR_PUPD4_Pos) /*!< 0x00000200 */
  4388. #define GPIO_PUPDR_PUPD5_Pos (10U)
  4389. #define GPIO_PUPDR_PUPD5_Msk (0x3UL << GPIO_PUPDR_PUPD5_Pos) /*!< 0x00000C00 */
  4390. #define GPIO_PUPDR_PUPD5 GPIO_PUPDR_PUPD5_Msk
  4391. #define GPIO_PUPDR_PUPD5_0 (0x1UL << GPIO_PUPDR_PUPD5_Pos) /*!< 0x00000400 */
  4392. #define GPIO_PUPDR_PUPD5_1 (0x2UL << GPIO_PUPDR_PUPD5_Pos) /*!< 0x00000800 */
  4393. #define GPIO_PUPDR_PUPD6_Pos (12U)
  4394. #define GPIO_PUPDR_PUPD6_Msk (0x3UL << GPIO_PUPDR_PUPD6_Pos) /*!< 0x00003000 */
  4395. #define GPIO_PUPDR_PUPD6 GPIO_PUPDR_PUPD6_Msk
  4396. #define GPIO_PUPDR_PUPD6_0 (0x1UL << GPIO_PUPDR_PUPD6_Pos) /*!< 0x00001000 */
  4397. #define GPIO_PUPDR_PUPD6_1 (0x2UL << GPIO_PUPDR_PUPD6_Pos) /*!< 0x00002000 */
  4398. #define GPIO_PUPDR_PUPD7_Pos (14U)
  4399. #define GPIO_PUPDR_PUPD7_Msk (0x3UL << GPIO_PUPDR_PUPD7_Pos) /*!< 0x0000C000 */
  4400. #define GPIO_PUPDR_PUPD7 GPIO_PUPDR_PUPD7_Msk
  4401. #define GPIO_PUPDR_PUPD7_0 (0x1UL << GPIO_PUPDR_PUPD7_Pos) /*!< 0x00004000 */
  4402. #define GPIO_PUPDR_PUPD7_1 (0x2UL << GPIO_PUPDR_PUPD7_Pos) /*!< 0x00008000 */
  4403. #define GPIO_PUPDR_PUPD8_Pos (16U)
  4404. #define GPIO_PUPDR_PUPD8_Msk (0x3UL << GPIO_PUPDR_PUPD8_Pos) /*!< 0x00030000 */
  4405. #define GPIO_PUPDR_PUPD8 GPIO_PUPDR_PUPD8_Msk
  4406. #define GPIO_PUPDR_PUPD8_0 (0x1UL << GPIO_PUPDR_PUPD8_Pos) /*!< 0x00010000 */
  4407. #define GPIO_PUPDR_PUPD8_1 (0x2UL << GPIO_PUPDR_PUPD8_Pos) /*!< 0x00020000 */
  4408. #define GPIO_PUPDR_PUPD9_Pos (18U)
  4409. #define GPIO_PUPDR_PUPD9_Msk (0x3UL << GPIO_PUPDR_PUPD9_Pos) /*!< 0x000C0000 */
  4410. #define GPIO_PUPDR_PUPD9 GPIO_PUPDR_PUPD9_Msk
  4411. #define GPIO_PUPDR_PUPD9_0 (0x1UL << GPIO_PUPDR_PUPD9_Pos) /*!< 0x00040000 */
  4412. #define GPIO_PUPDR_PUPD9_1 (0x2UL << GPIO_PUPDR_PUPD9_Pos) /*!< 0x00080000 */
  4413. #define GPIO_PUPDR_PUPD10_Pos (20U)
  4414. #define GPIO_PUPDR_PUPD10_Msk (0x3UL << GPIO_PUPDR_PUPD10_Pos) /*!< 0x00300000 */
  4415. #define GPIO_PUPDR_PUPD10 GPIO_PUPDR_PUPD10_Msk
  4416. #define GPIO_PUPDR_PUPD10_0 (0x1UL << GPIO_PUPDR_PUPD10_Pos) /*!< 0x00100000 */
  4417. #define GPIO_PUPDR_PUPD10_1 (0x2UL << GPIO_PUPDR_PUPD10_Pos) /*!< 0x00200000 */
  4418. #define GPIO_PUPDR_PUPD11_Pos (22U)
  4419. #define GPIO_PUPDR_PUPD11_Msk (0x3UL << GPIO_PUPDR_PUPD11_Pos) /*!< 0x00C00000 */
  4420. #define GPIO_PUPDR_PUPD11 GPIO_PUPDR_PUPD11_Msk
  4421. #define GPIO_PUPDR_PUPD11_0 (0x1UL << GPIO_PUPDR_PUPD11_Pos) /*!< 0x00400000 */
  4422. #define GPIO_PUPDR_PUPD11_1 (0x2UL << GPIO_PUPDR_PUPD11_Pos) /*!< 0x00800000 */
  4423. #define GPIO_PUPDR_PUPD12_Pos (24U)
  4424. #define GPIO_PUPDR_PUPD12_Msk (0x3UL << GPIO_PUPDR_PUPD12_Pos) /*!< 0x03000000 */
  4425. #define GPIO_PUPDR_PUPD12 GPIO_PUPDR_PUPD12_Msk
  4426. #define GPIO_PUPDR_PUPD12_0 (0x1UL << GPIO_PUPDR_PUPD12_Pos) /*!< 0x01000000 */
  4427. #define GPIO_PUPDR_PUPD12_1 (0x2UL << GPIO_PUPDR_PUPD12_Pos) /*!< 0x02000000 */
  4428. #define GPIO_PUPDR_PUPD13_Pos (26U)
  4429. #define GPIO_PUPDR_PUPD13_Msk (0x3UL << GPIO_PUPDR_PUPD13_Pos) /*!< 0x0C000000 */
  4430. #define GPIO_PUPDR_PUPD13 GPIO_PUPDR_PUPD13_Msk
  4431. #define GPIO_PUPDR_PUPD13_0 (0x1UL << GPIO_PUPDR_PUPD13_Pos) /*!< 0x04000000 */
  4432. #define GPIO_PUPDR_PUPD13_1 (0x2UL << GPIO_PUPDR_PUPD13_Pos) /*!< 0x08000000 */
  4433. #define GPIO_PUPDR_PUPD14_Pos (28U)
  4434. #define GPIO_PUPDR_PUPD14_Msk (0x3UL << GPIO_PUPDR_PUPD14_Pos) /*!< 0x30000000 */
  4435. #define GPIO_PUPDR_PUPD14 GPIO_PUPDR_PUPD14_Msk
  4436. #define GPIO_PUPDR_PUPD14_0 (0x1UL << GPIO_PUPDR_PUPD14_Pos) /*!< 0x10000000 */
  4437. #define GPIO_PUPDR_PUPD14_1 (0x2UL << GPIO_PUPDR_PUPD14_Pos) /*!< 0x20000000 */
  4438. #define GPIO_PUPDR_PUPD15_Pos (30U)
  4439. #define GPIO_PUPDR_PUPD15_Msk (0x3UL << GPIO_PUPDR_PUPD15_Pos) /*!< 0xC0000000 */
  4440. #define GPIO_PUPDR_PUPD15 GPIO_PUPDR_PUPD15_Msk
  4441. #define GPIO_PUPDR_PUPD15_0 (0x1UL << GPIO_PUPDR_PUPD15_Pos) /*!< 0x40000000 */
  4442. #define GPIO_PUPDR_PUPD15_1 (0x2UL << GPIO_PUPDR_PUPD15_Pos) /*!< 0x80000000 */
  4443. /****************** Bits definition for GPIO_IDR register *******************/
  4444. #define GPIO_IDR_ID0_Pos (0U)
  4445. #define GPIO_IDR_ID0_Msk (0x1UL << GPIO_IDR_ID0_Pos) /*!< 0x00000001 */
  4446. #define GPIO_IDR_ID0 GPIO_IDR_ID0_Msk
  4447. #define GPIO_IDR_ID1_Pos (1U)
  4448. #define GPIO_IDR_ID1_Msk (0x1UL << GPIO_IDR_ID1_Pos) /*!< 0x00000002 */
  4449. #define GPIO_IDR_ID1 GPIO_IDR_ID1_Msk
  4450. #define GPIO_IDR_ID2_Pos (2U)
  4451. #define GPIO_IDR_ID2_Msk (0x1UL << GPIO_IDR_ID2_Pos) /*!< 0x00000004 */
  4452. #define GPIO_IDR_ID2 GPIO_IDR_ID2_Msk
  4453. #define GPIO_IDR_ID3_Pos (3U)
  4454. #define GPIO_IDR_ID3_Msk (0x1UL << GPIO_IDR_ID3_Pos) /*!< 0x00000008 */
  4455. #define GPIO_IDR_ID3 GPIO_IDR_ID3_Msk
  4456. #define GPIO_IDR_ID4_Pos (4U)
  4457. #define GPIO_IDR_ID4_Msk (0x1UL << GPIO_IDR_ID4_Pos) /*!< 0x00000010 */
  4458. #define GPIO_IDR_ID4 GPIO_IDR_ID4_Msk
  4459. #define GPIO_IDR_ID5_Pos (5U)
  4460. #define GPIO_IDR_ID5_Msk (0x1UL << GPIO_IDR_ID5_Pos) /*!< 0x00000020 */
  4461. #define GPIO_IDR_ID5 GPIO_IDR_ID5_Msk
  4462. #define GPIO_IDR_ID6_Pos (6U)
  4463. #define GPIO_IDR_ID6_Msk (0x1UL << GPIO_IDR_ID6_Pos) /*!< 0x00000040 */
  4464. #define GPIO_IDR_ID6 GPIO_IDR_ID6_Msk
  4465. #define GPIO_IDR_ID7_Pos (7U)
  4466. #define GPIO_IDR_ID7_Msk (0x1UL << GPIO_IDR_ID7_Pos) /*!< 0x00000080 */
  4467. #define GPIO_IDR_ID7 GPIO_IDR_ID7_Msk
  4468. #define GPIO_IDR_ID8_Pos (8U)
  4469. #define GPIO_IDR_ID8_Msk (0x1UL << GPIO_IDR_ID8_Pos) /*!< 0x00000100 */
  4470. #define GPIO_IDR_ID8 GPIO_IDR_ID8_Msk
  4471. #define GPIO_IDR_ID9_Pos (9U)
  4472. #define GPIO_IDR_ID9_Msk (0x1UL << GPIO_IDR_ID9_Pos) /*!< 0x00000200 */
  4473. #define GPIO_IDR_ID9 GPIO_IDR_ID9_Msk
  4474. #define GPIO_IDR_ID10_Pos (10U)
  4475. #define GPIO_IDR_ID10_Msk (0x1UL << GPIO_IDR_ID10_Pos) /*!< 0x00000400 */
  4476. #define GPIO_IDR_ID10 GPIO_IDR_ID10_Msk
  4477. #define GPIO_IDR_ID11_Pos (11U)
  4478. #define GPIO_IDR_ID11_Msk (0x1UL << GPIO_IDR_ID11_Pos) /*!< 0x00000800 */
  4479. #define GPIO_IDR_ID11 GPIO_IDR_ID11_Msk
  4480. #define GPIO_IDR_ID12_Pos (12U)
  4481. #define GPIO_IDR_ID12_Msk (0x1UL << GPIO_IDR_ID12_Pos) /*!< 0x00001000 */
  4482. #define GPIO_IDR_ID12 GPIO_IDR_ID12_Msk
  4483. #define GPIO_IDR_ID13_Pos (13U)
  4484. #define GPIO_IDR_ID13_Msk (0x1UL << GPIO_IDR_ID13_Pos) /*!< 0x00002000 */
  4485. #define GPIO_IDR_ID13 GPIO_IDR_ID13_Msk
  4486. #define GPIO_IDR_ID14_Pos (14U)
  4487. #define GPIO_IDR_ID14_Msk (0x1UL << GPIO_IDR_ID14_Pos) /*!< 0x00004000 */
  4488. #define GPIO_IDR_ID14 GPIO_IDR_ID14_Msk
  4489. #define GPIO_IDR_ID15_Pos (15U)
  4490. #define GPIO_IDR_ID15_Msk (0x1UL << GPIO_IDR_ID15_Pos) /*!< 0x00008000 */
  4491. #define GPIO_IDR_ID15 GPIO_IDR_ID15_Msk
  4492. /****************** Bits definition for GPIO_ODR register *******************/
  4493. #define GPIO_ODR_OD0_Pos (0U)
  4494. #define GPIO_ODR_OD0_Msk (0x1UL << GPIO_ODR_OD0_Pos) /*!< 0x00000001 */
  4495. #define GPIO_ODR_OD0 GPIO_ODR_OD0_Msk
  4496. #define GPIO_ODR_OD1_Pos (1U)
  4497. #define GPIO_ODR_OD1_Msk (0x1UL << GPIO_ODR_OD1_Pos) /*!< 0x00000002 */
  4498. #define GPIO_ODR_OD1 GPIO_ODR_OD1_Msk
  4499. #define GPIO_ODR_OD2_Pos (2U)
  4500. #define GPIO_ODR_OD2_Msk (0x1UL << GPIO_ODR_OD2_Pos) /*!< 0x00000004 */
  4501. #define GPIO_ODR_OD2 GPIO_ODR_OD2_Msk
  4502. #define GPIO_ODR_OD3_Pos (3U)
  4503. #define GPIO_ODR_OD3_Msk (0x1UL << GPIO_ODR_OD3_Pos) /*!< 0x00000008 */
  4504. #define GPIO_ODR_OD3 GPIO_ODR_OD3_Msk
  4505. #define GPIO_ODR_OD4_Pos (4U)
  4506. #define GPIO_ODR_OD4_Msk (0x1UL << GPIO_ODR_OD4_Pos) /*!< 0x00000010 */
  4507. #define GPIO_ODR_OD4 GPIO_ODR_OD4_Msk
  4508. #define GPIO_ODR_OD5_Pos (5U)
  4509. #define GPIO_ODR_OD5_Msk (0x1UL << GPIO_ODR_OD5_Pos) /*!< 0x00000020 */
  4510. #define GPIO_ODR_OD5 GPIO_ODR_OD5_Msk
  4511. #define GPIO_ODR_OD6_Pos (6U)
  4512. #define GPIO_ODR_OD6_Msk (0x1UL << GPIO_ODR_OD6_Pos) /*!< 0x00000040 */
  4513. #define GPIO_ODR_OD6 GPIO_ODR_OD6_Msk
  4514. #define GPIO_ODR_OD7_Pos (7U)
  4515. #define GPIO_ODR_OD7_Msk (0x1UL << GPIO_ODR_OD7_Pos) /*!< 0x00000080 */
  4516. #define GPIO_ODR_OD7 GPIO_ODR_OD7_Msk
  4517. #define GPIO_ODR_OD8_Pos (8U)
  4518. #define GPIO_ODR_OD8_Msk (0x1UL << GPIO_ODR_OD8_Pos) /*!< 0x00000100 */
  4519. #define GPIO_ODR_OD8 GPIO_ODR_OD8_Msk
  4520. #define GPIO_ODR_OD9_Pos (9U)
  4521. #define GPIO_ODR_OD9_Msk (0x1UL << GPIO_ODR_OD9_Pos) /*!< 0x00000200 */
  4522. #define GPIO_ODR_OD9 GPIO_ODR_OD9_Msk
  4523. #define GPIO_ODR_OD10_Pos (10U)
  4524. #define GPIO_ODR_OD10_Msk (0x1UL << GPIO_ODR_OD10_Pos) /*!< 0x00000400 */
  4525. #define GPIO_ODR_OD10 GPIO_ODR_OD10_Msk
  4526. #define GPIO_ODR_OD11_Pos (11U)
  4527. #define GPIO_ODR_OD11_Msk (0x1UL << GPIO_ODR_OD11_Pos) /*!< 0x00000800 */
  4528. #define GPIO_ODR_OD11 GPIO_ODR_OD11_Msk
  4529. #define GPIO_ODR_OD12_Pos (12U)
  4530. #define GPIO_ODR_OD12_Msk (0x1UL << GPIO_ODR_OD12_Pos) /*!< 0x00001000 */
  4531. #define GPIO_ODR_OD12 GPIO_ODR_OD12_Msk
  4532. #define GPIO_ODR_OD13_Pos (13U)
  4533. #define GPIO_ODR_OD13_Msk (0x1UL << GPIO_ODR_OD13_Pos) /*!< 0x00002000 */
  4534. #define GPIO_ODR_OD13 GPIO_ODR_OD13_Msk
  4535. #define GPIO_ODR_OD14_Pos (14U)
  4536. #define GPIO_ODR_OD14_Msk (0x1UL << GPIO_ODR_OD14_Pos) /*!< 0x00004000 */
  4537. #define GPIO_ODR_OD14 GPIO_ODR_OD14_Msk
  4538. #define GPIO_ODR_OD15_Pos (15U)
  4539. #define GPIO_ODR_OD15_Msk (0x1UL << GPIO_ODR_OD15_Pos) /*!< 0x00008000 */
  4540. #define GPIO_ODR_OD15 GPIO_ODR_OD15_Msk
  4541. /****************** Bits definition for GPIO_BSRR register ******************/
  4542. #define GPIO_BSRR_BS0_Pos (0U)
  4543. #define GPIO_BSRR_BS0_Msk (0x1UL << GPIO_BSRR_BS0_Pos) /*!< 0x00000001 */
  4544. #define GPIO_BSRR_BS0 GPIO_BSRR_BS0_Msk
  4545. #define GPIO_BSRR_BS1_Pos (1U)
  4546. #define GPIO_BSRR_BS1_Msk (0x1UL << GPIO_BSRR_BS1_Pos) /*!< 0x00000002 */
  4547. #define GPIO_BSRR_BS1 GPIO_BSRR_BS1_Msk
  4548. #define GPIO_BSRR_BS2_Pos (2U)
  4549. #define GPIO_BSRR_BS2_Msk (0x1UL << GPIO_BSRR_BS2_Pos) /*!< 0x00000004 */
  4550. #define GPIO_BSRR_BS2 GPIO_BSRR_BS2_Msk
  4551. #define GPIO_BSRR_BS3_Pos (3U)
  4552. #define GPIO_BSRR_BS3_Msk (0x1UL << GPIO_BSRR_BS3_Pos) /*!< 0x00000008 */
  4553. #define GPIO_BSRR_BS3 GPIO_BSRR_BS3_Msk
  4554. #define GPIO_BSRR_BS4_Pos (4U)
  4555. #define GPIO_BSRR_BS4_Msk (0x1UL << GPIO_BSRR_BS4_Pos) /*!< 0x00000010 */
  4556. #define GPIO_BSRR_BS4 GPIO_BSRR_BS4_Msk
  4557. #define GPIO_BSRR_BS5_Pos (5U)
  4558. #define GPIO_BSRR_BS5_Msk (0x1UL << GPIO_BSRR_BS5_Pos) /*!< 0x00000020 */
  4559. #define GPIO_BSRR_BS5 GPIO_BSRR_BS5_Msk
  4560. #define GPIO_BSRR_BS6_Pos (6U)
  4561. #define GPIO_BSRR_BS6_Msk (0x1UL << GPIO_BSRR_BS6_Pos) /*!< 0x00000040 */
  4562. #define GPIO_BSRR_BS6 GPIO_BSRR_BS6_Msk
  4563. #define GPIO_BSRR_BS7_Pos (7U)
  4564. #define GPIO_BSRR_BS7_Msk (0x1UL << GPIO_BSRR_BS7_Pos) /*!< 0x00000080 */
  4565. #define GPIO_BSRR_BS7 GPIO_BSRR_BS7_Msk
  4566. #define GPIO_BSRR_BS8_Pos (8U)
  4567. #define GPIO_BSRR_BS8_Msk (0x1UL << GPIO_BSRR_BS8_Pos) /*!< 0x00000100 */
  4568. #define GPIO_BSRR_BS8 GPIO_BSRR_BS8_Msk
  4569. #define GPIO_BSRR_BS9_Pos (9U)
  4570. #define GPIO_BSRR_BS9_Msk (0x1UL << GPIO_BSRR_BS9_Pos) /*!< 0x00000200 */
  4571. #define GPIO_BSRR_BS9 GPIO_BSRR_BS9_Msk
  4572. #define GPIO_BSRR_BS10_Pos (10U)
  4573. #define GPIO_BSRR_BS10_Msk (0x1UL << GPIO_BSRR_BS10_Pos) /*!< 0x00000400 */
  4574. #define GPIO_BSRR_BS10 GPIO_BSRR_BS10_Msk
  4575. #define GPIO_BSRR_BS11_Pos (11U)
  4576. #define GPIO_BSRR_BS11_Msk (0x1UL << GPIO_BSRR_BS11_Pos) /*!< 0x00000800 */
  4577. #define GPIO_BSRR_BS11 GPIO_BSRR_BS11_Msk
  4578. #define GPIO_BSRR_BS12_Pos (12U)
  4579. #define GPIO_BSRR_BS12_Msk (0x1UL << GPIO_BSRR_BS12_Pos) /*!< 0x00001000 */
  4580. #define GPIO_BSRR_BS12 GPIO_BSRR_BS12_Msk
  4581. #define GPIO_BSRR_BS13_Pos (13U)
  4582. #define GPIO_BSRR_BS13_Msk (0x1UL << GPIO_BSRR_BS13_Pos) /*!< 0x00002000 */
  4583. #define GPIO_BSRR_BS13 GPIO_BSRR_BS13_Msk
  4584. #define GPIO_BSRR_BS14_Pos (14U)
  4585. #define GPIO_BSRR_BS14_Msk (0x1UL << GPIO_BSRR_BS14_Pos) /*!< 0x00004000 */
  4586. #define GPIO_BSRR_BS14 GPIO_BSRR_BS14_Msk
  4587. #define GPIO_BSRR_BS15_Pos (15U)
  4588. #define GPIO_BSRR_BS15_Msk (0x1UL << GPIO_BSRR_BS15_Pos) /*!< 0x00008000 */
  4589. #define GPIO_BSRR_BS15 GPIO_BSRR_BS15_Msk
  4590. #define GPIO_BSRR_BR0_Pos (16U)
  4591. #define GPIO_BSRR_BR0_Msk (0x1UL << GPIO_BSRR_BR0_Pos) /*!< 0x00010000 */
  4592. #define GPIO_BSRR_BR0 GPIO_BSRR_BR0_Msk
  4593. #define GPIO_BSRR_BR1_Pos (17U)
  4594. #define GPIO_BSRR_BR1_Msk (0x1UL << GPIO_BSRR_BR1_Pos) /*!< 0x00020000 */
  4595. #define GPIO_BSRR_BR1 GPIO_BSRR_BR1_Msk
  4596. #define GPIO_BSRR_BR2_Pos (18U)
  4597. #define GPIO_BSRR_BR2_Msk (0x1UL << GPIO_BSRR_BR2_Pos) /*!< 0x00040000 */
  4598. #define GPIO_BSRR_BR2 GPIO_BSRR_BR2_Msk
  4599. #define GPIO_BSRR_BR3_Pos (19U)
  4600. #define GPIO_BSRR_BR3_Msk (0x1UL << GPIO_BSRR_BR3_Pos) /*!< 0x00080000 */
  4601. #define GPIO_BSRR_BR3 GPIO_BSRR_BR3_Msk
  4602. #define GPIO_BSRR_BR4_Pos (20U)
  4603. #define GPIO_BSRR_BR4_Msk (0x1UL << GPIO_BSRR_BR4_Pos) /*!< 0x00100000 */
  4604. #define GPIO_BSRR_BR4 GPIO_BSRR_BR4_Msk
  4605. #define GPIO_BSRR_BR5_Pos (21U)
  4606. #define GPIO_BSRR_BR5_Msk (0x1UL << GPIO_BSRR_BR5_Pos) /*!< 0x00200000 */
  4607. #define GPIO_BSRR_BR5 GPIO_BSRR_BR5_Msk
  4608. #define GPIO_BSRR_BR6_Pos (22U)
  4609. #define GPIO_BSRR_BR6_Msk (0x1UL << GPIO_BSRR_BR6_Pos) /*!< 0x00400000 */
  4610. #define GPIO_BSRR_BR6 GPIO_BSRR_BR6_Msk
  4611. #define GPIO_BSRR_BR7_Pos (23U)
  4612. #define GPIO_BSRR_BR7_Msk (0x1UL << GPIO_BSRR_BR7_Pos) /*!< 0x00800000 */
  4613. #define GPIO_BSRR_BR7 GPIO_BSRR_BR7_Msk
  4614. #define GPIO_BSRR_BR8_Pos (24U)
  4615. #define GPIO_BSRR_BR8_Msk (0x1UL << GPIO_BSRR_BR8_Pos) /*!< 0x01000000 */
  4616. #define GPIO_BSRR_BR8 GPIO_BSRR_BR8_Msk
  4617. #define GPIO_BSRR_BR9_Pos (25U)
  4618. #define GPIO_BSRR_BR9_Msk (0x1UL << GPIO_BSRR_BR9_Pos) /*!< 0x02000000 */
  4619. #define GPIO_BSRR_BR9 GPIO_BSRR_BR9_Msk
  4620. #define GPIO_BSRR_BR10_Pos (26U)
  4621. #define GPIO_BSRR_BR10_Msk (0x1UL << GPIO_BSRR_BR10_Pos) /*!< 0x04000000 */
  4622. #define GPIO_BSRR_BR10 GPIO_BSRR_BR10_Msk
  4623. #define GPIO_BSRR_BR11_Pos (27U)
  4624. #define GPIO_BSRR_BR11_Msk (0x1UL << GPIO_BSRR_BR11_Pos) /*!< 0x08000000 */
  4625. #define GPIO_BSRR_BR11 GPIO_BSRR_BR11_Msk
  4626. #define GPIO_BSRR_BR12_Pos (28U)
  4627. #define GPIO_BSRR_BR12_Msk (0x1UL << GPIO_BSRR_BR12_Pos) /*!< 0x10000000 */
  4628. #define GPIO_BSRR_BR12 GPIO_BSRR_BR12_Msk
  4629. #define GPIO_BSRR_BR13_Pos (29U)
  4630. #define GPIO_BSRR_BR13_Msk (0x1UL << GPIO_BSRR_BR13_Pos) /*!< 0x20000000 */
  4631. #define GPIO_BSRR_BR13 GPIO_BSRR_BR13_Msk
  4632. #define GPIO_BSRR_BR14_Pos (30U)
  4633. #define GPIO_BSRR_BR14_Msk (0x1UL << GPIO_BSRR_BR14_Pos) /*!< 0x40000000 */
  4634. #define GPIO_BSRR_BR14 GPIO_BSRR_BR14_Msk
  4635. #define GPIO_BSRR_BR15_Pos (31U)
  4636. #define GPIO_BSRR_BR15_Msk (0x1UL << GPIO_BSRR_BR15_Pos) /*!< 0x80000000 */
  4637. #define GPIO_BSRR_BR15 GPIO_BSRR_BR15_Msk
  4638. /****************** Bit definition for GPIO_LCKR register *********************/
  4639. #define GPIO_LCKR_LCK0_Pos (0U)
  4640. #define GPIO_LCKR_LCK0_Msk (0x1UL << GPIO_LCKR_LCK0_Pos) /*!< 0x00000001 */
  4641. #define GPIO_LCKR_LCK0 GPIO_LCKR_LCK0_Msk
  4642. #define GPIO_LCKR_LCK1_Pos (1U)
  4643. #define GPIO_LCKR_LCK1_Msk (0x1UL << GPIO_LCKR_LCK1_Pos) /*!< 0x00000002 */
  4644. #define GPIO_LCKR_LCK1 GPIO_LCKR_LCK1_Msk
  4645. #define GPIO_LCKR_LCK2_Pos (2U)
  4646. #define GPIO_LCKR_LCK2_Msk (0x1UL << GPIO_LCKR_LCK2_Pos) /*!< 0x00000004 */
  4647. #define GPIO_LCKR_LCK2 GPIO_LCKR_LCK2_Msk
  4648. #define GPIO_LCKR_LCK3_Pos (3U)
  4649. #define GPIO_LCKR_LCK3_Msk (0x1UL << GPIO_LCKR_LCK3_Pos) /*!< 0x00000008 */
  4650. #define GPIO_LCKR_LCK3 GPIO_LCKR_LCK3_Msk
  4651. #define GPIO_LCKR_LCK4_Pos (4U)
  4652. #define GPIO_LCKR_LCK4_Msk (0x1UL << GPIO_LCKR_LCK4_Pos) /*!< 0x00000010 */
  4653. #define GPIO_LCKR_LCK4 GPIO_LCKR_LCK4_Msk
  4654. #define GPIO_LCKR_LCK5_Pos (5U)
  4655. #define GPIO_LCKR_LCK5_Msk (0x1UL << GPIO_LCKR_LCK5_Pos) /*!< 0x00000020 */
  4656. #define GPIO_LCKR_LCK5 GPIO_LCKR_LCK5_Msk
  4657. #define GPIO_LCKR_LCK6_Pos (6U)
  4658. #define GPIO_LCKR_LCK6_Msk (0x1UL << GPIO_LCKR_LCK6_Pos) /*!< 0x00000040 */
  4659. #define GPIO_LCKR_LCK6 GPIO_LCKR_LCK6_Msk
  4660. #define GPIO_LCKR_LCK7_Pos (7U)
  4661. #define GPIO_LCKR_LCK7_Msk (0x1UL << GPIO_LCKR_LCK7_Pos) /*!< 0x00000080 */
  4662. #define GPIO_LCKR_LCK7 GPIO_LCKR_LCK7_Msk
  4663. #define GPIO_LCKR_LCK8_Pos (8U)
  4664. #define GPIO_LCKR_LCK8_Msk (0x1UL << GPIO_LCKR_LCK8_Pos) /*!< 0x00000100 */
  4665. #define GPIO_LCKR_LCK8 GPIO_LCKR_LCK8_Msk
  4666. #define GPIO_LCKR_LCK9_Pos (9U)
  4667. #define GPIO_LCKR_LCK9_Msk (0x1UL << GPIO_LCKR_LCK9_Pos) /*!< 0x00000200 */
  4668. #define GPIO_LCKR_LCK9 GPIO_LCKR_LCK9_Msk
  4669. #define GPIO_LCKR_LCK10_Pos (10U)
  4670. #define GPIO_LCKR_LCK10_Msk (0x1UL << GPIO_LCKR_LCK10_Pos) /*!< 0x00000400 */
  4671. #define GPIO_LCKR_LCK10 GPIO_LCKR_LCK10_Msk
  4672. #define GPIO_LCKR_LCK11_Pos (11U)
  4673. #define GPIO_LCKR_LCK11_Msk (0x1UL << GPIO_LCKR_LCK11_Pos) /*!< 0x00000800 */
  4674. #define GPIO_LCKR_LCK11 GPIO_LCKR_LCK11_Msk
  4675. #define GPIO_LCKR_LCK12_Pos (12U)
  4676. #define GPIO_LCKR_LCK12_Msk (0x1UL << GPIO_LCKR_LCK12_Pos) /*!< 0x00001000 */
  4677. #define GPIO_LCKR_LCK12 GPIO_LCKR_LCK12_Msk
  4678. #define GPIO_LCKR_LCK13_Pos (13U)
  4679. #define GPIO_LCKR_LCK13_Msk (0x1UL << GPIO_LCKR_LCK13_Pos) /*!< 0x00002000 */
  4680. #define GPIO_LCKR_LCK13 GPIO_LCKR_LCK13_Msk
  4681. #define GPIO_LCKR_LCK14_Pos (14U)
  4682. #define GPIO_LCKR_LCK14_Msk (0x1UL << GPIO_LCKR_LCK14_Pos) /*!< 0x00004000 */
  4683. #define GPIO_LCKR_LCK14 GPIO_LCKR_LCK14_Msk
  4684. #define GPIO_LCKR_LCK15_Pos (15U)
  4685. #define GPIO_LCKR_LCK15_Msk (0x1UL << GPIO_LCKR_LCK15_Pos) /*!< 0x00008000 */
  4686. #define GPIO_LCKR_LCK15 GPIO_LCKR_LCK15_Msk
  4687. #define GPIO_LCKR_LCKK_Pos (16U)
  4688. #define GPIO_LCKR_LCKK_Msk (0x1UL << GPIO_LCKR_LCKK_Pos) /*!< 0x00010000 */
  4689. #define GPIO_LCKR_LCKK GPIO_LCKR_LCKK_Msk
  4690. /****************** Bit definition for GPIO_AFRL register *********************/
  4691. #define GPIO_AFRL_AFSEL0_Pos (0U)
  4692. #define GPIO_AFRL_AFSEL0_Msk (0xFUL << GPIO_AFRL_AFSEL0_Pos) /*!< 0x0000000F */
  4693. #define GPIO_AFRL_AFSEL0 GPIO_AFRL_AFSEL0_Msk
  4694. #define GPIO_AFRL_AFSEL0_0 (0x1UL << GPIO_AFRL_AFSEL0_Pos) /*!< 0x00000001 */
  4695. #define GPIO_AFRL_AFSEL0_1 (0x2UL << GPIO_AFRL_AFSEL0_Pos) /*!< 0x00000002 */
  4696. #define GPIO_AFRL_AFSEL0_2 (0x4UL << GPIO_AFRL_AFSEL0_Pos) /*!< 0x00000004 */
  4697. #define GPIO_AFRL_AFSEL0_3 (0x8UL << GPIO_AFRL_AFSEL0_Pos) /*!< 0x00000008 */
  4698. #define GPIO_AFRL_AFSEL1_Pos (4U)
  4699. #define GPIO_AFRL_AFSEL1_Msk (0xFUL << GPIO_AFRL_AFSEL1_Pos) /*!< 0x000000F0 */
  4700. #define GPIO_AFRL_AFSEL1 GPIO_AFRL_AFSEL1_Msk
  4701. #define GPIO_AFRL_AFSEL1_0 (0x1UL << GPIO_AFRL_AFSEL1_Pos) /*!< 0x00000010 */
  4702. #define GPIO_AFRL_AFSEL1_1 (0x2UL << GPIO_AFRL_AFSEL1_Pos) /*!< 0x00000020 */
  4703. #define GPIO_AFRL_AFSEL1_2 (0x4UL << GPIO_AFRL_AFSEL1_Pos) /*!< 0x00000040 */
  4704. #define GPIO_AFRL_AFSEL1_3 (0x8UL << GPIO_AFRL_AFSEL1_Pos) /*!< 0x00000080 */
  4705. #define GPIO_AFRL_AFSEL2_Pos (8U)
  4706. #define GPIO_AFRL_AFSEL2_Msk (0xFUL << GPIO_AFRL_AFSEL2_Pos) /*!< 0x00000F00 */
  4707. #define GPIO_AFRL_AFSEL2 GPIO_AFRL_AFSEL2_Msk
  4708. #define GPIO_AFRL_AFSEL2_0 (0x1UL << GPIO_AFRL_AFSEL2_Pos) /*!< 0x00000100 */
  4709. #define GPIO_AFRL_AFSEL2_1 (0x2UL << GPIO_AFRL_AFSEL2_Pos) /*!< 0x00000200 */
  4710. #define GPIO_AFRL_AFSEL2_2 (0x4UL << GPIO_AFRL_AFSEL2_Pos) /*!< 0x00000400 */
  4711. #define GPIO_AFRL_AFSEL2_3 (0x8UL << GPIO_AFRL_AFSEL2_Pos) /*!< 0x00000800 */
  4712. #define GPIO_AFRL_AFSEL3_Pos (12U)
  4713. #define GPIO_AFRL_AFSEL3_Msk (0xFUL << GPIO_AFRL_AFSEL3_Pos) /*!< 0x0000F000 */
  4714. #define GPIO_AFRL_AFSEL3 GPIO_AFRL_AFSEL3_Msk
  4715. #define GPIO_AFRL_AFSEL3_0 (0x1UL << GPIO_AFRL_AFSEL3_Pos) /*!< 0x00001000 */
  4716. #define GPIO_AFRL_AFSEL3_1 (0x2UL << GPIO_AFRL_AFSEL3_Pos) /*!< 0x00002000 */
  4717. #define GPIO_AFRL_AFSEL3_2 (0x4UL << GPIO_AFRL_AFSEL3_Pos) /*!< 0x00004000 */
  4718. #define GPIO_AFRL_AFSEL3_3 (0x8UL << GPIO_AFRL_AFSEL3_Pos) /*!< 0x00008000 */
  4719. #define GPIO_AFRL_AFSEL4_Pos (16U)
  4720. #define GPIO_AFRL_AFSEL4_Msk (0xFUL << GPIO_AFRL_AFSEL4_Pos) /*!< 0x000F0000 */
  4721. #define GPIO_AFRL_AFSEL4 GPIO_AFRL_AFSEL4_Msk
  4722. #define GPIO_AFRL_AFSEL4_0 (0x1UL << GPIO_AFRL_AFSEL4_Pos) /*!< 0x00010000 */
  4723. #define GPIO_AFRL_AFSEL4_1 (0x2UL << GPIO_AFRL_AFSEL4_Pos) /*!< 0x00020000 */
  4724. #define GPIO_AFRL_AFSEL4_2 (0x4UL << GPIO_AFRL_AFSEL4_Pos) /*!< 0x00040000 */
  4725. #define GPIO_AFRL_AFSEL4_3 (0x8UL << GPIO_AFRL_AFSEL4_Pos) /*!< 0x00080000 */
  4726. #define GPIO_AFRL_AFSEL5_Pos (20U)
  4727. #define GPIO_AFRL_AFSEL5_Msk (0xFUL << GPIO_AFRL_AFSEL5_Pos) /*!< 0x00F00000 */
  4728. #define GPIO_AFRL_AFSEL5 GPIO_AFRL_AFSEL5_Msk
  4729. #define GPIO_AFRL_AFSEL5_0 (0x1UL << GPIO_AFRL_AFSEL5_Pos) /*!< 0x00100000 */
  4730. #define GPIO_AFRL_AFSEL5_1 (0x2UL << GPIO_AFRL_AFSEL5_Pos) /*!< 0x00200000 */
  4731. #define GPIO_AFRL_AFSEL5_2 (0x4UL << GPIO_AFRL_AFSEL5_Pos) /*!< 0x00400000 */
  4732. #define GPIO_AFRL_AFSEL5_3 (0x8UL << GPIO_AFRL_AFSEL5_Pos) /*!< 0x00800000 */
  4733. #define GPIO_AFRL_AFSEL6_Pos (24U)
  4734. #define GPIO_AFRL_AFSEL6_Msk (0xFUL << GPIO_AFRL_AFSEL6_Pos) /*!< 0x0F000000 */
  4735. #define GPIO_AFRL_AFSEL6 GPIO_AFRL_AFSEL6_Msk
  4736. #define GPIO_AFRL_AFSEL6_0 (0x1UL << GPIO_AFRL_AFSEL6_Pos) /*!< 0x01000000 */
  4737. #define GPIO_AFRL_AFSEL6_1 (0x2UL << GPIO_AFRL_AFSEL6_Pos) /*!< 0x02000000 */
  4738. #define GPIO_AFRL_AFSEL6_2 (0x4UL << GPIO_AFRL_AFSEL6_Pos) /*!< 0x04000000 */
  4739. #define GPIO_AFRL_AFSEL6_3 (0x8UL << GPIO_AFRL_AFSEL6_Pos) /*!< 0x08000000 */
  4740. #define GPIO_AFRL_AFSEL7_Pos (28U)
  4741. #define GPIO_AFRL_AFSEL7_Msk (0xFUL << GPIO_AFRL_AFSEL7_Pos) /*!< 0xF0000000 */
  4742. #define GPIO_AFRL_AFSEL7 GPIO_AFRL_AFSEL7_Msk
  4743. #define GPIO_AFRL_AFSEL7_0 (0x1UL << GPIO_AFRL_AFSEL7_Pos) /*!< 0x10000000 */
  4744. #define GPIO_AFRL_AFSEL7_1 (0x2UL << GPIO_AFRL_AFSEL7_Pos) /*!< 0x20000000 */
  4745. #define GPIO_AFRL_AFSEL7_2 (0x4UL << GPIO_AFRL_AFSEL7_Pos) /*!< 0x40000000 */
  4746. #define GPIO_AFRL_AFSEL7_3 (0x8UL << GPIO_AFRL_AFSEL7_Pos) /*!< 0x80000000 */
  4747. /****************** Bit definition for GPIO_AFRH register *********************/
  4748. #define GPIO_AFRH_AFSEL8_Pos (0U)
  4749. #define GPIO_AFRH_AFSEL8_Msk (0xFUL << GPIO_AFRH_AFSEL8_Pos) /*!< 0x0000000F */
  4750. #define GPIO_AFRH_AFSEL8 GPIO_AFRH_AFSEL8_Msk
  4751. #define GPIO_AFRH_AFSEL8_0 (0x1UL << GPIO_AFRH_AFSEL8_Pos) /*!< 0x00000001 */
  4752. #define GPIO_AFRH_AFSEL8_1 (0x2UL << GPIO_AFRH_AFSEL8_Pos) /*!< 0x00000002 */
  4753. #define GPIO_AFRH_AFSEL8_2 (0x4UL << GPIO_AFRH_AFSEL8_Pos) /*!< 0x00000004 */
  4754. #define GPIO_AFRH_AFSEL8_3 (0x8UL << GPIO_AFRH_AFSEL8_Pos) /*!< 0x00000008 */
  4755. #define GPIO_AFRH_AFSEL9_Pos (4U)
  4756. #define GPIO_AFRH_AFSEL9_Msk (0xFUL << GPIO_AFRH_AFSEL9_Pos) /*!< 0x000000F0 */
  4757. #define GPIO_AFRH_AFSEL9 GPIO_AFRH_AFSEL9_Msk
  4758. #define GPIO_AFRH_AFSEL9_0 (0x1UL << GPIO_AFRH_AFSEL9_Pos) /*!< 0x00000010 */
  4759. #define GPIO_AFRH_AFSEL9_1 (0x2UL << GPIO_AFRH_AFSEL9_Pos) /*!< 0x00000020 */
  4760. #define GPIO_AFRH_AFSEL9_2 (0x4UL << GPIO_AFRH_AFSEL9_Pos) /*!< 0x00000040 */
  4761. #define GPIO_AFRH_AFSEL9_3 (0x8UL << GPIO_AFRH_AFSEL9_Pos) /*!< 0x00000080 */
  4762. #define GPIO_AFRH_AFSEL10_Pos (8U)
  4763. #define GPIO_AFRH_AFSEL10_Msk (0xFUL << GPIO_AFRH_AFSEL10_Pos) /*!< 0x00000F00 */
  4764. #define GPIO_AFRH_AFSEL10 GPIO_AFRH_AFSEL10_Msk
  4765. #define GPIO_AFRH_AFSEL10_0 (0x1UL << GPIO_AFRH_AFSEL10_Pos) /*!< 0x00000100 */
  4766. #define GPIO_AFRH_AFSEL10_1 (0x2UL << GPIO_AFRH_AFSEL10_Pos) /*!< 0x00000200 */
  4767. #define GPIO_AFRH_AFSEL10_2 (0x4UL << GPIO_AFRH_AFSEL10_Pos) /*!< 0x00000400 */
  4768. #define GPIO_AFRH_AFSEL10_3 (0x8UL << GPIO_AFRH_AFSEL10_Pos) /*!< 0x00000800 */
  4769. #define GPIO_AFRH_AFSEL11_Pos (12U)
  4770. #define GPIO_AFRH_AFSEL11_Msk (0xFUL << GPIO_AFRH_AFSEL11_Pos) /*!< 0x0000F000 */
  4771. #define GPIO_AFRH_AFSEL11 GPIO_AFRH_AFSEL11_Msk
  4772. #define GPIO_AFRH_AFSEL11_0 (0x1UL << GPIO_AFRH_AFSEL11_Pos) /*!< 0x00001000 */
  4773. #define GPIO_AFRH_AFSEL11_1 (0x2UL << GPIO_AFRH_AFSEL11_Pos) /*!< 0x00002000 */
  4774. #define GPIO_AFRH_AFSEL11_2 (0x4UL << GPIO_AFRH_AFSEL11_Pos) /*!< 0x00004000 */
  4775. #define GPIO_AFRH_AFSEL11_3 (0x8UL << GPIO_AFRH_AFSEL11_Pos) /*!< 0x00008000 */
  4776. #define GPIO_AFRH_AFSEL12_Pos (16U)
  4777. #define GPIO_AFRH_AFSEL12_Msk (0xFUL << GPIO_AFRH_AFSEL12_Pos) /*!< 0x000F0000 */
  4778. #define GPIO_AFRH_AFSEL12 GPIO_AFRH_AFSEL12_Msk
  4779. #define GPIO_AFRH_AFSEL12_0 (0x1UL << GPIO_AFRH_AFSEL12_Pos) /*!< 0x00010000 */
  4780. #define GPIO_AFRH_AFSEL12_1 (0x2UL << GPIO_AFRH_AFSEL12_Pos) /*!< 0x00020000 */
  4781. #define GPIO_AFRH_AFSEL12_2 (0x4UL << GPIO_AFRH_AFSEL12_Pos) /*!< 0x00040000 */
  4782. #define GPIO_AFRH_AFSEL12_3 (0x8UL << GPIO_AFRH_AFSEL12_Pos) /*!< 0x00080000 */
  4783. #define GPIO_AFRH_AFSEL13_Pos (20U)
  4784. #define GPIO_AFRH_AFSEL13_Msk (0xFUL << GPIO_AFRH_AFSEL13_Pos) /*!< 0x00F00000 */
  4785. #define GPIO_AFRH_AFSEL13 GPIO_AFRH_AFSEL13_Msk
  4786. #define GPIO_AFRH_AFSEL13_0 (0x1UL << GPIO_AFRH_AFSEL13_Pos) /*!< 0x00100000 */
  4787. #define GPIO_AFRH_AFSEL13_1 (0x2UL << GPIO_AFRH_AFSEL13_Pos) /*!< 0x00200000 */
  4788. #define GPIO_AFRH_AFSEL13_2 (0x4UL << GPIO_AFRH_AFSEL13_Pos) /*!< 0x00400000 */
  4789. #define GPIO_AFRH_AFSEL13_3 (0x8UL << GPIO_AFRH_AFSEL13_Pos) /*!< 0x00800000 */
  4790. #define GPIO_AFRH_AFSEL14_Pos (24U)
  4791. #define GPIO_AFRH_AFSEL14_Msk (0xFUL << GPIO_AFRH_AFSEL14_Pos) /*!< 0x0F000000 */
  4792. #define GPIO_AFRH_AFSEL14 GPIO_AFRH_AFSEL14_Msk
  4793. #define GPIO_AFRH_AFSEL14_0 (0x1UL << GPIO_AFRH_AFSEL14_Pos) /*!< 0x01000000 */
  4794. #define GPIO_AFRH_AFSEL14_1 (0x2UL << GPIO_AFRH_AFSEL14_Pos) /*!< 0x02000000 */
  4795. #define GPIO_AFRH_AFSEL14_2 (0x4UL << GPIO_AFRH_AFSEL14_Pos) /*!< 0x04000000 */
  4796. #define GPIO_AFRH_AFSEL14_3 (0x8UL << GPIO_AFRH_AFSEL14_Pos) /*!< 0x08000000 */
  4797. #define GPIO_AFRH_AFSEL15_Pos (28U)
  4798. #define GPIO_AFRH_AFSEL15_Msk (0xFUL << GPIO_AFRH_AFSEL15_Pos) /*!< 0xF0000000 */
  4799. #define GPIO_AFRH_AFSEL15 GPIO_AFRH_AFSEL15_Msk
  4800. #define GPIO_AFRH_AFSEL15_0 (0x1UL << GPIO_AFRH_AFSEL15_Pos) /*!< 0x10000000 */
  4801. #define GPIO_AFRH_AFSEL15_1 (0x2UL << GPIO_AFRH_AFSEL15_Pos) /*!< 0x20000000 */
  4802. #define GPIO_AFRH_AFSEL15_2 (0x4UL << GPIO_AFRH_AFSEL15_Pos) /*!< 0x40000000 */
  4803. #define GPIO_AFRH_AFSEL15_3 (0x8UL << GPIO_AFRH_AFSEL15_Pos) /*!< 0x80000000 */
  4804. /****************** Bits definition for GPIO_BRR register ******************/
  4805. #define GPIO_BRR_BR0_Pos (0U)
  4806. #define GPIO_BRR_BR0_Msk (0x1UL << GPIO_BRR_BR0_Pos) /*!< 0x00000001 */
  4807. #define GPIO_BRR_BR0 GPIO_BRR_BR0_Msk
  4808. #define GPIO_BRR_BR1_Pos (1U)
  4809. #define GPIO_BRR_BR1_Msk (0x1UL << GPIO_BRR_BR1_Pos) /*!< 0x00000002 */
  4810. #define GPIO_BRR_BR1 GPIO_BRR_BR1_Msk
  4811. #define GPIO_BRR_BR2_Pos (2U)
  4812. #define GPIO_BRR_BR2_Msk (0x1UL << GPIO_BRR_BR2_Pos) /*!< 0x00000004 */
  4813. #define GPIO_BRR_BR2 GPIO_BRR_BR2_Msk
  4814. #define GPIO_BRR_BR3_Pos (3U)
  4815. #define GPIO_BRR_BR3_Msk (0x1UL << GPIO_BRR_BR3_Pos) /*!< 0x00000008 */
  4816. #define GPIO_BRR_BR3 GPIO_BRR_BR3_Msk
  4817. #define GPIO_BRR_BR4_Pos (4U)
  4818. #define GPIO_BRR_BR4_Msk (0x1UL << GPIO_BRR_BR4_Pos) /*!< 0x00000010 */
  4819. #define GPIO_BRR_BR4 GPIO_BRR_BR4_Msk
  4820. #define GPIO_BRR_BR5_Pos (5U)
  4821. #define GPIO_BRR_BR5_Msk (0x1UL << GPIO_BRR_BR5_Pos) /*!< 0x00000020 */
  4822. #define GPIO_BRR_BR5 GPIO_BRR_BR5_Msk
  4823. #define GPIO_BRR_BR6_Pos (6U)
  4824. #define GPIO_BRR_BR6_Msk (0x1UL << GPIO_BRR_BR6_Pos) /*!< 0x00000040 */
  4825. #define GPIO_BRR_BR6 GPIO_BRR_BR6_Msk
  4826. #define GPIO_BRR_BR7_Pos (7U)
  4827. #define GPIO_BRR_BR7_Msk (0x1UL << GPIO_BRR_BR7_Pos) /*!< 0x00000080 */
  4828. #define GPIO_BRR_BR7 GPIO_BRR_BR7_Msk
  4829. #define GPIO_BRR_BR8_Pos (8U)
  4830. #define GPIO_BRR_BR8_Msk (0x1UL << GPIO_BRR_BR8_Pos) /*!< 0x00000100 */
  4831. #define GPIO_BRR_BR8 GPIO_BRR_BR8_Msk
  4832. #define GPIO_BRR_BR9_Pos (9U)
  4833. #define GPIO_BRR_BR9_Msk (0x1UL << GPIO_BRR_BR9_Pos) /*!< 0x00000200 */
  4834. #define GPIO_BRR_BR9 GPIO_BRR_BR9_Msk
  4835. #define GPIO_BRR_BR10_Pos (10U)
  4836. #define GPIO_BRR_BR10_Msk (0x1UL << GPIO_BRR_BR10_Pos) /*!< 0x00000400 */
  4837. #define GPIO_BRR_BR10 GPIO_BRR_BR10_Msk
  4838. #define GPIO_BRR_BR11_Pos (11U)
  4839. #define GPIO_BRR_BR11_Msk (0x1UL << GPIO_BRR_BR11_Pos) /*!< 0x00000800 */
  4840. #define GPIO_BRR_BR11 GPIO_BRR_BR11_Msk
  4841. #define GPIO_BRR_BR12_Pos (12U)
  4842. #define GPIO_BRR_BR12_Msk (0x1UL << GPIO_BRR_BR12_Pos) /*!< 0x00001000 */
  4843. #define GPIO_BRR_BR12 GPIO_BRR_BR12_Msk
  4844. #define GPIO_BRR_BR13_Pos (13U)
  4845. #define GPIO_BRR_BR13_Msk (0x1UL << GPIO_BRR_BR13_Pos) /*!< 0x00002000 */
  4846. #define GPIO_BRR_BR13 GPIO_BRR_BR13_Msk
  4847. #define GPIO_BRR_BR14_Pos (14U)
  4848. #define GPIO_BRR_BR14_Msk (0x1UL << GPIO_BRR_BR14_Pos) /*!< 0x00004000 */
  4849. #define GPIO_BRR_BR14 GPIO_BRR_BR14_Msk
  4850. #define GPIO_BRR_BR15_Pos (15U)
  4851. #define GPIO_BRR_BR15_Msk (0x1UL << GPIO_BRR_BR15_Pos) /*!< 0x00008000 */
  4852. #define GPIO_BRR_BR15 GPIO_BRR_BR15_Msk
  4853. /******************************************************************************/
  4854. /* */
  4855. /* Inter-integrated Circuit Interface (I2C) */
  4856. /* */
  4857. /******************************************************************************/
  4858. /******************* Bit definition for I2C_CR1 register *******************/
  4859. #define I2C_CR1_PE_Pos (0U)
  4860. #define I2C_CR1_PE_Msk (0x1UL << I2C_CR1_PE_Pos) /*!< 0x00000001 */
  4861. #define I2C_CR1_PE I2C_CR1_PE_Msk /*!< Peripheral enable */
  4862. #define I2C_CR1_TXIE_Pos (1U)
  4863. #define I2C_CR1_TXIE_Msk (0x1UL << I2C_CR1_TXIE_Pos) /*!< 0x00000002 */
  4864. #define I2C_CR1_TXIE I2C_CR1_TXIE_Msk /*!< TX interrupt enable */
  4865. #define I2C_CR1_RXIE_Pos (2U)
  4866. #define I2C_CR1_RXIE_Msk (0x1UL << I2C_CR1_RXIE_Pos) /*!< 0x00000004 */
  4867. #define I2C_CR1_RXIE I2C_CR1_RXIE_Msk /*!< RX interrupt enable */
  4868. #define I2C_CR1_ADDRIE_Pos (3U)
  4869. #define I2C_CR1_ADDRIE_Msk (0x1UL << I2C_CR1_ADDRIE_Pos) /*!< 0x00000008 */
  4870. #define I2C_CR1_ADDRIE I2C_CR1_ADDRIE_Msk /*!< Address match interrupt enable */
  4871. #define I2C_CR1_NACKIE_Pos (4U)
  4872. #define I2C_CR1_NACKIE_Msk (0x1UL << I2C_CR1_NACKIE_Pos) /*!< 0x00000010 */
  4873. #define I2C_CR1_NACKIE I2C_CR1_NACKIE_Msk /*!< NACK received interrupt enable */
  4874. #define I2C_CR1_STOPIE_Pos (5U)
  4875. #define I2C_CR1_STOPIE_Msk (0x1UL << I2C_CR1_STOPIE_Pos) /*!< 0x00000020 */
  4876. #define I2C_CR1_STOPIE I2C_CR1_STOPIE_Msk /*!< STOP detection interrupt enable */
  4877. #define I2C_CR1_TCIE_Pos (6U)
  4878. #define I2C_CR1_TCIE_Msk (0x1UL << I2C_CR1_TCIE_Pos) /*!< 0x00000040 */
  4879. #define I2C_CR1_TCIE I2C_CR1_TCIE_Msk /*!< Transfer complete interrupt enable */
  4880. #define I2C_CR1_ERRIE_Pos (7U)
  4881. #define I2C_CR1_ERRIE_Msk (0x1UL << I2C_CR1_ERRIE_Pos) /*!< 0x00000080 */
  4882. #define I2C_CR1_ERRIE I2C_CR1_ERRIE_Msk /*!< Errors interrupt enable */
  4883. #define I2C_CR1_DNF_Pos (8U)
  4884. #define I2C_CR1_DNF_Msk (0xFUL << I2C_CR1_DNF_Pos) /*!< 0x00000F00 */
  4885. #define I2C_CR1_DNF I2C_CR1_DNF_Msk /*!< Digital noise filter */
  4886. #define I2C_CR1_ANFOFF_Pos (12U)
  4887. #define I2C_CR1_ANFOFF_Msk (0x1UL << I2C_CR1_ANFOFF_Pos) /*!< 0x00001000 */
  4888. #define I2C_CR1_ANFOFF I2C_CR1_ANFOFF_Msk /*!< Analog noise filter OFF */
  4889. #define I2C_CR1_SWRST_Pos (13U)
  4890. #define I2C_CR1_SWRST_Msk (0x1UL << I2C_CR1_SWRST_Pos) /*!< 0x00002000 */
  4891. #define I2C_CR1_SWRST I2C_CR1_SWRST_Msk /*!< Software reset */
  4892. #define I2C_CR1_TXDMAEN_Pos (14U)
  4893. #define I2C_CR1_TXDMAEN_Msk (0x1UL << I2C_CR1_TXDMAEN_Pos) /*!< 0x00004000 */
  4894. #define I2C_CR1_TXDMAEN I2C_CR1_TXDMAEN_Msk /*!< DMA transmission requests enable */
  4895. #define I2C_CR1_RXDMAEN_Pos (15U)
  4896. #define I2C_CR1_RXDMAEN_Msk (0x1UL << I2C_CR1_RXDMAEN_Pos) /*!< 0x00008000 */
  4897. #define I2C_CR1_RXDMAEN I2C_CR1_RXDMAEN_Msk /*!< DMA reception requests enable */
  4898. #define I2C_CR1_SBC_Pos (16U)
  4899. #define I2C_CR1_SBC_Msk (0x1UL << I2C_CR1_SBC_Pos) /*!< 0x00010000 */
  4900. #define I2C_CR1_SBC I2C_CR1_SBC_Msk /*!< Slave byte control */
  4901. #define I2C_CR1_NOSTRETCH_Pos (17U)
  4902. #define I2C_CR1_NOSTRETCH_Msk (0x1UL << I2C_CR1_NOSTRETCH_Pos) /*!< 0x00020000 */
  4903. #define I2C_CR1_NOSTRETCH I2C_CR1_NOSTRETCH_Msk /*!< Clock stretching disable */
  4904. #define I2C_CR1_WUPEN_Pos (18U)
  4905. #define I2C_CR1_WUPEN_Msk (0x1UL << I2C_CR1_WUPEN_Pos) /*!< 0x00040000 */
  4906. #define I2C_CR1_WUPEN I2C_CR1_WUPEN_Msk /*!< Wakeup from STOP enable */
  4907. #define I2C_CR1_GCEN_Pos (19U)
  4908. #define I2C_CR1_GCEN_Msk (0x1UL << I2C_CR1_GCEN_Pos) /*!< 0x00080000 */
  4909. #define I2C_CR1_GCEN I2C_CR1_GCEN_Msk /*!< General call enable */
  4910. #define I2C_CR1_SMBHEN_Pos (20U)
  4911. #define I2C_CR1_SMBHEN_Msk (0x1UL << I2C_CR1_SMBHEN_Pos) /*!< 0x00100000 */
  4912. #define I2C_CR1_SMBHEN I2C_CR1_SMBHEN_Msk /*!< SMBus host address enable */
  4913. #define I2C_CR1_SMBDEN_Pos (21U)
  4914. #define I2C_CR1_SMBDEN_Msk (0x1UL << I2C_CR1_SMBDEN_Pos) /*!< 0x00200000 */
  4915. #define I2C_CR1_SMBDEN I2C_CR1_SMBDEN_Msk /*!< SMBus device default address enable */
  4916. #define I2C_CR1_ALERTEN_Pos (22U)
  4917. #define I2C_CR1_ALERTEN_Msk (0x1UL << I2C_CR1_ALERTEN_Pos) /*!< 0x00400000 */
  4918. #define I2C_CR1_ALERTEN I2C_CR1_ALERTEN_Msk /*!< SMBus alert enable */
  4919. #define I2C_CR1_PECEN_Pos (23U)
  4920. #define I2C_CR1_PECEN_Msk (0x1UL << I2C_CR1_PECEN_Pos) /*!< 0x00800000 */
  4921. #define I2C_CR1_PECEN I2C_CR1_PECEN_Msk /*!< PEC enable */
  4922. /****************** Bit definition for I2C_CR2 register ********************/
  4923. #define I2C_CR2_SADD_Pos (0U)
  4924. #define I2C_CR2_SADD_Msk (0x3FFUL << I2C_CR2_SADD_Pos) /*!< 0x000003FF */
  4925. #define I2C_CR2_SADD I2C_CR2_SADD_Msk /*!< Slave address (master mode) */
  4926. #define I2C_CR2_RD_WRN_Pos (10U)
  4927. #define I2C_CR2_RD_WRN_Msk (0x1UL << I2C_CR2_RD_WRN_Pos) /*!< 0x00000400 */
  4928. #define I2C_CR2_RD_WRN I2C_CR2_RD_WRN_Msk /*!< Transfer direction (master mode) */
  4929. #define I2C_CR2_ADD10_Pos (11U)
  4930. #define I2C_CR2_ADD10_Msk (0x1UL << I2C_CR2_ADD10_Pos) /*!< 0x00000800 */
  4931. #define I2C_CR2_ADD10 I2C_CR2_ADD10_Msk /*!< 10-bit addressing mode (master mode) */
  4932. #define I2C_CR2_HEAD10R_Pos (12U)
  4933. #define I2C_CR2_HEAD10R_Msk (0x1UL << I2C_CR2_HEAD10R_Pos) /*!< 0x00001000 */
  4934. #define I2C_CR2_HEAD10R I2C_CR2_HEAD10R_Msk /*!< 10-bit address header only read direction (master mode) */
  4935. #define I2C_CR2_START_Pos (13U)
  4936. #define I2C_CR2_START_Msk (0x1UL << I2C_CR2_START_Pos) /*!< 0x00002000 */
  4937. #define I2C_CR2_START I2C_CR2_START_Msk /*!< START generation */
  4938. #define I2C_CR2_STOP_Pos (14U)
  4939. #define I2C_CR2_STOP_Msk (0x1UL << I2C_CR2_STOP_Pos) /*!< 0x00004000 */
  4940. #define I2C_CR2_STOP I2C_CR2_STOP_Msk /*!< STOP generation (master mode) */
  4941. #define I2C_CR2_NACK_Pos (15U)
  4942. #define I2C_CR2_NACK_Msk (0x1UL << I2C_CR2_NACK_Pos) /*!< 0x00008000 */
  4943. #define I2C_CR2_NACK I2C_CR2_NACK_Msk /*!< NACK generation (slave mode) */
  4944. #define I2C_CR2_NBYTES_Pos (16U)
  4945. #define I2C_CR2_NBYTES_Msk (0xFFUL << I2C_CR2_NBYTES_Pos) /*!< 0x00FF0000 */
  4946. #define I2C_CR2_NBYTES I2C_CR2_NBYTES_Msk /*!< Number of bytes */
  4947. #define I2C_CR2_RELOAD_Pos (24U)
  4948. #define I2C_CR2_RELOAD_Msk (0x1UL << I2C_CR2_RELOAD_Pos) /*!< 0x01000000 */
  4949. #define I2C_CR2_RELOAD I2C_CR2_RELOAD_Msk /*!< NBYTES reload mode */
  4950. #define I2C_CR2_AUTOEND_Pos (25U)
  4951. #define I2C_CR2_AUTOEND_Msk (0x1UL << I2C_CR2_AUTOEND_Pos) /*!< 0x02000000 */
  4952. #define I2C_CR2_AUTOEND I2C_CR2_AUTOEND_Msk /*!< Automatic end mode (master mode) */
  4953. #define I2C_CR2_PECBYTE_Pos (26U)
  4954. #define I2C_CR2_PECBYTE_Msk (0x1UL << I2C_CR2_PECBYTE_Pos) /*!< 0x04000000 */
  4955. #define I2C_CR2_PECBYTE I2C_CR2_PECBYTE_Msk /*!< Packet error checking byte */
  4956. /******************* Bit definition for I2C_OAR1 register ******************/
  4957. #define I2C_OAR1_OA1_Pos (0U)
  4958. #define I2C_OAR1_OA1_Msk (0x3FFUL << I2C_OAR1_OA1_Pos) /*!< 0x000003FF */
  4959. #define I2C_OAR1_OA1 I2C_OAR1_OA1_Msk /*!< Interface own address 1 */
  4960. #define I2C_OAR1_OA1MODE_Pos (10U)
  4961. #define I2C_OAR1_OA1MODE_Msk (0x1UL << I2C_OAR1_OA1MODE_Pos) /*!< 0x00000400 */
  4962. #define I2C_OAR1_OA1MODE I2C_OAR1_OA1MODE_Msk /*!< Own address 1 10-bit mode */
  4963. #define I2C_OAR1_OA1EN_Pos (15U)
  4964. #define I2C_OAR1_OA1EN_Msk (0x1UL << I2C_OAR1_OA1EN_Pos) /*!< 0x00008000 */
  4965. #define I2C_OAR1_OA1EN I2C_OAR1_OA1EN_Msk /*!< Own address 1 enable */
  4966. /******************* Bit definition for I2C_OAR2 register ******************/
  4967. #define I2C_OAR2_OA2_Pos (1U)
  4968. #define I2C_OAR2_OA2_Msk (0x7FUL << I2C_OAR2_OA2_Pos) /*!< 0x000000FE */
  4969. #define I2C_OAR2_OA2 I2C_OAR2_OA2_Msk /*!< Interface own address 2 */
  4970. #define I2C_OAR2_OA2MSK_Pos (8U)
  4971. #define I2C_OAR2_OA2MSK_Msk (0x7UL << I2C_OAR2_OA2MSK_Pos) /*!< 0x00000700 */
  4972. #define I2C_OAR2_OA2MSK I2C_OAR2_OA2MSK_Msk /*!< Own address 2 masks */
  4973. #define I2C_OAR2_OA2NOMASK (0U) /*!< No mask */
  4974. #define I2C_OAR2_OA2MASK01_Pos (8U)
  4975. #define I2C_OAR2_OA2MASK01_Msk (0x1UL << I2C_OAR2_OA2MASK01_Pos) /*!< 0x00000100 */
  4976. #define I2C_OAR2_OA2MASK01 I2C_OAR2_OA2MASK01_Msk /*!< OA2[1] is masked, Only OA2[7:2] are compared */
  4977. #define I2C_OAR2_OA2MASK02_Pos (9U)
  4978. #define I2C_OAR2_OA2MASK02_Msk (0x1UL << I2C_OAR2_OA2MASK02_Pos) /*!< 0x00000200 */
  4979. #define I2C_OAR2_OA2MASK02 I2C_OAR2_OA2MASK02_Msk /*!< OA2[2:1] is masked, Only OA2[7:3] are compared */
  4980. #define I2C_OAR2_OA2MASK03_Pos (8U)
  4981. #define I2C_OAR2_OA2MASK03_Msk (0x3UL << I2C_OAR2_OA2MASK03_Pos) /*!< 0x00000300 */
  4982. #define I2C_OAR2_OA2MASK03 I2C_OAR2_OA2MASK03_Msk /*!< OA2[3:1] is masked, Only OA2[7:4] are compared */
  4983. #define I2C_OAR2_OA2MASK04_Pos (10U)
  4984. #define I2C_OAR2_OA2MASK04_Msk (0x1UL << I2C_OAR2_OA2MASK04_Pos) /*!< 0x00000400 */
  4985. #define I2C_OAR2_OA2MASK04 I2C_OAR2_OA2MASK04_Msk /*!< OA2[4:1] is masked, Only OA2[7:5] are compared */
  4986. #define I2C_OAR2_OA2MASK05_Pos (8U)
  4987. #define I2C_OAR2_OA2MASK05_Msk (0x5UL << I2C_OAR2_OA2MASK05_Pos) /*!< 0x00000500 */
  4988. #define I2C_OAR2_OA2MASK05 I2C_OAR2_OA2MASK05_Msk /*!< OA2[5:1] is masked, Only OA2[7:6] are compared */
  4989. #define I2C_OAR2_OA2MASK06_Pos (9U)
  4990. #define I2C_OAR2_OA2MASK06_Msk (0x3UL << I2C_OAR2_OA2MASK06_Pos) /*!< 0x00000600 */
  4991. #define I2C_OAR2_OA2MASK06 I2C_OAR2_OA2MASK06_Msk /*!< OA2[6:1] is masked, Only OA2[7] are compared */
  4992. #define I2C_OAR2_OA2MASK07_Pos (8U)
  4993. #define I2C_OAR2_OA2MASK07_Msk (0x7UL << I2C_OAR2_OA2MASK07_Pos) /*!< 0x00000700 */
  4994. #define I2C_OAR2_OA2MASK07 I2C_OAR2_OA2MASK07_Msk /*!< OA2[7:1] is masked, No comparison is done */
  4995. #define I2C_OAR2_OA2EN_Pos (15U)
  4996. #define I2C_OAR2_OA2EN_Msk (0x1UL << I2C_OAR2_OA2EN_Pos) /*!< 0x00008000 */
  4997. #define I2C_OAR2_OA2EN I2C_OAR2_OA2EN_Msk /*!< Own address 2 enable */
  4998. /******************* Bit definition for I2C_TIMINGR register *******************/
  4999. #define I2C_TIMINGR_SCLL_Pos (0U)
  5000. #define I2C_TIMINGR_SCLL_Msk (0xFFUL << I2C_TIMINGR_SCLL_Pos) /*!< 0x000000FF */
  5001. #define I2C_TIMINGR_SCLL I2C_TIMINGR_SCLL_Msk /*!< SCL low period (master mode) */
  5002. #define I2C_TIMINGR_SCLH_Pos (8U)
  5003. #define I2C_TIMINGR_SCLH_Msk (0xFFUL << I2C_TIMINGR_SCLH_Pos) /*!< 0x0000FF00 */
  5004. #define I2C_TIMINGR_SCLH I2C_TIMINGR_SCLH_Msk /*!< SCL high period (master mode) */
  5005. #define I2C_TIMINGR_SDADEL_Pos (16U)
  5006. #define I2C_TIMINGR_SDADEL_Msk (0xFUL << I2C_TIMINGR_SDADEL_Pos) /*!< 0x000F0000 */
  5007. #define I2C_TIMINGR_SDADEL I2C_TIMINGR_SDADEL_Msk /*!< Data hold time */
  5008. #define I2C_TIMINGR_SCLDEL_Pos (20U)
  5009. #define I2C_TIMINGR_SCLDEL_Msk (0xFUL << I2C_TIMINGR_SCLDEL_Pos) /*!< 0x00F00000 */
  5010. #define I2C_TIMINGR_SCLDEL I2C_TIMINGR_SCLDEL_Msk /*!< Data setup time */
  5011. #define I2C_TIMINGR_PRESC_Pos (28U)
  5012. #define I2C_TIMINGR_PRESC_Msk (0xFUL << I2C_TIMINGR_PRESC_Pos) /*!< 0xF0000000 */
  5013. #define I2C_TIMINGR_PRESC I2C_TIMINGR_PRESC_Msk /*!< Timings prescaler */
  5014. /******************* Bit definition for I2C_TIMEOUTR register *******************/
  5015. #define I2C_TIMEOUTR_TIMEOUTA_Pos (0U)
  5016. #define I2C_TIMEOUTR_TIMEOUTA_Msk (0xFFFUL << I2C_TIMEOUTR_TIMEOUTA_Pos) /*!< 0x00000FFF */
  5017. #define I2C_TIMEOUTR_TIMEOUTA I2C_TIMEOUTR_TIMEOUTA_Msk /*!< Bus timeout A */
  5018. #define I2C_TIMEOUTR_TIDLE_Pos (12U)
  5019. #define I2C_TIMEOUTR_TIDLE_Msk (0x1UL << I2C_TIMEOUTR_TIDLE_Pos) /*!< 0x00001000 */
  5020. #define I2C_TIMEOUTR_TIDLE I2C_TIMEOUTR_TIDLE_Msk /*!< Idle clock timeout detection */
  5021. #define I2C_TIMEOUTR_TIMOUTEN_Pos (15U)
  5022. #define I2C_TIMEOUTR_TIMOUTEN_Msk (0x1UL << I2C_TIMEOUTR_TIMOUTEN_Pos) /*!< 0x00008000 */
  5023. #define I2C_TIMEOUTR_TIMOUTEN I2C_TIMEOUTR_TIMOUTEN_Msk /*!< Clock timeout enable */
  5024. #define I2C_TIMEOUTR_TIMEOUTB_Pos (16U)
  5025. #define I2C_TIMEOUTR_TIMEOUTB_Msk (0xFFFUL << I2C_TIMEOUTR_TIMEOUTB_Pos) /*!< 0x0FFF0000 */
  5026. #define I2C_TIMEOUTR_TIMEOUTB I2C_TIMEOUTR_TIMEOUTB_Msk /*!< Bus timeout B*/
  5027. #define I2C_TIMEOUTR_TEXTEN_Pos (31U)
  5028. #define I2C_TIMEOUTR_TEXTEN_Msk (0x1UL << I2C_TIMEOUTR_TEXTEN_Pos) /*!< 0x80000000 */
  5029. #define I2C_TIMEOUTR_TEXTEN I2C_TIMEOUTR_TEXTEN_Msk /*!< Extended clock timeout enable */
  5030. /****************** Bit definition for I2C_ISR register *********************/
  5031. #define I2C_ISR_TXE_Pos (0U)
  5032. #define I2C_ISR_TXE_Msk (0x1UL << I2C_ISR_TXE_Pos) /*!< 0x00000001 */
  5033. #define I2C_ISR_TXE I2C_ISR_TXE_Msk /*!< Transmit data register empty */
  5034. #define I2C_ISR_TXIS_Pos (1U)
  5035. #define I2C_ISR_TXIS_Msk (0x1UL << I2C_ISR_TXIS_Pos) /*!< 0x00000002 */
  5036. #define I2C_ISR_TXIS I2C_ISR_TXIS_Msk /*!< Transmit interrupt status */
  5037. #define I2C_ISR_RXNE_Pos (2U)
  5038. #define I2C_ISR_RXNE_Msk (0x1UL << I2C_ISR_RXNE_Pos) /*!< 0x00000004 */
  5039. #define I2C_ISR_RXNE I2C_ISR_RXNE_Msk /*!< Receive data register not empty */
  5040. #define I2C_ISR_ADDR_Pos (3U)
  5041. #define I2C_ISR_ADDR_Msk (0x1UL << I2C_ISR_ADDR_Pos) /*!< 0x00000008 */
  5042. #define I2C_ISR_ADDR I2C_ISR_ADDR_Msk /*!< Address matched (slave mode)*/
  5043. #define I2C_ISR_NACKF_Pos (4U)
  5044. #define I2C_ISR_NACKF_Msk (0x1UL << I2C_ISR_NACKF_Pos) /*!< 0x00000010 */
  5045. #define I2C_ISR_NACKF I2C_ISR_NACKF_Msk /*!< NACK received flag */
  5046. #define I2C_ISR_STOPF_Pos (5U)
  5047. #define I2C_ISR_STOPF_Msk (0x1UL << I2C_ISR_STOPF_Pos) /*!< 0x00000020 */
  5048. #define I2C_ISR_STOPF I2C_ISR_STOPF_Msk /*!< STOP detection flag */
  5049. #define I2C_ISR_TC_Pos (6U)
  5050. #define I2C_ISR_TC_Msk (0x1UL << I2C_ISR_TC_Pos) /*!< 0x00000040 */
  5051. #define I2C_ISR_TC I2C_ISR_TC_Msk /*!< Transfer complete (master mode) */
  5052. #define I2C_ISR_TCR_Pos (7U)
  5053. #define I2C_ISR_TCR_Msk (0x1UL << I2C_ISR_TCR_Pos) /*!< 0x00000080 */
  5054. #define I2C_ISR_TCR I2C_ISR_TCR_Msk /*!< Transfer complete reload */
  5055. #define I2C_ISR_BERR_Pos (8U)
  5056. #define I2C_ISR_BERR_Msk (0x1UL << I2C_ISR_BERR_Pos) /*!< 0x00000100 */
  5057. #define I2C_ISR_BERR I2C_ISR_BERR_Msk /*!< Bus error */
  5058. #define I2C_ISR_ARLO_Pos (9U)
  5059. #define I2C_ISR_ARLO_Msk (0x1UL << I2C_ISR_ARLO_Pos) /*!< 0x00000200 */
  5060. #define I2C_ISR_ARLO I2C_ISR_ARLO_Msk /*!< Arbitration lost */
  5061. #define I2C_ISR_OVR_Pos (10U)
  5062. #define I2C_ISR_OVR_Msk (0x1UL << I2C_ISR_OVR_Pos) /*!< 0x00000400 */
  5063. #define I2C_ISR_OVR I2C_ISR_OVR_Msk /*!< Overrun/Underrun */
  5064. #define I2C_ISR_PECERR_Pos (11U)
  5065. #define I2C_ISR_PECERR_Msk (0x1UL << I2C_ISR_PECERR_Pos) /*!< 0x00000800 */
  5066. #define I2C_ISR_PECERR I2C_ISR_PECERR_Msk /*!< PEC error in reception */
  5067. #define I2C_ISR_TIMEOUT_Pos (12U)
  5068. #define I2C_ISR_TIMEOUT_Msk (0x1UL << I2C_ISR_TIMEOUT_Pos) /*!< 0x00001000 */
  5069. #define I2C_ISR_TIMEOUT I2C_ISR_TIMEOUT_Msk /*!< Timeout or Tlow detection flag */
  5070. #define I2C_ISR_ALERT_Pos (13U)
  5071. #define I2C_ISR_ALERT_Msk (0x1UL << I2C_ISR_ALERT_Pos) /*!< 0x00002000 */
  5072. #define I2C_ISR_ALERT I2C_ISR_ALERT_Msk /*!< SMBus alert */
  5073. #define I2C_ISR_BUSY_Pos (15U)
  5074. #define I2C_ISR_BUSY_Msk (0x1UL << I2C_ISR_BUSY_Pos) /*!< 0x00008000 */
  5075. #define I2C_ISR_BUSY I2C_ISR_BUSY_Msk /*!< Bus busy */
  5076. #define I2C_ISR_DIR_Pos (16U)
  5077. #define I2C_ISR_DIR_Msk (0x1UL << I2C_ISR_DIR_Pos) /*!< 0x00010000 */
  5078. #define I2C_ISR_DIR I2C_ISR_DIR_Msk /*!< Transfer direction (slave mode) */
  5079. #define I2C_ISR_ADDCODE_Pos (17U)
  5080. #define I2C_ISR_ADDCODE_Msk (0x7FUL << I2C_ISR_ADDCODE_Pos) /*!< 0x00FE0000 */
  5081. #define I2C_ISR_ADDCODE I2C_ISR_ADDCODE_Msk /*!< Address match code (slave mode) */
  5082. /****************** Bit definition for I2C_ICR register *********************/
  5083. #define I2C_ICR_ADDRCF_Pos (3U)
  5084. #define I2C_ICR_ADDRCF_Msk (0x1UL << I2C_ICR_ADDRCF_Pos) /*!< 0x00000008 */
  5085. #define I2C_ICR_ADDRCF I2C_ICR_ADDRCF_Msk /*!< Address matched clear flag */
  5086. #define I2C_ICR_NACKCF_Pos (4U)
  5087. #define I2C_ICR_NACKCF_Msk (0x1UL << I2C_ICR_NACKCF_Pos) /*!< 0x00000010 */
  5088. #define I2C_ICR_NACKCF I2C_ICR_NACKCF_Msk /*!< NACK clear flag */
  5089. #define I2C_ICR_STOPCF_Pos (5U)
  5090. #define I2C_ICR_STOPCF_Msk (0x1UL << I2C_ICR_STOPCF_Pos) /*!< 0x00000020 */
  5091. #define I2C_ICR_STOPCF I2C_ICR_STOPCF_Msk /*!< STOP detection clear flag */
  5092. #define I2C_ICR_BERRCF_Pos (8U)
  5093. #define I2C_ICR_BERRCF_Msk (0x1UL << I2C_ICR_BERRCF_Pos) /*!< 0x00000100 */
  5094. #define I2C_ICR_BERRCF I2C_ICR_BERRCF_Msk /*!< Bus error clear flag */
  5095. #define I2C_ICR_ARLOCF_Pos (9U)
  5096. #define I2C_ICR_ARLOCF_Msk (0x1UL << I2C_ICR_ARLOCF_Pos) /*!< 0x00000200 */
  5097. #define I2C_ICR_ARLOCF I2C_ICR_ARLOCF_Msk /*!< Arbitration lost clear flag */
  5098. #define I2C_ICR_OVRCF_Pos (10U)
  5099. #define I2C_ICR_OVRCF_Msk (0x1UL << I2C_ICR_OVRCF_Pos) /*!< 0x00000400 */
  5100. #define I2C_ICR_OVRCF I2C_ICR_OVRCF_Msk /*!< Overrun/Underrun clear flag */
  5101. #define I2C_ICR_PECCF_Pos (11U)
  5102. #define I2C_ICR_PECCF_Msk (0x1UL << I2C_ICR_PECCF_Pos) /*!< 0x00000800 */
  5103. #define I2C_ICR_PECCF I2C_ICR_PECCF_Msk /*!< PAC error clear flag */
  5104. #define I2C_ICR_TIMOUTCF_Pos (12U)
  5105. #define I2C_ICR_TIMOUTCF_Msk (0x1UL << I2C_ICR_TIMOUTCF_Pos) /*!< 0x00001000 */
  5106. #define I2C_ICR_TIMOUTCF I2C_ICR_TIMOUTCF_Msk /*!< Timeout clear flag */
  5107. #define I2C_ICR_ALERTCF_Pos (13U)
  5108. #define I2C_ICR_ALERTCF_Msk (0x1UL << I2C_ICR_ALERTCF_Pos) /*!< 0x00002000 */
  5109. #define I2C_ICR_ALERTCF I2C_ICR_ALERTCF_Msk /*!< Alert clear flag */
  5110. /****************** Bit definition for I2C_PECR register *********************/
  5111. #define I2C_PECR_PEC_Pos (0U)
  5112. #define I2C_PECR_PEC_Msk (0xFFUL << I2C_PECR_PEC_Pos) /*!< 0x000000FF */
  5113. #define I2C_PECR_PEC I2C_PECR_PEC_Msk /*!< PEC register */
  5114. /****************** Bit definition for I2C_RXDR register *********************/
  5115. #define I2C_RXDR_RXDATA_Pos (0U)
  5116. #define I2C_RXDR_RXDATA_Msk (0xFFUL << I2C_RXDR_RXDATA_Pos) /*!< 0x000000FF */
  5117. #define I2C_RXDR_RXDATA I2C_RXDR_RXDATA_Msk /*!< 8-bit receive data */
  5118. /****************** Bit definition for I2C_TXDR register *********************/
  5119. #define I2C_TXDR_TXDATA_Pos (0U)
  5120. #define I2C_TXDR_TXDATA_Msk (0xFFUL << I2C_TXDR_TXDATA_Pos) /*!< 0x000000FF */
  5121. #define I2C_TXDR_TXDATA I2C_TXDR_TXDATA_Msk /*!< 8-bit transmit data */
  5122. /******************************************************************************/
  5123. /* */
  5124. /* Independent WATCHDOG (IWDG) */
  5125. /* */
  5126. /******************************************************************************/
  5127. /******************* Bit definition for IWDG_KR register ********************/
  5128. #define IWDG_KR_KEY_Pos (0U)
  5129. #define IWDG_KR_KEY_Msk (0xFFFFUL << IWDG_KR_KEY_Pos) /*!< 0x0000FFFF */
  5130. #define IWDG_KR_KEY IWDG_KR_KEY_Msk /*!<Key value (write only, read 0000h) */
  5131. /******************* Bit definition for IWDG_PR register ********************/
  5132. #define IWDG_PR_PR_Pos (0U)
  5133. #define IWDG_PR_PR_Msk (0x7UL << IWDG_PR_PR_Pos) /*!< 0x00000007 */
  5134. #define IWDG_PR_PR IWDG_PR_PR_Msk /*!<PR[2:0] (Prescaler divider) */
  5135. #define IWDG_PR_PR_0 (0x1UL << IWDG_PR_PR_Pos) /*!< 0x00000001 */
  5136. #define IWDG_PR_PR_1 (0x2UL << IWDG_PR_PR_Pos) /*!< 0x00000002 */
  5137. #define IWDG_PR_PR_2 (0x4UL << IWDG_PR_PR_Pos) /*!< 0x00000004 */
  5138. /******************* Bit definition for IWDG_RLR register *******************/
  5139. #define IWDG_RLR_RL_Pos (0U)
  5140. #define IWDG_RLR_RL_Msk (0xFFFUL << IWDG_RLR_RL_Pos) /*!< 0x00000FFF */
  5141. #define IWDG_RLR_RL IWDG_RLR_RL_Msk /*!<Watchdog counter reload value */
  5142. /******************* Bit definition for IWDG_SR register ********************/
  5143. #define IWDG_SR_PVU_Pos (0U)
  5144. #define IWDG_SR_PVU_Msk (0x1UL << IWDG_SR_PVU_Pos) /*!< 0x00000001 */
  5145. #define IWDG_SR_PVU IWDG_SR_PVU_Msk /*!< Watchdog prescaler value update */
  5146. #define IWDG_SR_RVU_Pos (1U)
  5147. #define IWDG_SR_RVU_Msk (0x1UL << IWDG_SR_RVU_Pos) /*!< 0x00000002 */
  5148. #define IWDG_SR_RVU IWDG_SR_RVU_Msk /*!< Watchdog counter reload value update */
  5149. #define IWDG_SR_WVU_Pos (2U)
  5150. #define IWDG_SR_WVU_Msk (0x1UL << IWDG_SR_WVU_Pos) /*!< 0x00000004 */
  5151. #define IWDG_SR_WVU IWDG_SR_WVU_Msk /*!< Watchdog counter window value update */
  5152. /******************* Bit definition for IWDG_KR register ********************/
  5153. #define IWDG_WINR_WIN_Pos (0U)
  5154. #define IWDG_WINR_WIN_Msk (0xFFFUL << IWDG_WINR_WIN_Pos) /*!< 0x00000FFF */
  5155. #define IWDG_WINR_WIN IWDG_WINR_WIN_Msk /*!< Watchdog counter window value */
  5156. /******************************************************************************/
  5157. /* */
  5158. /* Power Control */
  5159. /* */
  5160. /******************************************************************************/
  5161. #define PWR_PVM_SUPPORT /*!< PWR feature available only on specific devices: Power Voltage Monitoring feature */
  5162. #define PWR_PVD_SUPPORT /*!< PWR feature available only on specific devices: Power Voltage Detection feature */
  5163. #define PWR_BOR_SUPPORT /*!< PWR feature available only on specific devices: Brown-Out Reset feature */
  5164. #define PWR_SHDW_SUPPORT /*!< PWR feature available only on specific devices: Shutdown mode */
  5165. /******************** Bit definition for PWR_CR1 register ********************/
  5166. #define PWR_CR1_LPMS_Pos (0U)
  5167. #define PWR_CR1_LPMS_Msk (0x7UL << PWR_CR1_LPMS_Pos) /*!< 0x00000007 */
  5168. #define PWR_CR1_LPMS PWR_CR1_LPMS_Msk /*!< Low Power Mode Selection */
  5169. #define PWR_CR1_LPMS_0 (0x1UL << PWR_CR1_LPMS_Pos) /*!< 0x00000001 */
  5170. #define PWR_CR1_LPMS_1 (0x2UL << PWR_CR1_LPMS_Pos) /*!< 0x00000002 */
  5171. #define PWR_CR1_LPMS_2 (0x4UL << PWR_CR1_LPMS_Pos) /*!< 0x00000004 */
  5172. #define PWR_CR1_FPD_STOP_Pos (3U)
  5173. #define PWR_CR1_FPD_STOP_Msk (0x1UL << PWR_CR1_FPD_STOP_Pos) /*!< 0x00000008 */
  5174. #define PWR_CR1_FPD_STOP PWR_CR1_FPD_STOP_Msk /*!< Flash power down mode during stop */
  5175. #define PWR_CR1_FPD_LPRUN_Pos (4U)
  5176. #define PWR_CR1_FPD_LPRUN_Msk (0x1UL << PWR_CR1_FPD_LPRUN_Pos) /*!< 0x00000010 */
  5177. #define PWR_CR1_FPD_LPRUN PWR_CR1_FPD_LPRUN_Msk /*!< Flash power down mode during run */
  5178. #define PWR_CR1_FPD_LPSLP_Pos (5U)
  5179. #define PWR_CR1_FPD_LPSLP_Msk (0x1UL << PWR_CR1_FPD_LPSLP_Pos) /*!< 0x00000020 */
  5180. #define PWR_CR1_FPD_LPSLP PWR_CR1_FPD_LPSLP_Msk /*!< Flash power down mode during sleep */
  5181. #define PWR_CR1_DBP_Pos (8U)
  5182. #define PWR_CR1_DBP_Msk (0x1UL << PWR_CR1_DBP_Pos) /*!< 0x00000100 */
  5183. #define PWR_CR1_DBP PWR_CR1_DBP_Msk /*!< Disable Backup Domain write protection */
  5184. #define PWR_CR1_VOS_Pos (9U)
  5185. #define PWR_CR1_VOS_Msk (0x3UL << PWR_CR1_VOS_Pos) /*!< 0x00000600 */
  5186. #define PWR_CR1_VOS PWR_CR1_VOS_Msk /*!< Voltage scaling */
  5187. #define PWR_CR1_VOS_0 (0x1UL << PWR_CR1_VOS_Pos) /*!< Voltage scaling bit 0 */
  5188. #define PWR_CR1_VOS_1 (0x2UL << PWR_CR1_VOS_Pos) /*!< Voltage scaling bit 1 */
  5189. #define PWR_CR1_LPR_Pos (14U)
  5190. #define PWR_CR1_LPR_Msk (0x1UL << PWR_CR1_LPR_Pos) /*!< 0x00004000 */
  5191. #define PWR_CR1_LPR PWR_CR1_LPR_Msk /*!< Regulator Low-Power Run mode */
  5192. /******************** Bit definition for PWR_CR2 register ********************/
  5193. #define PWR_CR2_PVDE_Pos (0U)
  5194. #define PWR_CR2_PVDE_Msk (0x1UL << PWR_CR2_PVDE_Pos) /*!< 0x00000001 */
  5195. #define PWR_CR2_PVDE PWR_CR2_PVDE_Msk /*!< Programmable Voltage Detector Enable */
  5196. #define PWR_CR2_PVDFT_Pos (1U)
  5197. #define PWR_CR2_PVDFT_Msk (0x7UL << PWR_CR2_PVDFT_Pos) /*!< 0x0000000E */
  5198. #define PWR_CR2_PVDFT PWR_CR2_PVDFT_Msk /*!< PVD Falling Threshold Selection bit field */
  5199. #define PWR_CR2_PVDFT_0 (0x1UL << PWR_CR2_PVDFT_Pos) /*!< 0x00000002 */
  5200. #define PWR_CR2_PVDFT_1 (0x2UL << PWR_CR2_PVDFT_Pos) /*!< 0x00000004 */
  5201. #define PWR_CR2_PVDFT_2 (0x4UL << PWR_CR2_PVDFT_Pos) /*!< 0x00000008 */
  5202. #define PWR_CR2_PVDRT_Pos (4U)
  5203. #define PWR_CR2_PVDRT_Msk (0x7UL << PWR_CR2_PVDRT_Pos) /*!< 0x00000070 */
  5204. #define PWR_CR2_PVDRT PWR_CR2_PVDRT_Msk /*!< PVD Rising Threshold Selection bit field */
  5205. #define PWR_CR2_PVDRT_0 (0x1UL << PWR_CR2_PVDRT_Pos) /*!< 0x00000010 */
  5206. #define PWR_CR2_PVDRT_1 (0x2UL << PWR_CR2_PVDRT_Pos) /*!< 0x00000020 */
  5207. #define PWR_CR2_PVDRT_2 (0x4UL << PWR_CR2_PVDRT_Pos) /*!< 0x00000040 */
  5208. #define PWR_CR2_PVMEN_USB_Pos (8U)
  5209. #define PWR_CR2_PVMEN_USB_Msk (0x1UL << PWR_CR2_PVMEN_USB_Pos) /*!< 0x00000100 */
  5210. #define PWR_CR2_PVMEN_USB PWR_CR2_PVMEN_USB_Msk /*!< USB Peripheral Voltage Monitor Enable */
  5211. #define PWR_CR2_IOSV_Pos (9U)
  5212. #define PWR_CR2_IOSV_Msk (0x1UL << PWR_CR2_IOSV_Pos) /*!< 0x00000200 */
  5213. #define PWR_CR2_IOSV PWR_CR2_IOSV_Msk /*!< VDDIO2 independent I/Os Supply Valid */
  5214. #define PWR_CR2_USV_Pos (10U)
  5215. #define PWR_CR2_USV_Msk (0x1UL << PWR_CR2_USV_Pos) /*!< 0x00000400 */
  5216. #define PWR_CR2_USV PWR_CR2_USV_Msk /*!< VDD USB Supply Valid */
  5217. /******************** Bit definition for PWR_CR3 register ********************/
  5218. #define PWR_CR3_EWUP_Pos (0U)
  5219. #define PWR_CR3_EWUP_Msk (0x3FUL << PWR_CR3_EWUP_Pos) /*!< 0x0000003F */
  5220. #define PWR_CR3_EWUP PWR_CR3_EWUP_Msk /*!< Enable all Wake-Up Pins */
  5221. #define PWR_CR3_EWUP1_Pos (0U)
  5222. #define PWR_CR3_EWUP1_Msk (0x1UL << PWR_CR3_EWUP1_Pos) /*!< 0x00000001 */
  5223. #define PWR_CR3_EWUP1 PWR_CR3_EWUP1_Msk /*!< Enable WKUP pin 1 */
  5224. #define PWR_CR3_EWUP2_Pos (1U)
  5225. #define PWR_CR3_EWUP2_Msk (0x1UL << PWR_CR3_EWUP2_Pos) /*!< 0x00000002 */
  5226. #define PWR_CR3_EWUP2 PWR_CR3_EWUP2_Msk /*!< Enable WKUP pin 2 */
  5227. #define PWR_CR3_EWUP3_Pos (2U)
  5228. #define PWR_CR3_EWUP3_Msk (0x1UL << PWR_CR3_EWUP3_Pos) /*!< 0x00000004 */
  5229. #define PWR_CR3_EWUP3 PWR_CR3_EWUP3_Msk /*!< Enable WKUP pin 3 */
  5230. #define PWR_CR3_EWUP4_Pos (3U)
  5231. #define PWR_CR3_EWUP4_Msk (0x1UL << PWR_CR3_EWUP4_Pos) /*!< 0x00000008 */
  5232. #define PWR_CR3_EWUP4 PWR_CR3_EWUP4_Msk /*!< Enable WKUP pin 4 */
  5233. #define PWR_CR3_EWUP5_Pos (4U)
  5234. #define PWR_CR3_EWUP5_Msk (0x1UL << PWR_CR3_EWUP5_Pos) /*!< 0x00000010 */
  5235. #define PWR_CR3_EWUP5 PWR_CR3_EWUP5_Msk /*!< Enable WKUP pin 5 */
  5236. #define PWR_CR3_EWUP6_Pos (5U)
  5237. #define PWR_CR3_EWUP6_Msk (0x1UL << PWR_CR3_EWUP6_Pos) /*!< 0x00000020 */
  5238. #define PWR_CR3_EWUP6 PWR_CR3_EWUP6_Msk /*!< Enable WKUP pin 6 */
  5239. #define PWR_CR3_RRS_Pos (8U)
  5240. #define PWR_CR3_RRS_Msk (0x1UL << PWR_CR3_RRS_Pos) /*!< 0x00000100 */
  5241. #define PWR_CR3_RRS PWR_CR3_RRS_Msk /*!< RAM retention in Standby mode */
  5242. #define PWR_CR3_ENB_ULP_Pos (9U)
  5243. #define PWR_CR3_ENB_ULP_Msk (0x1UL << PWR_CR3_ENB_ULP_Pos) /*!< 0x00000200 */
  5244. #define PWR_CR3_ENB_ULP PWR_CR3_ENB_ULP_Msk /*!< Enable sampling resistor bridge in the LPMU_RESET block */
  5245. #define PWR_CR3_APC_Pos (10U)
  5246. #define PWR_CR3_APC_Msk (0x1UL << PWR_CR3_APC_Pos) /*!< 0x00000400 */
  5247. #define PWR_CR3_APC PWR_CR3_APC_Msk /*!< Apply pull-up and pull-down configuration */
  5248. #define PWR_CR3_EIWUL_Pos (15U)
  5249. #define PWR_CR3_EIWUL_Msk (0x1UL << PWR_CR3_EIWUL_Pos) /*!< 0x00008000 */
  5250. #define PWR_CR3_EIWUL PWR_CR3_EIWUL_Msk /*!< Enable Internal Wake-up line */
  5251. /******************** Bit definition for PWR_CR4 register ********************/
  5252. #define PWR_CR4_WP_Pos (0U)
  5253. #define PWR_CR4_WP_Msk (0x3FUL << PWR_CR4_WP_Pos) /*!< 0x0000003F */
  5254. #define PWR_CR4_WP PWR_CR4_WP_Msk /*!< all Wake-Up Pin polarity */
  5255. #define PWR_CR4_WP1_Pos (0U)
  5256. #define PWR_CR4_WP1_Msk (0x1UL << PWR_CR4_WP1_Pos) /*!< 0x00000001 */
  5257. #define PWR_CR4_WP1 PWR_CR4_WP1_Msk /*!< Wake-Up Pin 1 polarity */
  5258. #define PWR_CR4_WP2_Pos (1U)
  5259. #define PWR_CR4_WP2_Msk (0x1UL << PWR_CR4_WP2_Pos) /*!< 0x00000002 */
  5260. #define PWR_CR4_WP2 PWR_CR4_WP2_Msk /*!< Wake-Up Pin 2 polarity */
  5261. #define PWR_CR4_WP3_Pos (2U)
  5262. #define PWR_CR4_WP3_Msk (0x1UL << PWR_CR4_WP3_Pos) /*!< 0x00000004 */
  5263. #define PWR_CR4_WP3 PWR_CR4_WP3_Msk /*!< Wake-Up Pin 3 polarity */
  5264. #define PWR_CR4_WP4_Pos (3U)
  5265. #define PWR_CR4_WP4_Msk (0x1UL << PWR_CR4_WP4_Pos) /*!< 0x00000008 */
  5266. #define PWR_CR4_WP4 PWR_CR4_WP4_Msk /*!< Wake-Up Pin 4 polarity */
  5267. #define PWR_CR4_WP5_Pos (4U)
  5268. #define PWR_CR4_WP5_Msk (0x1UL << PWR_CR4_WP5_Pos) /*!< 0x00000010 */
  5269. #define PWR_CR4_WP5 PWR_CR4_WP5_Msk /*!< Wake-Up Pin 5 polarity */
  5270. #define PWR_CR4_WP6_Pos (5U)
  5271. #define PWR_CR4_WP6_Msk (0x1UL << PWR_CR4_WP6_Pos) /*!< 0x00000020 */
  5272. #define PWR_CR4_WP6 PWR_CR4_WP6_Msk /*!< Wake-Up Pin 6 polarity */
  5273. #define PWR_CR4_VBE_Pos (8U)
  5274. #define PWR_CR4_VBE_Msk (0x1UL << PWR_CR4_VBE_Pos) /*!< 0x00000100 */
  5275. #define PWR_CR4_VBE PWR_CR4_VBE_Msk /*!< VBAT Battery charging Enable */
  5276. #define PWR_CR4_VBRS_Pos (9U)
  5277. #define PWR_CR4_VBRS_Msk (0x1UL << PWR_CR4_VBRS_Pos) /*!< 0x00000200 */
  5278. #define PWR_CR4_VBRS PWR_CR4_VBRS_Msk /*!< VBAT Battery charging Resistor Selection */
  5279. /******************** Bit definition for PWR_SR1 register ********************/
  5280. #define PWR_SR1_WUF_Pos (0U)
  5281. #define PWR_SR1_WUF_Msk (0x3FUL << PWR_SR1_WUF_Pos) /*!< 0x0000003F */
  5282. #define PWR_SR1_WUF PWR_SR1_WUF_Msk /*!< Wakeup Flags */
  5283. #define PWR_SR1_WUF1_Pos (0U)
  5284. #define PWR_SR1_WUF1_Msk (0x1UL << PWR_SR1_WUF1_Pos) /*!< 0x00000001 */
  5285. #define PWR_SR1_WUF1 PWR_SR1_WUF1_Msk /*!< Wakeup Flag 1 */
  5286. #define PWR_SR1_WUF2_Pos (1U)
  5287. #define PWR_SR1_WUF2_Msk (0x1UL << PWR_SR1_WUF2_Pos) /*!< 0x00000002 */
  5288. #define PWR_SR1_WUF2 PWR_SR1_WUF2_Msk /*!< Wakeup Flag 2 */
  5289. #define PWR_SR1_WUF3_Pos (2U)
  5290. #define PWR_SR1_WUF3_Msk (0x1UL << PWR_SR1_WUF3_Pos) /*!< 0x00000004 */
  5291. #define PWR_SR1_WUF3 PWR_SR1_WUF3_Msk /*!< Wakeup Flag 3 */
  5292. #define PWR_SR1_WUF4_Pos (3U)
  5293. #define PWR_SR1_WUF4_Msk (0x1UL << PWR_SR1_WUF4_Pos) /*!< 0x00000008 */
  5294. #define PWR_SR1_WUF4 PWR_SR1_WUF4_Msk /*!< Wakeup Flag 4 */
  5295. #define PWR_SR1_WUF5_Pos (4U)
  5296. #define PWR_SR1_WUF5_Msk (0x1UL << PWR_SR1_WUF5_Pos) /*!< 0x00000010 */
  5297. #define PWR_SR1_WUF5 PWR_SR1_WUF5_Msk /*!< Wakeup Flag 5 */
  5298. #define PWR_SR1_WUF6_Pos (5U)
  5299. #define PWR_SR1_WUF6_Msk (0x1UL << PWR_SR1_WUF6_Pos) /*!< 0x00000020 */
  5300. #define PWR_SR1_WUF6 PWR_SR1_WUF6_Msk /*!< Wakeup Flag 6 */
  5301. #define PWR_SR1_SBF_Pos (8U)
  5302. #define PWR_SR1_SBF_Msk (0x1UL << PWR_SR1_SBF_Pos) /*!< 0x00000100 */
  5303. #define PWR_SR1_SBF PWR_SR1_SBF_Msk /*!< Standby Flag */
  5304. #define PWR_SR1_WUFI_Pos (15U)
  5305. #define PWR_SR1_WUFI_Msk (0x1UL << PWR_SR1_WUFI_Pos) /*!< 0x00008000 */
  5306. #define PWR_SR1_WUFI PWR_SR1_WUFI_Msk /*!< Wakeup Flag Internal */
  5307. /******************** Bit definition for PWR_SR2 register ********************/
  5308. #define PWR_SR2_FLASH_RDY_Pos (7U)
  5309. #define PWR_SR2_FLASH_RDY_Msk (0x1UL << PWR_SR2_FLASH_RDY_Pos) /*!< 0x00000080 */
  5310. #define PWR_SR2_FLASH_RDY PWR_SR2_FLASH_RDY_Msk /*!< Flash Ready */
  5311. #define PWR_SR2_REGLPS_Pos (8U)
  5312. #define PWR_SR2_REGLPS_Msk (0x1UL << PWR_SR2_REGLPS_Pos) /*!< 0x00000100 */
  5313. #define PWR_SR2_REGLPS PWR_SR2_REGLPS_Msk /*!< Regulator Low Power started */
  5314. #define PWR_SR2_REGLPF_Pos (9U)
  5315. #define PWR_SR2_REGLPF_Msk (0x1UL << PWR_SR2_REGLPF_Pos) /*!< 0x00000200 */
  5316. #define PWR_SR2_REGLPF PWR_SR2_REGLPF_Msk /*!< Regulator Low Power flag */
  5317. #define PWR_SR2_VOSF_Pos (10U)
  5318. #define PWR_SR2_VOSF_Msk (0x1UL << PWR_SR2_VOSF_Pos) /*!< 0x00000400 */
  5319. #define PWR_SR2_VOSF PWR_SR2_VOSF_Msk /*!< Voltage Scaling Flag */
  5320. #define PWR_SR2_PVDO_Pos (11U)
  5321. #define PWR_SR2_PVDO_Msk (0x1UL << PWR_SR2_PVDO_Pos) /*!< 0x00000800 */
  5322. #define PWR_SR2_PVDO PWR_SR2_PVDO_Msk /*!< Power voltage detector output */
  5323. #define PWR_SR2_PVMO_USB_Pos (13U)
  5324. #define PWR_SR2_PVMO_USB_Msk (0x1UL << PWR_SR2_PVMO_USB_Pos) /*!< 0x00002000 */
  5325. #define PWR_SR2_PVMO_USB PWR_SR2_PVMO_USB_Msk /*!< USB Peripheral Voltage Monitoring Output */
  5326. /******************** Bit definition for PWR_SCR register ********************/
  5327. #define PWR_SCR_CWUF_Pos (0U)
  5328. #define PWR_SCR_CWUF_Msk (0x3FUL << PWR_SCR_CWUF_Pos) /*!< 0x0000003F */
  5329. #define PWR_SCR_CWUF PWR_SCR_CWUF_Msk /*!< Clear Wake-up Flags */
  5330. #define PWR_SCR_CWUF1_Pos (0U)
  5331. #define PWR_SCR_CWUF1_Msk (0x1UL << PWR_SCR_CWUF1_Pos) /*!< 0x00000001 */
  5332. #define PWR_SCR_CWUF1 PWR_SCR_CWUF1_Msk /*!< Clear Wake-up Flag 1 */
  5333. #define PWR_SCR_CWUF2_Pos (1U)
  5334. #define PWR_SCR_CWUF2_Msk (0x1UL << PWR_SCR_CWUF2_Pos) /*!< 0x00000002 */
  5335. #define PWR_SCR_CWUF2 PWR_SCR_CWUF2_Msk /*!< Clear Wake-up Flag 2 */
  5336. #define PWR_SCR_CWUF3_Pos (2U)
  5337. #define PWR_SCR_CWUF3_Msk (0x1UL << PWR_SCR_CWUF3_Pos) /*!< 0x00000004 */
  5338. #define PWR_SCR_CWUF3 PWR_SCR_CWUF3_Msk /*!< Clear Wake-up Flag 3 */
  5339. #define PWR_SCR_CWUF4_Pos (3U)
  5340. #define PWR_SCR_CWUF4_Msk (0x1UL << PWR_SCR_CWUF4_Pos) /*!< 0x00000008 */
  5341. #define PWR_SCR_CWUF4 PWR_SCR_CWUF4_Msk /*!< Clear Wake-up Flag 4 */
  5342. #define PWR_SCR_CWUF5_Pos (4U)
  5343. #define PWR_SCR_CWUF5_Msk (0x1UL << PWR_SCR_CWUF5_Pos) /*!< 0x00000010 */
  5344. #define PWR_SCR_CWUF5 PWR_SCR_CWUF5_Msk /*!< Clear Wake-up Flag 5 */
  5345. #define PWR_SCR_CWUF6_Pos (5U)
  5346. #define PWR_SCR_CWUF6_Msk (0x1UL << PWR_SCR_CWUF6_Pos) /*!< 0x00000020 */
  5347. #define PWR_SCR_CWUF6 PWR_SCR_CWUF6_Msk /*!< Clear Wake-up Flag 6 */
  5348. #define PWR_SCR_CSBF_Pos (8U)
  5349. #define PWR_SCR_CSBF_Msk (0x1UL << PWR_SCR_CSBF_Pos) /*!< 0x00000100 */
  5350. #define PWR_SCR_CSBF PWR_SCR_CSBF_Msk /*!< Clear Standby Flag */
  5351. /******************** Bit definition for PWR_PUCRA register *****************/
  5352. #define PWR_PUCRA_PU0_Pos (0U)
  5353. #define PWR_PUCRA_PU0_Msk (0x1UL << PWR_PUCRA_PU0_Pos) /*!< 0x00000001 */
  5354. #define PWR_PUCRA_PU0 PWR_PUCRA_PU0_Msk /*!< Pin PA0 Pull-Up set */
  5355. #define PWR_PUCRA_PU1_Pos (1U)
  5356. #define PWR_PUCRA_PU1_Msk (0x1UL << PWR_PUCRA_PU1_Pos) /*!< 0x00000002 */
  5357. #define PWR_PUCRA_PU1 PWR_PUCRA_PU1_Msk /*!< Pin PA1 Pull-Up set */
  5358. #define PWR_PUCRA_PU2_Pos (2U)
  5359. #define PWR_PUCRA_PU2_Msk (0x1UL << PWR_PUCRA_PU2_Pos) /*!< 0x00000004 */
  5360. #define PWR_PUCRA_PU2 PWR_PUCRA_PU2_Msk /*!< Pin PA2 Pull-Up set */
  5361. #define PWR_PUCRA_PU3_Pos (3U)
  5362. #define PWR_PUCRA_PU3_Msk (0x1UL << PWR_PUCRA_PU3_Pos) /*!< 0x00000008 */
  5363. #define PWR_PUCRA_PU3 PWR_PUCRA_PU3_Msk /*!< Pin PA3 Pull-Up set */
  5364. #define PWR_PUCRA_PU4_Pos (4U)
  5365. #define PWR_PUCRA_PU4_Msk (0x1UL << PWR_PUCRA_PU4_Pos) /*!< 0x00000010 */
  5366. #define PWR_PUCRA_PU4 PWR_PUCRA_PU4_Msk /*!< Pin PA4 Pull-Up set */
  5367. #define PWR_PUCRA_PU5_Pos (5U)
  5368. #define PWR_PUCRA_PU5_Msk (0x1UL << PWR_PUCRA_PU5_Pos) /*!< 0x00000020 */
  5369. #define PWR_PUCRA_PU5 PWR_PUCRA_PU5_Msk /*!< Pin PA5 Pull-Up set */
  5370. #define PWR_PUCRA_PU6_Pos (6U)
  5371. #define PWR_PUCRA_PU6_Msk (0x1UL << PWR_PUCRA_PU6_Pos) /*!< 0x00000040 */
  5372. #define PWR_PUCRA_PU6 PWR_PUCRA_PU6_Msk /*!< Pin PA6 Pull-Up set */
  5373. #define PWR_PUCRA_PU7_Pos (7U)
  5374. #define PWR_PUCRA_PU7_Msk (0x1UL << PWR_PUCRA_PU7_Pos) /*!< 0x00000080 */
  5375. #define PWR_PUCRA_PU7 PWR_PUCRA_PU7_Msk /*!< Pin PA7 Pull-Up set */
  5376. #define PWR_PUCRA_PU8_Pos (8U)
  5377. #define PWR_PUCRA_PU8_Msk (0x1UL << PWR_PUCRA_PU8_Pos) /*!< 0x00000100 */
  5378. #define PWR_PUCRA_PU8 PWR_PUCRA_PU8_Msk /*!< Pin PA8 Pull-Up set */
  5379. #define PWR_PUCRA_PU9_Pos (9U)
  5380. #define PWR_PUCRA_PU9_Msk (0x1UL << PWR_PUCRA_PU9_Pos) /*!< 0x00000200 */
  5381. #define PWR_PUCRA_PU9 PWR_PUCRA_PU9_Msk /*!< Pin PA9 Pull-Up set */
  5382. #define PWR_PUCRA_PU10_Pos (10U)
  5383. #define PWR_PUCRA_PU10_Msk (0x1UL << PWR_PUCRA_PU10_Pos) /*!< 0x00000400 */
  5384. #define PWR_PUCRA_PU10 PWR_PUCRA_PU10_Msk /*!< Pin PA10 Pull-Up set */
  5385. #define PWR_PUCRA_PU11_Pos (11U)
  5386. #define PWR_PUCRA_PU11_Msk (0x1UL << PWR_PUCRA_PU11_Pos) /*!< 0x00000800 */
  5387. #define PWR_PUCRA_PU11 PWR_PUCRA_PU11_Msk /*!< Pin PA11 Pull-Up set */
  5388. #define PWR_PUCRA_PU12_Pos (12U)
  5389. #define PWR_PUCRA_PU12_Msk (0x1UL << PWR_PUCRA_PU12_Pos) /*!< 0x00001000 */
  5390. #define PWR_PUCRA_PU12 PWR_PUCRA_PU12_Msk /*!< Pin PA12 Pull-Up set */
  5391. #define PWR_PUCRA_PU13_Pos (13U)
  5392. #define PWR_PUCRA_PU13_Msk (0x1UL << PWR_PUCRA_PU13_Pos) /*!< 0x00002000 */
  5393. #define PWR_PUCRA_PU13 PWR_PUCRA_PU13_Msk /*!< Pin PA13 Pull-Up set */
  5394. #define PWR_PUCRA_PU14_Pos (14U)
  5395. #define PWR_PUCRA_PU14_Msk (0x1UL << PWR_PUCRA_PU14_Pos) /*!< 0x00004000 */
  5396. #define PWR_PUCRA_PU14 PWR_PUCRA_PU14_Msk /*!< Pin PA14 Pull-Up set */
  5397. #define PWR_PUCRA_PU15_Pos (15U)
  5398. #define PWR_PUCRA_PU15_Msk (0x1UL << PWR_PUCRA_PU15_Pos) /*!< 0x00008000 */
  5399. #define PWR_PUCRA_PU15 PWR_PUCRA_PU15_Msk /*!< Pin PA15 Pull-Up set */
  5400. /******************** Bit definition for PWR_PDCRA register *****************/
  5401. #define PWR_PDCRA_PD0_Pos (0U)
  5402. #define PWR_PDCRA_PD0_Msk (0x1UL << PWR_PDCRA_PD0_Pos) /*!< 0x00000001 */
  5403. #define PWR_PDCRA_PD0 PWR_PDCRA_PD0_Msk /*!< Pin PA0 Pull-Down set */
  5404. #define PWR_PDCRA_PD1_Pos (1U)
  5405. #define PWR_PDCRA_PD1_Msk (0x1UL << PWR_PDCRA_PD1_Pos) /*!< 0x00000002 */
  5406. #define PWR_PDCRA_PD1 PWR_PDCRA_PD1_Msk /*!< Pin PA1 Pull-Down set */
  5407. #define PWR_PDCRA_PD2_Pos (2U)
  5408. #define PWR_PDCRA_PD2_Msk (0x1UL << PWR_PDCRA_PD2_Pos) /*!< 0x00000004 */
  5409. #define PWR_PDCRA_PD2 PWR_PDCRA_PD2_Msk /*!< Pin PA2 Pull-Down set */
  5410. #define PWR_PDCRA_PD3_Pos (3U)
  5411. #define PWR_PDCRA_PD3_Msk (0x1UL << PWR_PDCRA_PD3_Pos) /*!< 0x00000008 */
  5412. #define PWR_PDCRA_PD3 PWR_PDCRA_PD3_Msk /*!< Pin PA3 Pull-Down set */
  5413. #define PWR_PDCRA_PD4_Pos (4U)
  5414. #define PWR_PDCRA_PD4_Msk (0x1UL << PWR_PDCRA_PD4_Pos) /*!< 0x00000010 */
  5415. #define PWR_PDCRA_PD4 PWR_PDCRA_PD4_Msk /*!< Pin PA4 Pull-Down set */
  5416. #define PWR_PDCRA_PD5_Pos (5U)
  5417. #define PWR_PDCRA_PD5_Msk (0x1UL << PWR_PDCRA_PD5_Pos) /*!< 0x00000020 */
  5418. #define PWR_PDCRA_PD5 PWR_PDCRA_PD5_Msk /*!< Pin PA5 Pull-Down set */
  5419. #define PWR_PDCRA_PD6_Pos (6U)
  5420. #define PWR_PDCRA_PD6_Msk (0x1UL << PWR_PDCRA_PD6_Pos) /*!< 0x00000040 */
  5421. #define PWR_PDCRA_PD6 PWR_PDCRA_PD6_Msk /*!< Pin PA6 Pull-Down set */
  5422. #define PWR_PDCRA_PD7_Pos (7U)
  5423. #define PWR_PDCRA_PD7_Msk (0x1UL << PWR_PDCRA_PD7_Pos) /*!< 0x00000080 */
  5424. #define PWR_PDCRA_PD7 PWR_PDCRA_PD7_Msk /*!< Pin PA7 Pull-Down set */
  5425. #define PWR_PDCRA_PD8_Pos (8U)
  5426. #define PWR_PDCRA_PD8_Msk (0x1UL << PWR_PDCRA_PD8_Pos) /*!< 0x00000100 */
  5427. #define PWR_PDCRA_PD8 PWR_PDCRA_PD8_Msk /*!< Pin PA8 Pull-Down set */
  5428. #define PWR_PDCRA_PD9_Pos (9U)
  5429. #define PWR_PDCRA_PD9_Msk (0x1UL << PWR_PDCRA_PD9_Pos) /*!< 0x00000200 */
  5430. #define PWR_PDCRA_PD9 PWR_PDCRA_PD9_Msk /*!< Pin PA9 Pull-Down set */
  5431. #define PWR_PDCRA_PD10_Pos (10U)
  5432. #define PWR_PDCRA_PD10_Msk (0x1UL << PWR_PDCRA_PD10_Pos) /*!< 0x00000400 */
  5433. #define PWR_PDCRA_PD10 PWR_PDCRA_PD10_Msk /*!< Pin PA10 Pull-Down set */
  5434. #define PWR_PDCRA_PD11_Pos (11U)
  5435. #define PWR_PDCRA_PD11_Msk (0x1UL << PWR_PDCRA_PD11_Pos) /*!< 0x00000800 */
  5436. #define PWR_PDCRA_PD11 PWR_PDCRA_PD11_Msk /*!< Pin PA11 Pull-Down set */
  5437. #define PWR_PDCRA_PD12_Pos (12U)
  5438. #define PWR_PDCRA_PD12_Msk (0x1UL << PWR_PDCRA_PD12_Pos) /*!< 0x00001000 */
  5439. #define PWR_PDCRA_PD12 PWR_PDCRA_PD12_Msk /*!< Pin PA12 Pull-Down set */
  5440. #define PWR_PDCRA_PD13_Pos (13U)
  5441. #define PWR_PDCRA_PD13_Msk (0x1UL << PWR_PDCRA_PD13_Pos) /*!< 0x00002000 */
  5442. #define PWR_PDCRA_PD13 PWR_PDCRA_PD13_Msk /*!< Pin PA13 Pull-Down set */
  5443. #define PWR_PDCRA_PD14_Pos (14U)
  5444. #define PWR_PDCRA_PD14_Msk (0x1UL << PWR_PDCRA_PD14_Pos) /*!< 0x00004000 */
  5445. #define PWR_PDCRA_PD14 PWR_PDCRA_PD14_Msk /*!< Pin PA14 Pull-Down set */
  5446. #define PWR_PDCRA_PD15_Pos (15U)
  5447. #define PWR_PDCRA_PD15_Msk (0x1UL << PWR_PDCRA_PD15_Pos) /*!< 0x00008000 */
  5448. #define PWR_PDCRA_PD15 PWR_PDCRA_PD15_Msk /*!< Pin PA15 Pull-Down set */
  5449. /******************** Bit definition for PWR_PUCRB register *****************/
  5450. #define PWR_PUCRB_PU0_Pos (0U)
  5451. #define PWR_PUCRB_PU0_Msk (0x1UL << PWR_PUCRB_PU0_Pos) /*!< 0x00000001 */
  5452. #define PWR_PUCRB_PU0 PWR_PUCRB_PU0_Msk /*!< Pin PB0 Pull-Up set */
  5453. #define PWR_PUCRB_PU1_Pos (1U)
  5454. #define PWR_PUCRB_PU1_Msk (0x1UL << PWR_PUCRB_PU1_Pos) /*!< 0x00000002 */
  5455. #define PWR_PUCRB_PU1 PWR_PUCRB_PU1_Msk /*!< Pin PB1 Pull-Up set */
  5456. #define PWR_PUCRB_PU2_Pos (2U)
  5457. #define PWR_PUCRB_PU2_Msk (0x1UL << PWR_PUCRB_PU2_Pos) /*!< 0x00000004 */
  5458. #define PWR_PUCRB_PU2 PWR_PUCRB_PU2_Msk /*!< Pin PB2 Pull-Up set */
  5459. #define PWR_PUCRB_PU3_Pos (3U)
  5460. #define PWR_PUCRB_PU3_Msk (0x1UL << PWR_PUCRB_PU3_Pos) /*!< 0x00000008 */
  5461. #define PWR_PUCRB_PU3 PWR_PUCRB_PU3_Msk /*!< Pin PB3 Pull-Up set */
  5462. #define PWR_PUCRB_PU4_Pos (4U)
  5463. #define PWR_PUCRB_PU4_Msk (0x1UL << PWR_PUCRB_PU4_Pos) /*!< 0x00000010 */
  5464. #define PWR_PUCRB_PU4 PWR_PUCRB_PU4_Msk /*!< Pin PB4 Pull-Up set */
  5465. #define PWR_PUCRB_PU5_Pos (5U)
  5466. #define PWR_PUCRB_PU5_Msk (0x1UL << PWR_PUCRB_PU5_Pos) /*!< 0x00000020 */
  5467. #define PWR_PUCRB_PU5 PWR_PUCRB_PU5_Msk /*!< Pin PB5 Pull-Up set */
  5468. #define PWR_PUCRB_PU6_Pos (6U)
  5469. #define PWR_PUCRB_PU6_Msk (0x1UL << PWR_PUCRB_PU6_Pos) /*!< 0x00000040 */
  5470. #define PWR_PUCRB_PU6 PWR_PUCRB_PU6_Msk /*!< Pin PB6 Pull-Up set */
  5471. #define PWR_PUCRB_PU7_Pos (7U)
  5472. #define PWR_PUCRB_PU7_Msk (0x1UL << PWR_PUCRB_PU7_Pos) /*!< 0x00000080 */
  5473. #define PWR_PUCRB_PU7 PWR_PUCRB_PU7_Msk /*!< Pin PB7 Pull-Up set */
  5474. #define PWR_PUCRB_PU8_Pos (8U)
  5475. #define PWR_PUCRB_PU8_Msk (0x1UL << PWR_PUCRB_PU8_Pos) /*!< 0x00000100 */
  5476. #define PWR_PUCRB_PU8 PWR_PUCRB_PU8_Msk /*!< Pin PB8 Pull-Up set */
  5477. #define PWR_PUCRB_PU9_Pos (9U)
  5478. #define PWR_PUCRB_PU9_Msk (0x1UL << PWR_PUCRB_PU9_Pos) /*!< 0x00000200 */
  5479. #define PWR_PUCRB_PU9 PWR_PUCRB_PU9_Msk /*!< Pin PB9 Pull-Up set */
  5480. #define PWR_PUCRB_PU10_Pos (10U)
  5481. #define PWR_PUCRB_PU10_Msk (0x1UL << PWR_PUCRB_PU10_Pos) /*!< 0x00000400 */
  5482. #define PWR_PUCRB_PU10 PWR_PUCRB_PU10_Msk /*!< Pin PB10 Pull-Up set */
  5483. #define PWR_PUCRB_PU11_Pos (11U)
  5484. #define PWR_PUCRB_PU11_Msk (0x1UL << PWR_PUCRB_PU11_Pos) /*!< 0x00000800 */
  5485. #define PWR_PUCRB_PU11 PWR_PUCRB_PU11_Msk /*!< Pin PB11 Pull-Up set */
  5486. #define PWR_PUCRB_PU12_Pos (12U)
  5487. #define PWR_PUCRB_PU12_Msk (0x1UL << PWR_PUCRB_PU12_Pos) /*!< 0x00001000 */
  5488. #define PWR_PUCRB_PU12 PWR_PUCRB_PU12_Msk /*!< Pin PB12 Pull-Up set */
  5489. #define PWR_PUCRB_PU13_Pos (13U)
  5490. #define PWR_PUCRB_PU13_Msk (0x1UL << PWR_PUCRB_PU13_Pos) /*!< 0x00002000 */
  5491. #define PWR_PUCRB_PU13 PWR_PUCRB_PU13_Msk /*!< Pin PB13 Pull-Up set */
  5492. #define PWR_PUCRB_PU14_Pos (14U)
  5493. #define PWR_PUCRB_PU14_Msk (0x1UL << PWR_PUCRB_PU14_Pos) /*!< 0x00004000 */
  5494. #define PWR_PUCRB_PU14 PWR_PUCRB_PU14_Msk /*!< Pin PB14 Pull-Up set */
  5495. #define PWR_PUCRB_PU15_Pos (15U)
  5496. #define PWR_PUCRB_PU15_Msk (0x1UL << PWR_PUCRB_PU15_Pos) /*!< 0x00008000 */
  5497. #define PWR_PUCRB_PU15 PWR_PUCRB_PU15_Msk /*!< Pin PB15 Pull-Up set */
  5498. /******************** Bit definition for PWR_PDCRB register *****************/
  5499. #define PWR_PDCRB_PD0_Pos (0U)
  5500. #define PWR_PDCRB_PD0_Msk (0x1UL << PWR_PDCRB_PD0_Pos) /*!< 0x00000001 */
  5501. #define PWR_PDCRB_PD0 PWR_PDCRB_PD0_Msk /*!< Pin PB0 Pull-Down set */
  5502. #define PWR_PDCRB_PD1_Pos (1U)
  5503. #define PWR_PDCRB_PD1_Msk (0x1UL << PWR_PDCRB_PD1_Pos) /*!< 0x00000002 */
  5504. #define PWR_PDCRB_PD1 PWR_PDCRB_PD1_Msk /*!< Pin PB1 Pull-Down set */
  5505. #define PWR_PDCRB_PD2_Pos (2U)
  5506. #define PWR_PDCRB_PD2_Msk (0x1UL << PWR_PDCRB_PD2_Pos) /*!< 0x00000004 */
  5507. #define PWR_PDCRB_PD2 PWR_PDCRB_PD2_Msk /*!< Pin PB2 Pull-Down set */
  5508. #define PWR_PDCRB_PD3_Pos (3U)
  5509. #define PWR_PDCRB_PD3_Msk (0x1UL << PWR_PDCRB_PD3_Pos) /*!< 0x00000008 */
  5510. #define PWR_PDCRB_PD3 PWR_PDCRB_PD3_Msk /*!< Pin PB3 Pull-Down set */
  5511. #define PWR_PDCRB_PD4_Pos (4U)
  5512. #define PWR_PDCRB_PD4_Msk (0x1UL << PWR_PDCRB_PD4_Pos) /*!< 0x00000010 */
  5513. #define PWR_PDCRB_PD4 PWR_PDCRB_PD4_Msk /*!< Pin PB4 Pull-Down set */
  5514. #define PWR_PDCRB_PD5_Pos (5U)
  5515. #define PWR_PDCRB_PD5_Msk (0x1UL << PWR_PDCRB_PD5_Pos) /*!< 0x00000020 */
  5516. #define PWR_PDCRB_PD5 PWR_PDCRB_PD5_Msk /*!< Pin PB5 Pull-Down set */
  5517. #define PWR_PDCRB_PD6_Pos (6U)
  5518. #define PWR_PDCRB_PD6_Msk (0x1UL << PWR_PDCRB_PD6_Pos) /*!< 0x00000040 */
  5519. #define PWR_PDCRB_PD6 PWR_PDCRB_PD6_Msk /*!< Pin PB6 Pull-Down set */
  5520. #define PWR_PDCRB_PD7_Pos (7U)
  5521. #define PWR_PDCRB_PD7_Msk (0x1UL << PWR_PDCRB_PD7_Pos) /*!< 0x00000080 */
  5522. #define PWR_PDCRB_PD7 PWR_PDCRB_PD7_Msk /*!< Pin PB7 Pull-Down set */
  5523. #define PWR_PDCRB_PD8_Pos (8U)
  5524. #define PWR_PDCRB_PD8_Msk (0x1UL << PWR_PDCRB_PD8_Pos) /*!< 0x00000100 */
  5525. #define PWR_PDCRB_PD8 PWR_PDCRB_PD8_Msk /*!< Pin PB8 Pull-Down set */
  5526. #define PWR_PDCRB_PD9_Pos (9U)
  5527. #define PWR_PDCRB_PD9_Msk (0x1UL << PWR_PDCRB_PD9_Pos) /*!< 0x00000200 */
  5528. #define PWR_PDCRB_PD9 PWR_PDCRB_PD9_Msk /*!< Pin PB9 Pull-Down set */
  5529. #define PWR_PDCRB_PD10_Pos (10U)
  5530. #define PWR_PDCRB_PD10_Msk (0x1UL << PWR_PDCRB_PD10_Pos) /*!< 0x00000400 */
  5531. #define PWR_PDCRB_PD10 PWR_PDCRB_PD10_Msk /*!< Pin PB10 Pull-Down set */
  5532. #define PWR_PDCRB_PD11_Pos (11U)
  5533. #define PWR_PDCRB_PD11_Msk (0x1UL << PWR_PDCRB_PD11_Pos) /*!< 0x00000800 */
  5534. #define PWR_PDCRB_PD11 PWR_PDCRB_PD11_Msk /*!< Pin PB11 Pull-Down set */
  5535. #define PWR_PDCRB_PD12_Pos (12U)
  5536. #define PWR_PDCRB_PD12_Msk (0x1UL << PWR_PDCRB_PD12_Pos) /*!< 0x00001000 */
  5537. #define PWR_PDCRB_PD12 PWR_PDCRB_PD12_Msk /*!< Pin PB12 Pull-Down set */
  5538. #define PWR_PDCRB_PD13_Pos (13U)
  5539. #define PWR_PDCRB_PD13_Msk (0x1UL << PWR_PDCRB_PD13_Pos) /*!< 0x00002000 */
  5540. #define PWR_PDCRB_PD13 PWR_PDCRB_PD13_Msk /*!< Pin PB13 Pull-Down set */
  5541. #define PWR_PDCRB_PD14_Pos (14U)
  5542. #define PWR_PDCRB_PD14_Msk (0x1UL << PWR_PDCRB_PD14_Pos) /*!< 0x00004000 */
  5543. #define PWR_PDCRB_PD14 PWR_PDCRB_PD14_Msk /*!< Pin PB14 Pull-Down set */
  5544. #define PWR_PDCRB_PD15_Pos (15U)
  5545. #define PWR_PDCRB_PD15_Msk (0x1UL << PWR_PDCRB_PD15_Pos) /*!< 0x00008000 */
  5546. #define PWR_PDCRB_PD15 PWR_PDCRB_PD15_Msk /*!< Pin PB15 Pull-Down set */
  5547. /******************** Bit definition for PWR_PUCRC register *****************/
  5548. #define PWR_PUCRC_PU0_Pos (0U)
  5549. #define PWR_PUCRC_PU0_Msk (0x1UL << PWR_PUCRC_PU0_Pos) /*!< 0x00000001 */
  5550. #define PWR_PUCRC_PU0 PWR_PUCRC_PU0_Msk /*!< Pin PC0 Pull-Up set */
  5551. #define PWR_PUCRC_PU1_Pos (1U)
  5552. #define PWR_PUCRC_PU1_Msk (0x1UL << PWR_PUCRC_PU1_Pos) /*!< 0x00000002 */
  5553. #define PWR_PUCRC_PU1 PWR_PUCRC_PU1_Msk /*!< Pin PC1 Pull-Up set */
  5554. #define PWR_PUCRC_PU2_Pos (2U)
  5555. #define PWR_PUCRC_PU2_Msk (0x1UL << PWR_PUCRC_PU2_Pos) /*!< 0x00000004 */
  5556. #define PWR_PUCRC_PU2 PWR_PUCRC_PU2_Msk /*!< Pin PC2 Pull-Up set */
  5557. #define PWR_PUCRC_PU3_Pos (3U)
  5558. #define PWR_PUCRC_PU3_Msk (0x1UL << PWR_PUCRC_PU3_Pos) /*!< 0x00000008 */
  5559. #define PWR_PUCRC_PU3 PWR_PUCRC_PU3_Msk /*!< Pin PC3 Pull-Up set */
  5560. #define PWR_PUCRC_PU4_Pos (4U)
  5561. #define PWR_PUCRC_PU4_Msk (0x1UL << PWR_PUCRC_PU4_Pos) /*!< 0x00000010 */
  5562. #define PWR_PUCRC_PU4 PWR_PUCRC_PU4_Msk /*!< Pin PC4 Pull-Up set */
  5563. #define PWR_PUCRC_PU5_Pos (5U)
  5564. #define PWR_PUCRC_PU5_Msk (0x1UL << PWR_PUCRC_PU5_Pos) /*!< 0x00000020 */
  5565. #define PWR_PUCRC_PU5 PWR_PUCRC_PU5_Msk /*!< Pin PC5 Pull-Up set */
  5566. #define PWR_PUCRC_PU6_Pos (6U)
  5567. #define PWR_PUCRC_PU6_Msk (0x1UL << PWR_PUCRC_PU6_Pos) /*!< 0x00000040 */
  5568. #define PWR_PUCRC_PU6 PWR_PUCRC_PU6_Msk /*!< Pin PC6 Pull-Up set */
  5569. #define PWR_PUCRC_PU7_Pos (7U)
  5570. #define PWR_PUCRC_PU7_Msk (0x1UL << PWR_PUCRC_PU7_Pos) /*!< 0x00000080 */
  5571. #define PWR_PUCRC_PU7 PWR_PUCRC_PU7_Msk /*!< Pin PC7 Pull-Up set */
  5572. #define PWR_PUCRC_PU8_Pos (8U)
  5573. #define PWR_PUCRC_PU8_Msk (0x1UL << PWR_PUCRC_PU8_Pos) /*!< 0x00000100 */
  5574. #define PWR_PUCRC_PU8 PWR_PUCRC_PU8_Msk /*!< Pin PC8 Pull-Up set */
  5575. #define PWR_PUCRC_PU9_Pos (9U)
  5576. #define PWR_PUCRC_PU9_Msk (0x1UL << PWR_PUCRC_PU9_Pos) /*!< 0x00000200 */
  5577. #define PWR_PUCRC_PU9 PWR_PUCRC_PU9_Msk /*!< Pin PC9 Pull-Up set */
  5578. #define PWR_PUCRC_PU10_Pos (10U)
  5579. #define PWR_PUCRC_PU10_Msk (0x1UL << PWR_PUCRC_PU10_Pos) /*!< 0x00000400 */
  5580. #define PWR_PUCRC_PU10 PWR_PUCRC_PU10_Msk /*!< Pin PC10 Pull-Up set */
  5581. #define PWR_PUCRC_PU11_Pos (11U)
  5582. #define PWR_PUCRC_PU11_Msk (0x1UL << PWR_PUCRC_PU11_Pos) /*!< 0x00000800 */
  5583. #define PWR_PUCRC_PU11 PWR_PUCRC_PU11_Msk /*!< Pin PC11 Pull-Up set */
  5584. #define PWR_PUCRC_PU12_Pos (12U)
  5585. #define PWR_PUCRC_PU12_Msk (0x1UL << PWR_PUCRC_PU12_Pos) /*!< 0x00001000 */
  5586. #define PWR_PUCRC_PU12 PWR_PUCRC_PU12_Msk /*!< Pin PC12 Pull-Up set */
  5587. #define PWR_PUCRC_PU13_Pos (13U)
  5588. #define PWR_PUCRC_PU13_Msk (0x1UL << PWR_PUCRC_PU13_Pos) /*!< 0x00002000 */
  5589. #define PWR_PUCRC_PU13 PWR_PUCRC_PU13_Msk /*!< Pin PC13 Pull-Up set */
  5590. #define PWR_PUCRC_PU14_Pos (14U)
  5591. #define PWR_PUCRC_PU14_Msk (0x1UL << PWR_PUCRC_PU14_Pos) /*!< 0x00004000 */
  5592. #define PWR_PUCRC_PU14 PWR_PUCRC_PU14_Msk /*!< Pin PC14 Pull-Up set */
  5593. #define PWR_PUCRC_PU15_Pos (15U)
  5594. #define PWR_PUCRC_PU15_Msk (0x1UL << PWR_PUCRC_PU15_Pos) /*!< 0x00008000 */
  5595. #define PWR_PUCRC_PU15 PWR_PUCRC_PU15_Msk /*!< Pin PC15 Pull-Up set */
  5596. /******************** Bit definition for PWR_PDCRC register *****************/
  5597. #define PWR_PDCRC_PD0_Pos (0U)
  5598. #define PWR_PDCRC_PD0_Msk (0x1UL << PWR_PDCRC_PD0_Pos) /*!< 0x00000001 */
  5599. #define PWR_PDCRC_PD0 PWR_PDCRC_PD0_Msk /*!< Pin PC0 Pull-Down set */
  5600. #define PWR_PDCRC_PD1_Pos (1U)
  5601. #define PWR_PDCRC_PD1_Msk (0x1UL << PWR_PDCRC_PD1_Pos) /*!< 0x00000002 */
  5602. #define PWR_PDCRC_PD1 PWR_PDCRC_PD1_Msk /*!< Pin PC1 Pull-Down set */
  5603. #define PWR_PDCRC_PD2_Pos (2U)
  5604. #define PWR_PDCRC_PD2_Msk (0x1UL << PWR_PDCRC_PD2_Pos) /*!< 0x00000004 */
  5605. #define PWR_PDCRC_PD2 PWR_PDCRC_PD2_Msk /*!< Pin PC2 Pull-Down set */
  5606. #define PWR_PDCRC_PD3_Pos (3U)
  5607. #define PWR_PDCRC_PD3_Msk (0x1UL << PWR_PDCRC_PD3_Pos) /*!< 0x00000008 */
  5608. #define PWR_PDCRC_PD3 PWR_PDCRC_PD3_Msk /*!< Pin PC3 Pull-Down set */
  5609. #define PWR_PDCRC_PD4_Pos (4U)
  5610. #define PWR_PDCRC_PD4_Msk (0x1UL << PWR_PDCRC_PD4_Pos) /*!< 0x00000010 */
  5611. #define PWR_PDCRC_PD4 PWR_PDCRC_PD4_Msk /*!< Pin PC4 Pull-Down set */
  5612. #define PWR_PDCRC_PD5_Pos (5U)
  5613. #define PWR_PDCRC_PD5_Msk (0x1UL << PWR_PDCRC_PD5_Pos) /*!< 0x00000020 */
  5614. #define PWR_PDCRC_PD5 PWR_PDCRC_PD5_Msk /*!< Pin PC5 Pull-Down set */
  5615. #define PWR_PDCRC_PD6_Pos (6U)
  5616. #define PWR_PDCRC_PD6_Msk (0x1UL << PWR_PDCRC_PD6_Pos) /*!< 0x00000040 */
  5617. #define PWR_PDCRC_PD6 PWR_PDCRC_PD6_Msk /*!< Pin PC6 Pull-Down set */
  5618. #define PWR_PDCRC_PD7_Pos (7U)
  5619. #define PWR_PDCRC_PD7_Msk (0x1UL << PWR_PDCRC_PD7_Pos) /*!< 0x00000080 */
  5620. #define PWR_PDCRC_PD7 PWR_PDCRC_PD7_Msk /*!< Pin PC7 Pull-Down set */
  5621. #define PWR_PDCRC_PD8_Pos (8U)
  5622. #define PWR_PDCRC_PD8_Msk (0x1UL << PWR_PDCRC_PD8_Pos) /*!< 0x00000100 */
  5623. #define PWR_PDCRC_PD8 PWR_PDCRC_PD8_Msk /*!< Pin PC8 Pull-Down set */
  5624. #define PWR_PDCRC_PD9_Pos (9U)
  5625. #define PWR_PDCRC_PD9_Msk (0x1UL << PWR_PDCRC_PD9_Pos) /*!< 0x00000200 */
  5626. #define PWR_PDCRC_PD9 PWR_PDCRC_PD9_Msk /*!< Pin PC9 Pull-Down set */
  5627. #define PWR_PDCRC_PD10_Pos (10U)
  5628. #define PWR_PDCRC_PD10_Msk (0x1UL << PWR_PDCRC_PD10_Pos) /*!< 0x00000400 */
  5629. #define PWR_PDCRC_PD10 PWR_PDCRC_PD10_Msk /*!< Pin PC10 Pull-Down set */
  5630. #define PWR_PDCRC_PD11_Pos (11U)
  5631. #define PWR_PDCRC_PD11_Msk (0x1UL << PWR_PDCRC_PD11_Pos) /*!< 0x00000800 */
  5632. #define PWR_PDCRC_PD11 PWR_PDCRC_PD11_Msk /*!< Pin PC11 Pull-Down set */
  5633. #define PWR_PDCRC_PD12_Pos (12U)
  5634. #define PWR_PDCRC_PD12_Msk (0x1UL << PWR_PDCRC_PD12_Pos) /*!< 0x00001000 */
  5635. #define PWR_PDCRC_PD12 PWR_PDCRC_PD12_Msk /*!< Pin PC12 Pull-Down set */
  5636. #define PWR_PDCRC_PD13_Pos (13U)
  5637. #define PWR_PDCRC_PD13_Msk (0x1UL << PWR_PDCRC_PD13_Pos) /*!< 0x00002000 */
  5638. #define PWR_PDCRC_PD13 PWR_PDCRC_PD13_Msk /*!< Pin PC13 Pull-Down set */
  5639. #define PWR_PDCRC_PD14_Pos (14U)
  5640. #define PWR_PDCRC_PD14_Msk (0x1UL << PWR_PDCRC_PD14_Pos) /*!< 0x00004000 */
  5641. #define PWR_PDCRC_PD14 PWR_PDCRC_PD14_Msk /*!< Pin PC14 Pull-Down set */
  5642. #define PWR_PDCRC_PD15_Pos (15U)
  5643. #define PWR_PDCRC_PD15_Msk (0x1UL << PWR_PDCRC_PD15_Pos) /*!< 0x00008000 */
  5644. #define PWR_PDCRC_PD15 PWR_PDCRC_PD15_Msk /*!< Pin PC15 Pull-Down set */
  5645. /******************** Bit definition for PWR_PUCRD register *****************/
  5646. #define PWR_PUCRD_PU0_Pos (0U)
  5647. #define PWR_PUCRD_PU0_Msk (0x1UL << PWR_PUCRD_PU0_Pos) /*!< 0x00000001 */
  5648. #define PWR_PUCRD_PU0 PWR_PUCRD_PU0_Msk /*!< Pin PD0 Pull-Up set */
  5649. #define PWR_PUCRD_PU1_Pos (1U)
  5650. #define PWR_PUCRD_PU1_Msk (0x1UL << PWR_PUCRD_PU1_Pos) /*!< 0x00000002 */
  5651. #define PWR_PUCRD_PU1 PWR_PUCRD_PU1_Msk /*!< Pin PD1 Pull-Up set */
  5652. #define PWR_PUCRD_PU2_Pos (2U)
  5653. #define PWR_PUCRD_PU2_Msk (0x1UL << PWR_PUCRD_PU2_Pos) /*!< 0x00000004 */
  5654. #define PWR_PUCRD_PU2 PWR_PUCRD_PU2_Msk /*!< Pin PD2 Pull-Up set */
  5655. #define PWR_PUCRD_PU3_Pos (3U)
  5656. #define PWR_PUCRD_PU3_Msk (0x1UL << PWR_PUCRD_PU3_Pos) /*!< 0x00000008 */
  5657. #define PWR_PUCRD_PU3 PWR_PUCRD_PU3_Msk /*!< Pin PD3 Pull-Up set */
  5658. #define PWR_PUCRD_PU4_Pos (4U)
  5659. #define PWR_PUCRD_PU4_Msk (0x1UL << PWR_PUCRD_PU4_Pos) /*!< 0x00000010 */
  5660. #define PWR_PUCRD_PU4 PWR_PUCRD_PU4_Msk /*!< Pin PD4 Pull-Up set */
  5661. #define PWR_PUCRD_PU5_Pos (5U)
  5662. #define PWR_PUCRD_PU5_Msk (0x1UL << PWR_PUCRD_PU5_Pos) /*!< 0x00000020 */
  5663. #define PWR_PUCRD_PU5 PWR_PUCRD_PU5_Msk /*!< Pin PD5 Pull-Up set */
  5664. #define PWR_PUCRD_PU6_Pos (6U)
  5665. #define PWR_PUCRD_PU6_Msk (0x1UL << PWR_PUCRD_PU6_Pos) /*!< 0x00000040 */
  5666. #define PWR_PUCRD_PU6 PWR_PUCRD_PU6_Msk /*!< Pin PD6 Pull-Up set */
  5667. #define PWR_PUCRD_PU8_Pos (8U)
  5668. #define PWR_PUCRD_PU8_Msk (0x1UL << PWR_PUCRD_PU8_Pos) /*!< 0x00000100 */
  5669. #define PWR_PUCRD_PU8 PWR_PUCRD_PU8_Msk /*!< Pin PD8 Pull-Up set */
  5670. #define PWR_PUCRD_PU9_Pos (9U)
  5671. #define PWR_PUCRD_PU9_Msk (0x1UL << PWR_PUCRD_PU9_Pos) /*!< 0x00000200 */
  5672. #define PWR_PUCRD_PU9 PWR_PUCRD_PU9_Msk /*!< Pin PD9 Pull-Up set */
  5673. #define PWR_PUCRD_PD10_Pos (10U)
  5674. #define PWR_PUCRD_PD10_Msk (0x1UL << PWR_PUCRD_PD10_Pos) /*!< 0x00000400 */
  5675. #define PWR_PUCRD_PD10 PWR_PUCRD_PD10_Msk /*!< Pin PD10 Pull-Up set */
  5676. #define PWR_PUCRD_PD11_Pos (11U)
  5677. #define PWR_PUCRD_PD11_Msk (0x1UL << PWR_PUCRD_PD11_Pos) /*!< 0x00000800 */
  5678. #define PWR_PUCRD_PD11 PWR_PUCRD_PD11_Msk /*!< Pin PD11 Pull-Up set */
  5679. #define PWR_PUCRD_PD12_Pos (12U)
  5680. #define PWR_PUCRD_PD12_Msk (0x1UL << PWR_PUCRD_PD12_Pos) /*!< 0x00001000 */
  5681. #define PWR_PUCRD_PD12 PWR_PUCRD_PD12_Msk /*!< Pin PD12 Pull-Up set */
  5682. #define PWR_PUCRD_PD13_Pos (13U)
  5683. #define PWR_PUCRD_PD13_Msk (0x1UL << PWR_PUCRD_PD13_Pos) /*!< 0x00002000 */
  5684. #define PWR_PUCRD_PD13 PWR_PUCRD_PD13_Msk /*!< Pin PD13 Pull-Up set */
  5685. #define PWR_PUCRD_PD14_Pos (14U)
  5686. #define PWR_PUCRD_PD14_Msk (0x1UL << PWR_PUCRD_PD14_Pos) /*!< 0x00004000 */
  5687. #define PWR_PUCRD_PD14 PWR_PUCRD_PD14_Msk /*!< Pin PD14 Pull-Up set */
  5688. #define PWR_PUCRD_PD15_Pos (15U)
  5689. #define PWR_PUCRD_PD15_Msk (0x1UL << PWR_PUCRD_PD15_Pos) /*!< 0x00008000 */
  5690. #define PWR_PUCRD_PD15 PWR_PUCRD_PD15_Msk /*!< Pin PD15 Pull-Up set */
  5691. /******************** Bit definition for PWR_PDCRD register *****************/
  5692. #define PWR_PDCRD_PD0_Pos (0U)
  5693. #define PWR_PDCRD_PD0_Msk (0x1UL << PWR_PDCRD_PD0_Pos) /*!< 0x00000001 */
  5694. #define PWR_PDCRD_PD0 PWR_PDCRD_PD0_Msk /*!< Pin PD0 Pull-Down set */
  5695. #define PWR_PDCRD_PD1_Pos (1U)
  5696. #define PWR_PDCRD_PD1_Msk (0x1UL << PWR_PDCRD_PD1_Pos) /*!< 0x00000002 */
  5697. #define PWR_PDCRD_PD1 PWR_PDCRD_PD1_Msk /*!< Pin PD1 Pull-Down set */
  5698. #define PWR_PDCRD_PD2_Pos (2U)
  5699. #define PWR_PDCRD_PD2_Msk (0x1UL << PWR_PDCRD_PD2_Pos) /*!< 0x00000004 */
  5700. #define PWR_PDCRD_PD2 PWR_PDCRD_PD2_Msk /*!< Pin PD2 Pull-Down set */
  5701. #define PWR_PDCRD_PD3_Pos (3U)
  5702. #define PWR_PDCRD_PD3_Msk (0x1UL << PWR_PDCRD_PD3_Pos) /*!< 0x00000008 */
  5703. #define PWR_PDCRD_PD3 PWR_PDCRD_PD3_Msk /*!< Pin PD3 Pull-Down set */
  5704. #define PWR_PDCRD_PD4_Pos (4U)
  5705. #define PWR_PDCRD_PD4_Msk (0x1UL << PWR_PDCRD_PD4_Pos) /*!< 0x00000010 */
  5706. #define PWR_PDCRD_PD4 PWR_PDCRD_PD4_Msk /*!< Pin PD4 Pull-Down set */
  5707. #define PWR_PDCRD_PD5_Pos (5U)
  5708. #define PWR_PDCRD_PD5_Msk (0x1UL << PWR_PDCRD_PD5_Pos) /*!< 0x00000020 */
  5709. #define PWR_PDCRD_PD5 PWR_PDCRD_PD5_Msk /*!< Pin PD5 Pull-Down set */
  5710. #define PWR_PDCRD_PD6_Pos (6U)
  5711. #define PWR_PDCRD_PD6_Msk (0x1UL << PWR_PDCRD_PD6_Pos) /*!< 0x00000040 */
  5712. #define PWR_PDCRD_PD6 PWR_PDCRD_PD6_Msk /*!< Pin PD6 Pull-Down set */
  5713. #define PWR_PDCRD_PD8_Pos (8U)
  5714. #define PWR_PDCRD_PD8_Msk (0x1UL << PWR_PDCRD_PD8_Pos) /*!< 0x00000100 */
  5715. #define PWR_PDCRD_PD8 PWR_PDCRD_PD8_Msk /*!< Pin PD8 Pull-Down set */
  5716. #define PWR_PDCRD_PD9_Pos (9U)
  5717. #define PWR_PDCRD_PD9_Msk (0x1UL << PWR_PDCRD_PD9_Pos) /*!< 0x00000200 */
  5718. #define PWR_PDCRD_PD9 PWR_PDCRD_PD9_Msk /*!< Pin PD9 Pull-Down set */
  5719. #define PWR_PDCRD_PD10_Pos (10U)
  5720. #define PWR_PDCRD_PD10_Msk (0x1UL << PWR_PDCRD_PD10_Pos) /*!< 0x00000400 */
  5721. #define PWR_PDCRD_PD10 PWR_PDCRD_PD10_Msk /*!< Pin PD10 Pull-Down set */
  5722. #define PWR_PDCRD_PD11_Pos (11U)
  5723. #define PWR_PDCRD_PD11_Msk (0x1UL << PWR_PDCRD_PD11_Pos) /*!< 0x00000800 */
  5724. #define PWR_PDCRD_PD11 PWR_PDCRD_PD11_Msk /*!< Pin PD11 Pull-Down set */
  5725. #define PWR_PDCRD_PD12_Pos (12U)
  5726. #define PWR_PDCRD_PD12_Msk (0x1UL << PWR_PDCRD_PD12_Pos) /*!< 0x00001000 */
  5727. #define PWR_PDCRD_PD12 PWR_PDCRD_PD12_Msk /*!< Pin PD12 Pull-Down set */
  5728. #define PWR_PDCRD_PD13_Pos (13U)
  5729. #define PWR_PDCRD_PD13_Msk (0x1UL << PWR_PDCRD_PD13_Pos) /*!< 0x00002000 */
  5730. #define PWR_PDCRD_PD13 PWR_PDCRD_PD13_Msk /*!< Pin PD13 Pull-Down set */
  5731. #define PWR_PDCRD_PD14_Pos (14U)
  5732. #define PWR_PDCRD_PD14_Msk (0x1UL << PWR_PDCRD_PD14_Pos) /*!< 0x00004000 */
  5733. #define PWR_PDCRD_PD14 PWR_PDCRD_PD14_Msk /*!< Pin PD14 Pull-Down set */
  5734. #define PWR_PDCRD_PD15_Pos (15U)
  5735. #define PWR_PDCRD_PD15_Msk (0x1UL << PWR_PDCRD_PD15_Pos) /*!< 0x00008000 */
  5736. #define PWR_PDCRD_PD15 PWR_PDCRD_PD15_Msk /*!< Pin PD15 Pull-Down set */
  5737. /******************** Bit definition for PWR_PUCRE register *****************/
  5738. #define PWR_PUCRE_PU0_Pos (0U)
  5739. #define PWR_PUCRE_PU0_Msk (0x1UL << PWR_PUCRE_PU0_Pos) /*!< 0x00000001 */
  5740. #define PWR_PUCRE_PU0 PWR_PUCRE_PU0_Msk /*!< Pin PE0 Pull-Up set */
  5741. #define PWR_PUCRE_PU1_Pos (1U)
  5742. #define PWR_PUCRE_PU1_Msk (0x1UL << PWR_PUCRE_PU1_Pos) /*!< 0x00000002 */
  5743. #define PWR_PUCRE_PU1 PWR_PUCRE_PU1_Msk /*!< Pin PE1 Pull-Up set */
  5744. #define PWR_PUCRE_PU2_Pos (2U)
  5745. #define PWR_PUCRE_PU2_Msk (0x1UL << PWR_PUCRE_PU2_Pos) /*!< 0x00000004 */
  5746. #define PWR_PUCRE_PU2 PWR_PUCRE_PU2_Msk /*!< Pin PE2 Pull-Up set */
  5747. #define PWR_PUCRE_PU3_Pos (3U)
  5748. #define PWR_PUCRE_PU3_Msk (0x1UL << PWR_PUCRE_PU3_Pos) /*!< 0x00000008 */
  5749. #define PWR_PUCRE_PU3 PWR_PUCRE_PU3_Msk /*!< Pin PE3 Pull-Up set */
  5750. #define PWR_PUCRE_PU4_Pos (4U)
  5751. #define PWR_PUCRE_PU4_Msk (0x1UL << PWR_PUCRE_PU4_Pos) /*!< 0x00000010 */
  5752. #define PWR_PUCRE_PU4 PWR_PUCRE_PU4_Msk /*!< Pin PE4 Pull-Up set */
  5753. #define PWR_PUCRE_PD5_Pos (5U)
  5754. #define PWR_PUCRE_PD5_Msk (0x1UL << PWR_PUCRE_PD5_Pos) /*!< 0x00000020 */
  5755. #define PWR_PUCRE_PD5 PWR_PUCRE_PD5_Msk /*!< Pin PE5 Pull-Up set */
  5756. #define PWR_PUCRE_PD6_Pos (6U)
  5757. #define PWR_PUCRE_PD6_Msk (0x1UL << PWR_PUCRE_PD6_Pos) /*!< 0x00000040 */
  5758. #define PWR_PUCRE_PD6 PWR_PUCRE_PD6_Msk /*!< Pin PE6 Pull-Up set */
  5759. #define PWR_PUCRE_PD7_Pos (7U)
  5760. #define PWR_PUCRE_PD7_Msk (0x1UL << PWR_PUCRE_PD7_Pos) /*!< 0x00000080 */
  5761. #define PWR_PUCRE_PD7 PWR_PUCRE_PD7_Msk /*!< Pin PE7 Pull-Up set */
  5762. #define PWR_PUCRE_PD8_Pos (8U)
  5763. #define PWR_PUCRE_PD8_Msk (0x1UL << PWR_PUCRE_PD8_Pos) /*!< 0x00000100 */
  5764. #define PWR_PUCRE_PD8 PWR_PUCRE_PD8_Msk /*!< Pin PE8 Pull-Up set */
  5765. #define PWR_PUCRE_PD9_Pos (9U)
  5766. #define PWR_PUCRE_PD9_Msk (0x1UL << PWR_PUCRE_PD9_Pos) /*!< 0x00000200 */
  5767. #define PWR_PUCRE_PD9 PWR_PUCRE_PD9_Msk /*!< Pin PE9 Pull-Up set */
  5768. #define PWR_PUCRE_PD10_Pos (10U)
  5769. #define PWR_PUCRE_PD10_Msk (0x1UL << PWR_PUCRE_PD10_Pos) /*!< 0x00000400 */
  5770. #define PWR_PUCRE_PD10 PWR_PUCRE_PD10_Msk /*!< Pin PE10 Pull-Up set */
  5771. #define PWR_PUCRE_PD11_Pos (11U)
  5772. #define PWR_PUCRE_PD11_Msk (0x1UL << PWR_PUCRE_PD11_Pos) /*!< 0x00000800 */
  5773. #define PWR_PUCRE_PD11 PWR_PUCRE_PD11_Msk /*!< Pin PE11 Pull-Up set */
  5774. #define PWR_PUCRE_PD12_Pos (12U)
  5775. #define PWR_PUCRE_PD12_Msk (0x1UL << PWR_PUCRE_PD12_Pos) /*!< 0x00001000 */
  5776. #define PWR_PUCRE_PD12 PWR_PUCRE_PD12_Msk /*!< Pin PE12 Pull-Up set */
  5777. #define PWR_PUCRE_PD13_Pos (13U)
  5778. #define PWR_PUCRE_PD13_Msk (0x1UL << PWR_PUCRE_PD13_Pos) /*!< 0x00002000 */
  5779. #define PWR_PUCRE_PD13 PWR_PUCRE_PD13_Msk /*!< Pin PE13 Pull-Up set */
  5780. #define PWR_PUCRE_PD14_Pos (14U)
  5781. #define PWR_PUCRE_PD14_Msk (0x1UL << PWR_PUCRE_PD14_Pos) /*!< 0x00004000 */
  5782. #define PWR_PUCRE_PD14 PWR_PUCRE_PD14_Msk /*!< Pin PE14 Pull-Up set */
  5783. #define PWR_PUCRE_PD15_Pos (15U)
  5784. #define PWR_PUCRE_PD15_Msk (0x1UL << PWR_PUCRE_PD15_Pos) /*!< 0x00008000 */
  5785. #define PWR_PUCRE_PD15 PWR_PUCRE_PD15_Msk /*!< Pin PE15 Pull-Up set */
  5786. /******************** Bit definition for PWR_PDCRE register *****************/
  5787. #define PWR_PDCRE_PD0_Pos (0U)
  5788. #define PWR_PDCRE_PD0_Msk (0x1UL << PWR_PDCRE_PD0_Pos) /*!< 0x00000001 */
  5789. #define PWR_PDCRE_PD0 PWR_PDCRE_PD0_Msk /*!< Pin PE0 Pull-Down set */
  5790. #define PWR_PDCRE_PD1_Pos (1U)
  5791. #define PWR_PDCRE_PD1_Msk (0x1UL << PWR_PDCRE_PD1_Pos) /*!< 0x00000002 */
  5792. #define PWR_PDCRE_PD1 PWR_PDCRE_PD1_Msk /*!< Pin PE1 Pull-Down set */
  5793. #define PWR_PDCRE_PD2_Pos (2U)
  5794. #define PWR_PDCRE_PD2_Msk (0x1UL << PWR_PDCRE_PD2_Pos) /*!< 0x00000004 */
  5795. #define PWR_PDCRE_PD2 PWR_PDCRE_PD2_Msk /*!< Pin PE2 Pull-Down set */
  5796. #define PWR_PDCRE_PD3_Pos (3U)
  5797. #define PWR_PDCRE_PD3_Msk (0x1UL << PWR_PDCRE_PD3_Pos) /*!< 0x00000008 */
  5798. #define PWR_PDCRE_PD3 PWR_PDCRE_PD3_Msk /*!< Pin PE3 Pull-Down set */
  5799. #define PWR_PDCRE_PD4_Pos (4U)
  5800. #define PWR_PDCRE_PD4_Msk (0x1UL << PWR_PDCRE_PD4_Pos) /*!< 0x00000010 */
  5801. #define PWR_PDCRE_PD4 PWR_PDCRE_PD4_Msk /*!< Pin PE4 Pull-Down set */
  5802. #define PWR_PDCRE_PD5_Pos (5U)
  5803. #define PWR_PDCRE_PD5_Msk (0x1UL << PWR_PDCRE_PD5_Pos) /*!< 0x00000020 */
  5804. #define PWR_PDCRE_PD5 PWR_PDCRE_PD5_Msk /*!< Pin PE5 Pull-Down set */
  5805. #define PWR_PDCRE_PD6_Pos (6U)
  5806. #define PWR_PDCRE_PD6_Msk (0x1UL << PWR_PDCRE_PD6_Pos) /*!< 0x00000040 */
  5807. #define PWR_PDCRE_PD6 PWR_PDCRE_PD6_Msk /*!< Pin PE6 Pull-Down set */
  5808. #define PWR_PDCRE_PD7_Pos (7U)
  5809. #define PWR_PDCRE_PD7_Msk (0x1UL << PWR_PDCRE_PD7_Pos) /*!< 0x00000080 */
  5810. #define PWR_PDCRE_PD7 PWR_PDCRE_PD7_Msk /*!< Pin PE7 Pull-Down set */
  5811. #define PWR_PDCRE_PD8_Pos (8U)
  5812. #define PWR_PDCRE_PD8_Msk (0x1UL << PWR_PDCRE_PD8_Pos) /*!< 0x00000100 */
  5813. #define PWR_PDCRE_PD8 PWR_PDCRE_PD8_Msk /*!< Pin PE8 Pull-Down set */
  5814. #define PWR_PDCRE_PD9_Pos (9U)
  5815. #define PWR_PDCRE_PD9_Msk (0x1UL << PWR_PDCRE_PD9_Pos) /*!< 0x00000200 */
  5816. #define PWR_PDCRE_PD9 PWR_PDCRE_PD9_Msk /*!< Pin PE9 Pull-Down set */
  5817. #define PWR_PDCRE_PD10_Pos (10U)
  5818. #define PWR_PDCRE_PD10_Msk (0x1UL << PWR_PDCRE_PD10_Pos) /*!< 0x00000400 */
  5819. #define PWR_PDCRE_PD10 PWR_PDCRE_PD10_Msk /*!< Pin PE10 Pull-Down set */
  5820. #define PWR_PDCRE_PD11_Pos (11U)
  5821. #define PWR_PDCRE_PD11_Msk (0x1UL << PWR_PDCRE_PD11_Pos) /*!< 0x00000800 */
  5822. #define PWR_PDCRE_PD11 PWR_PDCRE_PD11_Msk /*!< Pin PE11 Pull-Down set */
  5823. #define PWR_PDCRE_PD12_Pos (12U)
  5824. #define PWR_PDCRE_PD12_Msk (0x1UL << PWR_PDCRE_PD12_Pos) /*!< 0x00001000 */
  5825. #define PWR_PDCRE_PD12 PWR_PDCRE_PD12_Msk /*!< Pin PE12 Pull-Down set */
  5826. #define PWR_PDCRE_PD13_Pos (13U)
  5827. #define PWR_PDCRE_PD13_Msk (0x1UL << PWR_PDCRE_PD13_Pos) /*!< 0x00002000 */
  5828. #define PWR_PDCRE_PD13 PWR_PDCRE_PD13_Msk /*!< Pin PE13 Pull-Down set */
  5829. #define PWR_PDCRE_PD14_Pos (14U)
  5830. #define PWR_PDCRE_PD14_Msk (0x1UL << PWR_PDCRE_PD14_Pos) /*!< 0x00004000 */
  5831. #define PWR_PDCRE_PD14 PWR_PDCRE_PD14_Msk /*!< Pin PE14 Pull-Down set */
  5832. #define PWR_PDCRE_PD15_Pos (15U)
  5833. #define PWR_PDCRE_PD15_Msk (0x1UL << PWR_PDCRE_PD15_Pos) /*!< 0x00008000 */
  5834. #define PWR_PDCRE_PD15 PWR_PDCRE_PD15_Msk /*!< Pin PE15 Pull-Down set */
  5835. /******************** Bit definition for PWR_PUCRF register *****************/
  5836. #define PWR_PUCRF_PU0_Pos (0U)
  5837. #define PWR_PUCRF_PU0_Msk (0x1UL << PWR_PUCRF_PU0_Pos) /*!< 0x00000001 */
  5838. #define PWR_PUCRF_PU0 PWR_PUCRF_PU0_Msk /*!< Pin PF0 Pull-Up set */
  5839. #define PWR_PUCRF_PU1_Pos (1U)
  5840. #define PWR_PUCRF_PU1_Msk (0x1UL << PWR_PUCRF_PU1_Pos) /*!< 0x00000002 */
  5841. #define PWR_PUCRF_PU1 PWR_PUCRF_PU1_Msk /*!< Pin PF1 Pull-Up set */
  5842. #define PWR_PUCRF_PU2_Pos (2U)
  5843. #define PWR_PUCRF_PU2_Msk (0x1UL << PWR_PUCRF_PU2_Pos) /*!< 0x00000004 */
  5844. #define PWR_PUCRF_PU2 PWR_PUCRF_PU2_Msk /*!< Pin PF2 Pull-Up set */
  5845. #define PWR_PUCRF_PU3_Pos (3U)
  5846. #define PWR_PUCRF_PU3_Msk (0x1UL << PWR_PUCRF_PU3_Pos) /*!< 0x00000008 */
  5847. #define PWR_PUCRF_PU3 PWR_PUCRF_PU3_Msk /*!< Pin PF3 Pull-Up set */
  5848. #define PWR_PUCRF_PU4_Pos (4U)
  5849. #define PWR_PUCRF_PU4_Msk (0x1UL << PWR_PUCRF_PU4_Pos) /*!< 0x00000010 */
  5850. #define PWR_PUCRF_PU4 PWR_PUCRF_PU4_Msk /*!< Pin PF4 Pull-Up set */
  5851. #define PWR_PUCRF_PD5_Pos (5U)
  5852. #define PWR_PUCRF_PD5_Msk (0x1UL << PWR_PUCRF_PD5_Pos) /*!< 0x00000020 */
  5853. #define PWR_PUCRF_PD5 PWR_PUCRF_PD5_Msk /*!< Pin PF5 Pull-Up set */
  5854. #define PWR_PUCRF_PD6_Pos (6U)
  5855. #define PWR_PUCRF_PD6_Msk (0x1UL << PWR_PUCRF_PD6_Pos) /*!< 0x00000040 */
  5856. #define PWR_PUCRF_PD6 PWR_PUCRF_PD6_Msk /*!< Pin PF6 Pull-Up set */
  5857. #define PWR_PUCRF_PD7_Pos (7U)
  5858. #define PWR_PUCRF_PD7_Msk (0x1UL << PWR_PUCRF_PD7_Pos) /*!< 0x00000080 */
  5859. #define PWR_PUCRF_PD7 PWR_PUCRF_PD7_Msk /*!< Pin PF7 Pull-Up set */
  5860. #define PWR_PUCRF_PD8_Pos (8U)
  5861. #define PWR_PUCRF_PD8_Msk (0x1UL << PWR_PUCRF_PD8_Pos) /*!< 0x00000100 */
  5862. #define PWR_PUCRF_PD8 PWR_PUCRF_PD8_Msk /*!< Pin PF8 Pull-Up set */
  5863. #define PWR_PUCRF_PD9_Pos (9U)
  5864. #define PWR_PUCRF_PD9_Msk (0x1UL << PWR_PUCRF_PD9_Pos) /*!< 0x00000200 */
  5865. #define PWR_PUCRF_PD9 PWR_PUCRF_PD9_Msk /*!< Pin PF9 Pull-Up set */
  5866. #define PWR_PUCRF_PD10_Pos (10U)
  5867. #define PWR_PUCRF_PD10_Msk (0x1UL << PWR_PUCRF_PD10_Pos) /*!< 0x00000400 */
  5868. #define PWR_PUCRF_PD10 PWR_PUCRF_PD10_Msk /*!< Pin PF10 Pull-Up set */
  5869. #define PWR_PUCRF_PD11_Pos (11U)
  5870. #define PWR_PUCRF_PD11_Msk (0x1UL << PWR_PUCRF_PD11_Pos) /*!< 0x00000800 */
  5871. #define PWR_PUCRF_PD11 PWR_PUCRF_PD11_Msk /*!< Pin PF11 Pull-Up set */
  5872. #define PWR_PUCRF_PD12_Pos (12U)
  5873. #define PWR_PUCRF_PD12_Msk (0x1UL << PWR_PUCRF_PD12_Pos) /*!< 0x00001000 */
  5874. #define PWR_PUCRF_PD12 PWR_PUCRF_PD12_Msk /*!< Pin PF12 Pull-Up set */
  5875. #define PWR_PUCRF_PD13_Pos (13U)
  5876. #define PWR_PUCRF_PD13_Msk (0x1UL << PWR_PUCRF_PD13_Pos) /*!< 0x00002000 */
  5877. #define PWR_PUCRF_PD13 PWR_PUCRF_PD13_Msk /*!< Pin PF13 Pull-Up set */
  5878. /******************** Bit definition for PWR_PDCRF register *****************/
  5879. #define PWR_PDCRF_PD0_Pos (0U)
  5880. #define PWR_PDCRF_PD0_Msk (0x1UL << PWR_PDCRF_PD0_Pos) /*!< 0x00000001 */
  5881. #define PWR_PDCRF_PD0 PWR_PDCRF_PD0_Msk /*!< Pin PF0 Pull-Down set */
  5882. #define PWR_PDCRF_PD1_Pos (1U)
  5883. #define PWR_PDCRF_PD1_Msk (0x1UL << PWR_PDCRF_PD1_Pos) /*!< 0x00000002 */
  5884. #define PWR_PDCRF_PD1 PWR_PDCRF_PD1_Msk /*!< Pin PF1 Pull-Down set */
  5885. #define PWR_PDCRF_PD2_Pos (2U)
  5886. #define PWR_PDCRF_PD2_Msk (0x1UL << PWR_PDCRF_PD2_Pos) /*!< 0x00000004 */
  5887. #define PWR_PDCRF_PD2 PWR_PDCRF_PD2_Msk /*!< Pin PF2 Pull-Down set */
  5888. #define PWR_PDCRF_PD3_Pos (3U)
  5889. #define PWR_PDCRF_PD3_Msk (0x1UL << PWR_PDCRF_PD3_Pos) /*!< 0x00000008 */
  5890. #define PWR_PDCRF_PD3 PWR_PDCRF_PD3_Msk /*!< Pin PF3 Pull-Down set */
  5891. #define PWR_PDCRF_PD4_Pos (4U)
  5892. #define PWR_PDCRF_PD4_Msk (0x1UL << PWR_PDCRF_PD4_Pos) /*!< 0x00000010 */
  5893. #define PWR_PDCRF_PD4 PWR_PDCRF_PD4_Msk /*!< Pin PF4 Pull-Down set */
  5894. #define PWR_PDCRF_PD5_Pos (5U)
  5895. #define PWR_PDCRF_PD5_Msk (0x1UL << PWR_PDCRF_PD5_Pos) /*!< 0x00000020 */
  5896. #define PWR_PDCRF_PD5 PWR_PDCRF_PD5_Msk /*!< Pin PF5 Pull-Down set */
  5897. #define PWR_PDCRF_PD6_Pos (6U)
  5898. #define PWR_PDCRF_PD6_Msk (0x1UL << PWR_PDCRF_PD6_Pos) /*!< 0x00000040 */
  5899. #define PWR_PDCRF_PD6 PWR_PDCRF_PD6_Msk /*!< Pin PF6 Pull-Down set */
  5900. #define PWR_PDCRF_PD7_Pos (7U)
  5901. #define PWR_PDCRF_PD7_Msk (0x1UL << PWR_PDCRF_PD7_Pos) /*!< 0x00000080 */
  5902. #define PWR_PDCRF_PD7 PWR_PDCRF_PD7_Msk /*!< Pin PF7 Pull-Down set */
  5903. #define PWR_PDCRF_PD8_Pos (8U)
  5904. #define PWR_PDCRF_PD8_Msk (0x1UL << PWR_PDCRF_PD8_Pos) /*!< 0x00000100 */
  5905. #define PWR_PDCRF_PD8 PWR_PDCRF_PD8_Msk /*!< Pin PF8 Pull-Down set */
  5906. #define PWR_PDCRF_PD9_Pos (9U)
  5907. #define PWR_PDCRF_PD9_Msk (0x1UL << PWR_PDCRF_PD9_Pos) /*!< 0x00000200 */
  5908. #define PWR_PDCRF_PD9 PWR_PDCRF_PD9_Msk /*!< Pin PF9 Pull-Down set */
  5909. #define PWR_PDCRF_PD10_Pos (10U)
  5910. #define PWR_PDCRF_PD10_Msk (0x1UL << PWR_PDCRF_PD10_Pos) /*!< 0x00000400 */
  5911. #define PWR_PDCRF_PD10 PWR_PDCRF_PD10_Msk /*!< Pin PF10 Pull-Down set */
  5912. #define PWR_PDCRF_PD11_Pos (11U)
  5913. #define PWR_PDCRF_PD11_Msk (0x1UL << PWR_PDCRF_PD11_Pos) /*!< 0x00000800 */
  5914. #define PWR_PDCRF_PD11 PWR_PDCRF_PD11_Msk /*!< Pin PF11 Pull-Down set */
  5915. #define PWR_PDCRF_PD12_Pos (12U)
  5916. #define PWR_PDCRF_PD12_Msk (0x1UL << PWR_PDCRF_PD12_Pos) /*!< 0x00001000 */
  5917. #define PWR_PDCRF_PD12 PWR_PDCRF_PD12_Msk /*!< Pin PF12 Pull-Down set */
  5918. #define PWR_PDCRF_PD13_Pos (13U)
  5919. #define PWR_PDCRF_PD13_Msk (0x1UL << PWR_PDCRF_PD13_Pos) /*!< 0x00002000 */
  5920. #define PWR_PDCRF_PD13 PWR_PDCRF_PD13_Msk /*!< Pin PF13 Pull-Down set */
  5921. /******************************************************************************/
  5922. /* */
  5923. /* Reset and Clock Control */
  5924. /* */
  5925. /******************************************************************************/
  5926. /*
  5927. * @brief Specific device feature definitions (not present on all devices in the STM32G0 series)
  5928. */
  5929. #define RCC_MCO2_SUPPORT
  5930. #define RCC_HSI48_SUPPORT
  5931. #define RCC_PLLQ_SUPPORT
  5932. /******************** Bit definition for RCC_CR register *****************/
  5933. #define RCC_CR_HSION_Pos (8U)
  5934. #define RCC_CR_HSION_Msk (0x1UL << RCC_CR_HSION_Pos) /*!< 0x00000100 */
  5935. #define RCC_CR_HSION RCC_CR_HSION_Msk /*!< Internal High Speed clock enable */
  5936. #define RCC_CR_HSIKERON_Pos (9U)
  5937. #define RCC_CR_HSIKERON_Msk (0x1UL << RCC_CR_HSIKERON_Pos) /*!< 0x00000200 */
  5938. #define RCC_CR_HSIKERON RCC_CR_HSIKERON_Msk /*!< Internal High Speed clock enable for some IPs Kernel */
  5939. #define RCC_CR_HSIRDY_Pos (10U)
  5940. #define RCC_CR_HSIRDY_Msk (0x1UL << RCC_CR_HSIRDY_Pos) /*!< 0x00000400 */
  5941. #define RCC_CR_HSIRDY RCC_CR_HSIRDY_Msk /*!< Internal High Speed clock ready flag */
  5942. #define RCC_CR_HSIDIV_Pos (11U)
  5943. #define RCC_CR_HSIDIV_Msk (0x7UL << RCC_CR_HSIDIV_Pos) /*!< 0x00003800 */
  5944. #define RCC_CR_HSIDIV RCC_CR_HSIDIV_Msk /*!< HSIDIV[13:11] Internal High Speed clock division factor */
  5945. #define RCC_CR_HSIDIV_0 (0x1UL << RCC_CR_HSIDIV_Pos) /*!< 0x00000800 */
  5946. #define RCC_CR_HSIDIV_1 (0x2UL << RCC_CR_HSIDIV_Pos) /*!< 0x00001000 */
  5947. #define RCC_CR_HSIDIV_2 (0x4UL << RCC_CR_HSIDIV_Pos) /*!< 0x00002000 */
  5948. #define RCC_CR_HSEON_Pos (16U)
  5949. #define RCC_CR_HSEON_Msk (0x1UL << RCC_CR_HSEON_Pos) /*!< 0x00010000 */
  5950. #define RCC_CR_HSEON RCC_CR_HSEON_Msk /*!< External High Speed clock enable */
  5951. #define RCC_CR_HSERDY_Pos (17U)
  5952. #define RCC_CR_HSERDY_Msk (0x1UL << RCC_CR_HSERDY_Pos) /*!< 0x00020000 */
  5953. #define RCC_CR_HSERDY RCC_CR_HSERDY_Msk /*!< External High Speed clock ready */
  5954. #define RCC_CR_HSEBYP_Pos (18U)
  5955. #define RCC_CR_HSEBYP_Msk (0x1UL << RCC_CR_HSEBYP_Pos) /*!< 0x00040000 */
  5956. #define RCC_CR_HSEBYP RCC_CR_HSEBYP_Msk /*!< External High Speed clock Bypass */
  5957. #define RCC_CR_CSSON_Pos (19U)
  5958. #define RCC_CR_CSSON_Msk (0x1UL << RCC_CR_CSSON_Pos) /*!< 0x00080000 */
  5959. #define RCC_CR_CSSON RCC_CR_CSSON_Msk /*!< HSE Clock Security System enable */
  5960. #define RCC_CR_HSI48ON_Pos (22U)
  5961. #define RCC_CR_HSI48ON_Msk (0x1UL << RCC_CR_HSI48ON_Pos) /*!< 0x004000000 */
  5962. #define RCC_CR_HSI48ON RCC_CR_HSI48ON_Msk /*!< RC48 clock enable */
  5963. #define RCC_CR_HSI48RDY_Pos (23U)
  5964. #define RCC_CR_HSI48RDY_Msk (0x1UL << RCC_CR_HSI48RDY_Pos) /*!< 0x00800000 */
  5965. #define RCC_CR_HSI48RDY RCC_CR_HSI48RDY_Msk /*!< RC48 clock ready */
  5966. #define RCC_CR_PLLON_Pos (24U)
  5967. #define RCC_CR_PLLON_Msk (0x1UL << RCC_CR_PLLON_Pos) /*!< 0x01000000 */
  5968. #define RCC_CR_PLLON RCC_CR_PLLON_Msk /*!< System PLL clock enable */
  5969. #define RCC_CR_PLLRDY_Pos (25U)
  5970. #define RCC_CR_PLLRDY_Msk (0x1UL << RCC_CR_PLLRDY_Pos) /*!< 0x02000000 */
  5971. #define RCC_CR_PLLRDY RCC_CR_PLLRDY_Msk /*!< System PLL clock ready */
  5972. /******************** Bit definition for RCC_ICSCR register ***************/
  5973. /*!< HSICAL configuration */
  5974. #define RCC_ICSCR_HSICAL_Pos (0U)
  5975. #define RCC_ICSCR_HSICAL_Msk (0xFFUL << RCC_ICSCR_HSICAL_Pos) /*!< 0x000000FF */
  5976. #define RCC_ICSCR_HSICAL RCC_ICSCR_HSICAL_Msk /*!< HSICAL[7:0] bits */
  5977. #define RCC_ICSCR_HSICAL_0 (0x01UL << RCC_ICSCR_HSICAL_Pos) /*!< 0x00000001 */
  5978. #define RCC_ICSCR_HSICAL_1 (0x02UL << RCC_ICSCR_HSICAL_Pos) /*!< 0x00000002 */
  5979. #define RCC_ICSCR_HSICAL_2 (0x04UL << RCC_ICSCR_HSICAL_Pos) /*!< 0x00000004 */
  5980. #define RCC_ICSCR_HSICAL_3 (0x08UL << RCC_ICSCR_HSICAL_Pos) /*!< 0x00000008 */
  5981. #define RCC_ICSCR_HSICAL_4 (0x10UL << RCC_ICSCR_HSICAL_Pos) /*!< 0x00000010 */
  5982. #define RCC_ICSCR_HSICAL_5 (0x20UL << RCC_ICSCR_HSICAL_Pos) /*!< 0x00000020 */
  5983. #define RCC_ICSCR_HSICAL_6 (0x40UL << RCC_ICSCR_HSICAL_Pos) /*!< 0x00000040 */
  5984. #define RCC_ICSCR_HSICAL_7 (0x80UL << RCC_ICSCR_HSICAL_Pos) /*!< 0x00000080 */
  5985. /*!< HSITRIM configuration */
  5986. #define RCC_ICSCR_HSITRIM_Pos (8U)
  5987. #define RCC_ICSCR_HSITRIM_Msk (0x7FUL << RCC_ICSCR_HSITRIM_Pos) /*!< 0x00007F00 */
  5988. #define RCC_ICSCR_HSITRIM RCC_ICSCR_HSITRIM_Msk /*!< HSITRIM[14:8] bits */
  5989. #define RCC_ICSCR_HSITRIM_0 (0x01UL << RCC_ICSCR_HSITRIM_Pos) /*!< 0x00000100 */
  5990. #define RCC_ICSCR_HSITRIM_1 (0x02UL << RCC_ICSCR_HSITRIM_Pos) /*!< 0x00000200 */
  5991. #define RCC_ICSCR_HSITRIM_2 (0x04UL << RCC_ICSCR_HSITRIM_Pos) /*!< 0x00000400 */
  5992. #define RCC_ICSCR_HSITRIM_3 (0x08UL << RCC_ICSCR_HSITRIM_Pos) /*!< 0x00000800 */
  5993. #define RCC_ICSCR_HSITRIM_4 (0x10UL << RCC_ICSCR_HSITRIM_Pos) /*!< 0x00001000 */
  5994. #define RCC_ICSCR_HSITRIM_5 (0x20UL << RCC_ICSCR_HSITRIM_Pos) /*!< 0x00002000 */
  5995. #define RCC_ICSCR_HSITRIM_6 (0x40UL << RCC_ICSCR_HSITRIM_Pos) /*!< 0x00004000 */
  5996. /******************** Bit definition for RCC_CFGR register ***************/
  5997. /*!< SW configuration */
  5998. #define RCC_CFGR_SW_Pos (0U)
  5999. #define RCC_CFGR_SW_Msk (0x7UL << RCC_CFGR_SW_Pos) /*!< 0x00000007 */
  6000. #define RCC_CFGR_SW RCC_CFGR_SW_Msk /*!< SW[2:0] bits (System clock Switch) */
  6001. #define RCC_CFGR_SW_0 (0x1UL << RCC_CFGR_SW_Pos) /*!< 0x00000001 */
  6002. #define RCC_CFGR_SW_1 (0x2UL << RCC_CFGR_SW_Pos) /*!< 0x00000002 */
  6003. #define RCC_CFGR_SW_2 (0x4UL << RCC_CFGR_SW_Pos) /*!< 0x00000004 */
  6004. /*!< SWS configuration */
  6005. #define RCC_CFGR_SWS_Pos (3U)
  6006. #define RCC_CFGR_SWS_Msk (0x7UL << RCC_CFGR_SWS_Pos) /*!< 0x00000038 */
  6007. #define RCC_CFGR_SWS RCC_CFGR_SWS_Msk /*!< SWS[2:0] bits (System Clock Switch Status) */
  6008. #define RCC_CFGR_SWS_0 (0x1UL << RCC_CFGR_SWS_Pos) /*!< 0x00000008 */
  6009. #define RCC_CFGR_SWS_1 (0x2UL << RCC_CFGR_SWS_Pos) /*!< 0x00000010 */
  6010. #define RCC_CFGR_SWS_2 (0x4UL << RCC_CFGR_SWS_Pos) /*!< 0x00000020 */
  6011. #define RCC_CFGR_SWS_HSISYS (0x00000000UL) /*!< HSISYS used as system clock */
  6012. #define RCC_CFGR_SWS_HSE (0x00000008UL) /*!< HSE used as system clock */
  6013. #define RCC_CFGR_SWS_PLLRCLK (0x00000010UL) /*!< PLLRCLK used as system clock */
  6014. #define RCC_CFGR_SWS_LSI (0x00000018UL) /*!< LSI used as system clock */
  6015. #define RCC_CFGR_SWS_LSE (0x00000100UL) /*!< LSE used as system clock */
  6016. /*!< HPRE configuration */
  6017. #define RCC_CFGR_HPRE_Pos (8U)
  6018. #define RCC_CFGR_HPRE_Msk (0xFUL << RCC_CFGR_HPRE_Pos) /*!< 0x00000F00 */
  6019. #define RCC_CFGR_HPRE RCC_CFGR_HPRE_Msk /*!< HPRE[3:0] bits (AHB prescaler) */
  6020. #define RCC_CFGR_HPRE_0 (0x1UL << RCC_CFGR_HPRE_Pos) /*!< 0x00000100 */
  6021. #define RCC_CFGR_HPRE_1 (0x2UL << RCC_CFGR_HPRE_Pos) /*!< 0x00000200 */
  6022. #define RCC_CFGR_HPRE_2 (0x4UL << RCC_CFGR_HPRE_Pos) /*!< 0x00000400 */
  6023. #define RCC_CFGR_HPRE_3 (0x8UL << RCC_CFGR_HPRE_Pos) /*!< 0x00000800 */
  6024. /*!< PPRE configuration */
  6025. #define RCC_CFGR_PPRE_Pos (12U)
  6026. #define RCC_CFGR_PPRE_Msk (0x7UL << RCC_CFGR_PPRE_Pos) /*!< 0x00007000 */
  6027. #define RCC_CFGR_PPRE RCC_CFGR_PPRE_Msk /*!< PRE1[2:0] bits (APB prescaler) */
  6028. #define RCC_CFGR_PPRE_0 (0x1UL << RCC_CFGR_PPRE_Pos) /*!< 0x00001000 */
  6029. #define RCC_CFGR_PPRE_1 (0x2UL << RCC_CFGR_PPRE_Pos) /*!< 0x00002000 */
  6030. #define RCC_CFGR_PPRE_2 (0x4UL << RCC_CFGR_PPRE_Pos) /*!< 0x00004000 */
  6031. /*!< MCO2SEL configuration */
  6032. #define RCC_CFGR_MCO2SEL_Pos (16U)
  6033. #define RCC_CFGR_MCO2SEL_Msk (0xFUL << RCC_CFGR_MCO2SEL_Pos) /*!< 0x000F0000 */
  6034. #define RCC_CFGR_MCO2SEL RCC_CFGR_MCO2SEL_Msk /*!< MCO2SEL [3:0] bits (Clock output selection) */
  6035. #define RCC_CFGR_MCO2SEL_0 (0x1UL << RCC_CFGR_MCO2SEL_Pos) /*!< 0x00010000 */
  6036. #define RCC_CFGR_MCO2SEL_1 (0x2UL << RCC_CFGR_MCO2SEL_Pos) /*!< 0x00020000 */
  6037. #define RCC_CFGR_MCO2SEL_2 (0x4UL << RCC_CFGR_MCO2SEL_Pos) /*!< 0x00040000 */
  6038. #define RCC_CFGR_MCO2SEL_3 (0x8UL << RCC_CFGR_MCO2SEL_Pos) /*!< 0x00080000 */
  6039. /*!< MCO2 Prescaler configuration */
  6040. #define RCC_CFGR_MCO2PRE_Pos (20U)
  6041. #define RCC_CFGR_MCO2PRE_Msk (0xFUL << RCC_CFGR_MCO2PRE_Pos) /*!< 0x00F00000 */
  6042. #define RCC_CFGR_MCO2PRE RCC_CFGR_MCO2PRE_Msk /*!< MCO2 prescaler [3:0] */
  6043. #define RCC_CFGR_MCO2PRE_0 (0x1UL << RCC_CFGR_MCO2PRE_Pos) /*!< 0x00100000 */
  6044. #define RCC_CFGR_MCO2PRE_1 (0x2UL << RCC_CFGR_MCO2PRE_Pos) /*!< 0x00200000 */
  6045. #define RCC_CFGR_MCO2PRE_2 (0x4UL << RCC_CFGR_MCO2PRE_Pos) /*!< 0x00400000 */
  6046. #define RCC_CFGR_MCO2PRE_3 (0x8UL << RCC_CFGR_MCO2PRE_Pos) /*!< 0x00800000 */
  6047. /*!< MCOSEL configuration */
  6048. #define RCC_CFGR_MCOSEL_Pos (24U)
  6049. #define RCC_CFGR_MCOSEL_Msk (0xFUL << RCC_CFGR_MCOSEL_Pos) /*!< 0x0F000000 */
  6050. #define RCC_CFGR_MCOSEL RCC_CFGR_MCOSEL_Msk /*!< MCOSEL [2:0] bits (Clock output selection) */
  6051. #define RCC_CFGR_MCOSEL_0 (0x1UL << RCC_CFGR_MCOSEL_Pos) /*!< 0x01000000 */
  6052. #define RCC_CFGR_MCOSEL_1 (0x2UL << RCC_CFGR_MCOSEL_Pos) /*!< 0x02000000 */
  6053. #define RCC_CFGR_MCOSEL_2 (0x4UL << RCC_CFGR_MCOSEL_Pos) /*!< 0x04000000 */
  6054. #define RCC_CFGR_MCOSEL_3 (0x8UL << RCC_CFGR_MCOSEL_Pos) /*!< 0x08000000 */
  6055. /*!< MCO Prescaler configuration */
  6056. #define RCC_CFGR_MCOPRE_Pos (28U)
  6057. #define RCC_CFGR_MCOPRE_Msk (0xFUL << RCC_CFGR_MCOPRE_Pos) /*!< 0xF0000000 */
  6058. #define RCC_CFGR_MCOPRE RCC_CFGR_MCOPRE_Msk /*!< MCO prescaler [2:0] */
  6059. #define RCC_CFGR_MCOPRE_0 (0x1UL << RCC_CFGR_MCOPRE_Pos) /*!< 0x10000000 */
  6060. #define RCC_CFGR_MCOPRE_1 (0x2UL << RCC_CFGR_MCOPRE_Pos) /*!< 0x20000000 */
  6061. #define RCC_CFGR_MCOPRE_2 (0x4UL << RCC_CFGR_MCOPRE_Pos) /*!< 0x40000000 */
  6062. #define RCC_CFGR_MCOPRE_3 (0x8UL << RCC_CFGR_MCOPRE_Pos) /*!< 0x80000000 */
  6063. /******************** Bit definition for RCC_PLLCFGR register ***************/
  6064. #define RCC_PLLCFGR_PLLSRC_Pos (0U)
  6065. #define RCC_PLLCFGR_PLLSRC_Msk (0x3UL << RCC_PLLCFGR_PLLSRC_Pos) /*!< 0x00000003 */
  6066. #define RCC_PLLCFGR_PLLSRC RCC_PLLCFGR_PLLSRC_Msk
  6067. #define RCC_PLLCFGR_PLLSRC_0 (0x1UL << RCC_PLLCFGR_PLLSRC_Pos) /*!< 0x00000001 */
  6068. #define RCC_PLLCFGR_PLLSRC_1 (0x2UL << RCC_PLLCFGR_PLLSRC_Pos) /*!< 0x00000002 */
  6069. #define RCC_PLLCFGR_PLLSRC_NONE (0x00000000UL) /*!< No clock sent to PLL */
  6070. #define RCC_PLLCFGR_PLLSRC_HSI_Pos (1U)
  6071. #define RCC_PLLCFGR_PLLSRC_HSI_Msk (0x1UL << RCC_PLLCFGR_PLLSRC_HSI_Pos) /*!< 0x00000002 */
  6072. #define RCC_PLLCFGR_PLLSRC_HSI RCC_PLLCFGR_PLLSRC_HSI_Msk /*!< HSI source clock selected */
  6073. #define RCC_PLLCFGR_PLLSRC_HSE_Pos (0U)
  6074. #define RCC_PLLCFGR_PLLSRC_HSE_Msk (0x3UL << RCC_PLLCFGR_PLLSRC_HSE_Pos) /*!< 0x00000003 */
  6075. #define RCC_PLLCFGR_PLLSRC_HSE RCC_PLLCFGR_PLLSRC_HSE_Msk /*!< HSE source clock selected */
  6076. #define RCC_PLLCFGR_PLLM_Pos (4U)
  6077. #define RCC_PLLCFGR_PLLM_Msk (0x7UL << RCC_PLLCFGR_PLLM_Pos) /*!< 0x00000070 */
  6078. #define RCC_PLLCFGR_PLLM RCC_PLLCFGR_PLLM_Msk
  6079. #define RCC_PLLCFGR_PLLM_0 (0x1UL << RCC_PLLCFGR_PLLM_Pos) /*!< 0x00000010 */
  6080. #define RCC_PLLCFGR_PLLM_1 (0x2UL << RCC_PLLCFGR_PLLM_Pos) /*!< 0x00000020 */
  6081. #define RCC_PLLCFGR_PLLM_2 (0x4UL << RCC_PLLCFGR_PLLM_Pos) /*!< 0x00000040 */
  6082. #define RCC_PLLCFGR_PLLN_Pos (8U)
  6083. #define RCC_PLLCFGR_PLLN_Msk (0x7FUL << RCC_PLLCFGR_PLLN_Pos) /*!< 0x00007F00 */
  6084. #define RCC_PLLCFGR_PLLN RCC_PLLCFGR_PLLN_Msk
  6085. #define RCC_PLLCFGR_PLLN_0 (0x01UL << RCC_PLLCFGR_PLLN_Pos) /*!< 0x00000100 */
  6086. #define RCC_PLLCFGR_PLLN_1 (0x02UL << RCC_PLLCFGR_PLLN_Pos) /*!< 0x00000200 */
  6087. #define RCC_PLLCFGR_PLLN_2 (0x04UL << RCC_PLLCFGR_PLLN_Pos) /*!< 0x00000400 */
  6088. #define RCC_PLLCFGR_PLLN_3 (0x08UL << RCC_PLLCFGR_PLLN_Pos) /*!< 0x00000800 */
  6089. #define RCC_PLLCFGR_PLLN_4 (0x10UL << RCC_PLLCFGR_PLLN_Pos) /*!< 0x00001000 */
  6090. #define RCC_PLLCFGR_PLLN_5 (0x20UL << RCC_PLLCFGR_PLLN_Pos) /*!< 0x00002000 */
  6091. #define RCC_PLLCFGR_PLLN_6 (0x40UL << RCC_PLLCFGR_PLLN_Pos) /*!< 0x00004000 */
  6092. #define RCC_PLLCFGR_PLLPEN_Pos (16U)
  6093. #define RCC_PLLCFGR_PLLPEN_Msk (0x1UL << RCC_PLLCFGR_PLLPEN_Pos) /*!< 0x00010000 */
  6094. #define RCC_PLLCFGR_PLLPEN RCC_PLLCFGR_PLLPEN_Msk
  6095. #define RCC_PLLCFGR_PLLP_Pos (17U)
  6096. #define RCC_PLLCFGR_PLLP_Msk (0x1FUL << RCC_PLLCFGR_PLLP_Pos) /*!< 0x003E0000 */
  6097. #define RCC_PLLCFGR_PLLP RCC_PLLCFGR_PLLP_Msk
  6098. #define RCC_PLLCFGR_PLLP_0 (0x01UL << RCC_PLLCFGR_PLLP_Pos) /*!< 0x00020000 */
  6099. #define RCC_PLLCFGR_PLLP_1 (0x02UL << RCC_PLLCFGR_PLLP_Pos) /*!< 0x00040000 */
  6100. #define RCC_PLLCFGR_PLLP_2 (0x04UL << RCC_PLLCFGR_PLLP_Pos) /*!< 0x00080000 */
  6101. #define RCC_PLLCFGR_PLLP_3 (0x08UL << RCC_PLLCFGR_PLLP_Pos) /*!< 0x00100000 */
  6102. #define RCC_PLLCFGR_PLLP_4 (0x10UL << RCC_PLLCFGR_PLLP_Pos) /*!< 0x00200000 */
  6103. #define RCC_PLLCFGR_PLLQEN_Pos (24U)
  6104. #define RCC_PLLCFGR_PLLQEN_Msk (0x1UL << RCC_PLLCFGR_PLLQEN_Pos) /*!< 0x01000000 */
  6105. #define RCC_PLLCFGR_PLLQEN RCC_PLLCFGR_PLLQEN_Msk
  6106. #define RCC_PLLCFGR_PLLQ_Pos (25U)
  6107. #define RCC_PLLCFGR_PLLQ_Msk (0x7UL << RCC_PLLCFGR_PLLQ_Pos) /*!< 0x0E000000 */
  6108. #define RCC_PLLCFGR_PLLQ RCC_PLLCFGR_PLLQ_Msk
  6109. #define RCC_PLLCFGR_PLLQ_0 (0x1UL << RCC_PLLCFGR_PLLQ_Pos) /*!< 0x02000000 */
  6110. #define RCC_PLLCFGR_PLLQ_1 (0x2UL << RCC_PLLCFGR_PLLQ_Pos) /*!< 0x04000000 */
  6111. #define RCC_PLLCFGR_PLLQ_2 (0x4UL << RCC_PLLCFGR_PLLQ_Pos) /*!< 0x08000000 */
  6112. #define RCC_PLLCFGR_PLLREN_Pos (28U)
  6113. #define RCC_PLLCFGR_PLLREN_Msk (0x1UL << RCC_PLLCFGR_PLLREN_Pos) /*!< 0x10000000 */
  6114. #define RCC_PLLCFGR_PLLREN RCC_PLLCFGR_PLLREN_Msk
  6115. #define RCC_PLLCFGR_PLLR_Pos (29U)
  6116. #define RCC_PLLCFGR_PLLR_Msk (0x7UL << RCC_PLLCFGR_PLLR_Pos) /*!< 0xE0000000 */
  6117. #define RCC_PLLCFGR_PLLR RCC_PLLCFGR_PLLR_Msk
  6118. #define RCC_PLLCFGR_PLLR_0 (0x1UL << RCC_PLLCFGR_PLLR_Pos) /*!< 0x20000000 */
  6119. #define RCC_PLLCFGR_PLLR_1 (0x2UL << RCC_PLLCFGR_PLLR_Pos) /*!< 0x40000000 */
  6120. #define RCC_PLLCFGR_PLLR_2 (0x4UL << RCC_PLLCFGR_PLLR_Pos) /*!< 0x80000000 */
  6121. /******************** Bit definition for RCC_CRRCR register ******************/
  6122. /*!< RC48CAL configuration */
  6123. #define RCC_CRRCR_HSI48CAL_Pos (0U)
  6124. #define RCC_CRRCR_HSI48CAL_Msk (0x1FFUL << RCC_CRRCR_HSI48CAL_Pos) /*!< 0x000001FF */
  6125. #define RCC_CRRCR_HSI48CAL RCC_CRRCR_HSI48CAL_Msk /*!< RC48CAL[8:0] bits */
  6126. #define RCC_CRRCR_HSI48CAL_0 (0x01UL << RCC_CRRCR_HSI48CAL_Pos) /*!< 0x00000001 */
  6127. #define RCC_CRRCR_HSI48CAL_1 (0x02UL << RCC_CRRCR_HSI48CAL_Pos) /*!< 0x00000002 */
  6128. #define RCC_CRRCR_HSI48CAL_2 (0x04UL << RCC_CRRCR_HSI48CAL_Pos) /*!< 0x00000004 */
  6129. #define RCC_CRRCR_HSI48CAL_3 (0x08UL << RCC_CRRCR_HSI48CAL_Pos) /*!< 0x00000008 */
  6130. #define RCC_CRRCR_HSI48CAL_4 (0x10UL << RCC_CRRCR_HSI48CAL_Pos) /*!< 0x00000010 */
  6131. #define RCC_CRRCR_HSI48CAL_5 (0x20UL << RCC_CRRCR_HSI48CAL_Pos) /*!< 0x00000020 */
  6132. #define RCC_CRRCR_HSI48CAL_6 (0x40UL << RCC_CRRCR_HSI48CAL_Pos) /*!< 0x00000040 */
  6133. #define RCC_CRRCR_HSI48CAL_7 (0x80UL << RCC_CRRCR_HSI48CAL_Pos) /*!< 0x00000080 */
  6134. #define RCC_CRRCR_HSI48CAL_8 (0x100UL << RCC_CRRCR_HSI48CAL_Pos) /*!< 0x00000100 */
  6135. /******************** Bit definition for RCC_CIER register ******************/
  6136. #define RCC_CIER_LSIRDYIE_Pos (0U)
  6137. #define RCC_CIER_LSIRDYIE_Msk (0x1UL << RCC_CIER_LSIRDYIE_Pos) /*!< 0x00000001 */
  6138. #define RCC_CIER_LSIRDYIE RCC_CIER_LSIRDYIE_Msk
  6139. #define RCC_CIER_LSERDYIE_Pos (1U)
  6140. #define RCC_CIER_LSERDYIE_Msk (0x1UL << RCC_CIER_LSERDYIE_Pos) /*!< 0x00000002 */
  6141. #define RCC_CIER_LSERDYIE RCC_CIER_LSERDYIE_Msk
  6142. #define RCC_CIER_HSI48RDYIE_Pos (2U)
  6143. #define RCC_CIER_HSI48RDYIE_Msk (0x1UL << RCC_CIER_HSI48RDYIE_Pos) /*!< 0x00000004 */
  6144. #define RCC_CIER_HSI48RDYIE RCC_CIER_HSI48RDYIE_Msk
  6145. #define RCC_CIER_HSIRDYIE_Pos (3U)
  6146. #define RCC_CIER_HSIRDYIE_Msk (0x1UL << RCC_CIER_HSIRDYIE_Pos) /*!< 0x00000008 */
  6147. #define RCC_CIER_HSIRDYIE RCC_CIER_HSIRDYIE_Msk
  6148. #define RCC_CIER_HSERDYIE_Pos (4U)
  6149. #define RCC_CIER_HSERDYIE_Msk (0x1UL << RCC_CIER_HSERDYIE_Pos) /*!< 0x00000010 */
  6150. #define RCC_CIER_HSERDYIE RCC_CIER_HSERDYIE_Msk
  6151. #define RCC_CIER_PLLRDYIE_Pos (5U)
  6152. #define RCC_CIER_PLLRDYIE_Msk (0x1UL << RCC_CIER_PLLRDYIE_Pos) /*!< 0x00000020 */
  6153. #define RCC_CIER_PLLRDYIE RCC_CIER_PLLRDYIE_Msk
  6154. /******************** Bit definition for RCC_CIFR register ******************/
  6155. #define RCC_CIFR_LSIRDYF_Pos (0U)
  6156. #define RCC_CIFR_LSIRDYF_Msk (0x1UL << RCC_CIFR_LSIRDYF_Pos) /*!< 0x00000001 */
  6157. #define RCC_CIFR_LSIRDYF RCC_CIFR_LSIRDYF_Msk
  6158. #define RCC_CIFR_LSERDYF_Pos (1U)
  6159. #define RCC_CIFR_LSERDYF_Msk (0x1UL << RCC_CIFR_LSERDYF_Pos) /*!< 0x00000002 */
  6160. #define RCC_CIFR_LSERDYF RCC_CIFR_LSERDYF_Msk
  6161. #define RCC_CIFR_HSI48RDYF_Pos (2U)
  6162. #define RCC_CIFR_HSI48RDYF_Msk (0x1UL << RCC_CIFR_HSI48RDYF_Pos) /*!< 0x00000004 */
  6163. #define RCC_CIFR_HSI48RDYF RCC_CIFR_HSI48RDYF_Msk
  6164. #define RCC_CIFR_HSIRDYF_Pos (3U)
  6165. #define RCC_CIFR_HSIRDYF_Msk (0x1UL << RCC_CIFR_HSIRDYF_Pos) /*!< 0x00000008 */
  6166. #define RCC_CIFR_HSIRDYF RCC_CIFR_HSIRDYF_Msk
  6167. #define RCC_CIFR_HSERDYF_Pos (4U)
  6168. #define RCC_CIFR_HSERDYF_Msk (0x1UL << RCC_CIFR_HSERDYF_Pos) /*!< 0x00000010 */
  6169. #define RCC_CIFR_HSERDYF RCC_CIFR_HSERDYF_Msk
  6170. #define RCC_CIFR_PLLRDYF_Pos (5U)
  6171. #define RCC_CIFR_PLLRDYF_Msk (0x1UL << RCC_CIFR_PLLRDYF_Pos) /*!< 0x00000020 */
  6172. #define RCC_CIFR_PLLRDYF RCC_CIFR_PLLRDYF_Msk
  6173. #define RCC_CIFR_CSSF_Pos (8U)
  6174. #define RCC_CIFR_CSSF_Msk (0x1UL << RCC_CIFR_CSSF_Pos) /*!< 0x00000100 */
  6175. #define RCC_CIFR_CSSF RCC_CIFR_CSSF_Msk
  6176. #define RCC_CIFR_LSECSSF_Pos (9U)
  6177. #define RCC_CIFR_LSECSSF_Msk (0x1UL << RCC_CIFR_LSECSSF_Pos) /*!< 0x00000200 */
  6178. #define RCC_CIFR_LSECSSF RCC_CIFR_LSECSSF_Msk
  6179. /******************** Bit definition for RCC_CICR register ******************/
  6180. #define RCC_CICR_LSIRDYC_Pos (0U)
  6181. #define RCC_CICR_LSIRDYC_Msk (0x1UL << RCC_CICR_LSIRDYC_Pos) /*!< 0x00000001 */
  6182. #define RCC_CICR_LSIRDYC RCC_CICR_LSIRDYC_Msk
  6183. #define RCC_CICR_LSERDYC_Pos (1U)
  6184. #define RCC_CICR_LSERDYC_Msk (0x1UL << RCC_CICR_LSERDYC_Pos) /*!< 0x00000002 */
  6185. #define RCC_CICR_LSERDYC RCC_CICR_LSERDYC_Msk
  6186. #define RCC_CICR_HSI48RDYC_Pos (2U)
  6187. #define RCC_CICR_HSI48RDYC_Msk (0x1UL << RCC_CICR_HSI48RDYC_Pos) /*!< 0x00000004 */
  6188. #define RCC_CICR_HSI48RDYC RCC_CICR_HSI48RDYC_Msk
  6189. #define RCC_CICR_HSIRDYC_Pos (3U)
  6190. #define RCC_CICR_HSIRDYC_Msk (0x1UL << RCC_CICR_HSIRDYC_Pos) /*!< 0x00000008 */
  6191. #define RCC_CICR_HSIRDYC RCC_CICR_HSIRDYC_Msk
  6192. #define RCC_CICR_HSERDYC_Pos (4U)
  6193. #define RCC_CICR_HSERDYC_Msk (0x1UL << RCC_CICR_HSERDYC_Pos) /*!< 0x00000010 */
  6194. #define RCC_CICR_HSERDYC RCC_CICR_HSERDYC_Msk
  6195. #define RCC_CICR_PLLRDYC_Pos (5U)
  6196. #define RCC_CICR_PLLRDYC_Msk (0x1UL << RCC_CICR_PLLRDYC_Pos) /*!< 0x00000020 */
  6197. #define RCC_CICR_PLLRDYC RCC_CICR_PLLRDYC_Msk
  6198. #define RCC_CICR_CSSC_Pos (8U)
  6199. #define RCC_CICR_CSSC_Msk (0x1UL << RCC_CICR_CSSC_Pos) /*!< 0x00000100 */
  6200. #define RCC_CICR_CSSC RCC_CICR_CSSC_Msk
  6201. #define RCC_CICR_LSECSSC_Pos (9U)
  6202. #define RCC_CICR_LSECSSC_Msk (0x1UL << RCC_CICR_LSECSSC_Pos) /*!< 0x00000200 */
  6203. #define RCC_CICR_LSECSSC RCC_CICR_LSECSSC_Msk
  6204. /******************** Bit definition for RCC_IOPRSTR register ****************/
  6205. #define RCC_IOPRSTR_GPIOARST_Pos (0U)
  6206. #define RCC_IOPRSTR_GPIOARST_Msk (0x1UL << RCC_IOPRSTR_GPIOARST_Pos) /*!< 0x00000001 */
  6207. #define RCC_IOPRSTR_GPIOARST RCC_IOPRSTR_GPIOARST_Msk
  6208. #define RCC_IOPRSTR_GPIOBRST_Pos (1U)
  6209. #define RCC_IOPRSTR_GPIOBRST_Msk (0x1UL << RCC_IOPRSTR_GPIOBRST_Pos) /*!< 0x00000002 */
  6210. #define RCC_IOPRSTR_GPIOBRST RCC_IOPRSTR_GPIOBRST_Msk
  6211. #define RCC_IOPRSTR_GPIOCRST_Pos (2U)
  6212. #define RCC_IOPRSTR_GPIOCRST_Msk (0x1UL << RCC_IOPRSTR_GPIOCRST_Pos) /*!< 0x00000004 */
  6213. #define RCC_IOPRSTR_GPIOCRST RCC_IOPRSTR_GPIOCRST_Msk
  6214. #define RCC_IOPRSTR_GPIODRST_Pos (3U)
  6215. #define RCC_IOPRSTR_GPIODRST_Msk (0x1UL << RCC_IOPRSTR_GPIODRST_Pos) /*!< 0x00000008 */
  6216. #define RCC_IOPRSTR_GPIODRST RCC_IOPRSTR_GPIODRST_Msk
  6217. #define RCC_IOPRSTR_GPIOERST_Pos (4U)
  6218. #define RCC_IOPRSTR_GPIOERST_Msk (0x1UL << RCC_IOPRSTR_GPIOERST_Pos) /*!< 0x00000010 */
  6219. #define RCC_IOPRSTR_GPIOERST RCC_IOPRSTR_GPIOERST_Msk
  6220. #define RCC_IOPRSTR_GPIOFRST_Pos (5U)
  6221. #define RCC_IOPRSTR_GPIOFRST_Msk (0x1UL << RCC_IOPRSTR_GPIOFRST_Pos) /*!< 0x00000020 */
  6222. #define RCC_IOPRSTR_GPIOFRST RCC_IOPRSTR_GPIOFRST_Msk
  6223. /******************** Bit definition for RCC_AHBRSTR register ***************/
  6224. #define RCC_AHBRSTR_DMA1RST_Pos (0U)
  6225. #define RCC_AHBRSTR_DMA1RST_Msk (0x1UL << RCC_AHBRSTR_DMA1RST_Pos) /*!< 0x00000001 */
  6226. #define RCC_AHBRSTR_DMA1RST RCC_AHBRSTR_DMA1RST_Msk
  6227. #define RCC_AHBRSTR_DMA2RST_Pos (1U)
  6228. #define RCC_AHBRSTR_DMA2RST_Msk (0x1UL << RCC_AHBRSTR_DMA2RST_Pos) /*!< 0x00000002 */
  6229. #define RCC_AHBRSTR_DMA2RST RCC_AHBRSTR_DMA2RST_Msk
  6230. #define RCC_AHBRSTR_FLASHRST_Pos (8U)
  6231. #define RCC_AHBRSTR_FLASHRST_Msk (0x1UL << RCC_AHBRSTR_FLASHRST_Pos) /*!< 0x00000100 */
  6232. #define RCC_AHBRSTR_FLASHRST RCC_AHBRSTR_FLASHRST_Msk
  6233. #define RCC_AHBRSTR_CRCRST_Pos (12U)
  6234. #define RCC_AHBRSTR_CRCRST_Msk (0x1UL << RCC_AHBRSTR_CRCRST_Pos) /*!< 0x00001000 */
  6235. #define RCC_AHBRSTR_CRCRST RCC_AHBRSTR_CRCRST_Msk
  6236. #define RCC_AHBRSTR_AESRST_Pos (16U)
  6237. #define RCC_AHBRSTR_AESRST_Msk (0x1UL << RCC_AHBRSTR_AESRST_Pos) /*!< 0x00010000 */
  6238. #define RCC_AHBRSTR_AESRST RCC_AHBRSTR_AESRST_Msk
  6239. #define RCC_AHBRSTR_RNGRST_Pos (18U)
  6240. #define RCC_AHBRSTR_RNGRST_Msk (0x1UL << RCC_AHBRSTR_RNGRST_Pos) /*!< 0x00040000 */
  6241. #define RCC_AHBRSTR_RNGRST RCC_AHBRSTR_RNGRST_Msk
  6242. /******************** Bit definition for RCC_APBRSTR1 register **************/
  6243. #define RCC_APBRSTR1_TIM2RST_Pos (0U)
  6244. #define RCC_APBRSTR1_TIM2RST_Msk (0x1UL << RCC_APBRSTR1_TIM2RST_Pos) /*!< 0x00000001 */
  6245. #define RCC_APBRSTR1_TIM2RST RCC_APBRSTR1_TIM2RST_Msk
  6246. #define RCC_APBRSTR1_TIM3RST_Pos (1U)
  6247. #define RCC_APBRSTR1_TIM3RST_Msk (0x1UL << RCC_APBRSTR1_TIM3RST_Pos) /*!< 0x00000002 */
  6248. #define RCC_APBRSTR1_TIM3RST RCC_APBRSTR1_TIM3RST_Msk
  6249. #define RCC_APBRSTR1_TIM4RST_Pos (2U)
  6250. #define RCC_APBRSTR1_TIM4RST_Msk (0x1UL << RCC_APBRSTR1_TIM4RST_Pos) /*!< 0x00000004 */
  6251. #define RCC_APBRSTR1_TIM4RST RCC_APBRSTR1_TIM4RST_Msk
  6252. #define RCC_APBRSTR1_TIM6RST_Pos (4U)
  6253. #define RCC_APBRSTR1_TIM6RST_Msk (0x1UL << RCC_APBRSTR1_TIM6RST_Pos) /*!< 0x00000010 */
  6254. #define RCC_APBRSTR1_TIM6RST RCC_APBRSTR1_TIM6RST_Msk
  6255. #define RCC_APBRSTR1_TIM7RST_Pos (5U)
  6256. #define RCC_APBRSTR1_TIM7RST_Msk (0x1UL << RCC_APBRSTR1_TIM7RST_Pos) /*!< 0x00000020 */
  6257. #define RCC_APBRSTR1_TIM7RST RCC_APBRSTR1_TIM7RST_Msk
  6258. #define RCC_APBRSTR1_LPUART2RST_Pos (7U)
  6259. #define RCC_APBRSTR1_LPUART2RST_Msk (0x1UL << RCC_APBRSTR1_LPUART2RST_Pos)/*!< 0x00000080 */
  6260. #define RCC_APBRSTR1_LPUART2RST RCC_APBRSTR1_LPUART2RST_Msk
  6261. #define RCC_APBRSTR1_USART5RST_Pos (8U)
  6262. #define RCC_APBRSTR1_USART5RST_Msk (0x1UL << RCC_APBRSTR1_USART5RST_Pos) /*!< 0x00000100 */
  6263. #define RCC_APBRSTR1_USART5RST RCC_APBRSTR1_USART5RST_Msk
  6264. #define RCC_APBRSTR1_USART6RST_Pos (9U)
  6265. #define RCC_APBRSTR1_USART6RST_Msk (0x1UL << RCC_APBRSTR1_USART6RST_Pos) /*!< 0x00000200 */
  6266. #define RCC_APBRSTR1_USART6RST RCC_APBRSTR1_USART6RST_Msk
  6267. #define RCC_APBRSTR1_FDCANRST_Pos (12U)
  6268. #define RCC_APBRSTR1_FDCANRST_Msk (0x1UL << RCC_APBRSTR1_FDCANRST_Pos) /*!< 0x00001000 */
  6269. #define RCC_APBRSTR1_FDCANRST RCC_APBRSTR1_FDCANRST_Msk
  6270. #define RCC_APBRSTR1_USBRST_Pos (13U)
  6271. #define RCC_APBRSTR1_USBRST_Msk (0x1UL << RCC_APBRSTR1_USBRST_Pos) /*!< 0x00002000 */
  6272. #define RCC_APBRSTR1_USBRST RCC_APBRSTR1_USBRST_Msk
  6273. #define RCC_APBRSTR1_SPI2RST_Pos (14U)
  6274. #define RCC_APBRSTR1_SPI2RST_Msk (0x1UL << RCC_APBRSTR1_SPI2RST_Pos) /*!< 0x00004000 */
  6275. #define RCC_APBRSTR1_SPI2RST RCC_APBRSTR1_SPI2RST_Msk
  6276. #define RCC_APBRSTR1_SPI3RST_Pos (15U)
  6277. #define RCC_APBRSTR1_SPI3RST_Msk (0x1UL << RCC_APBRSTR1_SPI3RST_Pos) /*!< 0x00008000 */
  6278. #define RCC_APBRSTR1_SPI3RST RCC_APBRSTR1_SPI3RST_Msk
  6279. #define RCC_APBRSTR1_CRSRST_Pos (16U)
  6280. #define RCC_APBRSTR1_CRSRST_Msk (0x1UL << RCC_APBRSTR1_CRSRST_Pos) /*!< 0x00010000 */
  6281. #define RCC_APBRSTR1_CRSRST RCC_APBRSTR1_CRSRST_Msk
  6282. #define RCC_APBRSTR1_USART2RST_Pos (17U)
  6283. #define RCC_APBRSTR1_USART2RST_Msk (0x1UL << RCC_APBRSTR1_USART2RST_Pos) /*!< 0x00020000 */
  6284. #define RCC_APBRSTR1_USART2RST RCC_APBRSTR1_USART2RST_Msk
  6285. #define RCC_APBRSTR1_USART3RST_Pos (18U)
  6286. #define RCC_APBRSTR1_USART3RST_Msk (0x1UL << RCC_APBRSTR1_USART3RST_Pos) /*!< 0x00040000 */
  6287. #define RCC_APBRSTR1_USART3RST RCC_APBRSTR1_USART3RST_Msk
  6288. #define RCC_APBRSTR1_USART4RST_Pos (19U)
  6289. #define RCC_APBRSTR1_USART4RST_Msk (0x1UL << RCC_APBRSTR1_USART4RST_Pos) /*!< 0x00080000 */
  6290. #define RCC_APBRSTR1_USART4RST RCC_APBRSTR1_USART4RST_Msk
  6291. #define RCC_APBRSTR1_LPUART1RST_Pos (20U)
  6292. #define RCC_APBRSTR1_LPUART1RST_Msk (0x1UL << RCC_APBRSTR1_LPUART1RST_Pos) /*!< 0x00100000 */
  6293. #define RCC_APBRSTR1_LPUART1RST RCC_APBRSTR1_LPUART1RST_Msk
  6294. #define RCC_APBRSTR1_I2C1RST_Pos (21U)
  6295. #define RCC_APBRSTR1_I2C1RST_Msk (0x1UL << RCC_APBRSTR1_I2C1RST_Pos) /*!< 0x00200000 */
  6296. #define RCC_APBRSTR1_I2C1RST RCC_APBRSTR1_I2C1RST_Msk
  6297. #define RCC_APBRSTR1_I2C2RST_Pos (22U)
  6298. #define RCC_APBRSTR1_I2C2RST_Msk (0x1UL << RCC_APBRSTR1_I2C2RST_Pos) /*!< 0x00400000 */
  6299. #define RCC_APBRSTR1_I2C2RST RCC_APBRSTR1_I2C2RST_Msk
  6300. #define RCC_APBRSTR1_I2C3RST_Pos (23U)
  6301. #define RCC_APBRSTR1_I2C3RST_Msk (0x1UL << RCC_APBRSTR1_I2C3RST_Pos) /*!< 0x00800000 */
  6302. #define RCC_APBRSTR1_I2C3RST RCC_APBRSTR1_I2C3RST_Msk
  6303. #define RCC_APBRSTR1_CECRST_Pos (24U)
  6304. #define RCC_APBRSTR1_CECRST_Msk (0x1UL << RCC_APBRSTR1_CECRST_Pos) /*!< 0x01000000 */
  6305. #define RCC_APBRSTR1_CECRST RCC_APBRSTR1_CECRST_Msk
  6306. #define RCC_APBRSTR1_UCPD1RST_Pos (25U)
  6307. #define RCC_APBRSTR1_UCPD1RST_Msk (0x1UL << RCC_APBRSTR1_UCPD1RST_Pos) /*!< 0x02000000 */
  6308. #define RCC_APBRSTR1_UCPD1RST RCC_APBRSTR1_UCPD1RST_Msk
  6309. #define RCC_APBRSTR1_UCPD2RST_Pos (26U)
  6310. #define RCC_APBRSTR1_UCPD2RST_Msk (0x1UL << RCC_APBRSTR1_UCPD2RST_Pos) /*!< 0x04000000 */
  6311. #define RCC_APBRSTR1_UCPD2RST RCC_APBRSTR1_UCPD2RST_Msk
  6312. #define RCC_APBRSTR1_DBGRST_Pos (27U)
  6313. #define RCC_APBRSTR1_DBGRST_Msk (0x1UL << RCC_APBRSTR1_DBGRST_Pos) /*!< 0x08000000 */
  6314. #define RCC_APBRSTR1_DBGRST RCC_APBRSTR1_DBGRST_Msk
  6315. #define RCC_APBRSTR1_PWRRST_Pos (28U)
  6316. #define RCC_APBRSTR1_PWRRST_Msk (0x1UL << RCC_APBRSTR1_PWRRST_Pos) /*!< 0x10000000 */
  6317. #define RCC_APBRSTR1_PWRRST RCC_APBRSTR1_PWRRST_Msk
  6318. #define RCC_APBRSTR1_DAC1RST_Pos (29U)
  6319. #define RCC_APBRSTR1_DAC1RST_Msk (0x1UL << RCC_APBRSTR1_DAC1RST_Pos) /*!< 0x20000000 */
  6320. #define RCC_APBRSTR1_DAC1RST RCC_APBRSTR1_DAC1RST_Msk
  6321. #define RCC_APBRSTR1_LPTIM2RST_Pos (30U)
  6322. #define RCC_APBRSTR1_LPTIM2RST_Msk (0x1UL << RCC_APBRSTR1_LPTIM2RST_Pos) /*!< 0x40000000 */
  6323. #define RCC_APBRSTR1_LPTIM2RST RCC_APBRSTR1_LPTIM2RST_Msk
  6324. #define RCC_APBRSTR1_LPTIM1RST_Pos (31U)
  6325. #define RCC_APBRSTR1_LPTIM1RST_Msk (0x1UL << RCC_APBRSTR1_LPTIM1RST_Pos) /*!< 0x80000000 */
  6326. #define RCC_APBRSTR1_LPTIM1RST RCC_APBRSTR1_LPTIM1RST_Msk
  6327. /******************** Bit definition for RCC_APBRSTR2 register **************/
  6328. #define RCC_APBRSTR2_SYSCFGRST_Pos (0U)
  6329. #define RCC_APBRSTR2_SYSCFGRST_Msk (0x1UL << RCC_APBRSTR2_SYSCFGRST_Pos) /*!< 0x00000001 */
  6330. #define RCC_APBRSTR2_SYSCFGRST RCC_APBRSTR2_SYSCFGRST_Msk
  6331. #define RCC_APBRSTR2_TIM1RST_Pos (11U)
  6332. #define RCC_APBRSTR2_TIM1RST_Msk (0x1UL << RCC_APBRSTR2_TIM1RST_Pos) /*!< 0x00000800 */
  6333. #define RCC_APBRSTR2_TIM1RST RCC_APBRSTR2_TIM1RST_Msk
  6334. #define RCC_APBRSTR2_SPI1RST_Pos (12U)
  6335. #define RCC_APBRSTR2_SPI1RST_Msk (0x1UL << RCC_APBRSTR2_SPI1RST_Pos) /*!< 0x00001000 */
  6336. #define RCC_APBRSTR2_SPI1RST RCC_APBRSTR2_SPI1RST_Msk
  6337. #define RCC_APBRSTR2_USART1RST_Pos (14U)
  6338. #define RCC_APBRSTR2_USART1RST_Msk (0x1UL << RCC_APBRSTR2_USART1RST_Pos) /*!< 0x00004000 */
  6339. #define RCC_APBRSTR2_USART1RST RCC_APBRSTR2_USART1RST_Msk
  6340. #define RCC_APBRSTR2_TIM14RST_Pos (15U)
  6341. #define RCC_APBRSTR2_TIM14RST_Msk (0x1UL << RCC_APBRSTR2_TIM14RST_Pos) /*!< 0x00008000 */
  6342. #define RCC_APBRSTR2_TIM14RST RCC_APBRSTR2_TIM14RST_Msk
  6343. #define RCC_APBRSTR2_TIM15RST_Pos (16U)
  6344. #define RCC_APBRSTR2_TIM15RST_Msk (0x1UL << RCC_APBRSTR2_TIM15RST_Pos) /*!< 0x00010000 */
  6345. #define RCC_APBRSTR2_TIM15RST RCC_APBRSTR2_TIM15RST_Msk
  6346. #define RCC_APBRSTR2_TIM16RST_Pos (17U)
  6347. #define RCC_APBRSTR2_TIM16RST_Msk (0x1UL << RCC_APBRSTR2_TIM16RST_Pos) /*!< 0x00020000 */
  6348. #define RCC_APBRSTR2_TIM16RST RCC_APBRSTR2_TIM16RST_Msk
  6349. #define RCC_APBRSTR2_TIM17RST_Pos (18U)
  6350. #define RCC_APBRSTR2_TIM17RST_Msk (0x1UL << RCC_APBRSTR2_TIM17RST_Pos) /*!< 0x00040000 */
  6351. #define RCC_APBRSTR2_TIM17RST RCC_APBRSTR2_TIM17RST_Msk
  6352. #define RCC_APBRSTR2_ADCRST_Pos (20U)
  6353. #define RCC_APBRSTR2_ADCRST_Msk (0x1UL << RCC_APBRSTR2_ADCRST_Pos) /*!< 0x00100000 */
  6354. #define RCC_APBRSTR2_ADCRST RCC_APBRSTR2_ADCRST_Msk
  6355. /******************** Bit definition for RCC_IOPENR register ****************/
  6356. #define RCC_IOPENR_GPIOAEN_Pos (0U)
  6357. #define RCC_IOPENR_GPIOAEN_Msk (0x1UL << RCC_IOPENR_GPIOAEN_Pos) /*!< 0x00000001 */
  6358. #define RCC_IOPENR_GPIOAEN RCC_IOPENR_GPIOAEN_Msk
  6359. #define RCC_IOPENR_GPIOBEN_Pos (1U)
  6360. #define RCC_IOPENR_GPIOBEN_Msk (0x1UL << RCC_IOPENR_GPIOBEN_Pos) /*!< 0x00000002 */
  6361. #define RCC_IOPENR_GPIOBEN RCC_IOPENR_GPIOBEN_Msk
  6362. #define RCC_IOPENR_GPIOCEN_Pos (2U)
  6363. #define RCC_IOPENR_GPIOCEN_Msk (0x1UL << RCC_IOPENR_GPIOCEN_Pos) /*!< 0x00000004 */
  6364. #define RCC_IOPENR_GPIOCEN RCC_IOPENR_GPIOCEN_Msk
  6365. #define RCC_IOPENR_GPIODEN_Pos (3U)
  6366. #define RCC_IOPENR_GPIODEN_Msk (0x1UL << RCC_IOPENR_GPIODEN_Pos) /*!< 0x00000008 */
  6367. #define RCC_IOPENR_GPIODEN RCC_IOPENR_GPIODEN_Msk
  6368. #define RCC_IOPENR_GPIOEEN_Pos (4U)
  6369. #define RCC_IOPENR_GPIOEEN_Msk (0x1UL << RCC_IOPENR_GPIOEEN_Pos) /*!< 0x00000010 */
  6370. #define RCC_IOPENR_GPIOEEN RCC_IOPENR_GPIOEEN_Msk
  6371. #define RCC_IOPENR_GPIOFEN_Pos (5U)
  6372. #define RCC_IOPENR_GPIOFEN_Msk (0x1UL << RCC_IOPENR_GPIOFEN_Pos) /*!< 0x00000020 */
  6373. #define RCC_IOPENR_GPIOFEN RCC_IOPENR_GPIOFEN_Msk
  6374. /******************** Bit definition for RCC_AHBENR register ****************/
  6375. #define RCC_AHBENR_DMA1EN_Pos (0U)
  6376. #define RCC_AHBENR_DMA1EN_Msk (0x1UL << RCC_AHBENR_DMA1EN_Pos) /*!< 0x00000001 */
  6377. #define RCC_AHBENR_DMA1EN RCC_AHBENR_DMA1EN_Msk
  6378. #define RCC_AHBENR_DMA2EN_Pos (1U)
  6379. #define RCC_AHBENR_DMA2EN_Msk (0x1UL << RCC_AHBENR_DMA2EN_Pos) /*!< 0x00000002 */
  6380. #define RCC_AHBENR_DMA2EN RCC_AHBENR_DMA2EN_Msk
  6381. #define RCC_AHBENR_FLASHEN_Pos (8U)
  6382. #define RCC_AHBENR_FLASHEN_Msk (0x1UL << RCC_AHBENR_FLASHEN_Pos) /*!< 0x00000100 */
  6383. #define RCC_AHBENR_FLASHEN RCC_AHBENR_FLASHEN_Msk
  6384. #define RCC_AHBENR_CRCEN_Pos (12U)
  6385. #define RCC_AHBENR_CRCEN_Msk (0x1UL << RCC_AHBENR_CRCEN_Pos) /*!< 0x00001000 */
  6386. #define RCC_AHBENR_CRCEN RCC_AHBENR_CRCEN_Msk
  6387. #define RCC_AHBENR_AESEN_Pos (16U)
  6388. #define RCC_AHBENR_AESEN_Msk (0x1UL << RCC_AHBENR_AESEN_Pos) /*!< 0x00010000 */
  6389. #define RCC_AHBENR_AESEN RCC_AHBENR_AESEN_Msk
  6390. #define RCC_AHBENR_RNGEN_Pos (18U)
  6391. #define RCC_AHBENR_RNGEN_Msk (0x1UL << RCC_AHBENR_RNGEN_Pos) /*!< 0x00040000 */
  6392. #define RCC_AHBENR_RNGEN RCC_AHBENR_RNGEN_Msk
  6393. /******************** Bit definition for RCC_APBENR1 register ***************/
  6394. #define RCC_APBENR1_TIM2EN_Pos (0U)
  6395. #define RCC_APBENR1_TIM2EN_Msk (0x1UL << RCC_APBENR1_TIM2EN_Pos) /*!< 0x00000001 */
  6396. #define RCC_APBENR1_TIM2EN RCC_APBENR1_TIM2EN_Msk
  6397. #define RCC_APBENR1_TIM3EN_Pos (1U)
  6398. #define RCC_APBENR1_TIM3EN_Msk (0x1UL << RCC_APBENR1_TIM3EN_Pos) /*!< 0x00000002 */
  6399. #define RCC_APBENR1_TIM3EN RCC_APBENR1_TIM3EN_Msk
  6400. #define RCC_APBENR1_TIM4EN_Pos (2U)
  6401. #define RCC_APBENR1_TIM4EN_Msk (0x1UL << RCC_APBENR1_TIM4EN_Pos) /*!< 0x00000004 */
  6402. #define RCC_APBENR1_TIM4EN RCC_APBENR1_TIM4EN_Msk
  6403. #define RCC_APBENR1_TIM6EN_Pos (4U)
  6404. #define RCC_APBENR1_TIM6EN_Msk (0x1UL << RCC_APBENR1_TIM6EN_Pos) /*!< 0x00000010 */
  6405. #define RCC_APBENR1_TIM6EN RCC_APBENR1_TIM6EN_Msk
  6406. #define RCC_APBENR1_TIM7EN_Pos (5U)
  6407. #define RCC_APBENR1_TIM7EN_Msk (0x1UL << RCC_APBENR1_TIM7EN_Pos) /*!< 0x00000020 */
  6408. #define RCC_APBENR1_TIM7EN RCC_APBENR1_TIM7EN_Msk
  6409. #define RCC_APBENR1_LPUART2EN_Pos (7U)
  6410. #define RCC_APBENR1_LPUART2EN_Msk (0x1UL << RCC_APBENR1_LPUART2EN_Pos) /*!< 0x00000080 */
  6411. #define RCC_APBENR1_LPUART2EN RCC_APBENR1_LPUART2EN_Msk
  6412. #define RCC_APBENR1_USART5EN_Pos (8U)
  6413. #define RCC_APBENR1_USART5EN_Msk (0x1UL << RCC_APBENR1_USART5EN_Pos) /*!< 0x00000100 */
  6414. #define RCC_APBENR1_USART5EN RCC_APBENR1_USART5EN_Msk
  6415. #define RCC_APBENR1_USART6EN_Pos (9U)
  6416. #define RCC_APBENR1_USART6EN_Msk (0x1UL << RCC_APBENR1_USART6EN_Pos) /*!< 0x00000200 */
  6417. #define RCC_APBENR1_USART6EN RCC_APBENR1_USART6EN_Msk
  6418. #define RCC_APBENR1_RTCAPBEN_Pos (10U)
  6419. #define RCC_APBENR1_RTCAPBEN_Msk (0x1UL << RCC_APBENR1_RTCAPBEN_Pos) /*!< 0x00000400 */
  6420. #define RCC_APBENR1_RTCAPBEN RCC_APBENR1_RTCAPBEN_Msk
  6421. #define RCC_APBENR1_WWDGEN_Pos (11U)
  6422. #define RCC_APBENR1_WWDGEN_Msk (0x1UL << RCC_APBENR1_WWDGEN_Pos) /*!< 0x00000800 */
  6423. #define RCC_APBENR1_WWDGEN RCC_APBENR1_WWDGEN_Msk
  6424. #define RCC_APBENR1_FDCANEN_Pos (12U)
  6425. #define RCC_APBENR1_FDCANEN_Msk (0x1UL << RCC_APBENR1_FDCANEN_Pos) /*!< 0x00001000 */
  6426. #define RCC_APBENR1_FDCANEN RCC_APBENR1_FDCANEN_Msk
  6427. #define RCC_APBENR1_USBEN_Pos (13U)
  6428. #define RCC_APBENR1_USBEN_Msk (0x1UL << RCC_APBENR1_USBEN_Pos) /*!< 0x00002000 */
  6429. #define RCC_APBENR1_USBEN RCC_APBENR1_USBEN_Msk
  6430. #define RCC_APBENR1_SPI2EN_Pos (14U)
  6431. #define RCC_APBENR1_SPI2EN_Msk (0x1UL << RCC_APBENR1_SPI2EN_Pos) /*!< 0x00004000 */
  6432. #define RCC_APBENR1_SPI2EN RCC_APBENR1_SPI2EN_Msk
  6433. #define RCC_APBENR1_SPI3EN_Pos (15U)
  6434. #define RCC_APBENR1_SPI3EN_Msk (0x1UL << RCC_APBENR1_SPI3EN_Pos) /*!< 0x00008000 */
  6435. #define RCC_APBENR1_SPI3EN RCC_APBENR1_SPI3EN_Msk
  6436. #define RCC_APBENR1_CRSEN_Pos (16U)
  6437. #define RCC_APBENR1_CRSEN_Msk (0x1UL << RCC_APBENR1_CRSEN_Pos) /*!< 0x00010000 */
  6438. #define RCC_APBENR1_CRSEN RCC_APBENR1_CRSEN_Msk
  6439. #define RCC_APBENR1_USART2EN_Pos (17U)
  6440. #define RCC_APBENR1_USART2EN_Msk (0x1UL << RCC_APBENR1_USART2EN_Pos) /*!< 0x00020000 */
  6441. #define RCC_APBENR1_USART2EN RCC_APBENR1_USART2EN_Msk
  6442. #define RCC_APBENR1_USART3EN_Pos (18U)
  6443. #define RCC_APBENR1_USART3EN_Msk (0x1UL << RCC_APBENR1_USART3EN_Pos) /*!< 0x00040000 */
  6444. #define RCC_APBENR1_USART3EN RCC_APBENR1_USART3EN_Msk
  6445. #define RCC_APBENR1_USART4EN_Pos (19U)
  6446. #define RCC_APBENR1_USART4EN_Msk (0x1UL << RCC_APBENR1_USART4EN_Pos) /*!< 0x00080000 */
  6447. #define RCC_APBENR1_USART4EN RCC_APBENR1_USART4EN_Msk
  6448. #define RCC_APBENR1_LPUART1EN_Pos (20U)
  6449. #define RCC_APBENR1_LPUART1EN_Msk (0x1UL << RCC_APBENR1_LPUART1EN_Pos) /*!< 0x00100000 */
  6450. #define RCC_APBENR1_LPUART1EN RCC_APBENR1_LPUART1EN_Msk
  6451. #define RCC_APBENR1_I2C1EN_Pos (21U)
  6452. #define RCC_APBENR1_I2C1EN_Msk (0x1UL << RCC_APBENR1_I2C1EN_Pos) /*!< 0x00200000 */
  6453. #define RCC_APBENR1_I2C1EN RCC_APBENR1_I2C1EN_Msk
  6454. #define RCC_APBENR1_I2C2EN_Pos (22U)
  6455. #define RCC_APBENR1_I2C2EN_Msk (0x1UL << RCC_APBENR1_I2C2EN_Pos) /*!< 0x00400000 */
  6456. #define RCC_APBENR1_I2C2EN RCC_APBENR1_I2C2EN_Msk
  6457. #define RCC_APBENR1_I2C3EN_Pos (23U)
  6458. #define RCC_APBENR1_I2C3EN_Msk (0x1UL << RCC_APBENR1_I2C3EN_Pos) /*!< 0x00800000 */
  6459. #define RCC_APBENR1_I2C3EN RCC_APBENR1_I2C3EN_Msk
  6460. #define RCC_APBENR1_CECEN_Pos (24U)
  6461. #define RCC_APBENR1_CECEN_Msk (0x1UL << RCC_APBENR1_CECEN_Pos) /*!< 0x01000000 */
  6462. #define RCC_APBENR1_CECEN RCC_APBENR1_CECEN_Msk
  6463. #define RCC_APBENR1_UCPD1EN_Pos (25U)
  6464. #define RCC_APBENR1_UCPD1EN_Msk (0x1UL << RCC_APBENR1_UCPD1EN_Pos) /*!< 0x02000000 */
  6465. #define RCC_APBENR1_UCPD1EN RCC_APBENR1_UCPD1EN_Msk
  6466. #define RCC_APBENR1_UCPD2EN_Pos (26U)
  6467. #define RCC_APBENR1_UCPD2EN_Msk (0x1UL << RCC_APBENR1_UCPD2EN_Pos) /*!< 0x04000000 */
  6468. #define RCC_APBENR1_UCPD2EN RCC_APBENR1_UCPD2EN_Msk
  6469. #define RCC_APBENR1_DBGEN_Pos (27U)
  6470. #define RCC_APBENR1_DBGEN_Msk (0x1UL << RCC_APBENR1_DBGEN_Pos) /*!< 0x08000000 */
  6471. #define RCC_APBENR1_DBGEN RCC_APBENR1_DBGEN_Msk
  6472. #define RCC_APBENR1_PWREN_Pos (28U)
  6473. #define RCC_APBENR1_PWREN_Msk (0x1UL << RCC_APBENR1_PWREN_Pos) /*!< 0x10000000 */
  6474. #define RCC_APBENR1_PWREN RCC_APBENR1_PWREN_Msk
  6475. #define RCC_APBENR1_DAC1EN_Pos (29U)
  6476. #define RCC_APBENR1_DAC1EN_Msk (0x1UL << RCC_APBENR1_DAC1EN_Pos) /*!< 0x20000000 */
  6477. #define RCC_APBENR1_DAC1EN RCC_APBENR1_DAC1EN_Msk
  6478. #define RCC_APBENR1_LPTIM2EN_Pos (30U)
  6479. #define RCC_APBENR1_LPTIM2EN_Msk (0x1UL << RCC_APBENR1_LPTIM2EN_Pos) /*!< 0x40000000 */
  6480. #define RCC_APBENR1_LPTIM2EN RCC_APBENR1_LPTIM2EN_Msk
  6481. #define RCC_APBENR1_LPTIM1EN_Pos (31U)
  6482. #define RCC_APBENR1_LPTIM1EN_Msk (0x1UL << RCC_APBENR1_LPTIM1EN_Pos) /*!< 0x80000000 */
  6483. #define RCC_APBENR1_LPTIM1EN RCC_APBENR1_LPTIM1EN_Msk
  6484. /******************** Bit definition for RCC_APBENR2 register **************/
  6485. #define RCC_APBENR2_SYSCFGEN_Pos (0U)
  6486. #define RCC_APBENR2_SYSCFGEN_Msk (0x1UL << RCC_APBENR2_SYSCFGEN_Pos) /*!< 0x00000001 */
  6487. #define RCC_APBENR2_SYSCFGEN RCC_APBENR2_SYSCFGEN_Msk
  6488. #define RCC_APBENR2_TIM1EN_Pos (11U)
  6489. #define RCC_APBENR2_TIM1EN_Msk (0x1UL << RCC_APBENR2_TIM1EN_Pos) /*!< 0x00000800 */
  6490. #define RCC_APBENR2_TIM1EN RCC_APBENR2_TIM1EN_Msk
  6491. #define RCC_APBENR2_SPI1EN_Pos (12U)
  6492. #define RCC_APBENR2_SPI1EN_Msk (0x1UL << RCC_APBENR2_SPI1EN_Pos) /*!< 0x00001000 */
  6493. #define RCC_APBENR2_SPI1EN RCC_APBENR2_SPI1EN_Msk
  6494. #define RCC_APBENR2_USART1EN_Pos (14U)
  6495. #define RCC_APBENR2_USART1EN_Msk (0x1UL << RCC_APBENR2_USART1EN_Pos) /*!< 0x00004000 */
  6496. #define RCC_APBENR2_USART1EN RCC_APBENR2_USART1EN_Msk
  6497. #define RCC_APBENR2_TIM14EN_Pos (15U)
  6498. #define RCC_APBENR2_TIM14EN_Msk (0x1UL << RCC_APBENR2_TIM14EN_Pos) /*!< 0x00008000 */
  6499. #define RCC_APBENR2_TIM14EN RCC_APBENR2_TIM14EN_Msk
  6500. #define RCC_APBENR2_TIM15EN_Pos (16U)
  6501. #define RCC_APBENR2_TIM15EN_Msk (0x1UL << RCC_APBENR2_TIM15EN_Pos) /*!< 0x00010000 */
  6502. #define RCC_APBENR2_TIM15EN RCC_APBENR2_TIM15EN_Msk
  6503. #define RCC_APBENR2_TIM16EN_Pos (17U)
  6504. #define RCC_APBENR2_TIM16EN_Msk (0x1UL << RCC_APBENR2_TIM16EN_Pos) /*!< 0x00020000 */
  6505. #define RCC_APBENR2_TIM16EN RCC_APBENR2_TIM16EN_Msk
  6506. #define RCC_APBENR2_TIM17EN_Pos (18U)
  6507. #define RCC_APBENR2_TIM17EN_Msk (0x1UL << RCC_APBENR2_TIM17EN_Pos) /*!< 0x00040000 */
  6508. #define RCC_APBENR2_TIM17EN RCC_APBENR2_TIM17EN_Msk
  6509. #define RCC_APBENR2_ADCEN_Pos (20U)
  6510. #define RCC_APBENR2_ADCEN_Msk (0x1UL << RCC_APBENR2_ADCEN_Pos) /*!< 0x00100000 */
  6511. #define RCC_APBENR2_ADCEN RCC_APBENR2_ADCEN_Msk
  6512. /******************** Bit definition for RCC_IOPSMENR register *************/
  6513. #define RCC_IOPSMENR_GPIOASMEN_Pos (0U)
  6514. #define RCC_IOPSMENR_GPIOASMEN_Msk (0x1UL << RCC_IOPSMENR_GPIOASMEN_Pos) /*!< 0x00000001 */
  6515. #define RCC_IOPSMENR_GPIOASMEN RCC_IOPSMENR_GPIOASMEN_Msk
  6516. #define RCC_IOPSMENR_GPIOBSMEN_Pos (1U)
  6517. #define RCC_IOPSMENR_GPIOBSMEN_Msk (0x1UL << RCC_IOPSMENR_GPIOBSMEN_Pos) /*!< 0x00000002 */
  6518. #define RCC_IOPSMENR_GPIOBSMEN RCC_IOPSMENR_GPIOBSMEN_Msk
  6519. #define RCC_IOPSMENR_GPIOCSMEN_Pos (2U)
  6520. #define RCC_IOPSMENR_GPIOCSMEN_Msk (0x1UL << RCC_IOPSMENR_GPIOCSMEN_Pos) /*!< 0x00000004 */
  6521. #define RCC_IOPSMENR_GPIOCSMEN RCC_IOPSMENR_GPIOCSMEN_Msk
  6522. #define RCC_IOPSMENR_GPIODSMEN_Pos (3U)
  6523. #define RCC_IOPSMENR_GPIODSMEN_Msk (0x1UL << RCC_IOPSMENR_GPIODSMEN_Pos) /*!< 0x00000008 */
  6524. #define RCC_IOPSMENR_GPIODSMEN RCC_IOPSMENR_GPIODSMEN_Msk
  6525. #define RCC_IOPSMENR_GPIOESMEN_Pos (4U)
  6526. #define RCC_IOPSMENR_GPIOESMEN_Msk (0x1UL << RCC_IOPSMENR_GPIOESMEN_Pos) /*!< 0x00000010 */
  6527. #define RCC_IOPSMENR_GPIOESMEN RCC_IOPSMENR_GPIOESMEN_Msk
  6528. #define RCC_IOPSMENR_GPIOFSMEN_Pos (5U)
  6529. #define RCC_IOPSMENR_GPIOFSMEN_Msk (0x1UL << RCC_IOPSMENR_GPIOFSMEN_Pos) /*!< 0x00000020 */
  6530. #define RCC_IOPSMENR_GPIOFSMEN RCC_IOPSMENR_GPIOFSMEN_Msk
  6531. /******************** Bit definition for RCC_AHBSMENR register *************/
  6532. #define RCC_AHBSMENR_DMA1SMEN_Pos (0U)
  6533. #define RCC_AHBSMENR_DMA1SMEN_Msk (0x1UL << RCC_AHBSMENR_DMA1SMEN_Pos) /*!< 0x00000001 */
  6534. #define RCC_AHBSMENR_DMA1SMEN RCC_AHBSMENR_DMA1SMEN_Msk
  6535. #define RCC_AHBSMENR_DMA2SMEN_Pos (1U)
  6536. #define RCC_AHBSMENR_DMA2SMEN_Msk (0x1UL << RCC_AHBSMENR_DMA2SMEN_Pos) /*!< 0x00000002 */
  6537. #define RCC_AHBSMENR_DMA2SMEN RCC_AHBSMENR_DMA2SMEN_Msk
  6538. #define RCC_AHBSMENR_FLASHSMEN_Pos (8U)
  6539. #define RCC_AHBSMENR_FLASHSMEN_Msk (0x1UL << RCC_AHBSMENR_FLASHSMEN_Pos) /*!< 0x00000100 */
  6540. #define RCC_AHBSMENR_FLASHSMEN RCC_AHBSMENR_FLASHSMEN_Msk
  6541. #define RCC_AHBSMENR_SRAMSMEN_Pos (9U)
  6542. #define RCC_AHBSMENR_SRAMSMEN_Msk (0x1UL << RCC_AHBSMENR_SRAMSMEN_Pos) /*!< 0x00000200 */
  6543. #define RCC_AHBSMENR_SRAMSMEN RCC_AHBSMENR_SRAMSMEN_Msk
  6544. #define RCC_AHBSMENR_CRCSMEN_Pos (12U)
  6545. #define RCC_AHBSMENR_CRCSMEN_Msk (0x1UL << RCC_AHBSMENR_CRCSMEN_Pos) /*!< 0x00001000 */
  6546. #define RCC_AHBSMENR_CRCSMEN RCC_AHBSMENR_CRCSMEN_Msk
  6547. #define RCC_AHBSMENR_AESSMEN_Pos (16U)
  6548. #define RCC_AHBSMENR_AESSMEN_Msk (0x1UL << RCC_AHBSMENR_AESSMEN_Pos) /*!< 0x00010000 */
  6549. #define RCC_AHBSMENR_AESSMEN RCC_AHBSMENR_AESSMEN_Msk
  6550. #define RCC_AHBSMENR_RNGSMEN_Pos (18U)
  6551. #define RCC_AHBSMENR_RNGSMEN_Msk (0x1UL << RCC_AHBSMENR_RNGSMEN_Pos) /*!< 0x00040000 */
  6552. #define RCC_AHBSMENR_RNGSMEN RCC_AHBSMENR_RNGSMEN_Msk
  6553. /******************** Bit definition for RCC_APBSMENR1 register *************/
  6554. #define RCC_APBSMENR1_TIM2SMEN_Pos (0U)
  6555. #define RCC_APBSMENR1_TIM2SMEN_Msk (0x1UL << RCC_APBSMENR1_TIM2SMEN_Pos) /*!< 0x00000001 */
  6556. #define RCC_APBSMENR1_TIM2SMEN RCC_APBSMENR1_TIM2SMEN_Msk
  6557. #define RCC_APBSMENR1_TIM3SMEN_Pos (1U)
  6558. #define RCC_APBSMENR1_TIM3SMEN_Msk (0x1UL << RCC_APBSMENR1_TIM3SMEN_Pos) /*!< 0x00000002 */
  6559. #define RCC_APBSMENR1_TIM3SMEN RCC_APBSMENR1_TIM3SMEN_Msk
  6560. #define RCC_APBSMENR1_TIM4SMEN_Pos (2U)
  6561. #define RCC_APBSMENR1_TIM4SMEN_Msk (0x1UL << RCC_APBSMENR1_TIM4SMEN_Pos) /*!< 0x00000004 */
  6562. #define RCC_APBSMENR1_TIM4SMEN RCC_APBSMENR1_TIM4SMEN_Msk
  6563. #define RCC_APBSMENR1_TIM6SMEN_Pos (4U)
  6564. #define RCC_APBSMENR1_TIM6SMEN_Msk (0x1UL << RCC_APBSMENR1_TIM6SMEN_Pos) /*!< 0x00000010 */
  6565. #define RCC_APBSMENR1_TIM6SMEN RCC_APBSMENR1_TIM6SMEN_Msk
  6566. #define RCC_APBSMENR1_TIM7SMEN_Pos (5U)
  6567. #define RCC_APBSMENR1_TIM7SMEN_Msk (0x1UL << RCC_APBSMENR1_TIM7SMEN_Pos) /*!< 0x00000020 */
  6568. #define RCC_APBSMENR1_TIM7SMEN RCC_APBSMENR1_TIM7SMEN_Msk
  6569. #define RCC_APBSMENR1_LPUART2SMEN_Pos (7U)
  6570. #define RCC_APBSMENR1_LPUART2SMEN_Msk (0x1UL << RCC_APBSMENR1_LPUART2SMEN_Pos)/*!< 0x00000080 */
  6571. #define RCC_APBSMENR1_LPUART2SMEN RCC_APBSMENR1_LPUART2SMEN_Msk
  6572. #define RCC_APBSMENR1_USART5SMEN_Pos (8U)
  6573. #define RCC_APBSMENR1_USART5SMEN_Msk (0x1UL << RCC_APBSMENR1_USART5SMEN_Pos) /*!< 0x00000100 */
  6574. #define RCC_APBSMENR1_USART5SMEN RCC_APBSMENR1_USART5SMEN_Msk
  6575. #define RCC_APBSMENR1_USART6SMEN_Pos (9U)
  6576. #define RCC_APBSMENR1_USART6SMEN_Msk (0x1UL << RCC_APBSMENR1_USART6SMEN_Pos) /*!< 0x00000200 */
  6577. #define RCC_APBSMENR1_USART6SMEN RCC_APBSMENR1_USART6SMEN_Msk
  6578. #define RCC_APBSMENR1_RTCAPBSMEN_Pos (10U)
  6579. #define RCC_APBSMENR1_RTCAPBSMEN_Msk (0x1UL << RCC_APBSMENR1_RTCAPBSMEN_Pos) /*!< 0x00000400 */
  6580. #define RCC_APBSMENR1_RTCAPBSMEN RCC_APBSMENR1_RTCAPBSMEN_Msk
  6581. #define RCC_APBSMENR1_WWDGSMEN_Pos (11U)
  6582. #define RCC_APBSMENR1_WWDGSMEN_Msk (0x1UL << RCC_APBSMENR1_WWDGSMEN_Pos) /*!< 0x00000800 */
  6583. #define RCC_APBSMENR1_WWDGSMEN RCC_APBSMENR1_WWDGSMEN_Msk
  6584. #define RCC_APBSMENR1_FDCANSMEN_Pos (12U)
  6585. #define RCC_APBSMENR1_FDCANSMEN_Msk (0x1UL << RCC_APBSMENR1_FDCANSMEN_Pos) /*!< 0x00001000 */
  6586. #define RCC_APBSMENR1_FDCANSMEN RCC_APBSMENR1_FDCANSMEN_Msk
  6587. #define RCC_APBSMENR1_USBSMEN_Pos (13U)
  6588. #define RCC_APBSMENR1_USBSMEN_Msk (0x1UL << RCC_APBSMENR1_USBSMEN_Pos) /*!< 0x00002000 */
  6589. #define RCC_APBSMENR1_USBSMEN RCC_APBSMENR1_USBSMEN_Msk
  6590. #define RCC_APBSMENR1_SPI2SMEN_Pos (14U)
  6591. #define RCC_APBSMENR1_SPI2SMEN_Msk (0x1UL << RCC_APBSMENR1_SPI2SMEN_Pos) /*!< 0x00004000 */
  6592. #define RCC_APBSMENR1_SPI2SMEN RCC_APBSMENR1_SPI2SMEN_Msk
  6593. #define RCC_APBSMENR1_SPI3SMEN_Pos (15U)
  6594. #define RCC_APBSMENR1_SPI3SMEN_Msk (0x1UL << RCC_APBSMENR1_SPI3SMEN_Pos) /*!< 0x00008000 */
  6595. #define RCC_APBSMENR1_SPI3SMEN RCC_APBSMENR1_SPI3SMEN_Msk
  6596. #define RCC_APBSMENR1_CRSSMEN_Pos (16U)
  6597. #define RCC_APBSMENR1_CRSSMEN_Msk (0x1UL << RCC_APBSMENR1_CRSSMEN_Pos) /*!< 0x00010000 */
  6598. #define RCC_APBSMENR1_CRSSMEN RCC_APBSMENR1_CRSSMEN_Msk
  6599. #define RCC_APBSMENR1_USART2SMEN_Pos (17U)
  6600. #define RCC_APBSMENR1_USART2SMEN_Msk (0x1UL << RCC_APBSMENR1_USART2SMEN_Pos) /*!< 0x00020000 */
  6601. #define RCC_APBSMENR1_USART2SMEN RCC_APBSMENR1_USART2SMEN_Msk
  6602. #define RCC_APBSMENR1_USART3SMEN_Pos (18U)
  6603. #define RCC_APBSMENR1_USART3SMEN_Msk (0x1UL << RCC_APBSMENR1_USART3SMEN_Pos) /*!< 0x00040000 */
  6604. #define RCC_APBSMENR1_USART3SMEN RCC_APBSMENR1_USART3SMEN_Msk
  6605. #define RCC_APBSMENR1_USART4SMEN_Pos (19U)
  6606. #define RCC_APBSMENR1_USART4SMEN_Msk (0x1UL << RCC_APBSMENR1_USART4SMEN_Pos) /*!< 0x00080000 */
  6607. #define RCC_APBSMENR1_USART4SMEN RCC_APBSMENR1_USART4SMEN_Msk
  6608. #define RCC_APBSMENR1_LPUART1SMEN_Pos (20U)
  6609. #define RCC_APBSMENR1_LPUART1SMEN_Msk (0x1UL << RCC_APBSMENR1_LPUART1SMEN_Pos) /*!< 0x00100000 */
  6610. #define RCC_APBSMENR1_LPUART1SMEN RCC_APBSMENR1_LPUART1SMEN_Msk
  6611. #define RCC_APBSMENR1_I2C1SMEN_Pos (21U)
  6612. #define RCC_APBSMENR1_I2C1SMEN_Msk (0x1UL << RCC_APBSMENR1_I2C1SMEN_Pos) /*!< 0x00200000 */
  6613. #define RCC_APBSMENR1_I2C1SMEN RCC_APBSMENR1_I2C1SMEN_Msk
  6614. #define RCC_APBSMENR1_I2C2SMEN_Pos (22U)
  6615. #define RCC_APBSMENR1_I2C2SMEN_Msk (0x1UL << RCC_APBSMENR1_I2C2SMEN_Pos) /*!< 0x00400000 */
  6616. #define RCC_APBSMENR1_I2C2SMEN RCC_APBSMENR1_I2C2SMEN_Msk
  6617. #define RCC_APBSMENR1_I2C3SMEN_Pos (23U)
  6618. #define RCC_APBSMENR1_I2C3SMEN_Msk (0x1UL << RCC_APBSMENR1_I2C3SMEN_Pos) /*!< 0x00800000 */
  6619. #define RCC_APBSMENR1_I2C3SMEN RCC_APBSMENR1_I2C3SMEN_Msk
  6620. #define RCC_APBSMENR1_CECSMEN_Pos (24U)
  6621. #define RCC_APBSMENR1_CECSMEN_Msk (0x1UL << RCC_APBSMENR1_CECSMEN_Pos) /*!< 0x01000000 */
  6622. #define RCC_APBSMENR1_CECSMEN RCC_APBSMENR1_CECSMEN_Msk
  6623. #define RCC_APBSMENR1_UCPD1SMEN_Pos (25U)
  6624. #define RCC_APBSMENR1_UCPD1SMEN_Msk (0x1UL << RCC_APBSMENR1_UCPD1SMEN_Pos) /*!< 0x02000000 */
  6625. #define RCC_APBSMENR1_UCPD1SMEN RCC_APBSMENR1_UCPD1SMEN_Msk
  6626. #define RCC_APBSMENR1_UCPD2SMEN_Pos (26U)
  6627. #define RCC_APBSMENR1_UCPD2SMEN_Msk (0x1UL << RCC_APBSMENR1_UCPD2SMEN_Pos) /*!< 0x04000000 */
  6628. #define RCC_APBSMENR1_UCPD2SMEN RCC_APBSMENR1_UCPD2SMEN_Msk
  6629. #define RCC_APBSMENR1_DBGSMEN_Pos (27U)
  6630. #define RCC_APBSMENR1_DBGSMEN_Msk (0x1UL << RCC_APBSMENR1_DBGSMEN_Pos) /*!< 0x08000000 */
  6631. #define RCC_APBSMENR1_DBGSMEN RCC_APBSMENR1_DBGSMEN_Msk
  6632. #define RCC_APBSMENR1_PWRSMEN_Pos (28U)
  6633. #define RCC_APBSMENR1_PWRSMEN_Msk (0x1UL << RCC_APBSMENR1_PWRSMEN_Pos) /*!< 0x10000000 */
  6634. #define RCC_APBSMENR1_PWRSMEN RCC_APBSMENR1_PWRSMEN_Msk
  6635. #define RCC_APBSMENR1_DAC1SMEN_Pos (29U)
  6636. #define RCC_APBSMENR1_DAC1SMEN_Msk (0x1UL << RCC_APBSMENR1_DAC1SMEN_Pos) /*!< 0x20000000 */
  6637. #define RCC_APBSMENR1_DAC1SMEN RCC_APBSMENR1_DAC1SMEN_Msk
  6638. #define RCC_APBSMENR1_LPTIM2SMEN_Pos (30U)
  6639. #define RCC_APBSMENR1_LPTIM2SMEN_Msk (0x1UL << RCC_APBSMENR1_LPTIM2SMEN_Pos) /*!< 0x40000000 */
  6640. #define RCC_APBSMENR1_LPTIM2SMEN RCC_APBSMENR1_LPTIM2SMEN_Msk
  6641. #define RCC_APBSMENR1_LPTIM1SMEN_Pos (31U)
  6642. #define RCC_APBSMENR1_LPTIM1SMEN_Msk (0x1UL << RCC_APBSMENR1_LPTIM1SMEN_Pos) /*!< 0x80000000 */
  6643. #define RCC_APBSMENR1_LPTIM1SMEN RCC_APBSMENR1_LPTIM1SMEN_Msk
  6644. /******************** Bit definition for RCC_APBSMENR2 register *************/
  6645. #define RCC_APBSMENR2_SYSCFGSMEN_Pos (0U)
  6646. #define RCC_APBSMENR2_SYSCFGSMEN_Msk (0x1UL << RCC_APBSMENR2_SYSCFGSMEN_Pos) /*!< 0x00000001 */
  6647. #define RCC_APBSMENR2_SYSCFGSMEN RCC_APBSMENR2_SYSCFGSMEN_Msk
  6648. #define RCC_APBSMENR2_TIM1SMEN_Pos (11U)
  6649. #define RCC_APBSMENR2_TIM1SMEN_Msk (0x1UL << RCC_APBSMENR2_TIM1SMEN_Pos) /*!< 0x00000800 */
  6650. #define RCC_APBSMENR2_TIM1SMEN RCC_APBSMENR2_TIM1SMEN_Msk
  6651. #define RCC_APBSMENR2_SPI1SMEN_Pos (12U)
  6652. #define RCC_APBSMENR2_SPI1SMEN_Msk (0x1UL << RCC_APBSMENR2_SPI1SMEN_Pos) /*!< 0x00001000 */
  6653. #define RCC_APBSMENR2_SPI1SMEN RCC_APBSMENR2_SPI1SMEN_Msk
  6654. #define RCC_APBSMENR2_USART1SMEN_Pos (14U)
  6655. #define RCC_APBSMENR2_USART1SMEN_Msk (0x1UL << RCC_APBSMENR2_USART1SMEN_Pos) /*!< 0x00004000 */
  6656. #define RCC_APBSMENR2_USART1SMEN RCC_APBSMENR2_USART1SMEN_Msk
  6657. #define RCC_APBSMENR2_TIM14SMEN_Pos (15U)
  6658. #define RCC_APBSMENR2_TIM14SMEN_Msk (0x1UL << RCC_APBSMENR2_TIM14SMEN_Pos) /*!< 0x00008000 */
  6659. #define RCC_APBSMENR2_TIM14SMEN RCC_APBSMENR2_TIM14SMEN_Msk
  6660. #define RCC_APBSMENR2_TIM15SMEN_Pos (16U)
  6661. #define RCC_APBSMENR2_TIM15SMEN_Msk (0x1UL << RCC_APBSMENR2_TIM15SMEN_Pos) /*!< 0x00010000 */
  6662. #define RCC_APBSMENR2_TIM15SMEN RCC_APBSMENR2_TIM15SMEN_Msk
  6663. #define RCC_APBSMENR2_TIM16SMEN_Pos (17U)
  6664. #define RCC_APBSMENR2_TIM16SMEN_Msk (0x1UL << RCC_APBSMENR2_TIM16SMEN_Pos) /*!< 0x00020000 */
  6665. #define RCC_APBSMENR2_TIM16SMEN RCC_APBSMENR2_TIM16SMEN_Msk
  6666. #define RCC_APBSMENR2_TIM17SMEN_Pos (18U)
  6667. #define RCC_APBSMENR2_TIM17SMEN_Msk (0x1UL << RCC_APBSMENR2_TIM17SMEN_Pos) /*!< 0x00040000 */
  6668. #define RCC_APBSMENR2_TIM17SMEN RCC_APBSMENR2_TIM17SMEN_Msk
  6669. #define RCC_APBSMENR2_ADCSMEN_Pos (20U)
  6670. #define RCC_APBSMENR2_ADCSMEN_Msk (0x1UL << RCC_APBSMENR2_ADCSMEN_Pos) /*!< 0x00100000 */
  6671. #define RCC_APBSMENR2_ADCSMEN RCC_APBSMENR2_ADCSMEN_Msk
  6672. /******************** Bit definition for RCC_CCIPR register ******************/
  6673. #define RCC_CCIPR_USART1SEL_Pos (0U)
  6674. #define RCC_CCIPR_USART1SEL_Msk (0x3UL << RCC_CCIPR_USART1SEL_Pos) /*!< 0x00000003 */
  6675. #define RCC_CCIPR_USART1SEL RCC_CCIPR_USART1SEL_Msk
  6676. #define RCC_CCIPR_USART1SEL_0 (0x1UL << RCC_CCIPR_USART1SEL_Pos) /*!< 0x00000001 */
  6677. #define RCC_CCIPR_USART1SEL_1 (0x2UL << RCC_CCIPR_USART1SEL_Pos) /*!< 0x00000002 */
  6678. #define RCC_CCIPR_USART2SEL_Pos (2U)
  6679. #define RCC_CCIPR_USART2SEL_Msk (0x3UL << RCC_CCIPR_USART2SEL_Pos) /*!< 0x0000000C */
  6680. #define RCC_CCIPR_USART2SEL RCC_CCIPR_USART2SEL_Msk
  6681. #define RCC_CCIPR_USART2SEL_0 (0x1UL << RCC_CCIPR_USART2SEL_Pos) /*!< 0x00000004 */
  6682. #define RCC_CCIPR_USART2SEL_1 (0x2UL << RCC_CCIPR_USART2SEL_Pos) /*!< 0x00000008 */
  6683. #define RCC_CCIPR_USART3SEL_Pos (4U)
  6684. #define RCC_CCIPR_USART3SEL_Msk (0x3UL << RCC_CCIPR_USART3SEL_Pos) /*!< 0x00000030 */
  6685. #define RCC_CCIPR_USART3SEL RCC_CCIPR_USART3SEL_Msk
  6686. #define RCC_CCIPR_USART3SEL_0 (0x1UL << RCC_CCIPR_USART3SEL_Pos) /*!< 0x00000010 */
  6687. #define RCC_CCIPR_USART3SEL_1 (0x2UL << RCC_CCIPR_USART3SEL_Pos) /*!< 0x00000020 */
  6688. #define RCC_CCIPR_CECSEL_Pos (6U)
  6689. #define RCC_CCIPR_CECSEL_Msk (0x1UL << RCC_CCIPR_CECSEL_Pos) /*!< 0x00000040 */
  6690. #define RCC_CCIPR_CECSEL RCC_CCIPR_CECSEL_Msk
  6691. #define RCC_CCIPR_LPUART2SEL_Pos (8U)
  6692. #define RCC_CCIPR_LPUART2SEL_Msk (0x3UL << RCC_CCIPR_LPUART2SEL_Pos) /*!< 0x00000300 */
  6693. #define RCC_CCIPR_LPUART2SEL RCC_CCIPR_LPUART2SEL_Msk
  6694. #define RCC_CCIPR_LPUART2SEL_0 (0x1UL << RCC_CCIPR_LPUART2SEL_Pos) /*!< 0x00000100 */
  6695. #define RCC_CCIPR_LPUART2SEL_1 (0x2UL << RCC_CCIPR_LPUART2SEL_Pos) /*!< 0x00000200 */
  6696. #define RCC_CCIPR_LPUART1SEL_Pos (10U)
  6697. #define RCC_CCIPR_LPUART1SEL_Msk (0x3UL << RCC_CCIPR_LPUART1SEL_Pos) /*!< 0x00000C00 */
  6698. #define RCC_CCIPR_LPUART1SEL RCC_CCIPR_LPUART1SEL_Msk
  6699. #define RCC_CCIPR_LPUART1SEL_0 (0x1UL << RCC_CCIPR_LPUART1SEL_Pos) /*!< 0x00000400 */
  6700. #define RCC_CCIPR_LPUART1SEL_1 (0x2UL << RCC_CCIPR_LPUART1SEL_Pos) /*!< 0x00000800 */
  6701. #define RCC_CCIPR_I2C1SEL_Pos (12U)
  6702. #define RCC_CCIPR_I2C1SEL_Msk (0x3UL << RCC_CCIPR_I2C1SEL_Pos) /*!< 0x00003000 */
  6703. #define RCC_CCIPR_I2C1SEL RCC_CCIPR_I2C1SEL_Msk
  6704. #define RCC_CCIPR_I2C1SEL_0 (0x1UL << RCC_CCIPR_I2C1SEL_Pos) /*!< 0x00001000 */
  6705. #define RCC_CCIPR_I2C1SEL_1 (0x2UL << RCC_CCIPR_I2C1SEL_Pos) /*!< 0x00002000 */
  6706. #define RCC_CCIPR_I2C2SEL_Pos (14U)
  6707. #define RCC_CCIPR_I2C2SEL_Msk (0x3UL << RCC_CCIPR_I2C2SEL_Pos) /*!< 0x0000C000 */
  6708. #define RCC_CCIPR_I2C2SEL RCC_CCIPR_I2C2SEL_Msk
  6709. #define RCC_CCIPR_I2C2SEL_0 (0x1UL << RCC_CCIPR_I2C2SEL_Pos) /*!< 0x00004000 */
  6710. #define RCC_CCIPR_I2C2SEL_1 (0x2UL << RCC_CCIPR_I2C2SEL_Pos) /*!< 0x00008000 */
  6711. #define RCC_CCIPR_LPTIM1SEL_Pos (18U)
  6712. #define RCC_CCIPR_LPTIM1SEL_Msk (0x3UL << RCC_CCIPR_LPTIM1SEL_Pos) /*!< 0x000C0000 */
  6713. #define RCC_CCIPR_LPTIM1SEL RCC_CCIPR_LPTIM1SEL_Msk
  6714. #define RCC_CCIPR_LPTIM1SEL_0 (0x1UL << RCC_CCIPR_LPTIM1SEL_Pos) /*!< 0x00040000 */
  6715. #define RCC_CCIPR_LPTIM1SEL_1 (0x2UL << RCC_CCIPR_LPTIM1SEL_Pos) /*!< 0x00080000 */
  6716. #define RCC_CCIPR_LPTIM2SEL_Pos (20U)
  6717. #define RCC_CCIPR_LPTIM2SEL_Msk (0x3UL << RCC_CCIPR_LPTIM2SEL_Pos) /*!< 0x00300000 */
  6718. #define RCC_CCIPR_LPTIM2SEL RCC_CCIPR_LPTIM2SEL_Msk
  6719. #define RCC_CCIPR_LPTIM2SEL_0 (0x1UL << RCC_CCIPR_LPTIM2SEL_Pos) /*!< 0x00100000 */
  6720. #define RCC_CCIPR_LPTIM2SEL_1 (0x2UL << RCC_CCIPR_LPTIM2SEL_Pos) /*!< 0x00200000 */
  6721. #define RCC_CCIPR_TIM1SEL_Pos (22U)
  6722. #define RCC_CCIPR_TIM1SEL_Msk (0x1UL << RCC_CCIPR_TIM1SEL_Pos) /*!< 0x00400000 */
  6723. #define RCC_CCIPR_TIM1SEL RCC_CCIPR_TIM1SEL_Msk
  6724. #define RCC_CCIPR_TIM15SEL_Pos (24U)
  6725. #define RCC_CCIPR_TIM15SEL_Msk (0x1UL << RCC_CCIPR_TIM15SEL_Pos) /*!< 0x01000000 */
  6726. #define RCC_CCIPR_TIM15SEL RCC_CCIPR_TIM15SEL_Msk
  6727. #define RCC_CCIPR_RNGSEL_Pos (26U)
  6728. #define RCC_CCIPR_RNGSEL_Msk (0x3UL << RCC_CCIPR_RNGSEL_Pos) /*!< 0x0C000000 */
  6729. #define RCC_CCIPR_RNGSEL RCC_CCIPR_RNGSEL_Msk
  6730. #define RCC_CCIPR_RNGSEL_0 (0x1UL << RCC_CCIPR_RNGSEL_Pos) /*!< 0x04000000 */
  6731. #define RCC_CCIPR_RNGSEL_1 (0x2UL << RCC_CCIPR_RNGSEL_Pos) /*!< 0x08000000 */
  6732. #define RCC_CCIPR_RNGDIV_Pos (28U)
  6733. #define RCC_CCIPR_RNGDIV_Msk (0x3UL << RCC_CCIPR_RNGDIV_Pos) /*!< 0x30000000 */
  6734. #define RCC_CCIPR_RNGDIV RCC_CCIPR_RNGDIV_Msk
  6735. #define RCC_CCIPR_RNGDIV_0 (0x1UL << RCC_CCIPR_RNGDIV_Pos) /*!< 0x10000000 */
  6736. #define RCC_CCIPR_RNGDIV_1 (0x2UL << RCC_CCIPR_RNGDIV_Pos) /*!< 0x20000000 */
  6737. #define RCC_CCIPR_ADCSEL_Pos (30U)
  6738. #define RCC_CCIPR_ADCSEL_Msk (0x3UL << RCC_CCIPR_ADCSEL_Pos) /*!< 0xC0000000 */
  6739. #define RCC_CCIPR_ADCSEL RCC_CCIPR_ADCSEL_Msk
  6740. #define RCC_CCIPR_ADCSEL_0 (0x1UL << RCC_CCIPR_ADCSEL_Pos) /*!< 0x40000000 */
  6741. #define RCC_CCIPR_ADCSEL_1 (0x2UL << RCC_CCIPR_ADCSEL_Pos) /*!< 0x80000000 */
  6742. /******************** Bit definition for RCC_CCIPR2 register ****************/
  6743. #define RCC_CCIPR2_I2S1SEL_Pos (0U)
  6744. #define RCC_CCIPR2_I2S1SEL_Msk (0x3UL << RCC_CCIPR2_I2S1SEL_Pos) /*!< 0x00000003 */
  6745. #define RCC_CCIPR2_I2S1SEL RCC_CCIPR2_I2S1SEL_Msk
  6746. #define RCC_CCIPR2_I2S1SEL_0 (0x1UL << RCC_CCIPR2_I2S1SEL_Pos) /*!< 0x00000001 */
  6747. #define RCC_CCIPR2_I2S1SEL_1 (0x2UL << RCC_CCIPR2_I2S1SEL_Pos) /*!< 0x00000002 */
  6748. #define RCC_CCIPR2_I2S2SEL_Pos (2U)
  6749. #define RCC_CCIPR2_I2S2SEL_Msk (0x3UL << RCC_CCIPR2_I2S2SEL_Pos) /*!< 0x0000000C */
  6750. #define RCC_CCIPR2_I2S2SEL RCC_CCIPR2_I2S2SEL_Msk
  6751. #define RCC_CCIPR2_I2S2SEL_0 (0x1UL << RCC_CCIPR2_I2S2SEL_Pos) /*!< 0x00000004 */
  6752. #define RCC_CCIPR2_I2S2SEL_1 (0x2UL << RCC_CCIPR2_I2S2SEL_Pos) /*!< 0x00000008 */
  6753. #define RCC_CCIPR2_FDCANSEL_Pos (8U)
  6754. #define RCC_CCIPR2_FDCANSEL_Msk (0x3UL << RCC_CCIPR2_FDCANSEL_Pos) /*!< 0x00000300 */
  6755. #define RCC_CCIPR2_FDCANSEL RCC_CCIPR2_FDCANSEL_Msk
  6756. #define RCC_CCIPR2_FDCANSEL_0 (0x1UL << RCC_CCIPR2_FDCANSEL_Pos) /*!< 0x00000100 */
  6757. #define RCC_CCIPR2_FDCANSEL_1 (0x2UL << RCC_CCIPR2_FDCANSEL_Pos) /*!< 0x00000200 */
  6758. #define RCC_CCIPR2_USBSEL_Pos (12U)
  6759. #define RCC_CCIPR2_USBSEL_Msk (0x3UL << RCC_CCIPR2_USBSEL_Pos) /*!< 0x00003000 */
  6760. #define RCC_CCIPR2_USBSEL RCC_CCIPR2_USBSEL_Msk
  6761. #define RCC_CCIPR2_USBSEL_0 (0x1UL << RCC_CCIPR2_USBSEL_Pos) /*!< 0x00001000 */
  6762. #define RCC_CCIPR2_USBSEL_1 (0x2UL << RCC_CCIPR2_USBSEL_Pos) /*!< 0x00002000 */
  6763. /******************** Bit definition for RCC_BDCR register ******************/
  6764. #define RCC_BDCR_LSEON_Pos (0U)
  6765. #define RCC_BDCR_LSEON_Msk (0x1UL << RCC_BDCR_LSEON_Pos) /*!< 0x00000001 */
  6766. #define RCC_BDCR_LSEON RCC_BDCR_LSEON_Msk
  6767. #define RCC_BDCR_LSERDY_Pos (1U)
  6768. #define RCC_BDCR_LSERDY_Msk (0x1UL << RCC_BDCR_LSERDY_Pos) /*!< 0x00000002 */
  6769. #define RCC_BDCR_LSERDY RCC_BDCR_LSERDY_Msk
  6770. #define RCC_BDCR_LSEBYP_Pos (2U)
  6771. #define RCC_BDCR_LSEBYP_Msk (0x1UL << RCC_BDCR_LSEBYP_Pos) /*!< 0x00000004 */
  6772. #define RCC_BDCR_LSEBYP RCC_BDCR_LSEBYP_Msk
  6773. #define RCC_BDCR_LSEDRV_Pos (3U)
  6774. #define RCC_BDCR_LSEDRV_Msk (0x3UL << RCC_BDCR_LSEDRV_Pos) /*!< 0x00000018 */
  6775. #define RCC_BDCR_LSEDRV RCC_BDCR_LSEDRV_Msk
  6776. #define RCC_BDCR_LSEDRV_0 (0x1UL << RCC_BDCR_LSEDRV_Pos) /*!< 0x00000008 */
  6777. #define RCC_BDCR_LSEDRV_1 (0x2UL << RCC_BDCR_LSEDRV_Pos) /*!< 0x00000010 */
  6778. #define RCC_BDCR_LSECSSON_Pos (5U)
  6779. #define RCC_BDCR_LSECSSON_Msk (0x1UL << RCC_BDCR_LSECSSON_Pos) /*!< 0x00000020 */
  6780. #define RCC_BDCR_LSECSSON RCC_BDCR_LSECSSON_Msk
  6781. #define RCC_BDCR_LSECSSD_Pos (6U)
  6782. #define RCC_BDCR_LSECSSD_Msk (0x1UL << RCC_BDCR_LSECSSD_Pos) /*!< 0x00000040 */
  6783. #define RCC_BDCR_LSECSSD RCC_BDCR_LSECSSD_Msk
  6784. #define RCC_BDCR_RTCSEL_Pos (8U)
  6785. #define RCC_BDCR_RTCSEL_Msk (0x3UL << RCC_BDCR_RTCSEL_Pos) /*!< 0x00000300 */
  6786. #define RCC_BDCR_RTCSEL RCC_BDCR_RTCSEL_Msk
  6787. #define RCC_BDCR_RTCSEL_0 (0x1UL << RCC_BDCR_RTCSEL_Pos) /*!< 0x00000100 */
  6788. #define RCC_BDCR_RTCSEL_1 (0x2UL << RCC_BDCR_RTCSEL_Pos) /*!< 0x00000200 */
  6789. #define RCC_BDCR_RTCEN_Pos (15U)
  6790. #define RCC_BDCR_RTCEN_Msk (0x1UL << RCC_BDCR_RTCEN_Pos) /*!< 0x00008000 */
  6791. #define RCC_BDCR_RTCEN RCC_BDCR_RTCEN_Msk
  6792. #define RCC_BDCR_BDRST_Pos (16U)
  6793. #define RCC_BDCR_BDRST_Msk (0x1UL << RCC_BDCR_BDRST_Pos) /*!< 0x00010000 */
  6794. #define RCC_BDCR_BDRST RCC_BDCR_BDRST_Msk
  6795. #define RCC_BDCR_LSCOEN_Pos (24U)
  6796. #define RCC_BDCR_LSCOEN_Msk (0x1UL << RCC_BDCR_LSCOEN_Pos) /*!< 0x01000000 */
  6797. #define RCC_BDCR_LSCOEN RCC_BDCR_LSCOEN_Msk
  6798. #define RCC_BDCR_LSCOSEL_Pos (25U)
  6799. #define RCC_BDCR_LSCOSEL_Msk (0x1UL << RCC_BDCR_LSCOSEL_Pos) /*!< 0x02000000 */
  6800. #define RCC_BDCR_LSCOSEL RCC_BDCR_LSCOSEL_Msk
  6801. /******************** Bit definition for RCC_CSR register *******************/
  6802. #define RCC_CSR_LSION_Pos (0U)
  6803. #define RCC_CSR_LSION_Msk (0x1UL << RCC_CSR_LSION_Pos) /*!< 0x00000001 */
  6804. #define RCC_CSR_LSION RCC_CSR_LSION_Msk
  6805. #define RCC_CSR_LSIRDY_Pos (1U)
  6806. #define RCC_CSR_LSIRDY_Msk (0x1UL << RCC_CSR_LSIRDY_Pos) /*!< 0x00000002 */
  6807. #define RCC_CSR_LSIRDY RCC_CSR_LSIRDY_Msk
  6808. #define RCC_CSR_RMVF_Pos (23U)
  6809. #define RCC_CSR_RMVF_Msk (0x1UL << RCC_CSR_RMVF_Pos) /*!< 0x00800000 */
  6810. #define RCC_CSR_RMVF RCC_CSR_RMVF_Msk
  6811. #define RCC_CSR_OBLRSTF_Pos (25U)
  6812. #define RCC_CSR_OBLRSTF_Msk (0x1UL << RCC_CSR_OBLRSTF_Pos) /*!< 0x02000000 */
  6813. #define RCC_CSR_OBLRSTF RCC_CSR_OBLRSTF_Msk
  6814. #define RCC_CSR_PINRSTF_Pos (26U)
  6815. #define RCC_CSR_PINRSTF_Msk (0x1UL << RCC_CSR_PINRSTF_Pos) /*!< 0x04000000 */
  6816. #define RCC_CSR_PINRSTF RCC_CSR_PINRSTF_Msk
  6817. #define RCC_CSR_PWRRSTF_Pos (27U)
  6818. #define RCC_CSR_PWRRSTF_Msk (0x1UL << RCC_CSR_PWRRSTF_Pos) /*!< 0x08000000 */
  6819. #define RCC_CSR_PWRRSTF RCC_CSR_PWRRSTF_Msk
  6820. #define RCC_CSR_SFTRSTF_Pos (28U)
  6821. #define RCC_CSR_SFTRSTF_Msk (0x1UL << RCC_CSR_SFTRSTF_Pos) /*!< 0x10000000 */
  6822. #define RCC_CSR_SFTRSTF RCC_CSR_SFTRSTF_Msk
  6823. #define RCC_CSR_IWDGRSTF_Pos (29U)
  6824. #define RCC_CSR_IWDGRSTF_Msk (0x1UL << RCC_CSR_IWDGRSTF_Pos) /*!< 0x20000000 */
  6825. #define RCC_CSR_IWDGRSTF RCC_CSR_IWDGRSTF_Msk
  6826. #define RCC_CSR_WWDGRSTF_Pos (30U)
  6827. #define RCC_CSR_WWDGRSTF_Msk (0x1UL << RCC_CSR_WWDGRSTF_Pos) /*!< 0x40000000 */
  6828. #define RCC_CSR_WWDGRSTF RCC_CSR_WWDGRSTF_Msk
  6829. #define RCC_CSR_LPWRRSTF_Pos (31U)
  6830. #define RCC_CSR_LPWRRSTF_Msk (0x1UL << RCC_CSR_LPWRRSTF_Pos) /*!< 0x80000000 */
  6831. #define RCC_CSR_LPWRRSTF RCC_CSR_LPWRRSTF_Msk
  6832. /******************************************************************************/
  6833. /* */
  6834. /* RNG */
  6835. /* */
  6836. /******************************************************************************/
  6837. /******************** Bits definition for RNG_CR register *******************/
  6838. #define RNG_CR_RNGEN_Pos (2U)
  6839. #define RNG_CR_RNGEN_Msk (0x1UL << RNG_CR_RNGEN_Pos) /*!< 0x00000004 */
  6840. #define RNG_CR_RNGEN RNG_CR_RNGEN_Msk
  6841. #define RNG_CR_IE_Pos (3U)
  6842. #define RNG_CR_IE_Msk (0x1UL << RNG_CR_IE_Pos) /*!< 0x00000008 */
  6843. #define RNG_CR_IE RNG_CR_IE_Msk
  6844. #define RNG_CR_CED_Pos (5U)
  6845. #define RNG_CR_CED_Msk (0x1UL << RNG_CR_CED_Pos) /*!< 0x00000020 */
  6846. #define RNG_CR_CED RNG_CR_CED_Msk
  6847. /******************** Bits definition for RNG_SR register *******************/
  6848. #define RNG_SR_DRDY_Pos (0U)
  6849. #define RNG_SR_DRDY_Msk (0x1UL << RNG_SR_DRDY_Pos) /*!< 0x00000001 */
  6850. #define RNG_SR_DRDY RNG_SR_DRDY_Msk
  6851. #define RNG_SR_CECS_Pos (1U)
  6852. #define RNG_SR_CECS_Msk (0x1UL << RNG_SR_CECS_Pos) /*!< 0x00000002 */
  6853. #define RNG_SR_CECS RNG_SR_CECS_Msk
  6854. #define RNG_SR_SECS_Pos (2U)
  6855. #define RNG_SR_SECS_Msk (0x1UL << RNG_SR_SECS_Pos) /*!< 0x00000004 */
  6856. #define RNG_SR_SECS RNG_SR_SECS_Msk
  6857. #define RNG_SR_CEIS_Pos (5U)
  6858. #define RNG_SR_CEIS_Msk (0x1UL << RNG_SR_CEIS_Pos) /*!< 0x00000020 */
  6859. #define RNG_SR_CEIS RNG_SR_CEIS_Msk
  6860. #define RNG_SR_SEIS_Pos (6U)
  6861. #define RNG_SR_SEIS_Msk (0x1UL << RNG_SR_SEIS_Pos) /*!< 0x00000040 */
  6862. #define RNG_SR_SEIS RNG_SR_SEIS_Msk
  6863. /******************************************************************************/
  6864. /* */
  6865. /* Real-Time Clock (RTC) */
  6866. /* */
  6867. /******************************************************************************/
  6868. /*
  6869. * @brief Specific device feature definitions
  6870. */
  6871. #define RTC_WAKEUP_SUPPORT
  6872. #define RTC_BACKUP_SUPPORT
  6873. #define RTC_TAMPER3_SUPPORT /*!< TAMPER3 only available on some devices */
  6874. /******************** Bits definition for RTC_TR register *******************/
  6875. #define RTC_TR_PM_Pos (22U)
  6876. #define RTC_TR_PM_Msk (0x1UL << RTC_TR_PM_Pos) /*!< 0x00400000 */
  6877. #define RTC_TR_PM RTC_TR_PM_Msk
  6878. #define RTC_TR_HT_Pos (20U)
  6879. #define RTC_TR_HT_Msk (0x3UL << RTC_TR_HT_Pos) /*!< 0x00300000 */
  6880. #define RTC_TR_HT RTC_TR_HT_Msk
  6881. #define RTC_TR_HT_0 (0x1UL << RTC_TR_HT_Pos) /*!< 0x00100000 */
  6882. #define RTC_TR_HT_1 (0x2UL << RTC_TR_HT_Pos) /*!< 0x00200000 */
  6883. #define RTC_TR_HU_Pos (16U)
  6884. #define RTC_TR_HU_Msk (0xFUL << RTC_TR_HU_Pos) /*!< 0x000F0000 */
  6885. #define RTC_TR_HU RTC_TR_HU_Msk
  6886. #define RTC_TR_HU_0 (0x1UL << RTC_TR_HU_Pos) /*!< 0x00010000 */
  6887. #define RTC_TR_HU_1 (0x2UL << RTC_TR_HU_Pos) /*!< 0x00020000 */
  6888. #define RTC_TR_HU_2 (0x4UL << RTC_TR_HU_Pos) /*!< 0x00040000 */
  6889. #define RTC_TR_HU_3 (0x8UL << RTC_TR_HU_Pos) /*!< 0x00080000 */
  6890. #define RTC_TR_MNT_Pos (12U)
  6891. #define RTC_TR_MNT_Msk (0x7UL << RTC_TR_MNT_Pos) /*!< 0x00007000 */
  6892. #define RTC_TR_MNT RTC_TR_MNT_Msk
  6893. #define RTC_TR_MNT_0 (0x1UL << RTC_TR_MNT_Pos) /*!< 0x00001000 */
  6894. #define RTC_TR_MNT_1 (0x2UL << RTC_TR_MNT_Pos) /*!< 0x00002000 */
  6895. #define RTC_TR_MNT_2 (0x4UL << RTC_TR_MNT_Pos) /*!< 0x00004000 */
  6896. #define RTC_TR_MNU_Pos (8U)
  6897. #define RTC_TR_MNU_Msk (0xFUL << RTC_TR_MNU_Pos) /*!< 0x00000F00 */
  6898. #define RTC_TR_MNU RTC_TR_MNU_Msk
  6899. #define RTC_TR_MNU_0 (0x1UL << RTC_TR_MNU_Pos) /*!< 0x00000100 */
  6900. #define RTC_TR_MNU_1 (0x2UL << RTC_TR_MNU_Pos) /*!< 0x00000200 */
  6901. #define RTC_TR_MNU_2 (0x4UL << RTC_TR_MNU_Pos) /*!< 0x00000400 */
  6902. #define RTC_TR_MNU_3 (0x8UL << RTC_TR_MNU_Pos) /*!< 0x00000800 */
  6903. #define RTC_TR_ST_Pos (4U)
  6904. #define RTC_TR_ST_Msk (0x7UL << RTC_TR_ST_Pos) /*!< 0x00000070 */
  6905. #define RTC_TR_ST RTC_TR_ST_Msk
  6906. #define RTC_TR_ST_0 (0x1UL << RTC_TR_ST_Pos) /*!< 0x00000010 */
  6907. #define RTC_TR_ST_1 (0x2UL << RTC_TR_ST_Pos) /*!< 0x00000020 */
  6908. #define RTC_TR_ST_2 (0x4UL << RTC_TR_ST_Pos) /*!< 0x00000040 */
  6909. #define RTC_TR_SU_Pos (0U)
  6910. #define RTC_TR_SU_Msk (0xFUL << RTC_TR_SU_Pos) /*!< 0x0000000F */
  6911. #define RTC_TR_SU RTC_TR_SU_Msk
  6912. #define RTC_TR_SU_0 (0x1UL << RTC_TR_SU_Pos) /*!< 0x00000001 */
  6913. #define RTC_TR_SU_1 (0x2UL << RTC_TR_SU_Pos) /*!< 0x00000002 */
  6914. #define RTC_TR_SU_2 (0x4UL << RTC_TR_SU_Pos) /*!< 0x00000004 */
  6915. #define RTC_TR_SU_3 (0x8UL << RTC_TR_SU_Pos) /*!< 0x00000008 */
  6916. /******************** Bits definition for RTC_DR register *******************/
  6917. #define RTC_DR_YT_Pos (20U)
  6918. #define RTC_DR_YT_Msk (0xFUL << RTC_DR_YT_Pos) /*!< 0x00F00000 */
  6919. #define RTC_DR_YT RTC_DR_YT_Msk
  6920. #define RTC_DR_YT_0 (0x1UL << RTC_DR_YT_Pos) /*!< 0x00100000 */
  6921. #define RTC_DR_YT_1 (0x2UL << RTC_DR_YT_Pos) /*!< 0x00200000 */
  6922. #define RTC_DR_YT_2 (0x4UL << RTC_DR_YT_Pos) /*!< 0x00400000 */
  6923. #define RTC_DR_YT_3 (0x8UL << RTC_DR_YT_Pos) /*!< 0x00800000 */
  6924. #define RTC_DR_YU_Pos (16U)
  6925. #define RTC_DR_YU_Msk (0xFUL << RTC_DR_YU_Pos) /*!< 0x000F0000 */
  6926. #define RTC_DR_YU RTC_DR_YU_Msk
  6927. #define RTC_DR_YU_0 (0x1UL << RTC_DR_YU_Pos) /*!< 0x00010000 */
  6928. #define RTC_DR_YU_1 (0x2UL << RTC_DR_YU_Pos) /*!< 0x00020000 */
  6929. #define RTC_DR_YU_2 (0x4UL << RTC_DR_YU_Pos) /*!< 0x00040000 */
  6930. #define RTC_DR_YU_3 (0x8UL << RTC_DR_YU_Pos) /*!< 0x00080000 */
  6931. #define RTC_DR_WDU_Pos (13U)
  6932. #define RTC_DR_WDU_Msk (0x7UL << RTC_DR_WDU_Pos) /*!< 0x0000E000 */
  6933. #define RTC_DR_WDU RTC_DR_WDU_Msk
  6934. #define RTC_DR_WDU_0 (0x1UL << RTC_DR_WDU_Pos) /*!< 0x00002000 */
  6935. #define RTC_DR_WDU_1 (0x2UL << RTC_DR_WDU_Pos) /*!< 0x00004000 */
  6936. #define RTC_DR_WDU_2 (0x4UL << RTC_DR_WDU_Pos) /*!< 0x00008000 */
  6937. #define RTC_DR_MT_Pos (12U)
  6938. #define RTC_DR_MT_Msk (0x1UL << RTC_DR_MT_Pos) /*!< 0x00001000 */
  6939. #define RTC_DR_MT RTC_DR_MT_Msk
  6940. #define RTC_DR_MU_Pos (8U)
  6941. #define RTC_DR_MU_Msk (0xFUL << RTC_DR_MU_Pos) /*!< 0x00000F00 */
  6942. #define RTC_DR_MU RTC_DR_MU_Msk
  6943. #define RTC_DR_MU_0 (0x1UL << RTC_DR_MU_Pos) /*!< 0x00000100 */
  6944. #define RTC_DR_MU_1 (0x2UL << RTC_DR_MU_Pos) /*!< 0x00000200 */
  6945. #define RTC_DR_MU_2 (0x4UL << RTC_DR_MU_Pos) /*!< 0x00000400 */
  6946. #define RTC_DR_MU_3 (0x8UL << RTC_DR_MU_Pos) /*!< 0x00000800 */
  6947. #define RTC_DR_DT_Pos (4U)
  6948. #define RTC_DR_DT_Msk (0x3UL << RTC_DR_DT_Pos) /*!< 0x00000030 */
  6949. #define RTC_DR_DT RTC_DR_DT_Msk
  6950. #define RTC_DR_DT_0 (0x1UL << RTC_DR_DT_Pos) /*!< 0x00000010 */
  6951. #define RTC_DR_DT_1 (0x2UL << RTC_DR_DT_Pos) /*!< 0x00000020 */
  6952. #define RTC_DR_DU_Pos (0U)
  6953. #define RTC_DR_DU_Msk (0xFUL << RTC_DR_DU_Pos) /*!< 0x0000000F */
  6954. #define RTC_DR_DU RTC_DR_DU_Msk
  6955. #define RTC_DR_DU_0 (0x1UL << RTC_DR_DU_Pos) /*!< 0x00000001 */
  6956. #define RTC_DR_DU_1 (0x2UL << RTC_DR_DU_Pos) /*!< 0x00000002 */
  6957. #define RTC_DR_DU_2 (0x4UL << RTC_DR_DU_Pos) /*!< 0x00000004 */
  6958. #define RTC_DR_DU_3 (0x8UL << RTC_DR_DU_Pos) /*!< 0x00000008 */
  6959. /******************** Bits definition for RTC_SSR register ******************/
  6960. #define RTC_SSR_SS_Pos (0U)
  6961. #define RTC_SSR_SS_Msk (0xFFFFUL << RTC_SSR_SS_Pos) /*!< 0x0000FFFF */
  6962. #define RTC_SSR_SS RTC_SSR_SS_Msk
  6963. /******************** Bits definition for RTC_ICSR register ******************/
  6964. #define RTC_ICSR_RECALPF_Pos (16U)
  6965. #define RTC_ICSR_RECALPF_Msk (0x1UL << RTC_ICSR_RECALPF_Pos) /*!< 0x00010000 */
  6966. #define RTC_ICSR_RECALPF RTC_ICSR_RECALPF_Msk
  6967. #define RTC_ICSR_INIT_Pos (7U)
  6968. #define RTC_ICSR_INIT_Msk (0x1UL << RTC_ICSR_INIT_Pos) /*!< 0x00000080 */
  6969. #define RTC_ICSR_INIT RTC_ICSR_INIT_Msk
  6970. #define RTC_ICSR_INITF_Pos (6U)
  6971. #define RTC_ICSR_INITF_Msk (0x1UL << RTC_ICSR_INITF_Pos) /*!< 0x00000040 */
  6972. #define RTC_ICSR_INITF RTC_ICSR_INITF_Msk
  6973. #define RTC_ICSR_RSF_Pos (5U)
  6974. #define RTC_ICSR_RSF_Msk (0x1UL << RTC_ICSR_RSF_Pos) /*!< 0x00000020 */
  6975. #define RTC_ICSR_RSF RTC_ICSR_RSF_Msk
  6976. #define RTC_ICSR_INITS_Pos (4U)
  6977. #define RTC_ICSR_INITS_Msk (0x1UL << RTC_ICSR_INITS_Pos) /*!< 0x00000010 */
  6978. #define RTC_ICSR_INITS RTC_ICSR_INITS_Msk
  6979. #define RTC_ICSR_SHPF_Pos (3U)
  6980. #define RTC_ICSR_SHPF_Msk (0x1UL << RTC_ICSR_SHPF_Pos) /*!< 0x00000008 */
  6981. #define RTC_ICSR_SHPF RTC_ICSR_SHPF_Msk
  6982. #define RTC_ICSR_WUTWF_Pos (2U)
  6983. #define RTC_ICSR_WUTWF_Msk (0x1UL << RTC_ICSR_WUTWF_Pos) /*!< 0x00000004 */
  6984. #define RTC_ICSR_WUTWF RTC_ICSR_WUTWF_Msk /*!< Wakeup timer write flag > */
  6985. #define RTC_ICSR_ALRBWF_Pos (1U)
  6986. #define RTC_ICSR_ALRBWF_Msk (0x1UL << RTC_ICSR_ALRBWF_Pos) /*!< 0x00000002 */
  6987. #define RTC_ICSR_ALRBWF RTC_ICSR_ALRBWF_Msk
  6988. #define RTC_ICSR_ALRAWF_Pos (0U)
  6989. #define RTC_ICSR_ALRAWF_Msk (0x1UL << RTC_ICSR_ALRAWF_Pos) /*!< 0x00000001 */
  6990. #define RTC_ICSR_ALRAWF RTC_ICSR_ALRAWF_Msk
  6991. /******************** Bits definition for RTC_PRER register *****************/
  6992. #define RTC_PRER_PREDIV_A_Pos (16U)
  6993. #define RTC_PRER_PREDIV_A_Msk (0x7FUL << RTC_PRER_PREDIV_A_Pos) /*!< 0x007F0000 */
  6994. #define RTC_PRER_PREDIV_A RTC_PRER_PREDIV_A_Msk
  6995. #define RTC_PRER_PREDIV_S_Pos (0U)
  6996. #define RTC_PRER_PREDIV_S_Msk (0x7FFFUL << RTC_PRER_PREDIV_S_Pos) /*!< 0x00007FFF */
  6997. #define RTC_PRER_PREDIV_S RTC_PRER_PREDIV_S_Msk
  6998. /******************** Bits definition for RTC_WUTR register *****************/
  6999. #define RTC_WUTR_WUT_Pos (0U)
  7000. #define RTC_WUTR_WUT_Msk (0xFFFFUL << RTC_WUTR_WUT_Pos) /*!< 0x0000FFFF */
  7001. #define RTC_WUTR_WUT RTC_WUTR_WUT_Msk /*!< Wakeup auto-reload value bits > */
  7002. /******************** Bits definition for RTC_CR register *******************/
  7003. #define RTC_CR_OUT2EN_Pos (31U)
  7004. #define RTC_CR_OUT2EN_Msk (0x1UL << RTC_CR_OUT2EN_Pos) /*!< 0x80000000 */
  7005. #define RTC_CR_OUT2EN RTC_CR_OUT2EN_Msk /*!< RTC_OUT2 output enable */
  7006. #define RTC_CR_TAMPALRM_TYPE_Pos (30U)
  7007. #define RTC_CR_TAMPALRM_TYPE_Msk (0x1UL << RTC_CR_TAMPALRM_TYPE_Pos) /*!< 0x40000000 */
  7008. #define RTC_CR_TAMPALRM_TYPE RTC_CR_TAMPALRM_TYPE_Msk /*!< TAMPALARM output type */
  7009. #define RTC_CR_TAMPALRM_PU_Pos (29U)
  7010. #define RTC_CR_TAMPALRM_PU_Msk (0x1UL << RTC_CR_TAMPALRM_PU_Pos) /*!< 0x20000000 */
  7011. #define RTC_CR_TAMPALRM_PU RTC_CR_TAMPALRM_PU_Msk /*!< TAMPALARM output pull-up config */
  7012. #define RTC_CR_TAMPOE_Pos (26U)
  7013. #define RTC_CR_TAMPOE_Msk (0x1UL << RTC_CR_TAMPOE_Pos) /*!< 0x04000000 */
  7014. #define RTC_CR_TAMPOE RTC_CR_TAMPOE_Msk /*!< Tamper detection output enable on TAMPALARM */
  7015. #define RTC_CR_TAMPTS_Pos (25U)
  7016. #define RTC_CR_TAMPTS_Msk (0x1UL << RTC_CR_TAMPTS_Pos) /*!< 0x02000000 */
  7017. #define RTC_CR_TAMPTS RTC_CR_TAMPTS_Msk /*!< Activate timestamp on tamper detection event */
  7018. #define RTC_CR_ITSE_Pos (24U)
  7019. #define RTC_CR_ITSE_Msk (0x1UL << RTC_CR_ITSE_Pos) /*!< 0x01000000 */
  7020. #define RTC_CR_ITSE RTC_CR_ITSE_Msk /*!< Timestamp on internal event enable */
  7021. #define RTC_CR_COE_Pos (23U)
  7022. #define RTC_CR_COE_Msk (0x1UL << RTC_CR_COE_Pos) /*!< 0x00800000 */
  7023. #define RTC_CR_COE RTC_CR_COE_Msk
  7024. #define RTC_CR_OSEL_Pos (21U)
  7025. #define RTC_CR_OSEL_Msk (0x3UL << RTC_CR_OSEL_Pos) /*!< 0x00600000 */
  7026. #define RTC_CR_OSEL RTC_CR_OSEL_Msk
  7027. #define RTC_CR_OSEL_0 (0x1UL << RTC_CR_OSEL_Pos) /*!< 0x00200000 */
  7028. #define RTC_CR_OSEL_1 (0x2UL << RTC_CR_OSEL_Pos) /*!< 0x00400000 */
  7029. #define RTC_CR_POL_Pos (20U)
  7030. #define RTC_CR_POL_Msk (0x1UL << RTC_CR_POL_Pos) /*!< 0x00100000 */
  7031. #define RTC_CR_POL RTC_CR_POL_Msk
  7032. #define RTC_CR_COSEL_Pos (19U)
  7033. #define RTC_CR_COSEL_Msk (0x1UL << RTC_CR_COSEL_Pos) /*!< 0x00080000 */
  7034. #define RTC_CR_COSEL RTC_CR_COSEL_Msk
  7035. #define RTC_CR_BKP_Pos (18U)
  7036. #define RTC_CR_BKP_Msk (0x1UL << RTC_CR_BKP_Pos) /*!< 0x00040000 */
  7037. #define RTC_CR_BKP RTC_CR_BKP_Msk
  7038. #define RTC_CR_SUB1H_Pos (17U)
  7039. #define RTC_CR_SUB1H_Msk (0x1UL << RTC_CR_SUB1H_Pos) /*!< 0x00020000 */
  7040. #define RTC_CR_SUB1H RTC_CR_SUB1H_Msk
  7041. #define RTC_CR_ADD1H_Pos (16U)
  7042. #define RTC_CR_ADD1H_Msk (0x1UL << RTC_CR_ADD1H_Pos) /*!< 0x00010000 */
  7043. #define RTC_CR_ADD1H RTC_CR_ADD1H_Msk
  7044. #define RTC_CR_TSIE_Pos (15U)
  7045. #define RTC_CR_TSIE_Msk (0x1UL << RTC_CR_TSIE_Pos) /*!< 0x00008000 */
  7046. #define RTC_CR_TSIE RTC_CR_TSIE_Msk /*!< Timestamp interrupt enable > */
  7047. #define RTC_CR_WUTIE_Pos (14U)
  7048. #define RTC_CR_WUTIE_Msk (0x1UL << RTC_CR_WUTIE_Pos) /*!< 0x00004000 */
  7049. #define RTC_CR_WUTIE RTC_CR_WUTIE_Msk /*!< Wakeup timer interrupt enable > */
  7050. #define RTC_CR_ALRBIE_Pos (13U)
  7051. #define RTC_CR_ALRBIE_Msk (0x1UL << RTC_CR_ALRBIE_Pos) /*!< 0x00002000 */
  7052. #define RTC_CR_ALRBIE RTC_CR_ALRBIE_Msk
  7053. #define RTC_CR_ALRAIE_Pos (12U)
  7054. #define RTC_CR_ALRAIE_Msk (0x1UL << RTC_CR_ALRAIE_Pos) /*!< 0x00001000 */
  7055. #define RTC_CR_ALRAIE RTC_CR_ALRAIE_Msk
  7056. #define RTC_CR_TSE_Pos (11U)
  7057. #define RTC_CR_TSE_Msk (0x1UL << RTC_CR_TSE_Pos) /*!< 0x00000800 */
  7058. #define RTC_CR_TSE RTC_CR_TSE_Msk /*!< timestamp enable > */
  7059. #define RTC_CR_WUTE_Pos (10U)
  7060. #define RTC_CR_WUTE_Msk (0x1UL << RTC_CR_WUTE_Pos) /*!< 0x00000400 */
  7061. #define RTC_CR_WUTE RTC_CR_WUTE_Msk /*!< Wakeup timer enable > */
  7062. #define RTC_CR_ALRBE_Pos (9U)
  7063. #define RTC_CR_ALRBE_Msk (0x1UL << RTC_CR_ALRBE_Pos) /*!< 0x00000200 */
  7064. #define RTC_CR_ALRBE RTC_CR_ALRBE_Msk
  7065. #define RTC_CR_ALRAE_Pos (8U)
  7066. #define RTC_CR_ALRAE_Msk (0x1UL << RTC_CR_ALRAE_Pos) /*!< 0x00000100 */
  7067. #define RTC_CR_ALRAE RTC_CR_ALRAE_Msk
  7068. #define RTC_CR_FMT_Pos (6U)
  7069. #define RTC_CR_FMT_Msk (0x1UL << RTC_CR_FMT_Pos) /*!< 0x00000040 */
  7070. #define RTC_CR_FMT RTC_CR_FMT_Msk
  7071. #define RTC_CR_BYPSHAD_Pos (5U)
  7072. #define RTC_CR_BYPSHAD_Msk (0x1UL << RTC_CR_BYPSHAD_Pos) /*!< 0x00000020 */
  7073. #define RTC_CR_BYPSHAD RTC_CR_BYPSHAD_Msk
  7074. #define RTC_CR_REFCKON_Pos (4U)
  7075. #define RTC_CR_REFCKON_Msk (0x1UL << RTC_CR_REFCKON_Pos) /*!< 0x00000010 */
  7076. #define RTC_CR_REFCKON RTC_CR_REFCKON_Msk
  7077. #define RTC_CR_TSEDGE_Pos (3U)
  7078. #define RTC_CR_TSEDGE_Msk (0x1UL << RTC_CR_TSEDGE_Pos) /*!< 0x00000008 */
  7079. #define RTC_CR_TSEDGE RTC_CR_TSEDGE_Msk /*!< Timestamp event active edge > */
  7080. #define RTC_CR_WUCKSEL_Pos (0U)
  7081. #define RTC_CR_WUCKSEL_Msk (0x7UL << RTC_CR_WUCKSEL_Pos) /*!< 0x00000007 */
  7082. #define RTC_CR_WUCKSEL RTC_CR_WUCKSEL_Msk /*!< Wakeup clock selection > */
  7083. #define RTC_CR_WUCKSEL_0 (0x1UL << RTC_CR_WUCKSEL_Pos) /*!< 0x00000001 */
  7084. #define RTC_CR_WUCKSEL_1 (0x2UL << RTC_CR_WUCKSEL_Pos) /*!< 0x00000002 */
  7085. #define RTC_CR_WUCKSEL_2 (0x4UL << RTC_CR_WUCKSEL_Pos) /*!< 0x00000004 */
  7086. /******************** Bits definition for RTC_WPR register ******************/
  7087. #define RTC_WPR_KEY_Pos (0U)
  7088. #define RTC_WPR_KEY_Msk (0xFFUL << RTC_WPR_KEY_Pos) /*!< 0x000000FF */
  7089. #define RTC_WPR_KEY RTC_WPR_KEY_Msk
  7090. /******************** Bits definition for RTC_CALR register *****************/
  7091. #define RTC_CALR_CALP_Pos (15U)
  7092. #define RTC_CALR_CALP_Msk (0x1UL << RTC_CALR_CALP_Pos) /*!< 0x00008000 */
  7093. #define RTC_CALR_CALP RTC_CALR_CALP_Msk
  7094. #define RTC_CALR_CALW8_Pos (14U)
  7095. #define RTC_CALR_CALW8_Msk (0x1UL << RTC_CALR_CALW8_Pos) /*!< 0x00004000 */
  7096. #define RTC_CALR_CALW8 RTC_CALR_CALW8_Msk
  7097. #define RTC_CALR_CALW16_Pos (13U)
  7098. #define RTC_CALR_CALW16_Msk (0x1UL << RTC_CALR_CALW16_Pos) /*!< 0x00002000 */
  7099. #define RTC_CALR_CALW16 RTC_CALR_CALW16_Msk
  7100. #define RTC_CALR_CALM_Pos (0U)
  7101. #define RTC_CALR_CALM_Msk (0x1FFUL << RTC_CALR_CALM_Pos) /*!< 0x000001FF */
  7102. #define RTC_CALR_CALM RTC_CALR_CALM_Msk
  7103. #define RTC_CALR_CALM_0 (0x001UL << RTC_CALR_CALM_Pos) /*!< 0x00000001 */
  7104. #define RTC_CALR_CALM_1 (0x002UL << RTC_CALR_CALM_Pos) /*!< 0x00000002 */
  7105. #define RTC_CALR_CALM_2 (0x004UL << RTC_CALR_CALM_Pos) /*!< 0x00000004 */
  7106. #define RTC_CALR_CALM_3 (0x008UL << RTC_CALR_CALM_Pos) /*!< 0x00000008 */
  7107. #define RTC_CALR_CALM_4 (0x010UL << RTC_CALR_CALM_Pos) /*!< 0x00000010 */
  7108. #define RTC_CALR_CALM_5 (0x020UL << RTC_CALR_CALM_Pos) /*!< 0x00000020 */
  7109. #define RTC_CALR_CALM_6 (0x040UL << RTC_CALR_CALM_Pos) /*!< 0x00000040 */
  7110. #define RTC_CALR_CALM_7 (0x080UL << RTC_CALR_CALM_Pos) /*!< 0x00000080 */
  7111. #define RTC_CALR_CALM_8 (0x100UL << RTC_CALR_CALM_Pos) /*!< 0x00000100 */
  7112. /******************** Bits definition for RTC_SHIFTR register ***************/
  7113. #define RTC_SHIFTR_SUBFS_Pos (0U)
  7114. #define RTC_SHIFTR_SUBFS_Msk (0x7FFFUL << RTC_SHIFTR_SUBFS_Pos) /*!< 0x00007FFF */
  7115. #define RTC_SHIFTR_SUBFS RTC_SHIFTR_SUBFS_Msk
  7116. #define RTC_SHIFTR_ADD1S_Pos (31U)
  7117. #define RTC_SHIFTR_ADD1S_Msk (0x1UL << RTC_SHIFTR_ADD1S_Pos) /*!< 0x80000000 */
  7118. #define RTC_SHIFTR_ADD1S RTC_SHIFTR_ADD1S_Msk
  7119. /******************** Bits definition for RTC_TSTR register *****************/
  7120. #define RTC_TSTR_PM_Pos (22U)
  7121. #define RTC_TSTR_PM_Msk (0x1UL << RTC_TSTR_PM_Pos) /*!< 0x00400000 */
  7122. #define RTC_TSTR_PM RTC_TSTR_PM_Msk /*!< AM-PM notation > */
  7123. #define RTC_TSTR_HT_Pos (20U)
  7124. #define RTC_TSTR_HT_Msk (0x3UL << RTC_TSTR_HT_Pos) /*!< 0x00300000 */
  7125. #define RTC_TSTR_HT RTC_TSTR_HT_Msk
  7126. #define RTC_TSTR_HT_0 (0x1UL << RTC_TSTR_HT_Pos) /*!< 0x00100000 */
  7127. #define RTC_TSTR_HT_1 (0x2UL << RTC_TSTR_HT_Pos) /*!< 0x00200000 */
  7128. #define RTC_TSTR_HU_Pos (16U)
  7129. #define RTC_TSTR_HU_Msk (0xFUL << RTC_TSTR_HU_Pos) /*!< 0x000F0000 */
  7130. #define RTC_TSTR_HU RTC_TSTR_HU_Msk
  7131. #define RTC_TSTR_HU_0 (0x1UL << RTC_TSTR_HU_Pos) /*!< 0x00010000 */
  7132. #define RTC_TSTR_HU_1 (0x2UL << RTC_TSTR_HU_Pos) /*!< 0x00020000 */
  7133. #define RTC_TSTR_HU_2 (0x4UL << RTC_TSTR_HU_Pos) /*!< 0x00040000 */
  7134. #define RTC_TSTR_HU_3 (0x8UL << RTC_TSTR_HU_Pos) /*!< 0x00080000 */
  7135. #define RTC_TSTR_MNT_Pos (12U)
  7136. #define RTC_TSTR_MNT_Msk (0x7UL << RTC_TSTR_MNT_Pos) /*!< 0x00007000 */
  7137. #define RTC_TSTR_MNT RTC_TSTR_MNT_Msk
  7138. #define RTC_TSTR_MNT_0 (0x1UL << RTC_TSTR_MNT_Pos) /*!< 0x00001000 */
  7139. #define RTC_TSTR_MNT_1 (0x2UL << RTC_TSTR_MNT_Pos) /*!< 0x00002000 */
  7140. #define RTC_TSTR_MNT_2 (0x4UL << RTC_TSTR_MNT_Pos) /*!< 0x00004000 */
  7141. #define RTC_TSTR_MNU_Pos (8U)
  7142. #define RTC_TSTR_MNU_Msk (0xFUL << RTC_TSTR_MNU_Pos) /*!< 0x00000F00 */
  7143. #define RTC_TSTR_MNU RTC_TSTR_MNU_Msk
  7144. #define RTC_TSTR_MNU_0 (0x1UL << RTC_TSTR_MNU_Pos) /*!< 0x00000100 */
  7145. #define RTC_TSTR_MNU_1 (0x2UL << RTC_TSTR_MNU_Pos) /*!< 0x00000200 */
  7146. #define RTC_TSTR_MNU_2 (0x4UL << RTC_TSTR_MNU_Pos) /*!< 0x00000400 */
  7147. #define RTC_TSTR_MNU_3 (0x8UL << RTC_TSTR_MNU_Pos) /*!< 0x00000800 */
  7148. #define RTC_TSTR_ST_Pos (4U)
  7149. #define RTC_TSTR_ST_Msk (0x7UL << RTC_TSTR_ST_Pos) /*!< 0x00000070 */
  7150. #define RTC_TSTR_ST RTC_TSTR_ST_Msk
  7151. #define RTC_TSTR_ST_0 (0x1UL << RTC_TSTR_ST_Pos) /*!< 0x00000010 */
  7152. #define RTC_TSTR_ST_1 (0x2UL << RTC_TSTR_ST_Pos) /*!< 0x00000020 */
  7153. #define RTC_TSTR_ST_2 (0x4UL << RTC_TSTR_ST_Pos) /*!< 0x00000040 */
  7154. #define RTC_TSTR_SU_Pos (0U)
  7155. #define RTC_TSTR_SU_Msk (0xFUL << RTC_TSTR_SU_Pos) /*!< 0x0000000F */
  7156. #define RTC_TSTR_SU RTC_TSTR_SU_Msk
  7157. #define RTC_TSTR_SU_0 (0x1UL << RTC_TSTR_SU_Pos) /*!< 0x00000001 */
  7158. #define RTC_TSTR_SU_1 (0x2UL << RTC_TSTR_SU_Pos) /*!< 0x00000002 */
  7159. #define RTC_TSTR_SU_2 (0x4UL << RTC_TSTR_SU_Pos) /*!< 0x00000004 */
  7160. #define RTC_TSTR_SU_3 (0x8UL << RTC_TSTR_SU_Pos) /*!< 0x00000008 */
  7161. /******************** Bits definition for RTC_TSDR register *****************/
  7162. #define RTC_TSDR_WDU_Pos (13U)
  7163. #define RTC_TSDR_WDU_Msk (0x7UL << RTC_TSDR_WDU_Pos) /*!< 0x0000E000 */
  7164. #define RTC_TSDR_WDU RTC_TSDR_WDU_Msk /*!< Week day units > */
  7165. #define RTC_TSDR_WDU_0 (0x1UL << RTC_TSDR_WDU_Pos) /*!< 0x00002000 */
  7166. #define RTC_TSDR_WDU_1 (0x2UL << RTC_TSDR_WDU_Pos) /*!< 0x00004000 */
  7167. #define RTC_TSDR_WDU_2 (0x4UL << RTC_TSDR_WDU_Pos) /*!< 0x00008000 */
  7168. #define RTC_TSDR_MT_Pos (12U)
  7169. #define RTC_TSDR_MT_Msk (0x1UL << RTC_TSDR_MT_Pos) /*!< 0x00001000 */
  7170. #define RTC_TSDR_MT RTC_TSDR_MT_Msk
  7171. #define RTC_TSDR_MU_Pos (8U)
  7172. #define RTC_TSDR_MU_Msk (0xFUL << RTC_TSDR_MU_Pos) /*!< 0x00000F00 */
  7173. #define RTC_TSDR_MU RTC_TSDR_MU_Msk
  7174. #define RTC_TSDR_MU_0 (0x1UL << RTC_TSDR_MU_Pos) /*!< 0x00000100 */
  7175. #define RTC_TSDR_MU_1 (0x2UL << RTC_TSDR_MU_Pos) /*!< 0x00000200 */
  7176. #define RTC_TSDR_MU_2 (0x4UL << RTC_TSDR_MU_Pos) /*!< 0x00000400 */
  7177. #define RTC_TSDR_MU_3 (0x8UL << RTC_TSDR_MU_Pos) /*!< 0x00000800 */
  7178. #define RTC_TSDR_DT_Pos (4U)
  7179. #define RTC_TSDR_DT_Msk (0x3UL << RTC_TSDR_DT_Pos) /*!< 0x00000030 */
  7180. #define RTC_TSDR_DT RTC_TSDR_DT_Msk
  7181. #define RTC_TSDR_DT_0 (0x1UL << RTC_TSDR_DT_Pos) /*!< 0x00000010 */
  7182. #define RTC_TSDR_DT_1 (0x2UL << RTC_TSDR_DT_Pos) /*!< 0x00000020 */
  7183. #define RTC_TSDR_DU_Pos (0U)
  7184. #define RTC_TSDR_DU_Msk (0xFUL << RTC_TSDR_DU_Pos) /*!< 0x0000000F */
  7185. #define RTC_TSDR_DU RTC_TSDR_DU_Msk
  7186. #define RTC_TSDR_DU_0 (0x1UL << RTC_TSDR_DU_Pos) /*!< 0x00000001 */
  7187. #define RTC_TSDR_DU_1 (0x2UL << RTC_TSDR_DU_Pos) /*!< 0x00000002 */
  7188. #define RTC_TSDR_DU_2 (0x4UL << RTC_TSDR_DU_Pos) /*!< 0x00000004 */
  7189. #define RTC_TSDR_DU_3 (0x8UL << RTC_TSDR_DU_Pos) /*!< 0x00000008 */
  7190. /******************** Bits definition for RTC_TSSSR register ****************/
  7191. #define RTC_TSSSR_SS_Pos (0U)
  7192. #define RTC_TSSSR_SS_Msk (0xFFFFUL << RTC_TSSSR_SS_Pos) /*!< 0x0000FFFF */
  7193. #define RTC_TSSSR_SS RTC_TSSSR_SS_Msk /*!< Sub second value > */
  7194. /******************** Bits definition for RTC_ALRMAR register ***************/
  7195. #define RTC_ALRMAR_MSK4_Pos (31U)
  7196. #define RTC_ALRMAR_MSK4_Msk (0x1UL << RTC_ALRMAR_MSK4_Pos) /*!< 0x80000000 */
  7197. #define RTC_ALRMAR_MSK4 RTC_ALRMAR_MSK4_Msk
  7198. #define RTC_ALRMAR_WDSEL_Pos (30U)
  7199. #define RTC_ALRMAR_WDSEL_Msk (0x1UL << RTC_ALRMAR_WDSEL_Pos) /*!< 0x40000000 */
  7200. #define RTC_ALRMAR_WDSEL RTC_ALRMAR_WDSEL_Msk
  7201. #define RTC_ALRMAR_DT_Pos (28U)
  7202. #define RTC_ALRMAR_DT_Msk (0x3UL << RTC_ALRMAR_DT_Pos) /*!< 0x30000000 */
  7203. #define RTC_ALRMAR_DT RTC_ALRMAR_DT_Msk
  7204. #define RTC_ALRMAR_DT_0 (0x1UL << RTC_ALRMAR_DT_Pos) /*!< 0x10000000 */
  7205. #define RTC_ALRMAR_DT_1 (0x2UL << RTC_ALRMAR_DT_Pos) /*!< 0x20000000 */
  7206. #define RTC_ALRMAR_DU_Pos (24U)
  7207. #define RTC_ALRMAR_DU_Msk (0xFUL << RTC_ALRMAR_DU_Pos) /*!< 0x0F000000 */
  7208. #define RTC_ALRMAR_DU RTC_ALRMAR_DU_Msk
  7209. #define RTC_ALRMAR_DU_0 (0x1UL << RTC_ALRMAR_DU_Pos) /*!< 0x01000000 */
  7210. #define RTC_ALRMAR_DU_1 (0x2UL << RTC_ALRMAR_DU_Pos) /*!< 0x02000000 */
  7211. #define RTC_ALRMAR_DU_2 (0x4UL << RTC_ALRMAR_DU_Pos) /*!< 0x04000000 */
  7212. #define RTC_ALRMAR_DU_3 (0x8UL << RTC_ALRMAR_DU_Pos) /*!< 0x08000000 */
  7213. #define RTC_ALRMAR_MSK3_Pos (23U)
  7214. #define RTC_ALRMAR_MSK3_Msk (0x1UL << RTC_ALRMAR_MSK3_Pos) /*!< 0x00800000 */
  7215. #define RTC_ALRMAR_MSK3 RTC_ALRMAR_MSK3_Msk
  7216. #define RTC_ALRMAR_PM_Pos (22U)
  7217. #define RTC_ALRMAR_PM_Msk (0x1UL << RTC_ALRMAR_PM_Pos) /*!< 0x00400000 */
  7218. #define RTC_ALRMAR_PM RTC_ALRMAR_PM_Msk
  7219. #define RTC_ALRMAR_HT_Pos (20U)
  7220. #define RTC_ALRMAR_HT_Msk (0x3UL << RTC_ALRMAR_HT_Pos) /*!< 0x00300000 */
  7221. #define RTC_ALRMAR_HT RTC_ALRMAR_HT_Msk
  7222. #define RTC_ALRMAR_HT_0 (0x1UL << RTC_ALRMAR_HT_Pos) /*!< 0x00100000 */
  7223. #define RTC_ALRMAR_HT_1 (0x2UL << RTC_ALRMAR_HT_Pos) /*!< 0x00200000 */
  7224. #define RTC_ALRMAR_HU_Pos (16U)
  7225. #define RTC_ALRMAR_HU_Msk (0xFUL << RTC_ALRMAR_HU_Pos) /*!< 0x000F0000 */
  7226. #define RTC_ALRMAR_HU RTC_ALRMAR_HU_Msk
  7227. #define RTC_ALRMAR_HU_0 (0x1UL << RTC_ALRMAR_HU_Pos) /*!< 0x00010000 */
  7228. #define RTC_ALRMAR_HU_1 (0x2UL << RTC_ALRMAR_HU_Pos) /*!< 0x00020000 */
  7229. #define RTC_ALRMAR_HU_2 (0x4UL << RTC_ALRMAR_HU_Pos) /*!< 0x00040000 */
  7230. #define RTC_ALRMAR_HU_3 (0x8UL << RTC_ALRMAR_HU_Pos) /*!< 0x00080000 */
  7231. #define RTC_ALRMAR_MSK2_Pos (15U)
  7232. #define RTC_ALRMAR_MSK2_Msk (0x1UL << RTC_ALRMAR_MSK2_Pos) /*!< 0x00008000 */
  7233. #define RTC_ALRMAR_MSK2 RTC_ALRMAR_MSK2_Msk
  7234. #define RTC_ALRMAR_MNT_Pos (12U)
  7235. #define RTC_ALRMAR_MNT_Msk (0x7UL << RTC_ALRMAR_MNT_Pos) /*!< 0x00007000 */
  7236. #define RTC_ALRMAR_MNT RTC_ALRMAR_MNT_Msk
  7237. #define RTC_ALRMAR_MNT_0 (0x1UL << RTC_ALRMAR_MNT_Pos) /*!< 0x00001000 */
  7238. #define RTC_ALRMAR_MNT_1 (0x2UL << RTC_ALRMAR_MNT_Pos) /*!< 0x00002000 */
  7239. #define RTC_ALRMAR_MNT_2 (0x4UL << RTC_ALRMAR_MNT_Pos) /*!< 0x00004000 */
  7240. #define RTC_ALRMAR_MNU_Pos (8U)
  7241. #define RTC_ALRMAR_MNU_Msk (0xFUL << RTC_ALRMAR_MNU_Pos) /*!< 0x00000F00 */
  7242. #define RTC_ALRMAR_MNU RTC_ALRMAR_MNU_Msk
  7243. #define RTC_ALRMAR_MNU_0 (0x1UL << RTC_ALRMAR_MNU_Pos) /*!< 0x00000100 */
  7244. #define RTC_ALRMAR_MNU_1 (0x2UL << RTC_ALRMAR_MNU_Pos) /*!< 0x00000200 */
  7245. #define RTC_ALRMAR_MNU_2 (0x4UL << RTC_ALRMAR_MNU_Pos) /*!< 0x00000400 */
  7246. #define RTC_ALRMAR_MNU_3 (0x8UL << RTC_ALRMAR_MNU_Pos) /*!< 0x00000800 */
  7247. #define RTC_ALRMAR_MSK1_Pos (7U)
  7248. #define RTC_ALRMAR_MSK1_Msk (0x1UL << RTC_ALRMAR_MSK1_Pos) /*!< 0x00000080 */
  7249. #define RTC_ALRMAR_MSK1 RTC_ALRMAR_MSK1_Msk
  7250. #define RTC_ALRMAR_ST_Pos (4U)
  7251. #define RTC_ALRMAR_ST_Msk (0x7UL << RTC_ALRMAR_ST_Pos) /*!< 0x00000070 */
  7252. #define RTC_ALRMAR_ST RTC_ALRMAR_ST_Msk
  7253. #define RTC_ALRMAR_ST_0 (0x1UL << RTC_ALRMAR_ST_Pos) /*!< 0x00000010 */
  7254. #define RTC_ALRMAR_ST_1 (0x2UL << RTC_ALRMAR_ST_Pos) /*!< 0x00000020 */
  7255. #define RTC_ALRMAR_ST_2 (0x4UL << RTC_ALRMAR_ST_Pos) /*!< 0x00000040 */
  7256. #define RTC_ALRMAR_SU_Pos (0U)
  7257. #define RTC_ALRMAR_SU_Msk (0xFUL << RTC_ALRMAR_SU_Pos) /*!< 0x0000000F */
  7258. #define RTC_ALRMAR_SU RTC_ALRMAR_SU_Msk
  7259. #define RTC_ALRMAR_SU_0 (0x1UL << RTC_ALRMAR_SU_Pos) /*!< 0x00000001 */
  7260. #define RTC_ALRMAR_SU_1 (0x2UL << RTC_ALRMAR_SU_Pos) /*!< 0x00000002 */
  7261. #define RTC_ALRMAR_SU_2 (0x4UL << RTC_ALRMAR_SU_Pos) /*!< 0x00000004 */
  7262. #define RTC_ALRMAR_SU_3 (0x8UL << RTC_ALRMAR_SU_Pos) /*!< 0x00000008 */
  7263. /******************** Bits definition for RTC_ALRMASSR register *************/
  7264. #define RTC_ALRMASSR_MASKSS_Pos (24U)
  7265. #define RTC_ALRMASSR_MASKSS_Msk (0xFUL << RTC_ALRMASSR_MASKSS_Pos) /*!< 0x0F000000 */
  7266. #define RTC_ALRMASSR_MASKSS RTC_ALRMASSR_MASKSS_Msk
  7267. #define RTC_ALRMASSR_MASKSS_0 (0x1UL << RTC_ALRMASSR_MASKSS_Pos) /*!< 0x01000000 */
  7268. #define RTC_ALRMASSR_MASKSS_1 (0x2UL << RTC_ALRMASSR_MASKSS_Pos) /*!< 0x02000000 */
  7269. #define RTC_ALRMASSR_MASKSS_2 (0x4UL << RTC_ALRMASSR_MASKSS_Pos) /*!< 0x04000000 */
  7270. #define RTC_ALRMASSR_MASKSS_3 (0x8UL << RTC_ALRMASSR_MASKSS_Pos) /*!< 0x08000000 */
  7271. #define RTC_ALRMASSR_SS_Pos (0U)
  7272. #define RTC_ALRMASSR_SS_Msk (0x7FFFUL << RTC_ALRMASSR_SS_Pos) /*!< 0x00007FFF */
  7273. #define RTC_ALRMASSR_SS RTC_ALRMASSR_SS_Msk
  7274. /******************** Bits definition for RTC_ALRMBR register ***************/
  7275. #define RTC_ALRMBR_MSK4_Pos (31U)
  7276. #define RTC_ALRMBR_MSK4_Msk (0x1UL << RTC_ALRMBR_MSK4_Pos) /*!< 0x80000000 */
  7277. #define RTC_ALRMBR_MSK4 RTC_ALRMBR_MSK4_Msk
  7278. #define RTC_ALRMBR_WDSEL_Pos (30U)
  7279. #define RTC_ALRMBR_WDSEL_Msk (0x1UL << RTC_ALRMBR_WDSEL_Pos) /*!< 0x40000000 */
  7280. #define RTC_ALRMBR_WDSEL RTC_ALRMBR_WDSEL_Msk
  7281. #define RTC_ALRMBR_DT_Pos (28U)
  7282. #define RTC_ALRMBR_DT_Msk (0x3UL << RTC_ALRMBR_DT_Pos) /*!< 0x30000000 */
  7283. #define RTC_ALRMBR_DT RTC_ALRMBR_DT_Msk
  7284. #define RTC_ALRMBR_DT_0 (0x1UL << RTC_ALRMBR_DT_Pos) /*!< 0x10000000 */
  7285. #define RTC_ALRMBR_DT_1 (0x2UL << RTC_ALRMBR_DT_Pos) /*!< 0x20000000 */
  7286. #define RTC_ALRMBR_DU_Pos (24U)
  7287. #define RTC_ALRMBR_DU_Msk (0xFUL << RTC_ALRMBR_DU_Pos) /*!< 0x0F000000 */
  7288. #define RTC_ALRMBR_DU RTC_ALRMBR_DU_Msk
  7289. #define RTC_ALRMBR_DU_0 (0x1UL << RTC_ALRMBR_DU_Pos) /*!< 0x01000000 */
  7290. #define RTC_ALRMBR_DU_1 (0x2UL << RTC_ALRMBR_DU_Pos) /*!< 0x02000000 */
  7291. #define RTC_ALRMBR_DU_2 (0x4UL << RTC_ALRMBR_DU_Pos) /*!< 0x04000000 */
  7292. #define RTC_ALRMBR_DU_3 (0x8UL << RTC_ALRMBR_DU_Pos) /*!< 0x08000000 */
  7293. #define RTC_ALRMBR_MSK3_Pos (23U)
  7294. #define RTC_ALRMBR_MSK3_Msk (0x1UL << RTC_ALRMBR_MSK3_Pos) /*!< 0x00800000 */
  7295. #define RTC_ALRMBR_MSK3 RTC_ALRMBR_MSK3_Msk
  7296. #define RTC_ALRMBR_PM_Pos (22U)
  7297. #define RTC_ALRMBR_PM_Msk (0x1UL << RTC_ALRMBR_PM_Pos) /*!< 0x00400000 */
  7298. #define RTC_ALRMBR_PM RTC_ALRMBR_PM_Msk
  7299. #define RTC_ALRMBR_HT_Pos (20U)
  7300. #define RTC_ALRMBR_HT_Msk (0x3UL << RTC_ALRMBR_HT_Pos) /*!< 0x00300000 */
  7301. #define RTC_ALRMBR_HT RTC_ALRMBR_HT_Msk
  7302. #define RTC_ALRMBR_HT_0 (0x1UL << RTC_ALRMBR_HT_Pos) /*!< 0x00100000 */
  7303. #define RTC_ALRMBR_HT_1 (0x2UL << RTC_ALRMBR_HT_Pos) /*!< 0x00200000 */
  7304. #define RTC_ALRMBR_HU_Pos (16U)
  7305. #define RTC_ALRMBR_HU_Msk (0xFUL << RTC_ALRMBR_HU_Pos) /*!< 0x000F0000 */
  7306. #define RTC_ALRMBR_HU RTC_ALRMBR_HU_Msk
  7307. #define RTC_ALRMBR_HU_0 (0x1UL << RTC_ALRMBR_HU_Pos) /*!< 0x00010000 */
  7308. #define RTC_ALRMBR_HU_1 (0x2UL << RTC_ALRMBR_HU_Pos) /*!< 0x00020000 */
  7309. #define RTC_ALRMBR_HU_2 (0x4UL << RTC_ALRMBR_HU_Pos) /*!< 0x00040000 */
  7310. #define RTC_ALRMBR_HU_3 (0x8UL << RTC_ALRMBR_HU_Pos) /*!< 0x00080000 */
  7311. #define RTC_ALRMBR_MSK2_Pos (15U)
  7312. #define RTC_ALRMBR_MSK2_Msk (0x1UL << RTC_ALRMBR_MSK2_Pos) /*!< 0x00008000 */
  7313. #define RTC_ALRMBR_MSK2 RTC_ALRMBR_MSK2_Msk
  7314. #define RTC_ALRMBR_MNT_Pos (12U)
  7315. #define RTC_ALRMBR_MNT_Msk (0x7UL << RTC_ALRMBR_MNT_Pos) /*!< 0x00007000 */
  7316. #define RTC_ALRMBR_MNT RTC_ALRMBR_MNT_Msk
  7317. #define RTC_ALRMBR_MNT_0 (0x1UL << RTC_ALRMBR_MNT_Pos) /*!< 0x00001000 */
  7318. #define RTC_ALRMBR_MNT_1 (0x2UL << RTC_ALRMBR_MNT_Pos) /*!< 0x00002000 */
  7319. #define RTC_ALRMBR_MNT_2 (0x4UL << RTC_ALRMBR_MNT_Pos) /*!< 0x00004000 */
  7320. #define RTC_ALRMBR_MNU_Pos (8U)
  7321. #define RTC_ALRMBR_MNU_Msk (0xFUL << RTC_ALRMBR_MNU_Pos) /*!< 0x00000F00 */
  7322. #define RTC_ALRMBR_MNU RTC_ALRMBR_MNU_Msk
  7323. #define RTC_ALRMBR_MNU_0 (0x1UL << RTC_ALRMBR_MNU_Pos) /*!< 0x00000100 */
  7324. #define RTC_ALRMBR_MNU_1 (0x2UL << RTC_ALRMBR_MNU_Pos) /*!< 0x00000200 */
  7325. #define RTC_ALRMBR_MNU_2 (0x4UL << RTC_ALRMBR_MNU_Pos) /*!< 0x00000400 */
  7326. #define RTC_ALRMBR_MNU_3 (0x8UL << RTC_ALRMBR_MNU_Pos) /*!< 0x00000800 */
  7327. #define RTC_ALRMBR_MSK1_Pos (7U)
  7328. #define RTC_ALRMBR_MSK1_Msk (0x1UL << RTC_ALRMBR_MSK1_Pos) /*!< 0x00000080 */
  7329. #define RTC_ALRMBR_MSK1 RTC_ALRMBR_MSK1_Msk
  7330. #define RTC_ALRMBR_ST_Pos (4U)
  7331. #define RTC_ALRMBR_ST_Msk (0x7UL << RTC_ALRMBR_ST_Pos) /*!< 0x00000070 */
  7332. #define RTC_ALRMBR_ST RTC_ALRMBR_ST_Msk
  7333. #define RTC_ALRMBR_ST_0 (0x1UL << RTC_ALRMBR_ST_Pos) /*!< 0x00000010 */
  7334. #define RTC_ALRMBR_ST_1 (0x2UL << RTC_ALRMBR_ST_Pos) /*!< 0x00000020 */
  7335. #define RTC_ALRMBR_ST_2 (0x4UL << RTC_ALRMBR_ST_Pos) /*!< 0x00000040 */
  7336. #define RTC_ALRMBR_SU_Pos (0U)
  7337. #define RTC_ALRMBR_SU_Msk (0xFUL << RTC_ALRMBR_SU_Pos) /*!< 0x0000000F */
  7338. #define RTC_ALRMBR_SU RTC_ALRMBR_SU_Msk
  7339. #define RTC_ALRMBR_SU_0 (0x1UL << RTC_ALRMBR_SU_Pos) /*!< 0x00000001 */
  7340. #define RTC_ALRMBR_SU_1 (0x2UL << RTC_ALRMBR_SU_Pos) /*!< 0x00000002 */
  7341. #define RTC_ALRMBR_SU_2 (0x4UL << RTC_ALRMBR_SU_Pos) /*!< 0x00000004 */
  7342. #define RTC_ALRMBR_SU_3 (0x8UL << RTC_ALRMBR_SU_Pos) /*!< 0x00000008 */
  7343. /******************** Bits definition for RTC_ALRMASSR register *************/
  7344. #define RTC_ALRMBSSR_MASKSS_Pos (24U)
  7345. #define RTC_ALRMBSSR_MASKSS_Msk (0xFUL << RTC_ALRMBSSR_MASKSS_Pos) /*!< 0x0F000000 */
  7346. #define RTC_ALRMBSSR_MASKSS RTC_ALRMBSSR_MASKSS_Msk
  7347. #define RTC_ALRMBSSR_MASKSS_0 (0x1UL << RTC_ALRMBSSR_MASKSS_Pos) /*!< 0x01000000 */
  7348. #define RTC_ALRMBSSR_MASKSS_1 (0x2UL << RTC_ALRMBSSR_MASKSS_Pos) /*!< 0x02000000 */
  7349. #define RTC_ALRMBSSR_MASKSS_2 (0x4UL << RTC_ALRMBSSR_MASKSS_Pos) /*!< 0x04000000 */
  7350. #define RTC_ALRMBSSR_MASKSS_3 (0x8UL << RTC_ALRMBSSR_MASKSS_Pos) /*!< 0x08000000 */
  7351. #define RTC_ALRMBSSR_SS_Pos (0U)
  7352. #define RTC_ALRMBSSR_SS_Msk (0x7FFFUL << RTC_ALRMBSSR_SS_Pos) /*!< 0x00007FFF */
  7353. #define RTC_ALRMBSSR_SS RTC_ALRMBSSR_SS_Msk
  7354. /******************** Bits definition for RTC_SR register *******************/
  7355. #define RTC_SR_ITSF_Pos (5U)
  7356. #define RTC_SR_ITSF_Msk (0x1UL << RTC_SR_ITSF_Pos) /*!< 0x00000020 */
  7357. #define RTC_SR_ITSF RTC_SR_ITSF_Msk
  7358. #define RTC_SR_TSOVF_Pos (4U)
  7359. #define RTC_SR_TSOVF_Msk (0x1UL << RTC_SR_TSOVF_Pos) /*!< 0x00000010 */
  7360. #define RTC_SR_TSOVF RTC_SR_TSOVF_Msk /*!< Timestamp overflow flag > */
  7361. #define RTC_SR_TSF_Pos (3U)
  7362. #define RTC_SR_TSF_Msk (0x1UL << RTC_SR_TSF_Pos) /*!< 0x00000008 */
  7363. #define RTC_SR_TSF RTC_SR_TSF_Msk /*!< Timestamp flag > */
  7364. #define RTC_SR_WUTF_Pos (2U)
  7365. #define RTC_SR_WUTF_Msk (0x1UL << RTC_SR_WUTF_Pos) /*!< 0x00000004 */
  7366. #define RTC_SR_WUTF RTC_SR_WUTF_Msk /*!< Wakeup timer flag > */
  7367. #define RTC_SR_ALRBF_Pos (1U)
  7368. #define RTC_SR_ALRBF_Msk (0x1UL << RTC_SR_ALRBF_Pos) /*!< 0x00000002 */
  7369. #define RTC_SR_ALRBF RTC_SR_ALRBF_Msk
  7370. #define RTC_SR_ALRAF_Pos (0U)
  7371. #define RTC_SR_ALRAF_Msk (0x1UL << RTC_SR_ALRAF_Pos) /*!< 0x00000001 */
  7372. #define RTC_SR_ALRAF RTC_SR_ALRAF_Msk
  7373. /******************** Bits definition for RTC_MISR register *****************/
  7374. #define RTC_MISR_ITSMF_Pos (5U)
  7375. #define RTC_MISR_ITSMF_Msk (0x1UL << RTC_MISR_ITSMF_Pos) /*!< 0x00000020 */
  7376. #define RTC_MISR_ITSMF RTC_MISR_ITSMF_Msk
  7377. #define RTC_MISR_TSOVMF_Pos (4U)
  7378. #define RTC_MISR_TSOVMF_Msk (0x1UL << RTC_MISR_TSOVMF_Pos) /*!< 0x00000010 */
  7379. #define RTC_MISR_TSOVMF RTC_MISR_TSOVMF_Msk /*!< Timestamp overflow masked flag > */
  7380. #define RTC_MISR_TSMF_Pos (3U)
  7381. #define RTC_MISR_TSMF_Msk (0x1UL << RTC_MISR_TSMF_Pos) /*!< 0x00000008 */
  7382. #define RTC_MISR_TSMF RTC_MISR_TSMF_Msk /*!< Timestamp masked flag > */
  7383. #define RTC_MISR_WUTMF_Pos (2U)
  7384. #define RTC_MISR_WUTMF_Msk (0x1UL << RTC_MISR_WUTMF_Pos) /*!< 0x00000004 */
  7385. #define RTC_MISR_WUTMF RTC_MISR_WUTMF_Msk /*!< Wakeup timer masked flag > */
  7386. #define RTC_MISR_ALRBMF_Pos (1U)
  7387. #define RTC_MISR_ALRBMF_Msk (0x1UL << RTC_MISR_ALRBMF_Pos) /*!< 0x00000002 */
  7388. #define RTC_MISR_ALRBMF RTC_MISR_ALRBMF_Msk
  7389. #define RTC_MISR_ALRAMF_Pos (0U)
  7390. #define RTC_MISR_ALRAMF_Msk (0x1UL << RTC_MISR_ALRAMF_Pos) /*!< 0x00000001 */
  7391. #define RTC_MISR_ALRAMF RTC_MISR_ALRAMF_Msk
  7392. /******************** Bits definition for RTC_SCR register ******************/
  7393. #define RTC_SCR_CITSF_Pos (5U)
  7394. #define RTC_SCR_CITSF_Msk (0x1UL << RTC_SCR_CITSF_Pos) /*!< 0x00000020 */
  7395. #define RTC_SCR_CITSF RTC_SCR_CITSF_Msk
  7396. #define RTC_SCR_CTSOVF_Pos (4U)
  7397. #define RTC_SCR_CTSOVF_Msk (0x1UL << RTC_SCR_CTSOVF_Pos) /*!< 0x00000010 */
  7398. #define RTC_SCR_CTSOVF RTC_SCR_CTSOVF_Msk /*!< Clear timestamp overflow flag > */
  7399. #define RTC_SCR_CTSF_Pos (3U)
  7400. #define RTC_SCR_CTSF_Msk (0x1UL << RTC_SCR_CTSF_Pos) /*!< 0x00000008 */
  7401. #define RTC_SCR_CTSF RTC_SCR_CTSF_Msk /*!< Clear timestamp flag > */
  7402. #define RTC_SCR_CWUTF_Pos (2U)
  7403. #define RTC_SCR_CWUTF_Msk (0x1UL << RTC_SCR_CWUTF_Pos) /*!< 0x00000004 */
  7404. #define RTC_SCR_CWUTF RTC_SCR_CWUTF_Msk /*!< Clear wakeup timer flag > */
  7405. #define RTC_SCR_CALRBF_Pos (1U)
  7406. #define RTC_SCR_CALRBF_Msk (0x1UL << RTC_SCR_CALRBF_Pos) /*!< 0x00000002 */
  7407. #define RTC_SCR_CALRBF RTC_SCR_CALRBF_Msk
  7408. #define RTC_SCR_CALRAF_Pos (0U)
  7409. #define RTC_SCR_CALRAF_Msk (0x1UL << RTC_SCR_CALRAF_Pos) /*!< 0x00000001 */
  7410. #define RTC_SCR_CALRAF RTC_SCR_CALRAF_Msk
  7411. /******************************************************************************/
  7412. /* */
  7413. /* Tamper and backup register (TAMP) */
  7414. /* */
  7415. /******************************************************************************/
  7416. /******************** Bits definition for TAMP_CR1 register *****************/
  7417. #define TAMP_CR1_TAMP1E_Pos (0U)
  7418. #define TAMP_CR1_TAMP1E_Msk (0x1UL << TAMP_CR1_TAMP1E_Pos) /*!< 0x00000001 */
  7419. #define TAMP_CR1_TAMP1E TAMP_CR1_TAMP1E_Msk
  7420. #define TAMP_CR1_TAMP2E_Pos (1U)
  7421. #define TAMP_CR1_TAMP2E_Msk (0x1UL << TAMP_CR1_TAMP2E_Pos) /*!< 0x00000002 */
  7422. #define TAMP_CR1_TAMP2E TAMP_CR1_TAMP2E_Msk
  7423. #define TAMP_CR1_TAMP3E_Pos (2U)
  7424. #define TAMP_CR1_TAMP3E_Msk (0x1UL << TAMP_CR1_TAMP3E_Pos) /*!< 0x00000004 */
  7425. #define TAMP_CR1_TAMP3E TAMP_CR1_TAMP3E_Msk
  7426. #define TAMP_CR1_ITAMP3E_Pos (18U)
  7427. #define TAMP_CR1_ITAMP3E_Msk (0x1UL << TAMP_CR1_ITAMP3E_Pos) /*!< 0x00040000 */
  7428. #define TAMP_CR1_ITAMP3E TAMP_CR1_ITAMP3E_Msk
  7429. #define TAMP_CR1_ITAMP4E_Pos (19U)
  7430. #define TAMP_CR1_ITAMP4E_Msk (0x1UL << TAMP_CR1_ITAMP4E_Pos) /*!< 0x00080000 */
  7431. #define TAMP_CR1_ITAMP4E TAMP_CR1_ITAMP4E_Msk
  7432. #define TAMP_CR1_ITAMP5E_Pos (20U)
  7433. #define TAMP_CR1_ITAMP5E_Msk (0x1UL << TAMP_CR1_ITAMP5E_Pos) /*!< 0x00100000 */
  7434. #define TAMP_CR1_ITAMP5E TAMP_CR1_ITAMP5E_Msk
  7435. #define TAMP_CR1_ITAMP6E_Pos (21U)
  7436. #define TAMP_CR1_ITAMP6E_Msk (0x1UL << TAMP_CR1_ITAMP6E_Pos) /*!< 0x00200000 */
  7437. #define TAMP_CR1_ITAMP6E TAMP_CR1_ITAMP6E_Msk
  7438. /******************** Bits definition for TAMP_CR2 register *****************/
  7439. #define TAMP_CR2_TAMP1NOERASE_Pos (0U)
  7440. #define TAMP_CR2_TAMP1NOERASE_Msk (0x1UL << TAMP_CR2_TAMP1NOERASE_Pos) /*!< 0x00000001 */
  7441. #define TAMP_CR2_TAMP1NOERASE TAMP_CR2_TAMP1NOERASE_Msk
  7442. #define TAMP_CR2_TAMP2NOERASE_Pos (1U)
  7443. #define TAMP_CR2_TAMP2NOERASE_Msk (0x1UL << TAMP_CR2_TAMP2NOERASE_Pos) /*!< 0x00000002 */
  7444. #define TAMP_CR2_TAMP2NOERASE TAMP_CR2_TAMP2NOERASE_Msk
  7445. #define TAMP_CR2_TAMP3NOERASE_Pos (2U)
  7446. #define TAMP_CR2_TAMP3NOERASE_Msk (0x1UL << TAMP_CR2_TAMP3NOERASE_Pos) /*!< 0x00000004 */
  7447. #define TAMP_CR2_TAMP3NOERASE TAMP_CR2_TAMP3NOERASE_Msk
  7448. #define TAMP_CR2_TAMP1MSK_Pos (16U)
  7449. #define TAMP_CR2_TAMP1MSK_Msk (0x1UL << TAMP_CR2_TAMP1MSK_Pos) /*!< 0x00010000 */
  7450. #define TAMP_CR2_TAMP1MSK TAMP_CR2_TAMP1MSK_Msk
  7451. #define TAMP_CR2_TAMP2MSK_Pos (17U)
  7452. #define TAMP_CR2_TAMP2MSK_Msk (0x1UL << TAMP_CR2_TAMP2MSK_Pos) /*!< 0x00020000 */
  7453. #define TAMP_CR2_TAMP2MSK TAMP_CR2_TAMP2MSK_Msk
  7454. #define TAMP_CR2_TAMP3MSK_Pos (18U)
  7455. #define TAMP_CR2_TAMP3MSK_Msk (0x1UL << TAMP_CR2_TAMP3MSK_Pos) /*!< 0x00040000 */
  7456. #define TAMP_CR2_TAMP3MSK TAMP_CR2_TAMP3MSK_Msk
  7457. #define TAMP_CR2_TAMP1TRG_Pos (24U)
  7458. #define TAMP_CR2_TAMP1TRG_Msk (0x1UL << TAMP_CR2_TAMP1TRG_Pos) /*!< 0x01000000 */
  7459. #define TAMP_CR2_TAMP1TRG TAMP_CR2_TAMP1TRG_Msk
  7460. #define TAMP_CR2_TAMP2TRG_Pos (25U)
  7461. #define TAMP_CR2_TAMP2TRG_Msk (0x1UL << TAMP_CR2_TAMP2TRG_Pos) /*!< 0x02000000 */
  7462. #define TAMP_CR2_TAMP2TRG TAMP_CR2_TAMP2TRG_Msk
  7463. #define TAMP_CR2_TAMP3TRG_Pos (26U)
  7464. #define TAMP_CR2_TAMP3TRG_Msk (0x1UL << TAMP_CR2_TAMP3TRG_Pos) /*!< 0x04000000 */
  7465. #define TAMP_CR2_TAMP3TRG TAMP_CR2_TAMP3TRG_Msk
  7466. /******************** Bits definition for TAMP_FLTCR register ***************/
  7467. #define TAMP_FLTCR_TAMPFREQ_0 0x00000001U
  7468. #define TAMP_FLTCR_TAMPFREQ_1 0x00000002U
  7469. #define TAMP_FLTCR_TAMPFREQ_2 0x00000004U
  7470. #define TAMP_FLTCR_TAMPFREQ_Pos (0U)
  7471. #define TAMP_FLTCR_TAMPFREQ_Msk (0x7UL << TAMP_FLTCR_TAMPFREQ_Pos) /*!< 0x00000007 */
  7472. #define TAMP_FLTCR_TAMPFREQ TAMP_FLTCR_TAMPFREQ_Msk
  7473. #define TAMP_FLTCR_TAMPFLT_0 0x00000008U
  7474. #define TAMP_FLTCR_TAMPFLT_1 0x00000010U
  7475. #define TAMP_FLTCR_TAMPFLT_Pos (3U)
  7476. #define TAMP_FLTCR_TAMPFLT_Msk (0x3UL << TAMP_FLTCR_TAMPFLT_Pos) /*!< 0x00000018 */
  7477. #define TAMP_FLTCR_TAMPFLT TAMP_FLTCR_TAMPFLT_Msk
  7478. #define TAMP_FLTCR_TAMPPRCH_0 0x00000020U
  7479. #define TAMP_FLTCR_TAMPPRCH_1 0x00000040U
  7480. #define TAMP_FLTCR_TAMPPRCH_Pos (5U)
  7481. #define TAMP_FLTCR_TAMPPRCH_Msk (0x3UL << TAMP_FLTCR_TAMPPRCH_Pos) /*!< 0x00000060 */
  7482. #define TAMP_FLTCR_TAMPPRCH TAMP_FLTCR_TAMPPRCH_Msk
  7483. #define TAMP_FLTCR_TAMPPUDIS_Pos (7U)
  7484. #define TAMP_FLTCR_TAMPPUDIS_Msk (0x1UL << TAMP_FLTCR_TAMPPUDIS_Pos) /*!< 0x00000080 */
  7485. #define TAMP_FLTCR_TAMPPUDIS TAMP_FLTCR_TAMPPUDIS_Msk
  7486. /******************** Bits definition for TAMP_IER register *****************/
  7487. #define TAMP_IER_TAMP1IE_Pos (0U)
  7488. #define TAMP_IER_TAMP1IE_Msk (0x1UL << TAMP_IER_TAMP1IE_Pos) /*!< 0x00000001 */
  7489. #define TAMP_IER_TAMP1IE TAMP_IER_TAMP1IE_Msk
  7490. #define TAMP_IER_TAMP2IE_Pos (1U)
  7491. #define TAMP_IER_TAMP2IE_Msk (0x1UL << TAMP_IER_TAMP2IE_Pos) /*!< 0x00000002 */
  7492. #define TAMP_IER_TAMP2IE TAMP_IER_TAMP2IE_Msk
  7493. #define TAMP_IER_TAMP3IE_Pos (2U)
  7494. #define TAMP_IER_TAMP3IE_Msk (0x1UL << TAMP_IER_TAMP3IE_Pos) /*!< 0x00000004 */
  7495. #define TAMP_IER_TAMP3IE TAMP_IER_TAMP3IE_Msk
  7496. #define TAMP_IER_ITAMP3IE_Pos (18U)
  7497. #define TAMP_IER_ITAMP3IE_Msk (0x1UL << TAMP_IER_ITAMP3IE_Pos) /*!< 0x00040000 */
  7498. #define TAMP_IER_ITAMP3IE TAMP_IER_ITAMP3IE_Msk
  7499. #define TAMP_IER_ITAMP4IE_Pos (19U)
  7500. #define TAMP_IER_ITAMP4IE_Msk (0x1UL << TAMP_IER_ITAMP4IE_Pos) /*!< 0x00080000 */
  7501. #define TAMP_IER_ITAMP4IE TAMP_IER_ITAMP4IE_Msk
  7502. #define TAMP_IER_ITAMP5IE_Pos (20U)
  7503. #define TAMP_IER_ITAMP5IE_Msk (0x1UL << TAMP_IER_ITAMP5IE_Pos) /*!< 0x00100000 */
  7504. #define TAMP_IER_ITAMP5IE TAMP_IER_ITAMP5IE_Msk
  7505. #define TAMP_IER_ITAMP6IE_Pos (21U)
  7506. #define TAMP_IER_ITAMP6IE_Msk (0x1UL << TAMP_IER_ITAMP6IE_Pos) /*!< 0x00200000 */
  7507. #define TAMP_IER_ITAMP6IE TAMP_IER_ITAMP6IE_Msk
  7508. /******************** Bits definition for TAMP_SR register ******************/
  7509. #define TAMP_SR_TAMP1F_Pos (0U)
  7510. #define TAMP_SR_TAMP1F_Msk (0x1UL << TAMP_SR_TAMP1F_Pos) /*!< 0x00000001 */
  7511. #define TAMP_SR_TAMP1F TAMP_SR_TAMP1F_Msk
  7512. #define TAMP_SR_TAMP2F_Pos (1U)
  7513. #define TAMP_SR_TAMP2F_Msk (0x1UL << TAMP_SR_TAMP2F_Pos) /*!< 0x00000002 */
  7514. #define TAMP_SR_TAMP2F TAMP_SR_TAMP2F_Msk
  7515. #define TAMP_SR_TAMP3F_Pos (2U)
  7516. #define TAMP_SR_TAMP3F_Msk (0x1UL << TAMP_SR_TAMP3F_Pos) /*!< 0x00000004 */
  7517. #define TAMP_SR_TAMP3F TAMP_SR_TAMP3F_Msk
  7518. #define TAMP_SR_ITAMP3F_Pos (18U)
  7519. #define TAMP_SR_ITAMP3F_Msk (0x1UL << TAMP_SR_ITAMP3F_Pos) /*!< 0x00040000 */
  7520. #define TAMP_SR_ITAMP3F TAMP_SR_ITAMP3F_Msk
  7521. #define TAMP_SR_ITAMP4F_Pos (19U)
  7522. #define TAMP_SR_ITAMP4F_Msk (0x1UL << TAMP_SR_ITAMP4F_Pos) /*!< 0x00080000 */
  7523. #define TAMP_SR_ITAMP4F TAMP_SR_ITAMP4F_Msk
  7524. #define TAMP_SR_ITAMP5F_Pos (20U)
  7525. #define TAMP_SR_ITAMP5F_Msk (0x1UL << TAMP_SR_ITAMP5F_Pos) /*!< 0x00100000 */
  7526. #define TAMP_SR_ITAMP5F TAMP_SR_ITAMP5F_Msk
  7527. #define TAMP_SR_ITAMP6F_Pos (21U)
  7528. #define TAMP_SR_ITAMP6F_Msk (0x1UL << TAMP_SR_ITAMP6F_Pos) /*!< 0x00200000 */
  7529. #define TAMP_SR_ITAMP6F TAMP_SR_ITAMP6F_Msk
  7530. /******************** Bits definition for TAMP_MISR register ****************/
  7531. #define TAMP_MISR_TAMP1MF_Pos (0U)
  7532. #define TAMP_MISR_TAMP1MF_Msk (0x1UL << TAMP_MISR_TAMP1MF_Pos) /*!< 0x00000001 */
  7533. #define TAMP_MISR_TAMP1MF TAMP_MISR_TAMP1MF_Msk
  7534. #define TAMP_MISR_TAMP2MF_Pos (1U)
  7535. #define TAMP_MISR_TAMP2MF_Msk (0x1UL << TAMP_MISR_TAMP2MF_Pos) /*!< 0x00000002 */
  7536. #define TAMP_MISR_TAMP2MF TAMP_MISR_TAMP2MF_Msk
  7537. #define TAMP_MISR_TAMP3MF_Pos (2U)
  7538. #define TAMP_MISR_TAMP3MF_Msk (0x1UL << TAMP_MISR_TAMP3MF_Pos) /*!< 0x00000004 */
  7539. #define TAMP_MISR_TAMP3MF TAMP_MISR_TAMP3MF_Msk
  7540. #define TAMP_MISR_ITAMP3MF_Pos (18U)
  7541. #define TAMP_MISR_ITAMP3MF_Msk (0x1UL << TAMP_MISR_ITAMP3MF_Pos) /*!< 0x00040000 */
  7542. #define TAMP_MISR_ITAMP3MF TAMP_MISR_ITAMP3MF_Msk
  7543. #define TAMP_MISR_ITAMP4MF_Pos (19U)
  7544. #define TAMP_MISR_ITAMP4MF_Msk (0x1UL << TAMP_MISR_ITAMP4MF_Pos) /*!< 0x00080000 */
  7545. #define TAMP_MISR_ITAMP4MF TAMP_MISR_ITAMP4MF_Msk
  7546. #define TAMP_MISR_ITAMP5MF_Pos (20U)
  7547. #define TAMP_MISR_ITAMP5MF_Msk (0x1UL << TAMP_MISR_ITAMP5MF_Pos) /*!< 0x00100000 */
  7548. #define TAMP_MISR_ITAMP5MF TAMP_MISR_ITAMP5MF_Msk
  7549. #define TAMP_MISR_ITAMP6MF_Pos (21U)
  7550. #define TAMP_MISR_ITAMP6MF_Msk (0x1UL << TAMP_MISR_ITAMP6MF_Pos) /*!< 0x00200000 */
  7551. #define TAMP_MISR_ITAMP6MF TAMP_MISR_ITAMP6MF_Msk
  7552. /******************** Bits definition for TAMP_SCR register *****************/
  7553. #define TAMP_SCR_CTAMP1F_Pos (0U)
  7554. #define TAMP_SCR_CTAMP1F_Msk (0x1UL << TAMP_SCR_CTAMP1F_Pos) /*!< 0x00000001 */
  7555. #define TAMP_SCR_CTAMP1F TAMP_SCR_CTAMP1F_Msk
  7556. #define TAMP_SCR_CTAMP2F_Pos (1U)
  7557. #define TAMP_SCR_CTAMP2F_Msk (0x1UL << TAMP_SCR_CTAMP2F_Pos) /*!< 0x00000002 */
  7558. #define TAMP_SCR_CTAMP2F TAMP_SCR_CTAMP2F_Msk
  7559. #define TAMP_SCR_CTAMP3F_Pos (2U)
  7560. #define TAMP_SCR_CTAMP3F_Msk (0x1UL << TAMP_SCR_CTAMP3F_Pos) /*!< 0x00000004 */
  7561. #define TAMP_SCR_CTAMP3F TAMP_SCR_CTAMP3F_Msk
  7562. #define TAMP_SCR_CITAMP3F_Pos (18U)
  7563. #define TAMP_SCR_CITAMP3F_Msk (0x1UL << TAMP_SCR_CITAMP3F_Pos) /*!< 0x00040000 */
  7564. #define TAMP_SCR_CITAMP3F TAMP_SCR_CITAMP3F_Msk
  7565. #define TAMP_SCR_CITAMP4F_Pos (19U)
  7566. #define TAMP_SCR_CITAMP4F_Msk (0x1UL << TAMP_SCR_CITAMP4F_Pos) /*!< 0x00080000 */
  7567. #define TAMP_SCR_CITAMP4F TAMP_SCR_CITAMP4F_Msk
  7568. #define TAMP_SCR_CITAMP5F_Pos (20U)
  7569. #define TAMP_SCR_CITAMP5F_Msk (0x1UL << TAMP_SCR_CITAMP5F_Pos) /*!< 0x00100000 */
  7570. #define TAMP_SCR_CITAMP5F TAMP_SCR_CITAMP5F_Msk
  7571. #define TAMP_SCR_CITAMP6F_Pos (21U)
  7572. #define TAMP_SCR_CITAMP6F_Msk (0x1UL << TAMP_SCR_CITAMP6F_Pos) /*!< 0x00200000 */
  7573. #define TAMP_SCR_CITAMP6F TAMP_SCR_CITAMP6F_Msk
  7574. /******************** Bits definition for TAMP_BKP0R register ***************/
  7575. #define TAMP_BKP0R_Pos (0U)
  7576. #define TAMP_BKP0R_Msk (0xFFFFFFFFUL << TAMP_BKP0R_Pos) /*!< 0xFFFFFFFF */
  7577. #define TAMP_BKP0R TAMP_BKP0R_Msk
  7578. /******************** Bits definition for TAMP_BKP1R register ***************/
  7579. #define TAMP_BKP1R_Pos (0U)
  7580. #define TAMP_BKP1R_Msk (0xFFFFFFFFUL << TAMP_BKP1R_Pos) /*!< 0xFFFFFFFF */
  7581. #define TAMP_BKP1R TAMP_BKP1R_Msk
  7582. /******************** Bits definition for TAMP_BKP2R register ***************/
  7583. #define TAMP_BKP2R_Pos (0U)
  7584. #define TAMP_BKP2R_Msk (0xFFFFFFFFUL << TAMP_BKP2R_Pos) /*!< 0xFFFFFFFF */
  7585. #define TAMP_BKP2R TAMP_BKP2R_Msk
  7586. /******************** Bits definition for TAMP_BKP3R register ***************/
  7587. #define TAMP_BKP3R_Pos (0U)
  7588. #define TAMP_BKP3R_Msk (0xFFFFFFFFUL << TAMP_BKP3R_Pos) /*!< 0xFFFFFFFF */
  7589. #define TAMP_BKP3R TAMP_BKP3R_Msk
  7590. /******************** Bits definition for TAMP_BKP4R register ***************/
  7591. #define TAMP_BKP4R_Pos (0U)
  7592. #define TAMP_BKP4R_Msk (0xFFFFFFFFUL << TAMP_BKP4R_Pos) /*!< 0xFFFFFFFF */
  7593. #define TAMP_BKP4R TAMP_BKP4R_Msk
  7594. /******************************************************************************/
  7595. /* */
  7596. /* Serial Peripheral Interface (SPI) */
  7597. /* */
  7598. /******************************************************************************/
  7599. /*
  7600. * @brief Specific device feature definitions (not present on all devices in the STM32G0 series)
  7601. */
  7602. #define SPI_I2S_SUPPORT /*!< I2S support */
  7603. /******************* Bit definition for SPI_CR1 register ********************/
  7604. #define SPI_CR1_CPHA_Pos (0U)
  7605. #define SPI_CR1_CPHA_Msk (0x1UL << SPI_CR1_CPHA_Pos) /*!< 0x00000001 */
  7606. #define SPI_CR1_CPHA SPI_CR1_CPHA_Msk /*!<Clock Phase */
  7607. #define SPI_CR1_CPOL_Pos (1U)
  7608. #define SPI_CR1_CPOL_Msk (0x1UL << SPI_CR1_CPOL_Pos) /*!< 0x00000002 */
  7609. #define SPI_CR1_CPOL SPI_CR1_CPOL_Msk /*!<Clock Polarity */
  7610. #define SPI_CR1_MSTR_Pos (2U)
  7611. #define SPI_CR1_MSTR_Msk (0x1UL << SPI_CR1_MSTR_Pos) /*!< 0x00000004 */
  7612. #define SPI_CR1_MSTR SPI_CR1_MSTR_Msk /*!<Master Selection */
  7613. #define SPI_CR1_BR_Pos (3U)
  7614. #define SPI_CR1_BR_Msk (0x7UL << SPI_CR1_BR_Pos) /*!< 0x00000038 */
  7615. #define SPI_CR1_BR SPI_CR1_BR_Msk /*!<BR[2:0] bits (Baud Rate Control) */
  7616. #define SPI_CR1_BR_0 (0x1UL << SPI_CR1_BR_Pos) /*!< 0x00000008 */
  7617. #define SPI_CR1_BR_1 (0x2UL << SPI_CR1_BR_Pos) /*!< 0x00000010 */
  7618. #define SPI_CR1_BR_2 (0x4UL << SPI_CR1_BR_Pos) /*!< 0x00000020 */
  7619. #define SPI_CR1_SPE_Pos (6U)
  7620. #define SPI_CR1_SPE_Msk (0x1UL << SPI_CR1_SPE_Pos) /*!< 0x00000040 */
  7621. #define SPI_CR1_SPE SPI_CR1_SPE_Msk /*!<SPI Enable */
  7622. #define SPI_CR1_LSBFIRST_Pos (7U)
  7623. #define SPI_CR1_LSBFIRST_Msk (0x1UL << SPI_CR1_LSBFIRST_Pos) /*!< 0x00000080 */
  7624. #define SPI_CR1_LSBFIRST SPI_CR1_LSBFIRST_Msk /*!<Frame Format */
  7625. #define SPI_CR1_SSI_Pos (8U)
  7626. #define SPI_CR1_SSI_Msk (0x1UL << SPI_CR1_SSI_Pos) /*!< 0x00000100 */
  7627. #define SPI_CR1_SSI SPI_CR1_SSI_Msk /*!<Internal slave select */
  7628. #define SPI_CR1_SSM_Pos (9U)
  7629. #define SPI_CR1_SSM_Msk (0x1UL << SPI_CR1_SSM_Pos) /*!< 0x00000200 */
  7630. #define SPI_CR1_SSM SPI_CR1_SSM_Msk /*!<Software slave management */
  7631. #define SPI_CR1_RXONLY_Pos (10U)
  7632. #define SPI_CR1_RXONLY_Msk (0x1UL << SPI_CR1_RXONLY_Pos) /*!< 0x00000400 */
  7633. #define SPI_CR1_RXONLY SPI_CR1_RXONLY_Msk /*!<Receive only */
  7634. #define SPI_CR1_CRCL_Pos (11U)
  7635. #define SPI_CR1_CRCL_Msk (0x1UL << SPI_CR1_CRCL_Pos) /*!< 0x00000800 */
  7636. #define SPI_CR1_CRCL SPI_CR1_CRCL_Msk /*!< CRC Length */
  7637. #define SPI_CR1_CRCNEXT_Pos (12U)
  7638. #define SPI_CR1_CRCNEXT_Msk (0x1UL << SPI_CR1_CRCNEXT_Pos) /*!< 0x00001000 */
  7639. #define SPI_CR1_CRCNEXT SPI_CR1_CRCNEXT_Msk /*!<Transmit CRC next */
  7640. #define SPI_CR1_CRCEN_Pos (13U)
  7641. #define SPI_CR1_CRCEN_Msk (0x1UL << SPI_CR1_CRCEN_Pos) /*!< 0x00002000 */
  7642. #define SPI_CR1_CRCEN SPI_CR1_CRCEN_Msk /*!<Hardware CRC calculation enable */
  7643. #define SPI_CR1_BIDIOE_Pos (14U)
  7644. #define SPI_CR1_BIDIOE_Msk (0x1UL << SPI_CR1_BIDIOE_Pos) /*!< 0x00004000 */
  7645. #define SPI_CR1_BIDIOE SPI_CR1_BIDIOE_Msk /*!<Output enable in bidirectional mode */
  7646. #define SPI_CR1_BIDIMODE_Pos (15U)
  7647. #define SPI_CR1_BIDIMODE_Msk (0x1UL << SPI_CR1_BIDIMODE_Pos) /*!< 0x00008000 */
  7648. #define SPI_CR1_BIDIMODE SPI_CR1_BIDIMODE_Msk /*!<Bidirectional data mode enable */
  7649. /******************* Bit definition for SPI_CR2 register ********************/
  7650. #define SPI_CR2_RXDMAEN_Pos (0U)
  7651. #define SPI_CR2_RXDMAEN_Msk (0x1UL << SPI_CR2_RXDMAEN_Pos) /*!< 0x00000001 */
  7652. #define SPI_CR2_RXDMAEN SPI_CR2_RXDMAEN_Msk /*!< Rx Buffer DMA Enable */
  7653. #define SPI_CR2_TXDMAEN_Pos (1U)
  7654. #define SPI_CR2_TXDMAEN_Msk (0x1UL << SPI_CR2_TXDMAEN_Pos) /*!< 0x00000002 */
  7655. #define SPI_CR2_TXDMAEN SPI_CR2_TXDMAEN_Msk /*!< Tx Buffer DMA Enable */
  7656. #define SPI_CR2_SSOE_Pos (2U)
  7657. #define SPI_CR2_SSOE_Msk (0x1UL << SPI_CR2_SSOE_Pos) /*!< 0x00000004 */
  7658. #define SPI_CR2_SSOE SPI_CR2_SSOE_Msk /*!< SS Output Enable */
  7659. #define SPI_CR2_NSSP_Pos (3U)
  7660. #define SPI_CR2_NSSP_Msk (0x1UL << SPI_CR2_NSSP_Pos) /*!< 0x00000008 */
  7661. #define SPI_CR2_NSSP SPI_CR2_NSSP_Msk /*!< NSS pulse management Enable */
  7662. #define SPI_CR2_FRF_Pos (4U)
  7663. #define SPI_CR2_FRF_Msk (0x1UL << SPI_CR2_FRF_Pos) /*!< 0x00000010 */
  7664. #define SPI_CR2_FRF SPI_CR2_FRF_Msk /*!< Frame Format Enable */
  7665. #define SPI_CR2_ERRIE_Pos (5U)
  7666. #define SPI_CR2_ERRIE_Msk (0x1UL << SPI_CR2_ERRIE_Pos) /*!< 0x00000020 */
  7667. #define SPI_CR2_ERRIE SPI_CR2_ERRIE_Msk /*!< Error Interrupt Enable */
  7668. #define SPI_CR2_RXNEIE_Pos (6U)
  7669. #define SPI_CR2_RXNEIE_Msk (0x1UL << SPI_CR2_RXNEIE_Pos) /*!< 0x00000040 */
  7670. #define SPI_CR2_RXNEIE SPI_CR2_RXNEIE_Msk /*!< RX buffer Not Empty Interrupt Enable */
  7671. #define SPI_CR2_TXEIE_Pos (7U)
  7672. #define SPI_CR2_TXEIE_Msk (0x1UL << SPI_CR2_TXEIE_Pos) /*!< 0x00000080 */
  7673. #define SPI_CR2_TXEIE SPI_CR2_TXEIE_Msk /*!< Tx buffer Empty Interrupt Enable */
  7674. #define SPI_CR2_DS_Pos (8U)
  7675. #define SPI_CR2_DS_Msk (0xFUL << SPI_CR2_DS_Pos) /*!< 0x00000F00 */
  7676. #define SPI_CR2_DS SPI_CR2_DS_Msk /*!< DS[3:0] Data Size */
  7677. #define SPI_CR2_DS_0 (0x1UL << SPI_CR2_DS_Pos) /*!< 0x00000100 */
  7678. #define SPI_CR2_DS_1 (0x2UL << SPI_CR2_DS_Pos) /*!< 0x00000200 */
  7679. #define SPI_CR2_DS_2 (0x4UL << SPI_CR2_DS_Pos) /*!< 0x00000400 */
  7680. #define SPI_CR2_DS_3 (0x8UL << SPI_CR2_DS_Pos) /*!< 0x00000800 */
  7681. #define SPI_CR2_FRXTH_Pos (12U)
  7682. #define SPI_CR2_FRXTH_Msk (0x1UL << SPI_CR2_FRXTH_Pos) /*!< 0x00001000 */
  7683. #define SPI_CR2_FRXTH SPI_CR2_FRXTH_Msk /*!< FIFO reception Threshold */
  7684. #define SPI_CR2_LDMARX_Pos (13U)
  7685. #define SPI_CR2_LDMARX_Msk (0x1UL << SPI_CR2_LDMARX_Pos) /*!< 0x00002000 */
  7686. #define SPI_CR2_LDMARX SPI_CR2_LDMARX_Msk /*!< Last DMA transfer for reception */
  7687. #define SPI_CR2_LDMATX_Pos (14U)
  7688. #define SPI_CR2_LDMATX_Msk (0x1UL << SPI_CR2_LDMATX_Pos) /*!< 0x00004000 */
  7689. #define SPI_CR2_LDMATX SPI_CR2_LDMATX_Msk /*!< Last DMA transfer for transmission */
  7690. /******************** Bit definition for SPI_SR register ********************/
  7691. #define SPI_SR_RXNE_Pos (0U)
  7692. #define SPI_SR_RXNE_Msk (0x1UL << SPI_SR_RXNE_Pos) /*!< 0x00000001 */
  7693. #define SPI_SR_RXNE SPI_SR_RXNE_Msk /*!< Receive buffer Not Empty */
  7694. #define SPI_SR_TXE_Pos (1U)
  7695. #define SPI_SR_TXE_Msk (0x1UL << SPI_SR_TXE_Pos) /*!< 0x00000002 */
  7696. #define SPI_SR_TXE SPI_SR_TXE_Msk /*!< Transmit buffer Empty */
  7697. #define SPI_SR_CHSIDE_Pos (2U)
  7698. #define SPI_SR_CHSIDE_Msk (0x1UL << SPI_SR_CHSIDE_Pos) /*!< 0x00000004 */
  7699. #define SPI_SR_CHSIDE SPI_SR_CHSIDE_Msk /*!< Channel side */
  7700. #define SPI_SR_UDR_Pos (3U)
  7701. #define SPI_SR_UDR_Msk (0x1UL << SPI_SR_UDR_Pos) /*!< 0x00000008 */
  7702. #define SPI_SR_UDR SPI_SR_UDR_Msk /*!< Underrun flag */
  7703. #define SPI_SR_CRCERR_Pos (4U)
  7704. #define SPI_SR_CRCERR_Msk (0x1UL << SPI_SR_CRCERR_Pos) /*!< 0x00000010 */
  7705. #define SPI_SR_CRCERR SPI_SR_CRCERR_Msk /*!< CRC Error flag */
  7706. #define SPI_SR_MODF_Pos (5U)
  7707. #define SPI_SR_MODF_Msk (0x1UL << SPI_SR_MODF_Pos) /*!< 0x00000020 */
  7708. #define SPI_SR_MODF SPI_SR_MODF_Msk /*!< Mode fault */
  7709. #define SPI_SR_OVR_Pos (6U)
  7710. #define SPI_SR_OVR_Msk (0x1UL << SPI_SR_OVR_Pos) /*!< 0x00000040 */
  7711. #define SPI_SR_OVR SPI_SR_OVR_Msk /*!< Overrun flag */
  7712. #define SPI_SR_BSY_Pos (7U)
  7713. #define SPI_SR_BSY_Msk (0x1UL << SPI_SR_BSY_Pos) /*!< 0x00000080 */
  7714. #define SPI_SR_BSY SPI_SR_BSY_Msk /*!< Busy flag */
  7715. #define SPI_SR_FRE_Pos (8U)
  7716. #define SPI_SR_FRE_Msk (0x1UL << SPI_SR_FRE_Pos) /*!< 0x00000100 */
  7717. #define SPI_SR_FRE SPI_SR_FRE_Msk /*!< TI frame format error */
  7718. #define SPI_SR_FRLVL_Pos (9U)
  7719. #define SPI_SR_FRLVL_Msk (0x3UL << SPI_SR_FRLVL_Pos) /*!< 0x00000600 */
  7720. #define SPI_SR_FRLVL SPI_SR_FRLVL_Msk /*!< FIFO Reception Level */
  7721. #define SPI_SR_FRLVL_0 (0x1UL << SPI_SR_FRLVL_Pos) /*!< 0x00000200 */
  7722. #define SPI_SR_FRLVL_1 (0x2UL << SPI_SR_FRLVL_Pos) /*!< 0x00000400 */
  7723. #define SPI_SR_FTLVL_Pos (11U)
  7724. #define SPI_SR_FTLVL_Msk (0x3UL << SPI_SR_FTLVL_Pos) /*!< 0x00001800 */
  7725. #define SPI_SR_FTLVL SPI_SR_FTLVL_Msk /*!< FIFO Transmission Level */
  7726. #define SPI_SR_FTLVL_0 (0x1UL << SPI_SR_FTLVL_Pos) /*!< 0x00000800 */
  7727. #define SPI_SR_FTLVL_1 (0x2UL << SPI_SR_FTLVL_Pos) /*!< 0x00001000 */
  7728. /******************** Bit definition for SPI_DR register ********************/
  7729. #define SPI_DR_DR_Pos (0U)
  7730. #define SPI_DR_DR_Msk (0xFFFFUL << SPI_DR_DR_Pos) /*!< 0x0000FFFF */
  7731. #define SPI_DR_DR SPI_DR_DR_Msk /*!<Data Register */
  7732. /******************* Bit definition for SPI_CRCPR register ******************/
  7733. #define SPI_CRCPR_CRCPOLY_Pos (0U)
  7734. #define SPI_CRCPR_CRCPOLY_Msk (0xFFFFUL << SPI_CRCPR_CRCPOLY_Pos) /*!< 0x0000FFFF */
  7735. #define SPI_CRCPR_CRCPOLY SPI_CRCPR_CRCPOLY_Msk /*!<CRC polynomial register */
  7736. /****************** Bit definition for SPI_RXCRCR register ******************/
  7737. #define SPI_RXCRCR_RXCRC_Pos (0U)
  7738. #define SPI_RXCRCR_RXCRC_Msk (0xFFFFUL << SPI_RXCRCR_RXCRC_Pos) /*!< 0x0000FFFF */
  7739. #define SPI_RXCRCR_RXCRC SPI_RXCRCR_RXCRC_Msk /*!<Rx CRC Register */
  7740. /****************** Bit definition for SPI_TXCRCR register ******************/
  7741. #define SPI_TXCRCR_TXCRC_Pos (0U)
  7742. #define SPI_TXCRCR_TXCRC_Msk (0xFFFFUL << SPI_TXCRCR_TXCRC_Pos) /*!< 0x0000FFFF */
  7743. #define SPI_TXCRCR_TXCRC SPI_TXCRCR_TXCRC_Msk /*!<Tx CRC Register */
  7744. /****************** Bit definition for SPI_I2SCFGR register *****************/
  7745. #define SPI_I2SCFGR_CHLEN_Pos (0U)
  7746. #define SPI_I2SCFGR_CHLEN_Msk (0x1UL << SPI_I2SCFGR_CHLEN_Pos) /*!< 0x00000001 */
  7747. #define SPI_I2SCFGR_CHLEN SPI_I2SCFGR_CHLEN_Msk /*!<Channel length (number of bits per audio channel) */
  7748. #define SPI_I2SCFGR_DATLEN_Pos (1U)
  7749. #define SPI_I2SCFGR_DATLEN_Msk (0x3UL << SPI_I2SCFGR_DATLEN_Pos) /*!< 0x00000006 */
  7750. #define SPI_I2SCFGR_DATLEN SPI_I2SCFGR_DATLEN_Msk /*!<DATLEN[1:0] bits (Data length to be transferred) */
  7751. #define SPI_I2SCFGR_DATLEN_0 (0x1UL << SPI_I2SCFGR_DATLEN_Pos) /*!< 0x00000002 */
  7752. #define SPI_I2SCFGR_DATLEN_1 (0x2UL << SPI_I2SCFGR_DATLEN_Pos) /*!< 0x00000004 */
  7753. #define SPI_I2SCFGR_CKPOL_Pos (3U)
  7754. #define SPI_I2SCFGR_CKPOL_Msk (0x1UL << SPI_I2SCFGR_CKPOL_Pos) /*!< 0x00000008 */
  7755. #define SPI_I2SCFGR_CKPOL SPI_I2SCFGR_CKPOL_Msk /*!<steady state clock polarity */
  7756. #define SPI_I2SCFGR_I2SSTD_Pos (4U)
  7757. #define SPI_I2SCFGR_I2SSTD_Msk (0x3UL << SPI_I2SCFGR_I2SSTD_Pos) /*!< 0x00000030 */
  7758. #define SPI_I2SCFGR_I2SSTD SPI_I2SCFGR_I2SSTD_Msk /*!<I2SSTD[1:0] bits (I2S standard selection) */
  7759. #define SPI_I2SCFGR_I2SSTD_0 (0x1UL << SPI_I2SCFGR_I2SSTD_Pos) /*!< 0x00000010 */
  7760. #define SPI_I2SCFGR_I2SSTD_1 (0x2UL << SPI_I2SCFGR_I2SSTD_Pos) /*!< 0x00000020 */
  7761. #define SPI_I2SCFGR_PCMSYNC_Pos (7U)
  7762. #define SPI_I2SCFGR_PCMSYNC_Msk (0x1UL << SPI_I2SCFGR_PCMSYNC_Pos) /*!< 0x00000080 */
  7763. #define SPI_I2SCFGR_PCMSYNC SPI_I2SCFGR_PCMSYNC_Msk /*!<PCM frame synchronization */
  7764. #define SPI_I2SCFGR_I2SCFG_Pos (8U)
  7765. #define SPI_I2SCFGR_I2SCFG_Msk (0x3UL << SPI_I2SCFGR_I2SCFG_Pos) /*!< 0x00000300 */
  7766. #define SPI_I2SCFGR_I2SCFG SPI_I2SCFGR_I2SCFG_Msk /*!<I2SCFG[1:0] bits (I2S configuration mode) */
  7767. #define SPI_I2SCFGR_I2SCFG_0 (0x1UL << SPI_I2SCFGR_I2SCFG_Pos) /*!< 0x00000100 */
  7768. #define SPI_I2SCFGR_I2SCFG_1 (0x2UL << SPI_I2SCFGR_I2SCFG_Pos) /*!< 0x00000200 */
  7769. #define SPI_I2SCFGR_I2SE_Pos (10U)
  7770. #define SPI_I2SCFGR_I2SE_Msk (0x1UL << SPI_I2SCFGR_I2SE_Pos) /*!< 0x00000400 */
  7771. #define SPI_I2SCFGR_I2SE SPI_I2SCFGR_I2SE_Msk /*!<I2S Enable */
  7772. #define SPI_I2SCFGR_I2SMOD_Pos (11U)
  7773. #define SPI_I2SCFGR_I2SMOD_Msk (0x1UL << SPI_I2SCFGR_I2SMOD_Pos) /*!< 0x00000800 */
  7774. #define SPI_I2SCFGR_I2SMOD SPI_I2SCFGR_I2SMOD_Msk /*!<I2S mode selection */
  7775. #define SPI_I2SCFGR_ASTRTEN_Pos (12U)
  7776. #define SPI_I2SCFGR_ASTRTEN_Msk (0x1UL << SPI_I2SCFGR_ASTRTEN_Pos) /*!< 0x00001000 */
  7777. #define SPI_I2SCFGR_ASTRTEN SPI_I2SCFGR_ASTRTEN_Msk /*!<Asynchronous start enable */
  7778. /****************** Bit definition for SPI_I2SPR register *******************/
  7779. #define SPI_I2SPR_I2SDIV_Pos (0U)
  7780. #define SPI_I2SPR_I2SDIV_Msk (0xFFUL << SPI_I2SPR_I2SDIV_Pos) /*!< 0x000000FF */
  7781. #define SPI_I2SPR_I2SDIV SPI_I2SPR_I2SDIV_Msk /*!<I2S Linear prescaler */
  7782. #define SPI_I2SPR_ODD_Pos (8U)
  7783. #define SPI_I2SPR_ODD_Msk (0x1UL << SPI_I2SPR_ODD_Pos) /*!< 0x00000100 */
  7784. #define SPI_I2SPR_ODD SPI_I2SPR_ODD_Msk /*!<Odd factor for the prescaler */
  7785. #define SPI_I2SPR_MCKOE_Pos (9U)
  7786. #define SPI_I2SPR_MCKOE_Msk (0x1UL << SPI_I2SPR_MCKOE_Pos) /*!< 0x00000200 */
  7787. #define SPI_I2SPR_MCKOE SPI_I2SPR_MCKOE_Msk /*!<Master Clock Output Enable */
  7788. /******************************************************************************/
  7789. /* */
  7790. /* SYSCFG */
  7791. /* */
  7792. /******************************************************************************/
  7793. #define SYSCFG_CDEN_SUPPORT
  7794. /***************** Bit definition for SYSCFG_CFGR1 register ****************/
  7795. #define SYSCFG_CFGR1_MEM_MODE_Pos (0U)
  7796. #define SYSCFG_CFGR1_MEM_MODE_Msk (0x3UL << SYSCFG_CFGR1_MEM_MODE_Pos) /*!< 0x00000003 */
  7797. #define SYSCFG_CFGR1_MEM_MODE SYSCFG_CFGR1_MEM_MODE_Msk /*!< SYSCFG_Memory Remap Config */
  7798. #define SYSCFG_CFGR1_MEM_MODE_0 (0x1UL << SYSCFG_CFGR1_MEM_MODE_Pos) /*!< 0x00000001 */
  7799. #define SYSCFG_CFGR1_MEM_MODE_1 (0x2UL << SYSCFG_CFGR1_MEM_MODE_Pos) /*!< 0x00000002 */
  7800. #define SYSCFG_CFGR1_PA11_RMP_Pos (3U)
  7801. #define SYSCFG_CFGR1_PA11_RMP_Msk (0x1UL << SYSCFG_CFGR1_PA11_RMP_Pos) /*!< 0x00000008 */
  7802. #define SYSCFG_CFGR1_PA11_RMP SYSCFG_CFGR1_PA11_RMP_Msk /*!< PA11 Remap */
  7803. #define SYSCFG_CFGR1_PA12_RMP_Pos (4U)
  7804. #define SYSCFG_CFGR1_PA12_RMP_Msk (0x1UL << SYSCFG_CFGR1_PA12_RMP_Pos) /*!< 0x00000010 */
  7805. #define SYSCFG_CFGR1_PA12_RMP SYSCFG_CFGR1_PA12_RMP_Msk /*!< PA12 Remap */
  7806. #define SYSCFG_CFGR1_IR_POL_Pos (5U)
  7807. #define SYSCFG_CFGR1_IR_POL_Msk (0x1UL << SYSCFG_CFGR1_IR_POL_Pos) /*!< 0x00000020 */
  7808. #define SYSCFG_CFGR1_IR_POL SYSCFG_CFGR1_IR_POL_Msk /*!< IROut Polarity Selection */
  7809. #define SYSCFG_CFGR1_IR_MOD_Pos (6U)
  7810. #define SYSCFG_CFGR1_IR_MOD_Msk (0x3UL << SYSCFG_CFGR1_IR_MOD_Pos) /*!< 0x000000C0 */
  7811. #define SYSCFG_CFGR1_IR_MOD SYSCFG_CFGR1_IR_MOD_Msk /*!< IRDA Modulation Envelope signal source selection */
  7812. #define SYSCFG_CFGR1_IR_MOD_0 (0x1UL << SYSCFG_CFGR1_IR_MOD_Pos) /*!< 0x00000040 */
  7813. #define SYSCFG_CFGR1_IR_MOD_1 (0x2UL << SYSCFG_CFGR1_IR_MOD_Pos) /*!< 0x00000080 */
  7814. #define SYSCFG_CFGR1_BOOSTEN_Pos (8U)
  7815. #define SYSCFG_CFGR1_BOOSTEN_Msk (0x1UL << SYSCFG_CFGR1_BOOSTEN_Pos) /*!< 0x00000100 */
  7816. #define SYSCFG_CFGR1_BOOSTEN SYSCFG_CFGR1_BOOSTEN_Msk /*!< I/O analog switch voltage booster enable */
  7817. #define SYSCFG_CFGR1_UCPD1_STROBE_Pos (9U)
  7818. #define SYSCFG_CFGR1_UCPD1_STROBE_Msk (0x1UL << SYSCFG_CFGR1_UCPD1_STROBE_Pos) /*!< 0x00000200 */
  7819. #define SYSCFG_CFGR1_UCPD1_STROBE SYSCFG_CFGR1_UCPD1_STROBE_Msk /*!< Strobe signal bit for UCPD1 */
  7820. #define SYSCFG_CFGR1_UCPD2_STROBE_Pos (10U)
  7821. #define SYSCFG_CFGR1_UCPD2_STROBE_Msk (0x1UL << SYSCFG_CFGR1_UCPD2_STROBE_Pos) /*!< 0x00000400 */
  7822. #define SYSCFG_CFGR1_UCPD2_STROBE SYSCFG_CFGR1_UCPD2_STROBE_Msk /*!< Strobe signal bit for UCPD2 */
  7823. #define SYSCFG_CFGR1_I2C_PB6_FMP_Pos (16U)
  7824. #define SYSCFG_CFGR1_I2C_PB6_FMP_Msk (0x1UL << SYSCFG_CFGR1_I2C_PB6_FMP_Pos) /*!< 0x00010000 */
  7825. #define SYSCFG_CFGR1_I2C_PB6_FMP SYSCFG_CFGR1_I2C_PB6_FMP_Msk /*!< I2C PB6 Fast mode plus */
  7826. #define SYSCFG_CFGR1_I2C_PB7_FMP_Pos (17U)
  7827. #define SYSCFG_CFGR1_I2C_PB7_FMP_Msk (0x1UL << SYSCFG_CFGR1_I2C_PB7_FMP_Pos) /*!< 0x00020000 */
  7828. #define SYSCFG_CFGR1_I2C_PB7_FMP SYSCFG_CFGR1_I2C_PB7_FMP_Msk /*!< I2C PB7 Fast mode plus */
  7829. #define SYSCFG_CFGR1_I2C_PB8_FMP_Pos (18U)
  7830. #define SYSCFG_CFGR1_I2C_PB8_FMP_Msk (0x1UL << SYSCFG_CFGR1_I2C_PB8_FMP_Pos) /*!< 0x00040000 */
  7831. #define SYSCFG_CFGR1_I2C_PB8_FMP SYSCFG_CFGR1_I2C_PB8_FMP_Msk /*!< I2C PB8 Fast mode plus */
  7832. #define SYSCFG_CFGR1_I2C_PB9_FMP_Pos (19U)
  7833. #define SYSCFG_CFGR1_I2C_PB9_FMP_Msk (0x1UL << SYSCFG_CFGR1_I2C_PB9_FMP_Pos) /*!< 0x00080000 */
  7834. #define SYSCFG_CFGR1_I2C_PB9_FMP SYSCFG_CFGR1_I2C_PB9_FMP_Msk /*!< I2C PB9 Fast mode plus */
  7835. #define SYSCFG_CFGR1_I2C1_FMP_Pos (20U)
  7836. #define SYSCFG_CFGR1_I2C1_FMP_Msk (0x1UL << SYSCFG_CFGR1_I2C1_FMP_Pos) /*!< 0x00100000 */
  7837. #define SYSCFG_CFGR1_I2C1_FMP SYSCFG_CFGR1_I2C1_FMP_Msk /*!< Enable Fast Mode Plus on PB10, PB11, PF6 and PF7 */
  7838. #define SYSCFG_CFGR1_I2C2_FMP_Pos (21U)
  7839. #define SYSCFG_CFGR1_I2C2_FMP_Msk (0x1UL << SYSCFG_CFGR1_I2C2_FMP_Pos) /*!< 0x00200000 */
  7840. #define SYSCFG_CFGR1_I2C2_FMP SYSCFG_CFGR1_I2C2_FMP_Msk /*!< Enable I2C2 Fast mode plus */
  7841. #define SYSCFG_CFGR1_I2C_PA9_FMP_Pos (22U)
  7842. #define SYSCFG_CFGR1_I2C_PA9_FMP_Msk (0x1UL << SYSCFG_CFGR1_I2C_PA9_FMP_Pos) /*!< 0x00400000 */
  7843. #define SYSCFG_CFGR1_I2C_PA9_FMP SYSCFG_CFGR1_I2C_PA9_FMP_Msk /*!< Enable Fast Mode Plus on PA9 */
  7844. #define SYSCFG_CFGR1_I2C_PA10_FMP_Pos (23U)
  7845. #define SYSCFG_CFGR1_I2C_PA10_FMP_Msk (0x1UL << SYSCFG_CFGR1_I2C_PA10_FMP_Pos) /*!< 0x00800000 */
  7846. #define SYSCFG_CFGR1_I2C_PA10_FMP SYSCFG_CFGR1_I2C_PA10_FMP_Msk /*!< Enable Fast Mode Plus on PA10 */
  7847. #define SYSCFG_CFGR1_I2C3_FMP_Pos (24U)
  7848. #define SYSCFG_CFGR1_I2C3_FMP_Msk (0x1UL << SYSCFG_CFGR1_I2C3_FMP_Pos) /*!< 0x01000000 */
  7849. #define SYSCFG_CFGR1_I2C3_FMP SYSCFG_CFGR1_I2C3_FMP_Msk /*!< Enable I2C3 Fast mode plus */
  7850. /****************** Bit definition for SYSCFG_CFGR2 register ****************/
  7851. #define SYSCFG_CFGR2_CLL_Pos (0U)
  7852. #define SYSCFG_CFGR2_CLL_Msk (0x1UL << SYSCFG_CFGR2_CLL_Pos) /*!< 0x00000001 */
  7853. #define SYSCFG_CFGR2_CLL SYSCFG_CFGR2_CLL_Msk /*!< Enables and locks the LOCKUP (Hardfault) output of CortexM0 with Break Input of TIMER1 */
  7854. #define SYSCFG_CFGR2_SPL_Pos (1U)
  7855. #define SYSCFG_CFGR2_SPL_Msk (0x1UL << SYSCFG_CFGR2_SPL_Pos) /*!< 0x00000002 */
  7856. #define SYSCFG_CFGR2_SPL SYSCFG_CFGR2_SPL_Msk /*!< Enables and locks the SRAM_PARITY error signal with Break Input of TIMER1 */
  7857. #define SYSCFG_CFGR2_PVDL_Pos (2U)
  7858. #define SYSCFG_CFGR2_PVDL_Msk (0x1UL << SYSCFG_CFGR2_PVDL_Pos) /*!< 0x00000004 */
  7859. #define SYSCFG_CFGR2_PVDL SYSCFG_CFGR2_PVDL_Msk /*!< Enables and locks the PVD connection with Timer1 Break Input and also the PVD_EN and PVDSEL[2:0] bits of the Power Control Interface */
  7860. #define SYSCFG_CFGR2_ECCL_Pos (3U)
  7861. #define SYSCFG_CFGR2_ECCL_Msk (0x1UL << SYSCFG_CFGR2_ECCL_Pos) /*!< 0x00000008 */
  7862. #define SYSCFG_CFGR2_ECCL SYSCFG_CFGR2_ECCL_Msk /*!< ECCL */
  7863. #define SYSCFG_CFGR2_SPF_Pos (8U)
  7864. #define SYSCFG_CFGR2_SPF_Msk (0x1UL << SYSCFG_CFGR2_SPF_Pos) /*!< 0x00000100 */
  7865. #define SYSCFG_CFGR2_SPF SYSCFG_CFGR2_SPF_Msk /*!< SRAM Parity error flag */
  7866. #define SYSCFG_CFGR2_SRAM_PE SYSCFG_CFGR2_SPF /*!< SRAM Parity error flag (define maintained for legacy purpose) */
  7867. #define SYSCFG_CFGR2_PA1_CDEN_Pos (16U)
  7868. #define SYSCFG_CFGR2_PA1_CDEN_Msk (0x1UL << SYSCFG_CFGR2_PA1_CDEN_Pos) /* 0x00010000 */
  7869. #define SYSCFG_CFGR2_PA1_CDEN SYSCFG_CFGR2_PA1_CDEN_Msk /*!< PA[1] Clamping Diode Enable */
  7870. #define SYSCFG_CFGR2_PA3_CDEN_Pos (17U)
  7871. #define SYSCFG_CFGR2_PA3_CDEN_Msk (0x1UL << SYSCFG_CFGR2_PA3_CDEN_Pos) /* 0x00020000 */
  7872. #define SYSCFG_CFGR2_PA3_CDEN SYSCFG_CFGR2_PA3_CDEN_Msk /*!< PA[3] Clamping Diode Enable */
  7873. #define SYSCFG_CFGR2_PA5_CDEN_Pos (18U)
  7874. #define SYSCFG_CFGR2_PA5_CDEN_Msk (0x1UL << SYSCFG_CFGR2_PA5_CDEN_Pos) /* 0x00040000 */
  7875. #define SYSCFG_CFGR2_PA5_CDEN SYSCFG_CFGR2_PA5_CDEN_Msk /*!< PA[5] Clamping Diode Enable */
  7876. #define SYSCFG_CFGR2_PA6_CDEN_Pos (19U)
  7877. #define SYSCFG_CFGR2_PA6_CDEN_Msk (0x1UL << SYSCFG_CFGR2_PA6_CDEN_Pos) /* 0x00080000 */
  7878. #define SYSCFG_CFGR2_PA6_CDEN SYSCFG_CFGR2_PA6_CDEN_Msk /*!< PA[6] Clamping Diode Enable */
  7879. #define SYSCFG_CFGR2_PA13_CDEN_Pos (20U)
  7880. #define SYSCFG_CFGR2_PA13_CDEN_Msk (0x1UL << SYSCFG_CFGR2_PA13_CDEN_Pos) /* 0x00100000 */
  7881. #define SYSCFG_CFGR2_PA13_CDEN SYSCFG_CFGR2_PA13_CDEN_Msk /*!< PA[13] Clamping Diode Enable */
  7882. #define SYSCFG_CFGR2_PB0_CDEN_Pos (21U)
  7883. #define SYSCFG_CFGR2_PB0_CDEN_Msk (0x1UL << SYSCFG_CFGR2_PB0_CDEN_Pos) /* 0x00200000 */
  7884. #define SYSCFG_CFGR2_PB0_CDEN SYSCFG_CFGR2_PB0_CDEN_Msk /*!< PB[0] Clamping Diode Enable */
  7885. #define SYSCFG_CFGR2_PB1_CDEN_Pos (22U)
  7886. #define SYSCFG_CFGR2_PB1_CDEN_Msk (0x1UL << SYSCFG_CFGR2_PB1_CDEN_Pos) /* 0x00400000 */
  7887. #define SYSCFG_CFGR2_PB1_CDEN SYSCFG_CFGR2_PB1_CDEN_Msk /*!< PB[1] Clamping Diode Enable */
  7888. #define SYSCFG_CFGR2_PB2_CDEN_Pos (23U)
  7889. #define SYSCFG_CFGR2_PB2_CDEN_Msk (0x1UL << SYSCFG_CFGR2_PB2_CDEN_Pos) /* 0x00800000 */
  7890. #define SYSCFG_CFGR2_PB2_CDEN SYSCFG_CFGR2_PB2_CDEN_Msk /*!< PB[2] Clamping Diode Enable */
  7891. /***************** Bit definition for SYSCFG_ITLINEx ISR Wrapper register ****************/
  7892. #define SYSCFG_ITLINE0_SR_EWDG_Pos (0U)
  7893. #define SYSCFG_ITLINE0_SR_EWDG_Msk (0x1UL << SYSCFG_ITLINE0_SR_EWDG_Pos) /*!< 0x00000001 */
  7894. #define SYSCFG_ITLINE0_SR_EWDG SYSCFG_ITLINE0_SR_EWDG_Msk /*!< EWDG interrupt */
  7895. #define SYSCFG_ITLINE1_SR_PVDOUT_Pos (0U)
  7896. #define SYSCFG_ITLINE1_SR_PVDOUT_Msk (0x1UL << SYSCFG_ITLINE1_SR_PVDOUT_Pos) /*!< 0x00000001 */
  7897. #define SYSCFG_ITLINE1_SR_PVDOUT SYSCFG_ITLINE1_SR_PVDOUT_Msk /*!< Power voltage detection -> exti[16] Interrupt */
  7898. #define SYSCFG_ITLINE1_SR_PVMOUT_Pos (1U)
  7899. #define SYSCFG_ITLINE1_SR_PVMOUT_Msk (0x1UL << SYSCFG_ITLINE1_SR_PVMOUT_Pos) /*!< 0x00000002 */
  7900. #define SYSCFG_ITLINE1_SR_PVMOUT SYSCFG_ITLINE1_SR_PVMOUT_Msk /*!< VDDUSB Power voltage monitor -> exti[34] Interrupt */
  7901. #define SYSCFG_ITLINE2_SR_TAMPER_Pos (0U)
  7902. #define SYSCFG_ITLINE2_SR_TAMPER_Msk (0x1UL << SYSCFG_ITLINE2_SR_TAMPER_Pos) /*!< 0x00000001 */
  7903. #define SYSCFG_ITLINE2_SR_TAMPER SYSCFG_ITLINE2_SR_TAMPER_Msk /*!< TAMPER -> exti[21] interrupt */
  7904. #define SYSCFG_ITLINE2_SR_RTC_Pos (1U)
  7905. #define SYSCFG_ITLINE2_SR_RTC_Msk (0x1UL << SYSCFG_ITLINE2_SR_RTC_Pos) /*!< 0x00000002 */
  7906. #define SYSCFG_ITLINE2_SR_RTC SYSCFG_ITLINE2_SR_RTC_Msk /*!< RTC -> exti[19] interrupt .... */
  7907. #define SYSCFG_ITLINE3_SR_FLASH_ECC_Pos (0U)
  7908. #define SYSCFG_ITLINE3_SR_FLASH_ECC_Msk (0x1UL << SYSCFG_ITLINE3_SR_FLASH_ECC_Pos) /*!< 0x00000001 */
  7909. #define SYSCFG_ITLINE3_SR_FLASH_ECC SYSCFG_ITLINE3_SR_FLASH_ECC_Msk /*!< Flash ITF ECC interrupt */
  7910. #define SYSCFG_ITLINE3_SR_FLASH_ITF_Pos (1U)
  7911. #define SYSCFG_ITLINE3_SR_FLASH_ITF_Msk (0x1UL << SYSCFG_ITLINE3_SR_FLASH_ITF_Pos) /*!< 0x00000002 */
  7912. #define SYSCFG_ITLINE3_SR_FLASH_ITF SYSCFG_ITLINE3_SR_FLASH_ITF_Msk /*!< FLASH ITF interrupt */
  7913. #define SYSCFG_ITLINE4_SR_CLK_CTRL_Pos (0U)
  7914. #define SYSCFG_ITLINE4_SR_CLK_CTRL_Msk (0x1UL << SYSCFG_ITLINE4_SR_CLK_CTRL_Pos) /*!< 0x00000001 */
  7915. #define SYSCFG_ITLINE4_SR_CLK_CTRL SYSCFG_ITLINE4_SR_CLK_CTRL_Msk /*!< RCC interrupt */
  7916. #define SYSCFG_ITLINE4_SR_CRS_Pos (1U)
  7917. #define SYSCFG_ITLINE4_SR_CRS_Msk (0x1UL << SYSCFG_ITLINE4_SR_CRS_Pos) /*!< 0x00000002 */
  7918. #define SYSCFG_ITLINE4_SR_CRS SYSCFG_ITLINE4_SR_CRS_Msk /*!< CRS interrupt */
  7919. #define SYSCFG_ITLINE5_SR_EXTI0_Pos (0U)
  7920. #define SYSCFG_ITLINE5_SR_EXTI0_Msk (0x1UL << SYSCFG_ITLINE5_SR_EXTI0_Pos) /*!< 0x00000001 */
  7921. #define SYSCFG_ITLINE5_SR_EXTI0 SYSCFG_ITLINE5_SR_EXTI0_Msk /*!< External Interrupt 0 */
  7922. #define SYSCFG_ITLINE5_SR_EXTI1_Pos (1U)
  7923. #define SYSCFG_ITLINE5_SR_EXTI1_Msk (0x1UL << SYSCFG_ITLINE5_SR_EXTI1_Pos) /*!< 0x00000002 */
  7924. #define SYSCFG_ITLINE5_SR_EXTI1 SYSCFG_ITLINE5_SR_EXTI1_Msk /*!< External Interrupt 1 */
  7925. #define SYSCFG_ITLINE6_SR_EXTI2_Pos (0U)
  7926. #define SYSCFG_ITLINE6_SR_EXTI2_Msk (0x1UL << SYSCFG_ITLINE6_SR_EXTI2_Pos) /*!< 0x00000001 */
  7927. #define SYSCFG_ITLINE6_SR_EXTI2 SYSCFG_ITLINE6_SR_EXTI2_Msk /*!< External Interrupt 2 */
  7928. #define SYSCFG_ITLINE6_SR_EXTI3_Pos (1U)
  7929. #define SYSCFG_ITLINE6_SR_EXTI3_Msk (0x1UL << SYSCFG_ITLINE6_SR_EXTI3_Pos) /*!< 0x00000002 */
  7930. #define SYSCFG_ITLINE6_SR_EXTI3 SYSCFG_ITLINE6_SR_EXTI3_Msk /*!< External Interrupt 3 */
  7931. #define SYSCFG_ITLINE7_SR_EXTI4_Pos (0U)
  7932. #define SYSCFG_ITLINE7_SR_EXTI4_Msk (0x1UL << SYSCFG_ITLINE7_SR_EXTI4_Pos) /*!< 0x00000001 */
  7933. #define SYSCFG_ITLINE7_SR_EXTI4 SYSCFG_ITLINE7_SR_EXTI4_Msk /*!< External Interrupt 4 */
  7934. #define SYSCFG_ITLINE7_SR_EXTI5_Pos (1U)
  7935. #define SYSCFG_ITLINE7_SR_EXTI5_Msk (0x1UL << SYSCFG_ITLINE7_SR_EXTI5_Pos) /*!< 0x00000002 */
  7936. #define SYSCFG_ITLINE7_SR_EXTI5 SYSCFG_ITLINE7_SR_EXTI5_Msk /*!< External Interrupt 5 */
  7937. #define SYSCFG_ITLINE7_SR_EXTI6_Pos (2U)
  7938. #define SYSCFG_ITLINE7_SR_EXTI6_Msk (0x1UL << SYSCFG_ITLINE7_SR_EXTI6_Pos) /*!< 0x00000004 */
  7939. #define SYSCFG_ITLINE7_SR_EXTI6 SYSCFG_ITLINE7_SR_EXTI6_Msk /*!< External Interrupt 6 */
  7940. #define SYSCFG_ITLINE7_SR_EXTI7_Pos (3U)
  7941. #define SYSCFG_ITLINE7_SR_EXTI7_Msk (0x1UL << SYSCFG_ITLINE7_SR_EXTI7_Pos) /*!< 0x00000008 */
  7942. #define SYSCFG_ITLINE7_SR_EXTI7 SYSCFG_ITLINE7_SR_EXTI7_Msk /*!< External Interrupt 7 */
  7943. #define SYSCFG_ITLINE7_SR_EXTI8_Pos (4U)
  7944. #define SYSCFG_ITLINE7_SR_EXTI8_Msk (0x1UL << SYSCFG_ITLINE7_SR_EXTI8_Pos) /*!< 0x00000010 */
  7945. #define SYSCFG_ITLINE7_SR_EXTI8 SYSCFG_ITLINE7_SR_EXTI8_Msk /*!< External Interrupt 8 */
  7946. #define SYSCFG_ITLINE7_SR_EXTI9_Pos (5U)
  7947. #define SYSCFG_ITLINE7_SR_EXTI9_Msk (0x1UL << SYSCFG_ITLINE7_SR_EXTI9_Pos) /*!< 0x00000020 */
  7948. #define SYSCFG_ITLINE7_SR_EXTI9 SYSCFG_ITLINE7_SR_EXTI9_Msk /*!< External Interrupt 9 */
  7949. #define SYSCFG_ITLINE7_SR_EXTI10_Pos (6U)
  7950. #define SYSCFG_ITLINE7_SR_EXTI10_Msk (0x1UL << SYSCFG_ITLINE7_SR_EXTI10_Pos) /*!< 0x00000040 */
  7951. #define SYSCFG_ITLINE7_SR_EXTI10 SYSCFG_ITLINE7_SR_EXTI10_Msk /*!< External Interrupt 10 */
  7952. #define SYSCFG_ITLINE7_SR_EXTI11_Pos (7U)
  7953. #define SYSCFG_ITLINE7_SR_EXTI11_Msk (0x1UL << SYSCFG_ITLINE7_SR_EXTI11_Pos) /*!< 0x00000080 */
  7954. #define SYSCFG_ITLINE7_SR_EXTI11 SYSCFG_ITLINE7_SR_EXTI11_Msk /*!< External Interrupt 11 */
  7955. #define SYSCFG_ITLINE7_SR_EXTI12_Pos (8U)
  7956. #define SYSCFG_ITLINE7_SR_EXTI12_Msk (0x1UL << SYSCFG_ITLINE7_SR_EXTI12_Pos) /*!< 0x00000100 */
  7957. #define SYSCFG_ITLINE7_SR_EXTI12 SYSCFG_ITLINE7_SR_EXTI12_Msk /*!< External Interrupt 12 */
  7958. #define SYSCFG_ITLINE7_SR_EXTI13_Pos (9U)
  7959. #define SYSCFG_ITLINE7_SR_EXTI13_Msk (0x1UL << SYSCFG_ITLINE7_SR_EXTI13_Pos) /*!< 0x00000200 */
  7960. #define SYSCFG_ITLINE7_SR_EXTI13 SYSCFG_ITLINE7_SR_EXTI13_Msk /*!< External Interrupt 13 */
  7961. #define SYSCFG_ITLINE7_SR_EXTI14_Pos (10U)
  7962. #define SYSCFG_ITLINE7_SR_EXTI14_Msk (0x1UL << SYSCFG_ITLINE7_SR_EXTI14_Pos) /*!< 0x00000400 */
  7963. #define SYSCFG_ITLINE7_SR_EXTI14 SYSCFG_ITLINE7_SR_EXTI14_Msk /*!< External Interrupt 14 */
  7964. #define SYSCFG_ITLINE7_SR_EXTI15_Pos (11U)
  7965. #define SYSCFG_ITLINE7_SR_EXTI15_Msk (0x1UL << SYSCFG_ITLINE7_SR_EXTI15_Pos) /*!< 0x00000800 */
  7966. #define SYSCFG_ITLINE7_SR_EXTI15 SYSCFG_ITLINE7_SR_EXTI15_Msk /*!< External Interrupt 15 */
  7967. #define SYSCFG_ITLINE8_SR_UCPD1_Pos (0U)
  7968. #define SYSCFG_ITLINE8_SR_UCPD1_Msk (0x1UL << SYSCFG_ITLINE8_SR_UCPD1_Pos) /*!< 0x00000001 */
  7969. #define SYSCFG_ITLINE8_SR_UCPD1 SYSCFG_ITLINE8_SR_UCPD1_Msk /*!< UCPD1 -> exti[32] Interrupt */
  7970. #define SYSCFG_ITLINE8_SR_UCPD2_Pos (1U)
  7971. #define SYSCFG_ITLINE8_SR_UCPD2_Msk (0x1UL << SYSCFG_ITLINE8_SR_UCPD2_Pos) /*!< 0x00000002 */
  7972. #define SYSCFG_ITLINE8_SR_UCPD2 SYSCFG_ITLINE8_SR_UCPD2_Msk /*!< UCPD2 -> exti[33] Interrupt */
  7973. #define SYSCFG_ITLINE8_SR_USB_Pos (2U)
  7974. #define SYSCFG_ITLINE8_SR_USB_Msk (0x1UL << SYSCFG_ITLINE8_SR_USB_Pos) /*!< 0x00000004 */
  7975. #define SYSCFG_ITLINE8_SR_USB SYSCFG_ITLINE8_SR_USB_Msk /*!< USB Interrupt */
  7976. #define SYSCFG_ITLINE9_SR_DMA1_CH1_Pos (0U)
  7977. #define SYSCFG_ITLINE9_SR_DMA1_CH1_Msk (0x1UL << SYSCFG_ITLINE9_SR_DMA1_CH1_Pos) /*!< 0x00000001 */
  7978. #define SYSCFG_ITLINE9_SR_DMA1_CH1 SYSCFG_ITLINE9_SR_DMA1_CH1_Msk /*!< DMA1 Channel 1 Interrupt */
  7979. #define SYSCFG_ITLINE10_SR_DMA1_CH2_Pos (0U)
  7980. #define SYSCFG_ITLINE10_SR_DMA1_CH2_Msk (0x1UL << SYSCFG_ITLINE10_SR_DMA1_CH2_Pos) /*!< 0x00000001 */
  7981. #define SYSCFG_ITLINE10_SR_DMA1_CH2 SYSCFG_ITLINE10_SR_DMA1_CH2_Msk /*!< DMA1 Channel 2 Interrupt */
  7982. #define SYSCFG_ITLINE10_SR_DMA1_CH3_Pos (1U)
  7983. #define SYSCFG_ITLINE10_SR_DMA1_CH3_Msk (0x1UL << SYSCFG_ITLINE10_SR_DMA1_CH3_Pos) /*!< 0x00000002 */
  7984. #define SYSCFG_ITLINE10_SR_DMA1_CH3 SYSCFG_ITLINE10_SR_DMA1_CH3_Msk /*!< DMA2 Channel 3 Interrupt */
  7985. #define SYSCFG_ITLINE11_SR_DMAMUX1_Pos (0U)
  7986. #define SYSCFG_ITLINE11_SR_DMAMUX1_Msk (0x1UL << SYSCFG_ITLINE11_SR_DMAMUX1_Pos) /*!< 0x00000001 */
  7987. #define SYSCFG_ITLINE11_SR_DMAMUX1 SYSCFG_ITLINE11_SR_DMAMUX1_Msk /*!< DMAMUX Interrupt */
  7988. #define SYSCFG_ITLINE11_SR_DMA1_CH4_Pos (1U)
  7989. #define SYSCFG_ITLINE11_SR_DMA1_CH4_Msk (0x1UL << SYSCFG_ITLINE11_SR_DMA1_CH4_Pos) /*!< 0x00000002 */
  7990. #define SYSCFG_ITLINE11_SR_DMA1_CH4 SYSCFG_ITLINE11_SR_DMA1_CH4_Msk /*!< DMA1 Channel 4 Interrupt */
  7991. #define SYSCFG_ITLINE11_SR_DMA1_CH5_Pos (2U)
  7992. #define SYSCFG_ITLINE11_SR_DMA1_CH5_Msk (0x1UL << SYSCFG_ITLINE11_SR_DMA1_CH5_Pos) /*!< 0x00000004 */
  7993. #define SYSCFG_ITLINE11_SR_DMA1_CH5 SYSCFG_ITLINE11_SR_DMA1_CH5_Msk /*!< DMA1 Channel 5 Interrupt */
  7994. #define SYSCFG_ITLINE11_SR_DMA1_CH6_Pos (3U)
  7995. #define SYSCFG_ITLINE11_SR_DMA1_CH6_Msk (0x1UL << SYSCFG_ITLINE11_SR_DMA1_CH6_Pos) /*!< 0x00000008 */
  7996. #define SYSCFG_ITLINE11_SR_DMA1_CH6 SYSCFG_ITLINE11_SR_DMA1_CH6_Msk /*!< DMA1 Channel 6 Interrupt */
  7997. #define SYSCFG_ITLINE11_SR_DMA1_CH7_Pos (4U)
  7998. #define SYSCFG_ITLINE11_SR_DMA1_CH7_Msk (0x1UL << SYSCFG_ITLINE11_SR_DMA1_CH7_Pos) /*!< 0x00000010 */
  7999. #define SYSCFG_ITLINE11_SR_DMA1_CH7 SYSCFG_ITLINE11_SR_DMA1_CH7_Msk /*!< DMA1 Channel 7 Interrupt */
  8000. #define SYSCFG_ITLINE11_SR_DMA2_CH1_Pos (5U)
  8001. #define SYSCFG_ITLINE11_SR_DMA2_CH1_Msk (0x1UL << SYSCFG_ITLINE11_SR_DMA2_CH1_Pos) /*!< 0x00000020 */
  8002. #define SYSCFG_ITLINE11_SR_DMA2_CH1 SYSCFG_ITLINE11_SR_DMA2_CH1_Msk /*!< DMA2 Channel 1 Interrupt */
  8003. #define SYSCFG_ITLINE11_SR_DMA2_CH2_Pos (6U)
  8004. #define SYSCFG_ITLINE11_SR_DMA2_CH2_Msk (0x1UL << SYSCFG_ITLINE11_SR_DMA2_CH2_Pos) /*!< 0x00000040 */
  8005. #define SYSCFG_ITLINE11_SR_DMA2_CH2 SYSCFG_ITLINE11_SR_DMA2_CH2_Msk /*!< DMA2 Channel 2 Interrupt */
  8006. #define SYSCFG_ITLINE11_SR_DMA2_CH3_Pos (7U)
  8007. #define SYSCFG_ITLINE11_SR_DMA2_CH3_Msk (0x1UL << SYSCFG_ITLINE11_SR_DMA2_CH3_Pos) /*!< 0x00000080 */
  8008. #define SYSCFG_ITLINE11_SR_DMA2_CH3 SYSCFG_ITLINE11_SR_DMA2_CH3_Msk /*!< DMA2 Channel 3 Interrupt */
  8009. #define SYSCFG_ITLINE11_SR_DMA2_CH4_Pos (8U)
  8010. #define SYSCFG_ITLINE11_SR_DMA2_CH4_Msk (0x1UL << SYSCFG_ITLINE11_SR_DMA2_CH4_Pos) /*!< 0x00000100 */
  8011. #define SYSCFG_ITLINE11_SR_DMA2_CH4 SYSCFG_ITLINE11_SR_DMA2_CH4_Msk /*!< DMA2 Channel 4 Interrupt */
  8012. #define SYSCFG_ITLINE11_SR_DMA2_CH5_Pos (9U)
  8013. #define SYSCFG_ITLINE11_SR_DMA2_CH5_Msk (0x1UL << SYSCFG_ITLINE11_SR_DMA2_CH5_Pos) /*!< 0x00000200 */
  8014. #define SYSCFG_ITLINE11_SR_DMA2_CH5 SYSCFG_ITLINE11_SR_DMA2_CH5_Msk /*!< DMA2 Channel 5 Interrupt */
  8015. #define SYSCFG_ITLINE12_SR_ADC_Pos (0U)
  8016. #define SYSCFG_ITLINE12_SR_ADC_Msk (0x1UL << SYSCFG_ITLINE12_SR_ADC_Pos) /*!< 0x00000001 */
  8017. #define SYSCFG_ITLINE12_SR_ADC SYSCFG_ITLINE12_SR_ADC_Msk /*!< ADC Interrupt */
  8018. #define SYSCFG_ITLINE12_SR_COMP1_Pos (1U)
  8019. #define SYSCFG_ITLINE12_SR_COMP1_Msk (0x1UL << SYSCFG_ITLINE12_SR_COMP1_Pos) /*!< 0x00000002 */
  8020. #define SYSCFG_ITLINE12_SR_COMP1 SYSCFG_ITLINE12_SR_COMP1_Msk /*!< COMP1 Interrupt -> exti[17] */
  8021. #define SYSCFG_ITLINE12_SR_COMP2_Pos (2U)
  8022. #define SYSCFG_ITLINE12_SR_COMP2_Msk (0x1UL << SYSCFG_ITLINE12_SR_COMP2_Pos) /*!< 0x00000004 */
  8023. #define SYSCFG_ITLINE12_SR_COMP2 SYSCFG_ITLINE12_SR_COMP2_Msk /*!< COMP2 Interrupt -> exti[18] */
  8024. #define SYSCFG_ITLINE12_SR_COMP3_Pos (3U)
  8025. #define SYSCFG_ITLINE12_SR_COMP3_Msk (0x1UL << SYSCFG_ITLINE12_SR_COMP3_Pos) /*!< 0x00000008 */
  8026. #define SYSCFG_ITLINE12_SR_COMP3 SYSCFG_ITLINE12_SR_COMP3_Msk /*!< COMP3 Interrupt -> exti[20] */
  8027. #define SYSCFG_ITLINE13_SR_TIM1_CCU_Pos (0U)
  8028. #define SYSCFG_ITLINE13_SR_TIM1_CCU_Msk (0x1UL << SYSCFG_ITLINE13_SR_TIM1_CCU_Pos) /*!< 0x00000001 */
  8029. #define SYSCFG_ITLINE13_SR_TIM1_CCU SYSCFG_ITLINE13_SR_TIM1_CCU_Msk /*!< TIM1 CCU Interrupt */
  8030. #define SYSCFG_ITLINE13_SR_TIM1_TRG_Pos (1U)
  8031. #define SYSCFG_ITLINE13_SR_TIM1_TRG_Msk (0x1UL << SYSCFG_ITLINE13_SR_TIM1_TRG_Pos) /*!< 0x00000002 */
  8032. #define SYSCFG_ITLINE13_SR_TIM1_TRG SYSCFG_ITLINE13_SR_TIM1_TRG_Msk /*!< TIM1 TRG Interrupt */
  8033. #define SYSCFG_ITLINE13_SR_TIM1_UPD_Pos (2U)
  8034. #define SYSCFG_ITLINE13_SR_TIM1_UPD_Msk (0x1UL << SYSCFG_ITLINE13_SR_TIM1_UPD_Pos) /*!< 0x00000004 */
  8035. #define SYSCFG_ITLINE13_SR_TIM1_UPD SYSCFG_ITLINE13_SR_TIM1_UPD_Msk /*!< TIM1 UPD Interrupt */
  8036. #define SYSCFG_ITLINE13_SR_TIM1_BRK_Pos (3U)
  8037. #define SYSCFG_ITLINE13_SR_TIM1_BRK_Msk (0x1UL << SYSCFG_ITLINE13_SR_TIM1_BRK_Pos) /*!< 0x00000008 */
  8038. #define SYSCFG_ITLINE13_SR_TIM1_BRK SYSCFG_ITLINE13_SR_TIM1_BRK_Msk /*!< TIM1 BRK Interrupt */
  8039. #define SYSCFG_ITLINE14_SR_TIM1_CC_Pos (0U)
  8040. #define SYSCFG_ITLINE14_SR_TIM1_CC_Msk (0x1UL << SYSCFG_ITLINE14_SR_TIM1_CC_Pos) /*!< 0x00000001 */
  8041. #define SYSCFG_ITLINE14_SR_TIM1_CC SYSCFG_ITLINE14_SR_TIM1_CC_Msk /*!< TIM1 CC Interrupt */
  8042. #define SYSCFG_ITLINE15_SR_TIM2_GLB_Pos (0U)
  8043. #define SYSCFG_ITLINE15_SR_TIM2_GLB_Msk (0x1UL << SYSCFG_ITLINE15_SR_TIM2_GLB_Pos) /*!< 0x00000001 */
  8044. #define SYSCFG_ITLINE15_SR_TIM2_GLB SYSCFG_ITLINE15_SR_TIM2_GLB_Msk /*!< TIM2 GLB Interrupt */
  8045. #define SYSCFG_ITLINE16_SR_TIM3_GLB_Pos (0U)
  8046. #define SYSCFG_ITLINE16_SR_TIM3_GLB_Msk (0x1UL << SYSCFG_ITLINE16_SR_TIM3_GLB_Pos) /*!< 0x00000001 */
  8047. #define SYSCFG_ITLINE16_SR_TIM3_GLB SYSCFG_ITLINE16_SR_TIM3_GLB_Msk /*!< TIM3 GLB Interrupt */
  8048. #define SYSCFG_ITLINE16_SR_TIM4_GLB_Pos (1U)
  8049. #define SYSCFG_ITLINE16_SR_TIM4_GLB_Msk (0x1UL << SYSCFG_ITLINE16_SR_TIM4_GLB_Pos) /*!< 0x00000002 */
  8050. #define SYSCFG_ITLINE16_SR_TIM4_GLB SYSCFG_ITLINE16_SR_TIM4_GLB_Msk /*!< TIM4 GLB Interrupt */
  8051. #define SYSCFG_ITLINE17_SR_TIM6_GLB_Pos (0U)
  8052. #define SYSCFG_ITLINE17_SR_TIM6_GLB_Msk (0x1UL << SYSCFG_ITLINE17_SR_TIM6_GLB_Pos) /*!< 0x00000001 */
  8053. #define SYSCFG_ITLINE17_SR_TIM6_GLB SYSCFG_ITLINE17_SR_TIM6_GLB_Msk /*!< TIM6 GLB Interrupt */
  8054. #define SYSCFG_ITLINE17_SR_DAC_Pos (1U)
  8055. #define SYSCFG_ITLINE17_SR_DAC_Msk (0x1UL << SYSCFG_ITLINE17_SR_DAC_Pos) /*!< 0x00000002 */
  8056. #define SYSCFG_ITLINE17_SR_DAC SYSCFG_ITLINE17_SR_DAC_Msk /*!< DAC Interrupt */
  8057. #define SYSCFG_ITLINE17_SR_LPTIM1_GLB_Pos (2U)
  8058. #define SYSCFG_ITLINE17_SR_LPTIM1_GLB_Msk (0x1UL << SYSCFG_ITLINE17_SR_LPTIM1_GLB_Pos) /*!< 0x00000004 */
  8059. #define SYSCFG_ITLINE17_SR_LPTIM1_GLB SYSCFG_ITLINE17_SR_LPTIM1_GLB_Msk /*!< LPTIM1 -> exti[29] Interrupt */
  8060. #define SYSCFG_ITLINE18_SR_TIM7_GLB_Pos (0U)
  8061. #define SYSCFG_ITLINE18_SR_TIM7_GLB_Msk (0x1UL << SYSCFG_ITLINE18_SR_TIM7_GLB_Pos) /*!< 0x00000001 */
  8062. #define SYSCFG_ITLINE18_SR_TIM7_GLB SYSCFG_ITLINE18_SR_TIM7_GLB_Msk /*!< TIM7 GLB Interrupt */
  8063. #define SYSCFG_ITLINE18_SR_LPTIM2_GLB_Pos (1U)
  8064. #define SYSCFG_ITLINE18_SR_LPTIM2_GLB_Msk (0x1UL << SYSCFG_ITLINE18_SR_LPTIM2_GLB_Pos) /*!< 0x00000002 */
  8065. #define SYSCFG_ITLINE18_SR_LPTIM2_GLB SYSCFG_ITLINE18_SR_LPTIM2_GLB_Msk /*!< LPTIM2 -> exti[30] Interrupt */
  8066. #define SYSCFG_ITLINE19_SR_TIM14_GLB_Pos (0U)
  8067. #define SYSCFG_ITLINE19_SR_TIM14_GLB_Msk (0x1UL << SYSCFG_ITLINE19_SR_TIM14_GLB_Pos) /*!< 0x00000001 */
  8068. #define SYSCFG_ITLINE19_SR_TIM14_GLB SYSCFG_ITLINE19_SR_TIM14_GLB_Msk /*!< TIM14 GLB Interrupt */
  8069. #define SYSCFG_ITLINE20_SR_TIM15_GLB_Pos (0U)
  8070. #define SYSCFG_ITLINE20_SR_TIM15_GLB_Msk (0x1UL << SYSCFG_ITLINE20_SR_TIM15_GLB_Pos) /*!< 0x00000001 */
  8071. #define SYSCFG_ITLINE20_SR_TIM15_GLB SYSCFG_ITLINE20_SR_TIM15_GLB_Msk /*!< TIM15 GLB Interrupt */
  8072. #define SYSCFG_ITLINE21_SR_TIM16_GLB_Pos (0U)
  8073. #define SYSCFG_ITLINE21_SR_TIM16_GLB_Msk (0x1UL << SYSCFG_ITLINE21_SR_TIM16_GLB_Pos) /*!< 0x00000001 */
  8074. #define SYSCFG_ITLINE21_SR_TIM16_GLB SYSCFG_ITLINE21_SR_TIM16_GLB_Msk /*!< TIM16 GLB Interrupt */
  8075. #define SYSCFG_ITLINE21_SR_FDCAN1_IT0_Pos (1U)
  8076. #define SYSCFG_ITLINE21_SR_FDCAN1_IT0_Msk (0x1UL << SYSCFG_ITLINE21_SR_FDCAN1_IT0_Pos) /*!< 0x00000002 */
  8077. #define SYSCFG_ITLINE21_SR_FDCAN1_IT0 SYSCFG_ITLINE21_SR_FDCAN1_IT0_Msk /*!< FDCAN1 IT0 Interrupt */
  8078. #define SYSCFG_ITLINE21_SR_FDCAN2_IT0_Pos (2U)
  8079. #define SYSCFG_ITLINE21_SR_FDCAN2_IT0_Msk (0x1UL << SYSCFG_ITLINE21_SR_FDCAN2_IT0_Pos) /*!< 0x00000003 */
  8080. #define SYSCFG_ITLINE21_SR_FDCAN2_IT0 SYSCFG_ITLINE21_SR_FDCAN2_IT0_Msk /*!< FDCAN2 IT0 Interrupt */
  8081. #define SYSCFG_ITLINE22_SR_TIM17_GLB_Pos (0U)
  8082. #define SYSCFG_ITLINE22_SR_TIM17_GLB_Msk (0x1UL << SYSCFG_ITLINE22_SR_TIM17_GLB_Pos) /*!< 0x00000001 */
  8083. #define SYSCFG_ITLINE22_SR_TIM17_GLB SYSCFG_ITLINE22_SR_TIM17_GLB_Msk /*!< TIM17 GLB Interrupt */
  8084. #define SYSCFG_ITLINE22_SR_FDCAN1_IT1_Pos (1U)
  8085. #define SYSCFG_ITLINE22_SR_FDCAN1_IT1_Msk (0x1UL << SYSCFG_ITLINE22_SR_FDCAN1_IT1_Pos) /*!< 0x00000002 */
  8086. #define SYSCFG_ITLINE22_SR_FDCAN1_IT1 SYSCFG_ITLINE22_SR_FDCAN1_IT1_Msk /*!< FDCAN1 IT1 Interrupt */
  8087. #define SYSCFG_ITLINE22_SR_FDCAN2_IT1_Pos (2U)
  8088. #define SYSCFG_ITLINE22_SR_FDCAN2_IT1_Msk (0x1UL << SYSCFG_ITLINE22_SR_FDCAN2_IT1_Pos) /*!< 0x00000003 */
  8089. #define SYSCFG_ITLINE22_SR_FDCAN2_IT1 SYSCFG_ITLINE22_SR_FDCAN2_IT1_Msk /*!< FDCAN2 IT1 Interrupt */
  8090. #define SYSCFG_ITLINE23_SR_I2C1_GLB_Pos (0U)
  8091. #define SYSCFG_ITLINE23_SR_I2C1_GLB_Msk (0x1UL << SYSCFG_ITLINE23_SR_I2C1_GLB_Pos) /*!< 0x00000001 */
  8092. #define SYSCFG_ITLINE23_SR_I2C1_GLB SYSCFG_ITLINE23_SR_I2C1_GLB_Msk /*!< I2C1 GLB Interrupt -> exti[23] */
  8093. #define SYSCFG_ITLINE24_SR_I2C2_GLB_Pos (0U)
  8094. #define SYSCFG_ITLINE24_SR_I2C2_GLB_Msk (0x1UL << SYSCFG_ITLINE24_SR_I2C2_GLB_Pos) /*!< 0x00000001 */
  8095. #define SYSCFG_ITLINE24_SR_I2C2_GLB SYSCFG_ITLINE24_SR_I2C2_GLB_Msk /*!< I2C2 GLB Interrupt -> exti[22]*/
  8096. #define SYSCFG_ITLINE24_SR_I2C3_GLB_Pos (1U)
  8097. #define SYSCFG_ITLINE24_SR_I2C3_GLB_Msk (0x1UL << SYSCFG_ITLINE24_SR_I2C3_GLB_Pos) /*!< 0x00000002 */
  8098. #define SYSCFG_ITLINE24_SR_I2C3_GLB SYSCFG_ITLINE24_SR_I2C3_GLB_Msk /*!< I2C3 GLB Interrupt -> exti[24]*/
  8099. #define SYSCFG_ITLINE25_SR_SPI1_Pos (0U)
  8100. #define SYSCFG_ITLINE25_SR_SPI1_Msk (0x1UL << SYSCFG_ITLINE25_SR_SPI1_Pos) /*!< 0x00000001 */
  8101. #define SYSCFG_ITLINE25_SR_SPI1 SYSCFG_ITLINE25_SR_SPI1_Msk /*!< SPI1 Interrupt */
  8102. #define SYSCFG_ITLINE26_SR_SPI2_Pos (0U)
  8103. #define SYSCFG_ITLINE26_SR_SPI2_Msk (0x1UL << SYSCFG_ITLINE26_SR_SPI2_Pos) /*!< 0x00000001 */
  8104. #define SYSCFG_ITLINE26_SR_SPI2 SYSCFG_ITLINE26_SR_SPI2_Msk /*!< SPI2 Interrupt */
  8105. #define SYSCFG_ITLINE26_SR_SPI3_Pos (1U)
  8106. #define SYSCFG_ITLINE26_SR_SPI3_Msk (0x1UL << SYSCFG_ITLINE26_SR_SPI3_Pos) /*!< 0x00000002 */
  8107. #define SYSCFG_ITLINE26_SR_SPI3 SYSCFG_ITLINE26_SR_SPI3_Msk /*!< SPI3 Interrupt */
  8108. #define SYSCFG_ITLINE27_SR_USART1_GLB_Pos (0U)
  8109. #define SYSCFG_ITLINE27_SR_USART1_GLB_Msk (0x1UL << SYSCFG_ITLINE27_SR_USART1_GLB_Pos) /*!< 0x00000001 */
  8110. #define SYSCFG_ITLINE27_SR_USART1_GLB SYSCFG_ITLINE27_SR_USART1_GLB_Msk /*!< USART1 GLB Interrupt -> exti[25] */
  8111. #define SYSCFG_ITLINE28_SR_USART2_GLB_Pos (0U)
  8112. #define SYSCFG_ITLINE28_SR_USART2_GLB_Msk (0x1UL << SYSCFG_ITLINE28_SR_USART2_GLB_Pos) /*!< 0x00000001 */
  8113. #define SYSCFG_ITLINE28_SR_USART2_GLB SYSCFG_ITLINE28_SR_USART2_GLB_Msk /*!< USART2 GLB Interrupt -> exti[26] */
  8114. #define SYSCFG_ITLINE28_SR_LPUART2_GLB_Pos (1U)
  8115. #define SYSCFG_ITLINE28_SR_LPUART2_GLB_Msk (0x1UL << SYSCFG_ITLINE28_SR_LPUART2_GLB_Pos) /*!< 0x00000002 */
  8116. #define SYSCFG_ITLINE28_SR_LPUART2_GLB SYSCFG_ITLINE28_SR_LPUART2_GLB_Msk /*!< LPUART2 GLB Interrupt */
  8117. #define SYSCFG_ITLINE29_SR_USART3_GLB_Pos (0U)
  8118. #define SYSCFG_ITLINE29_SR_USART3_GLB_Msk (0x1UL << SYSCFG_ITLINE29_SR_USART3_GLB_Pos) /*!< 0x00000001 */
  8119. #define SYSCFG_ITLINE29_SR_USART3_GLB SYSCFG_ITLINE29_SR_USART3_GLB_Msk /*!< USART3 GLB Interrupt */
  8120. #define SYSCFG_ITLINE29_SR_USART4_GLB_Pos (1U)
  8121. #define SYSCFG_ITLINE29_SR_USART4_GLB_Msk (0x1UL << SYSCFG_ITLINE29_SR_USART4_GLB_Pos) /*!< 0x00000002 */
  8122. #define SYSCFG_ITLINE29_SR_USART4_GLB SYSCFG_ITLINE29_SR_USART4_GLB_Msk /*!< USART4 GLB Interrupt */
  8123. #define SYSCFG_ITLINE29_SR_LPUART1_GLB_Pos (2U)
  8124. #define SYSCFG_ITLINE29_SR_LPUART1_GLB_Msk (0x1UL << SYSCFG_ITLINE29_SR_LPUART1_GLB_Pos) /*!< 0x00000004 */
  8125. #define SYSCFG_ITLINE29_SR_LPUART1_GLB SYSCFG_ITLINE29_SR_LPUART1_GLB_Msk /*!< LPUART1 GLB Interrupt -> exti[28] */
  8126. #define SYSCFG_ITLINE29_SR_USART5_GLB_Pos (3U)
  8127. #define SYSCFG_ITLINE29_SR_USART5_GLB_Msk (0x1UL << SYSCFG_ITLINE29_SR_USART5_GLB_Pos) /*!< 0x00000008 */
  8128. #define SYSCFG_ITLINE29_SR_USART5_GLB SYSCFG_ITLINE29_SR_USART5_GLB_Msk /*!< USART5 GLB Interrupt */
  8129. #define SYSCFG_ITLINE29_SR_USART6_GLB_Pos (4U)
  8130. #define SYSCFG_ITLINE29_SR_USART6_GLB_Msk (0x1UL << SYSCFG_ITLINE29_SR_USART6_GLB_Pos) /*!< 0x00000010 */
  8131. #define SYSCFG_ITLINE29_SR_USART6_GLB SYSCFG_ITLINE29_SR_USART6_GLB_Msk /*!< USART6 GLB Interrupt */
  8132. #define SYSCFG_ITLINE30_SR_CEC_Pos (0U)
  8133. #define SYSCFG_ITLINE30_SR_CEC_Msk (0x1UL << SYSCFG_ITLINE30_SR_CEC_Pos) /*!< 0x00000001 */
  8134. #define SYSCFG_ITLINE30_SR_CEC SYSCFG_ITLINE30_SR_CEC_Msk /*!< CEC Interrupt-> exti[27] */
  8135. #define SYSCFG_ITLINE31_SR_RNG_Pos (0U)
  8136. #define SYSCFG_ITLINE31_SR_RNG_Msk (0x1UL << SYSCFG_ITLINE31_SR_RNG_Pos) /*!< 0x00000001 */
  8137. #define SYSCFG_ITLINE31_SR_RNG SYSCFG_ITLINE31_SR_RNG_Msk /*!< RNG Interrupt */
  8138. #define SYSCFG_ITLINE31_SR_AES_Pos (1U)
  8139. #define SYSCFG_ITLINE31_SR_AES_Msk (0x1UL << SYSCFG_ITLINE31_SR_AES_Pos) /*!< 0x00000002 */
  8140. #define SYSCFG_ITLINE31_SR_AES SYSCFG_ITLINE31_SR_AES_Msk /*!< AES Interrupt */
  8141. /******************************************************************************/
  8142. /* */
  8143. /* TIM */
  8144. /* */
  8145. /******************************************************************************/
  8146. /******************* Bit definition for TIM_CR1 register ********************/
  8147. #define TIM_CR1_CEN_Pos (0U)
  8148. #define TIM_CR1_CEN_Msk (0x1UL << TIM_CR1_CEN_Pos) /*!< 0x00000001 */
  8149. #define TIM_CR1_CEN TIM_CR1_CEN_Msk /*!<Counter enable */
  8150. #define TIM_CR1_UDIS_Pos (1U)
  8151. #define TIM_CR1_UDIS_Msk (0x1UL << TIM_CR1_UDIS_Pos) /*!< 0x00000002 */
  8152. #define TIM_CR1_UDIS TIM_CR1_UDIS_Msk /*!<Update disable */
  8153. #define TIM_CR1_URS_Pos (2U)
  8154. #define TIM_CR1_URS_Msk (0x1UL << TIM_CR1_URS_Pos) /*!< 0x00000004 */
  8155. #define TIM_CR1_URS TIM_CR1_URS_Msk /*!<Update request source */
  8156. #define TIM_CR1_OPM_Pos (3U)
  8157. #define TIM_CR1_OPM_Msk (0x1UL << TIM_CR1_OPM_Pos) /*!< 0x00000008 */
  8158. #define TIM_CR1_OPM TIM_CR1_OPM_Msk /*!<One pulse mode */
  8159. #define TIM_CR1_DIR_Pos (4U)
  8160. #define TIM_CR1_DIR_Msk (0x1UL << TIM_CR1_DIR_Pos) /*!< 0x00000010 */
  8161. #define TIM_CR1_DIR TIM_CR1_DIR_Msk /*!<Direction */
  8162. #define TIM_CR1_CMS_Pos (5U)
  8163. #define TIM_CR1_CMS_Msk (0x3UL << TIM_CR1_CMS_Pos) /*!< 0x00000060 */
  8164. #define TIM_CR1_CMS TIM_CR1_CMS_Msk /*!<CMS[1:0] bits (Center-aligned mode selection) */
  8165. #define TIM_CR1_CMS_0 (0x1UL << TIM_CR1_CMS_Pos) /*!< 0x00000020 */
  8166. #define TIM_CR1_CMS_1 (0x2UL << TIM_CR1_CMS_Pos) /*!< 0x00000040 */
  8167. #define TIM_CR1_ARPE_Pos (7U)
  8168. #define TIM_CR1_ARPE_Msk (0x1UL << TIM_CR1_ARPE_Pos) /*!< 0x00000080 */
  8169. #define TIM_CR1_ARPE TIM_CR1_ARPE_Msk /*!<Auto-reload preload enable */
  8170. #define TIM_CR1_CKD_Pos (8U)
  8171. #define TIM_CR1_CKD_Msk (0x3UL << TIM_CR1_CKD_Pos) /*!< 0x00000300 */
  8172. #define TIM_CR1_CKD TIM_CR1_CKD_Msk /*!<CKD[1:0] bits (clock division) */
  8173. #define TIM_CR1_CKD_0 (0x1UL << TIM_CR1_CKD_Pos) /*!< 0x00000100 */
  8174. #define TIM_CR1_CKD_1 (0x2UL << TIM_CR1_CKD_Pos) /*!< 0x00000200 */
  8175. #define TIM_CR1_UIFREMAP_Pos (11U)
  8176. #define TIM_CR1_UIFREMAP_Msk (0x1UL << TIM_CR1_UIFREMAP_Pos) /*!< 0x00000800 */
  8177. #define TIM_CR1_UIFREMAP TIM_CR1_UIFREMAP_Msk /*!<Update interrupt flag remap */
  8178. /******************* Bit definition for TIM_CR2 register ********************/
  8179. #define TIM_CR2_CCPC_Pos (0U)
  8180. #define TIM_CR2_CCPC_Msk (0x1UL << TIM_CR2_CCPC_Pos) /*!< 0x00000001 */
  8181. #define TIM_CR2_CCPC TIM_CR2_CCPC_Msk /*!<Capture/Compare Preloaded Control */
  8182. #define TIM_CR2_CCUS_Pos (2U)
  8183. #define TIM_CR2_CCUS_Msk (0x1UL << TIM_CR2_CCUS_Pos) /*!< 0x00000004 */
  8184. #define TIM_CR2_CCUS TIM_CR2_CCUS_Msk /*!<Capture/Compare Control Update Selection */
  8185. #define TIM_CR2_CCDS_Pos (3U)
  8186. #define TIM_CR2_CCDS_Msk (0x1UL << TIM_CR2_CCDS_Pos) /*!< 0x00000008 */
  8187. #define TIM_CR2_CCDS TIM_CR2_CCDS_Msk /*!<Capture/Compare DMA Selection */
  8188. #define TIM_CR2_MMS_Pos (4U)
  8189. #define TIM_CR2_MMS_Msk (0x7UL << TIM_CR2_MMS_Pos) /*!< 0x00000070 */
  8190. #define TIM_CR2_MMS TIM_CR2_MMS_Msk /*!<MMS[2:0] bits (Master Mode Selection) */
  8191. #define TIM_CR2_MMS_0 (0x1UL << TIM_CR2_MMS_Pos) /*!< 0x00000010 */
  8192. #define TIM_CR2_MMS_1 (0x2UL << TIM_CR2_MMS_Pos) /*!< 0x00000020 */
  8193. #define TIM_CR2_MMS_2 (0x4UL << TIM_CR2_MMS_Pos) /*!< 0x00000040 */
  8194. #define TIM_CR2_TI1S_Pos (7U)
  8195. #define TIM_CR2_TI1S_Msk (0x1UL << TIM_CR2_TI1S_Pos) /*!< 0x00000080 */
  8196. #define TIM_CR2_TI1S TIM_CR2_TI1S_Msk /*!<TI1 Selection */
  8197. #define TIM_CR2_OIS1_Pos (8U)
  8198. #define TIM_CR2_OIS1_Msk (0x1UL << TIM_CR2_OIS1_Pos) /*!< 0x00000100 */
  8199. #define TIM_CR2_OIS1 TIM_CR2_OIS1_Msk /*!<Output Idle state 1 (OC1 output) */
  8200. #define TIM_CR2_OIS1N_Pos (9U)
  8201. #define TIM_CR2_OIS1N_Msk (0x1UL << TIM_CR2_OIS1N_Pos) /*!< 0x00000200 */
  8202. #define TIM_CR2_OIS1N TIM_CR2_OIS1N_Msk /*!<Output Idle state 1 (OC1N output) */
  8203. #define TIM_CR2_OIS2_Pos (10U)
  8204. #define TIM_CR2_OIS2_Msk (0x1UL << TIM_CR2_OIS2_Pos) /*!< 0x00000400 */
  8205. #define TIM_CR2_OIS2 TIM_CR2_OIS2_Msk /*!<Output Idle state 2 (OC2 output) */
  8206. #define TIM_CR2_OIS2N_Pos (11U)
  8207. #define TIM_CR2_OIS2N_Msk (0x1UL << TIM_CR2_OIS2N_Pos) /*!< 0x00000800 */
  8208. #define TIM_CR2_OIS2N TIM_CR2_OIS2N_Msk /*!<Output Idle state 2 (OC2N output) */
  8209. #define TIM_CR2_OIS3_Pos (12U)
  8210. #define TIM_CR2_OIS3_Msk (0x1UL << TIM_CR2_OIS3_Pos) /*!< 0x00001000 */
  8211. #define TIM_CR2_OIS3 TIM_CR2_OIS3_Msk /*!<Output Idle state 3 (OC3 output) */
  8212. #define TIM_CR2_OIS3N_Pos (13U)
  8213. #define TIM_CR2_OIS3N_Msk (0x1UL << TIM_CR2_OIS3N_Pos) /*!< 0x00002000 */
  8214. #define TIM_CR2_OIS3N TIM_CR2_OIS3N_Msk /*!<Output Idle state 3 (OC3N output) */
  8215. #define TIM_CR2_OIS4_Pos (14U)
  8216. #define TIM_CR2_OIS4_Msk (0x1UL << TIM_CR2_OIS4_Pos) /*!< 0x00004000 */
  8217. #define TIM_CR2_OIS4 TIM_CR2_OIS4_Msk /*!<Output Idle state 4 (OC4 output) */
  8218. #define TIM_CR2_OIS5_Pos (16U)
  8219. #define TIM_CR2_OIS5_Msk (0x1UL << TIM_CR2_OIS5_Pos) /*!< 0x00010000 */
  8220. #define TIM_CR2_OIS5 TIM_CR2_OIS5_Msk /*!<Output Idle state 5 (OC5 output) */
  8221. #define TIM_CR2_OIS6_Pos (18U)
  8222. #define TIM_CR2_OIS6_Msk (0x1UL << TIM_CR2_OIS6_Pos) /*!< 0x00040000 */
  8223. #define TIM_CR2_OIS6 TIM_CR2_OIS6_Msk /*!<Output Idle state 6 (OC6 output) */
  8224. #define TIM_CR2_MMS2_Pos (20U)
  8225. #define TIM_CR2_MMS2_Msk (0xFUL << TIM_CR2_MMS2_Pos) /*!< 0x00F00000 */
  8226. #define TIM_CR2_MMS2 TIM_CR2_MMS2_Msk /*!<MMS[2:0] bits (Master Mode Selection) */
  8227. #define TIM_CR2_MMS2_0 (0x1UL << TIM_CR2_MMS2_Pos) /*!< 0x00100000 */
  8228. #define TIM_CR2_MMS2_1 (0x2UL << TIM_CR2_MMS2_Pos) /*!< 0x00200000 */
  8229. #define TIM_CR2_MMS2_2 (0x4UL << TIM_CR2_MMS2_Pos) /*!< 0x00400000 */
  8230. #define TIM_CR2_MMS2_3 (0x8UL << TIM_CR2_MMS2_Pos) /*!< 0x00800000 */
  8231. /******************* Bit definition for TIM_SMCR register *******************/
  8232. #define TIM_SMCR_SMS_Pos (0U)
  8233. #define TIM_SMCR_SMS_Msk (0x10007UL << TIM_SMCR_SMS_Pos) /*!< 0x00010007 */
  8234. #define TIM_SMCR_SMS TIM_SMCR_SMS_Msk /*!<SMS[2:0] bits (Slave mode selection) */
  8235. #define TIM_SMCR_SMS_0 (0x00001UL << TIM_SMCR_SMS_Pos) /*!< 0x00000001 */
  8236. #define TIM_SMCR_SMS_1 (0x00002UL << TIM_SMCR_SMS_Pos) /*!< 0x00000002 */
  8237. #define TIM_SMCR_SMS_2 (0x00004UL << TIM_SMCR_SMS_Pos) /*!< 0x00000004 */
  8238. #define TIM_SMCR_SMS_3 (0x10000UL << TIM_SMCR_SMS_Pos) /*!< 0x00010000 */
  8239. #define TIM_SMCR_OCCS_Pos (3U)
  8240. #define TIM_SMCR_OCCS_Msk (0x1UL << TIM_SMCR_OCCS_Pos) /*!< 0x00000008 */
  8241. #define TIM_SMCR_OCCS TIM_SMCR_OCCS_Msk /*!< OCREF clear selection */
  8242. #define TIM_SMCR_TS_Pos (4U)
  8243. #define TIM_SMCR_TS_Msk (0x30007UL << TIM_SMCR_TS_Pos) /*!< 0x00300070 */
  8244. #define TIM_SMCR_TS TIM_SMCR_TS_Msk /*!<TS[2:0] bits (Trigger selection) */
  8245. #define TIM_SMCR_TS_0 (0x00001UL << TIM_SMCR_TS_Pos) /*!< 0x00000010 */
  8246. #define TIM_SMCR_TS_1 (0x00002UL << TIM_SMCR_TS_Pos) /*!< 0x00000020 */
  8247. #define TIM_SMCR_TS_2 (0x00004UL << TIM_SMCR_TS_Pos) /*!< 0x00000040 */
  8248. #define TIM_SMCR_TS_3 (0x10000UL << TIM_SMCR_TS_Pos) /*!< 0x00100000 */
  8249. #define TIM_SMCR_TS_4 (0x20000UL << TIM_SMCR_TS_Pos) /*!< 0x00200000 */
  8250. #define TIM_SMCR_MSM_Pos (7U)
  8251. #define TIM_SMCR_MSM_Msk (0x1UL << TIM_SMCR_MSM_Pos) /*!< 0x00000080 */
  8252. #define TIM_SMCR_MSM TIM_SMCR_MSM_Msk /*!<Master/slave mode */
  8253. #define TIM_SMCR_ETF_Pos (8U)
  8254. #define TIM_SMCR_ETF_Msk (0xFUL << TIM_SMCR_ETF_Pos) /*!< 0x00000F00 */
  8255. #define TIM_SMCR_ETF TIM_SMCR_ETF_Msk /*!<ETF[3:0] bits (External trigger filter) */
  8256. #define TIM_SMCR_ETF_0 (0x1UL << TIM_SMCR_ETF_Pos) /*!< 0x00000100 */
  8257. #define TIM_SMCR_ETF_1 (0x2UL << TIM_SMCR_ETF_Pos) /*!< 0x00000200 */
  8258. #define TIM_SMCR_ETF_2 (0x4UL << TIM_SMCR_ETF_Pos) /*!< 0x00000400 */
  8259. #define TIM_SMCR_ETF_3 (0x8UL << TIM_SMCR_ETF_Pos) /*!< 0x00000800 */
  8260. #define TIM_SMCR_ETPS_Pos (12U)
  8261. #define TIM_SMCR_ETPS_Msk (0x3UL << TIM_SMCR_ETPS_Pos) /*!< 0x00003000 */
  8262. #define TIM_SMCR_ETPS TIM_SMCR_ETPS_Msk /*!<ETPS[1:0] bits (External trigger prescaler) */
  8263. #define TIM_SMCR_ETPS_0 (0x1UL << TIM_SMCR_ETPS_Pos) /*!< 0x00001000 */
  8264. #define TIM_SMCR_ETPS_1 (0x2UL << TIM_SMCR_ETPS_Pos) /*!< 0x00002000 */
  8265. #define TIM_SMCR_ECE_Pos (14U)
  8266. #define TIM_SMCR_ECE_Msk (0x1UL << TIM_SMCR_ECE_Pos) /*!< 0x00004000 */
  8267. #define TIM_SMCR_ECE TIM_SMCR_ECE_Msk /*!<External clock enable */
  8268. #define TIM_SMCR_ETP_Pos (15U)
  8269. #define TIM_SMCR_ETP_Msk (0x1UL << TIM_SMCR_ETP_Pos) /*!< 0x00008000 */
  8270. #define TIM_SMCR_ETP TIM_SMCR_ETP_Msk /*!<External trigger polarity */
  8271. /******************* Bit definition for TIM_DIER register *******************/
  8272. #define TIM_DIER_UIE_Pos (0U)
  8273. #define TIM_DIER_UIE_Msk (0x1UL << TIM_DIER_UIE_Pos) /*!< 0x00000001 */
  8274. #define TIM_DIER_UIE TIM_DIER_UIE_Msk /*!<Update interrupt enable */
  8275. #define TIM_DIER_CC1IE_Pos (1U)
  8276. #define TIM_DIER_CC1IE_Msk (0x1UL << TIM_DIER_CC1IE_Pos) /*!< 0x00000002 */
  8277. #define TIM_DIER_CC1IE TIM_DIER_CC1IE_Msk /*!<Capture/Compare 1 interrupt enable */
  8278. #define TIM_DIER_CC2IE_Pos (2U)
  8279. #define TIM_DIER_CC2IE_Msk (0x1UL << TIM_DIER_CC2IE_Pos) /*!< 0x00000004 */
  8280. #define TIM_DIER_CC2IE TIM_DIER_CC2IE_Msk /*!<Capture/Compare 2 interrupt enable */
  8281. #define TIM_DIER_CC3IE_Pos (3U)
  8282. #define TIM_DIER_CC3IE_Msk (0x1UL << TIM_DIER_CC3IE_Pos) /*!< 0x00000008 */
  8283. #define TIM_DIER_CC3IE TIM_DIER_CC3IE_Msk /*!<Capture/Compare 3 interrupt enable */
  8284. #define TIM_DIER_CC4IE_Pos (4U)
  8285. #define TIM_DIER_CC4IE_Msk (0x1UL << TIM_DIER_CC4IE_Pos) /*!< 0x00000010 */
  8286. #define TIM_DIER_CC4IE TIM_DIER_CC4IE_Msk /*!<Capture/Compare 4 interrupt enable */
  8287. #define TIM_DIER_COMIE_Pos (5U)
  8288. #define TIM_DIER_COMIE_Msk (0x1UL << TIM_DIER_COMIE_Pos) /*!< 0x00000020 */
  8289. #define TIM_DIER_COMIE TIM_DIER_COMIE_Msk /*!<COM interrupt enable */
  8290. #define TIM_DIER_TIE_Pos (6U)
  8291. #define TIM_DIER_TIE_Msk (0x1UL << TIM_DIER_TIE_Pos) /*!< 0x00000040 */
  8292. #define TIM_DIER_TIE TIM_DIER_TIE_Msk /*!<Trigger interrupt enable */
  8293. #define TIM_DIER_BIE_Pos (7U)
  8294. #define TIM_DIER_BIE_Msk (0x1UL << TIM_DIER_BIE_Pos) /*!< 0x00000080 */
  8295. #define TIM_DIER_BIE TIM_DIER_BIE_Msk /*!<Break interrupt enable */
  8296. #define TIM_DIER_UDE_Pos (8U)
  8297. #define TIM_DIER_UDE_Msk (0x1UL << TIM_DIER_UDE_Pos) /*!< 0x00000100 */
  8298. #define TIM_DIER_UDE TIM_DIER_UDE_Msk /*!<Update DMA request enable */
  8299. #define TIM_DIER_CC1DE_Pos (9U)
  8300. #define TIM_DIER_CC1DE_Msk (0x1UL << TIM_DIER_CC1DE_Pos) /*!< 0x00000200 */
  8301. #define TIM_DIER_CC1DE TIM_DIER_CC1DE_Msk /*!<Capture/Compare 1 DMA request enable */
  8302. #define TIM_DIER_CC2DE_Pos (10U)
  8303. #define TIM_DIER_CC2DE_Msk (0x1UL << TIM_DIER_CC2DE_Pos) /*!< 0x00000400 */
  8304. #define TIM_DIER_CC2DE TIM_DIER_CC2DE_Msk /*!<Capture/Compare 2 DMA request enable */
  8305. #define TIM_DIER_CC3DE_Pos (11U)
  8306. #define TIM_DIER_CC3DE_Msk (0x1UL << TIM_DIER_CC3DE_Pos) /*!< 0x00000800 */
  8307. #define TIM_DIER_CC3DE TIM_DIER_CC3DE_Msk /*!<Capture/Compare 3 DMA request enable */
  8308. #define TIM_DIER_CC4DE_Pos (12U)
  8309. #define TIM_DIER_CC4DE_Msk (0x1UL << TIM_DIER_CC4DE_Pos) /*!< 0x00001000 */
  8310. #define TIM_DIER_CC4DE TIM_DIER_CC4DE_Msk /*!<Capture/Compare 4 DMA request enable */
  8311. #define TIM_DIER_COMDE_Pos (13U)
  8312. #define TIM_DIER_COMDE_Msk (0x1UL << TIM_DIER_COMDE_Pos) /*!< 0x00002000 */
  8313. #define TIM_DIER_COMDE TIM_DIER_COMDE_Msk /*!<COM DMA request enable */
  8314. #define TIM_DIER_TDE_Pos (14U)
  8315. #define TIM_DIER_TDE_Msk (0x1UL << TIM_DIER_TDE_Pos) /*!< 0x00004000 */
  8316. #define TIM_DIER_TDE TIM_DIER_TDE_Msk /*!<Trigger DMA request enable */
  8317. /******************** Bit definition for TIM_SR register ********************/
  8318. #define TIM_SR_UIF_Pos (0U)
  8319. #define TIM_SR_UIF_Msk (0x1UL << TIM_SR_UIF_Pos) /*!< 0x00000001 */
  8320. #define TIM_SR_UIF TIM_SR_UIF_Msk /*!<Update interrupt Flag */
  8321. #define TIM_SR_CC1IF_Pos (1U)
  8322. #define TIM_SR_CC1IF_Msk (0x1UL << TIM_SR_CC1IF_Pos) /*!< 0x00000002 */
  8323. #define TIM_SR_CC1IF TIM_SR_CC1IF_Msk /*!<Capture/Compare 1 interrupt Flag */
  8324. #define TIM_SR_CC2IF_Pos (2U)
  8325. #define TIM_SR_CC2IF_Msk (0x1UL << TIM_SR_CC2IF_Pos) /*!< 0x00000004 */
  8326. #define TIM_SR_CC2IF TIM_SR_CC2IF_Msk /*!<Capture/Compare 2 interrupt Flag */
  8327. #define TIM_SR_CC3IF_Pos (3U)
  8328. #define TIM_SR_CC3IF_Msk (0x1UL << TIM_SR_CC3IF_Pos) /*!< 0x00000008 */
  8329. #define TIM_SR_CC3IF TIM_SR_CC3IF_Msk /*!<Capture/Compare 3 interrupt Flag */
  8330. #define TIM_SR_CC4IF_Pos (4U)
  8331. #define TIM_SR_CC4IF_Msk (0x1UL << TIM_SR_CC4IF_Pos) /*!< 0x00000010 */
  8332. #define TIM_SR_CC4IF TIM_SR_CC4IF_Msk /*!<Capture/Compare 4 interrupt Flag */
  8333. #define TIM_SR_COMIF_Pos (5U)
  8334. #define TIM_SR_COMIF_Msk (0x1UL << TIM_SR_COMIF_Pos) /*!< 0x00000020 */
  8335. #define TIM_SR_COMIF TIM_SR_COMIF_Msk /*!<COM interrupt Flag */
  8336. #define TIM_SR_TIF_Pos (6U)
  8337. #define TIM_SR_TIF_Msk (0x1UL << TIM_SR_TIF_Pos) /*!< 0x00000040 */
  8338. #define TIM_SR_TIF TIM_SR_TIF_Msk /*!<Trigger interrupt Flag */
  8339. #define TIM_SR_BIF_Pos (7U)
  8340. #define TIM_SR_BIF_Msk (0x1UL << TIM_SR_BIF_Pos) /*!< 0x00000080 */
  8341. #define TIM_SR_BIF TIM_SR_BIF_Msk /*!<Break interrupt Flag */
  8342. #define TIM_SR_B2IF_Pos (8U)
  8343. #define TIM_SR_B2IF_Msk (0x1UL << TIM_SR_B2IF_Pos) /*!< 0x00000100 */
  8344. #define TIM_SR_B2IF TIM_SR_B2IF_Msk /*!<Break 2 interrupt Flag */
  8345. #define TIM_SR_CC1OF_Pos (9U)
  8346. #define TIM_SR_CC1OF_Msk (0x1UL << TIM_SR_CC1OF_Pos) /*!< 0x00000200 */
  8347. #define TIM_SR_CC1OF TIM_SR_CC1OF_Msk /*!<Capture/Compare 1 Overcapture Flag */
  8348. #define TIM_SR_CC2OF_Pos (10U)
  8349. #define TIM_SR_CC2OF_Msk (0x1UL << TIM_SR_CC2OF_Pos) /*!< 0x00000400 */
  8350. #define TIM_SR_CC2OF TIM_SR_CC2OF_Msk /*!<Capture/Compare 2 Overcapture Flag */
  8351. #define TIM_SR_CC3OF_Pos (11U)
  8352. #define TIM_SR_CC3OF_Msk (0x1UL << TIM_SR_CC3OF_Pos) /*!< 0x00000800 */
  8353. #define TIM_SR_CC3OF TIM_SR_CC3OF_Msk /*!<Capture/Compare 3 Overcapture Flag */
  8354. #define TIM_SR_CC4OF_Pos (12U)
  8355. #define TIM_SR_CC4OF_Msk (0x1UL << TIM_SR_CC4OF_Pos) /*!< 0x00001000 */
  8356. #define TIM_SR_CC4OF TIM_SR_CC4OF_Msk /*!<Capture/Compare 4 Overcapture Flag */
  8357. #define TIM_SR_SBIF_Pos (13U)
  8358. #define TIM_SR_SBIF_Msk (0x1UL << TIM_SR_SBIF_Pos) /*!< 0x00002000 */
  8359. #define TIM_SR_SBIF TIM_SR_SBIF_Msk /*!<System Break interrupt Flag */
  8360. #define TIM_SR_CC5IF_Pos (16U)
  8361. #define TIM_SR_CC5IF_Msk (0x1UL << TIM_SR_CC5IF_Pos) /*!< 0x00010000 */
  8362. #define TIM_SR_CC5IF TIM_SR_CC5IF_Msk /*!<Capture/Compare 5 interrupt Flag */
  8363. #define TIM_SR_CC6IF_Pos (17U)
  8364. #define TIM_SR_CC6IF_Msk (0x1UL << TIM_SR_CC6IF_Pos) /*!< 0x00020000 */
  8365. #define TIM_SR_CC6IF TIM_SR_CC6IF_Msk /*!<Capture/Compare 6 interrupt Flag */
  8366. /******************* Bit definition for TIM_EGR register ********************/
  8367. #define TIM_EGR_UG_Pos (0U)
  8368. #define TIM_EGR_UG_Msk (0x1UL << TIM_EGR_UG_Pos) /*!< 0x00000001 */
  8369. #define TIM_EGR_UG TIM_EGR_UG_Msk /*!<Update Generation */
  8370. #define TIM_EGR_CC1G_Pos (1U)
  8371. #define TIM_EGR_CC1G_Msk (0x1UL << TIM_EGR_CC1G_Pos) /*!< 0x00000002 */
  8372. #define TIM_EGR_CC1G TIM_EGR_CC1G_Msk /*!<Capture/Compare 1 Generation */
  8373. #define TIM_EGR_CC2G_Pos (2U)
  8374. #define TIM_EGR_CC2G_Msk (0x1UL << TIM_EGR_CC2G_Pos) /*!< 0x00000004 */
  8375. #define TIM_EGR_CC2G TIM_EGR_CC2G_Msk /*!<Capture/Compare 2 Generation */
  8376. #define TIM_EGR_CC3G_Pos (3U)
  8377. #define TIM_EGR_CC3G_Msk (0x1UL << TIM_EGR_CC3G_Pos) /*!< 0x00000008 */
  8378. #define TIM_EGR_CC3G TIM_EGR_CC3G_Msk /*!<Capture/Compare 3 Generation */
  8379. #define TIM_EGR_CC4G_Pos (4U)
  8380. #define TIM_EGR_CC4G_Msk (0x1UL << TIM_EGR_CC4G_Pos) /*!< 0x00000010 */
  8381. #define TIM_EGR_CC4G TIM_EGR_CC4G_Msk /*!<Capture/Compare 4 Generation */
  8382. #define TIM_EGR_COMG_Pos (5U)
  8383. #define TIM_EGR_COMG_Msk (0x1UL << TIM_EGR_COMG_Pos) /*!< 0x00000020 */
  8384. #define TIM_EGR_COMG TIM_EGR_COMG_Msk /*!<Capture/Compare Control Update Generation */
  8385. #define TIM_EGR_TG_Pos (6U)
  8386. #define TIM_EGR_TG_Msk (0x1UL << TIM_EGR_TG_Pos) /*!< 0x00000040 */
  8387. #define TIM_EGR_TG TIM_EGR_TG_Msk /*!<Trigger Generation */
  8388. #define TIM_EGR_BG_Pos (7U)
  8389. #define TIM_EGR_BG_Msk (0x1UL << TIM_EGR_BG_Pos) /*!< 0x00000080 */
  8390. #define TIM_EGR_BG TIM_EGR_BG_Msk /*!<Break Generation */
  8391. #define TIM_EGR_B2G_Pos (8U)
  8392. #define TIM_EGR_B2G_Msk (0x1UL << TIM_EGR_B2G_Pos) /*!< 0x00000100 */
  8393. #define TIM_EGR_B2G TIM_EGR_B2G_Msk /*!<Break 2 Generation */
  8394. /****************** Bit definition for TIM_CCMR1 register *******************/
  8395. #define TIM_CCMR1_CC1S_Pos (0U)
  8396. #define TIM_CCMR1_CC1S_Msk (0x3UL << TIM_CCMR1_CC1S_Pos) /*!< 0x00000003 */
  8397. #define TIM_CCMR1_CC1S TIM_CCMR1_CC1S_Msk /*!<CC1S[1:0] bits (Capture/Compare 1 Selection) */
  8398. #define TIM_CCMR1_CC1S_0 (0x1UL << TIM_CCMR1_CC1S_Pos) /*!< 0x00000001 */
  8399. #define TIM_CCMR1_CC1S_1 (0x2UL << TIM_CCMR1_CC1S_Pos) /*!< 0x00000002 */
  8400. #define TIM_CCMR1_OC1FE_Pos (2U)
  8401. #define TIM_CCMR1_OC1FE_Msk (0x1UL << TIM_CCMR1_OC1FE_Pos) /*!< 0x00000004 */
  8402. #define TIM_CCMR1_OC1FE TIM_CCMR1_OC1FE_Msk /*!<Output Compare 1 Fast enable */
  8403. #define TIM_CCMR1_OC1PE_Pos (3U)
  8404. #define TIM_CCMR1_OC1PE_Msk (0x1UL << TIM_CCMR1_OC1PE_Pos) /*!< 0x00000008 */
  8405. #define TIM_CCMR1_OC1PE TIM_CCMR1_OC1PE_Msk /*!<Output Compare 1 Preload enable */
  8406. #define TIM_CCMR1_OC1M_Pos (4U)
  8407. #define TIM_CCMR1_OC1M_Msk (0x1007UL << TIM_CCMR1_OC1M_Pos) /*!< 0x00010070 */
  8408. #define TIM_CCMR1_OC1M TIM_CCMR1_OC1M_Msk /*!<OC1M[2:0] bits (Output Compare 1 Mode) */
  8409. #define TIM_CCMR1_OC1M_0 (0x0001UL << TIM_CCMR1_OC1M_Pos) /*!< 0x00000010 */
  8410. #define TIM_CCMR1_OC1M_1 (0x0002UL << TIM_CCMR1_OC1M_Pos) /*!< 0x00000020 */
  8411. #define TIM_CCMR1_OC1M_2 (0x0004UL << TIM_CCMR1_OC1M_Pos) /*!< 0x00000040 */
  8412. #define TIM_CCMR1_OC1M_3 (0x1000UL << TIM_CCMR1_OC1M_Pos) /*!< 0x00010000 */
  8413. #define TIM_CCMR1_OC1CE_Pos (7U)
  8414. #define TIM_CCMR1_OC1CE_Msk (0x1UL << TIM_CCMR1_OC1CE_Pos) /*!< 0x00000080 */
  8415. #define TIM_CCMR1_OC1CE TIM_CCMR1_OC1CE_Msk /*!<Output Compare 1 Clear Enable */
  8416. #define TIM_CCMR1_CC2S_Pos (8U)
  8417. #define TIM_CCMR1_CC2S_Msk (0x3UL << TIM_CCMR1_CC2S_Pos) /*!< 0x00000300 */
  8418. #define TIM_CCMR1_CC2S TIM_CCMR1_CC2S_Msk /*!<CC2S[1:0] bits (Capture/Compare 2 Selection) */
  8419. #define TIM_CCMR1_CC2S_0 (0x1UL << TIM_CCMR1_CC2S_Pos) /*!< 0x00000100 */
  8420. #define TIM_CCMR1_CC2S_1 (0x2UL << TIM_CCMR1_CC2S_Pos) /*!< 0x00000200 */
  8421. #define TIM_CCMR1_OC2FE_Pos (10U)
  8422. #define TIM_CCMR1_OC2FE_Msk (0x1UL << TIM_CCMR1_OC2FE_Pos) /*!< 0x00000400 */
  8423. #define TIM_CCMR1_OC2FE TIM_CCMR1_OC2FE_Msk /*!<Output Compare 2 Fast enable */
  8424. #define TIM_CCMR1_OC2PE_Pos (11U)
  8425. #define TIM_CCMR1_OC2PE_Msk (0x1UL << TIM_CCMR1_OC2PE_Pos) /*!< 0x00000800 */
  8426. #define TIM_CCMR1_OC2PE TIM_CCMR1_OC2PE_Msk /*!<Output Compare 2 Preload enable */
  8427. #define TIM_CCMR1_OC2M_Pos (12U)
  8428. #define TIM_CCMR1_OC2M_Msk (0x1007UL << TIM_CCMR1_OC2M_Pos) /*!< 0x01007000 */
  8429. #define TIM_CCMR1_OC2M TIM_CCMR1_OC2M_Msk /*!<OC2M[2:0] bits (Output Compare 2 Mode) */
  8430. #define TIM_CCMR1_OC2M_0 (0x0001UL << TIM_CCMR1_OC2M_Pos) /*!< 0x00001000 */
  8431. #define TIM_CCMR1_OC2M_1 (0x0002UL << TIM_CCMR1_OC2M_Pos) /*!< 0x00002000 */
  8432. #define TIM_CCMR1_OC2M_2 (0x0004UL << TIM_CCMR1_OC2M_Pos) /*!< 0x00004000 */
  8433. #define TIM_CCMR1_OC2M_3 (0x1000UL << TIM_CCMR1_OC2M_Pos) /*!< 0x01000000 */
  8434. #define TIM_CCMR1_OC2CE_Pos (15U)
  8435. #define TIM_CCMR1_OC2CE_Msk (0x1UL << TIM_CCMR1_OC2CE_Pos) /*!< 0x00008000 */
  8436. #define TIM_CCMR1_OC2CE TIM_CCMR1_OC2CE_Msk /*!<Output Compare 2 Clear Enable */
  8437. /*----------------------------------------------------------------------------*/
  8438. #define TIM_CCMR1_IC1PSC_Pos (2U)
  8439. #define TIM_CCMR1_IC1PSC_Msk (0x3UL << TIM_CCMR1_IC1PSC_Pos) /*!< 0x0000000C */
  8440. #define TIM_CCMR1_IC1PSC TIM_CCMR1_IC1PSC_Msk /*!<IC1PSC[1:0] bits (Input Capture 1 Prescaler) */
  8441. #define TIM_CCMR1_IC1PSC_0 (0x1UL << TIM_CCMR1_IC1PSC_Pos) /*!< 0x00000004 */
  8442. #define TIM_CCMR1_IC1PSC_1 (0x2UL << TIM_CCMR1_IC1PSC_Pos) /*!< 0x00000008 */
  8443. #define TIM_CCMR1_IC1F_Pos (4U)
  8444. #define TIM_CCMR1_IC1F_Msk (0xFUL << TIM_CCMR1_IC1F_Pos) /*!< 0x000000F0 */
  8445. #define TIM_CCMR1_IC1F TIM_CCMR1_IC1F_Msk /*!<IC1F[3:0] bits (Input Capture 1 Filter) */
  8446. #define TIM_CCMR1_IC1F_0 (0x1UL << TIM_CCMR1_IC1F_Pos) /*!< 0x00000010 */
  8447. #define TIM_CCMR1_IC1F_1 (0x2UL << TIM_CCMR1_IC1F_Pos) /*!< 0x00000020 */
  8448. #define TIM_CCMR1_IC1F_2 (0x4UL << TIM_CCMR1_IC1F_Pos) /*!< 0x00000040 */
  8449. #define TIM_CCMR1_IC1F_3 (0x8UL << TIM_CCMR1_IC1F_Pos) /*!< 0x00000080 */
  8450. #define TIM_CCMR1_IC2PSC_Pos (10U)
  8451. #define TIM_CCMR1_IC2PSC_Msk (0x3UL << TIM_CCMR1_IC2PSC_Pos) /*!< 0x00000C00 */
  8452. #define TIM_CCMR1_IC2PSC TIM_CCMR1_IC2PSC_Msk /*!<IC2PSC[1:0] bits (Input Capture 2 Prescaler) */
  8453. #define TIM_CCMR1_IC2PSC_0 (0x1UL << TIM_CCMR1_IC2PSC_Pos) /*!< 0x00000400 */
  8454. #define TIM_CCMR1_IC2PSC_1 (0x2UL << TIM_CCMR1_IC2PSC_Pos) /*!< 0x00000800 */
  8455. #define TIM_CCMR1_IC2F_Pos (12U)
  8456. #define TIM_CCMR1_IC2F_Msk (0xFUL << TIM_CCMR1_IC2F_Pos) /*!< 0x0000F000 */
  8457. #define TIM_CCMR1_IC2F TIM_CCMR1_IC2F_Msk /*!<IC2F[3:0] bits (Input Capture 2 Filter) */
  8458. #define TIM_CCMR1_IC2F_0 (0x1UL << TIM_CCMR1_IC2F_Pos) /*!< 0x00001000 */
  8459. #define TIM_CCMR1_IC2F_1 (0x2UL << TIM_CCMR1_IC2F_Pos) /*!< 0x00002000 */
  8460. #define TIM_CCMR1_IC2F_2 (0x4UL << TIM_CCMR1_IC2F_Pos) /*!< 0x00004000 */
  8461. #define TIM_CCMR1_IC2F_3 (0x8UL << TIM_CCMR1_IC2F_Pos) /*!< 0x00008000 */
  8462. /****************** Bit definition for TIM_CCMR2 register *******************/
  8463. #define TIM_CCMR2_CC3S_Pos (0U)
  8464. #define TIM_CCMR2_CC3S_Msk (0x3UL << TIM_CCMR2_CC3S_Pos) /*!< 0x00000003 */
  8465. #define TIM_CCMR2_CC3S TIM_CCMR2_CC3S_Msk /*!<CC3S[1:0] bits (Capture/Compare 3 Selection) */
  8466. #define TIM_CCMR2_CC3S_0 (0x1UL << TIM_CCMR2_CC3S_Pos) /*!< 0x00000001 */
  8467. #define TIM_CCMR2_CC3S_1 (0x2UL << TIM_CCMR2_CC3S_Pos) /*!< 0x00000002 */
  8468. #define TIM_CCMR2_OC3FE_Pos (2U)
  8469. #define TIM_CCMR2_OC3FE_Msk (0x1UL << TIM_CCMR2_OC3FE_Pos) /*!< 0x00000004 */
  8470. #define TIM_CCMR2_OC3FE TIM_CCMR2_OC3FE_Msk /*!<Output Compare 3 Fast enable */
  8471. #define TIM_CCMR2_OC3PE_Pos (3U)
  8472. #define TIM_CCMR2_OC3PE_Msk (0x1UL << TIM_CCMR2_OC3PE_Pos) /*!< 0x00000008 */
  8473. #define TIM_CCMR2_OC3PE TIM_CCMR2_OC3PE_Msk /*!<Output Compare 3 Preload enable */
  8474. #define TIM_CCMR2_OC3M_Pos (4U)
  8475. #define TIM_CCMR2_OC3M_Msk (0x1007UL << TIM_CCMR2_OC3M_Pos) /*!< 0x00010070 */
  8476. #define TIM_CCMR2_OC3M TIM_CCMR2_OC3M_Msk /*!<OC3M[2:0] bits (Output Compare 3 Mode) */
  8477. #define TIM_CCMR2_OC3M_0 (0x0001UL << TIM_CCMR2_OC3M_Pos) /*!< 0x00000010 */
  8478. #define TIM_CCMR2_OC3M_1 (0x0002UL << TIM_CCMR2_OC3M_Pos) /*!< 0x00000020 */
  8479. #define TIM_CCMR2_OC3M_2 (0x0004UL << TIM_CCMR2_OC3M_Pos) /*!< 0x00000040 */
  8480. #define TIM_CCMR2_OC3M_3 (0x1000UL << TIM_CCMR2_OC3M_Pos) /*!< 0x00010000 */
  8481. #define TIM_CCMR2_OC3CE_Pos (7U)
  8482. #define TIM_CCMR2_OC3CE_Msk (0x1UL << TIM_CCMR2_OC3CE_Pos) /*!< 0x00000080 */
  8483. #define TIM_CCMR2_OC3CE TIM_CCMR2_OC3CE_Msk /*!<Output Compare 3 Clear Enable */
  8484. #define TIM_CCMR2_CC4S_Pos (8U)
  8485. #define TIM_CCMR2_CC4S_Msk (0x3UL << TIM_CCMR2_CC4S_Pos) /*!< 0x00000300 */
  8486. #define TIM_CCMR2_CC4S TIM_CCMR2_CC4S_Msk /*!<CC4S[1:0] bits (Capture/Compare 4 Selection) */
  8487. #define TIM_CCMR2_CC4S_0 (0x1UL << TIM_CCMR2_CC4S_Pos) /*!< 0x00000100 */
  8488. #define TIM_CCMR2_CC4S_1 (0x2UL << TIM_CCMR2_CC4S_Pos) /*!< 0x00000200 */
  8489. #define TIM_CCMR2_OC4FE_Pos (10U)
  8490. #define TIM_CCMR2_OC4FE_Msk (0x1UL << TIM_CCMR2_OC4FE_Pos) /*!< 0x00000400 */
  8491. #define TIM_CCMR2_OC4FE TIM_CCMR2_OC4FE_Msk /*!<Output Compare 4 Fast enable */
  8492. #define TIM_CCMR2_OC4PE_Pos (11U)
  8493. #define TIM_CCMR2_OC4PE_Msk (0x1UL << TIM_CCMR2_OC4PE_Pos) /*!< 0x00000800 */
  8494. #define TIM_CCMR2_OC4PE TIM_CCMR2_OC4PE_Msk /*!<Output Compare 4 Preload enable */
  8495. #define TIM_CCMR2_OC4M_Pos (12U)
  8496. #define TIM_CCMR2_OC4M_Msk (0x1007UL << TIM_CCMR2_OC4M_Pos) /*!< 0x01007000 */
  8497. #define TIM_CCMR2_OC4M TIM_CCMR2_OC4M_Msk /*!<OC4M[2:0] bits (Output Compare 4 Mode) */
  8498. #define TIM_CCMR2_OC4M_0 (0x0001UL << TIM_CCMR2_OC4M_Pos) /*!< 0x00001000 */
  8499. #define TIM_CCMR2_OC4M_1 (0x0002UL << TIM_CCMR2_OC4M_Pos) /*!< 0x00002000 */
  8500. #define TIM_CCMR2_OC4M_2 (0x0004UL << TIM_CCMR2_OC4M_Pos) /*!< 0x00004000 */
  8501. #define TIM_CCMR2_OC4M_3 (0x1000UL << TIM_CCMR2_OC4M_Pos) /*!< 0x01000000 */
  8502. #define TIM_CCMR2_OC4CE_Pos (15U)
  8503. #define TIM_CCMR2_OC4CE_Msk (0x1UL << TIM_CCMR2_OC4CE_Pos) /*!< 0x00008000 */
  8504. #define TIM_CCMR2_OC4CE TIM_CCMR2_OC4CE_Msk /*!<Output Compare 4 Clear Enable */
  8505. /*----------------------------------------------------------------------------*/
  8506. #define TIM_CCMR2_IC3PSC_Pos (2U)
  8507. #define TIM_CCMR2_IC3PSC_Msk (0x3UL << TIM_CCMR2_IC3PSC_Pos) /*!< 0x0000000C */
  8508. #define TIM_CCMR2_IC3PSC TIM_CCMR2_IC3PSC_Msk /*!<IC3PSC[1:0] bits (Input Capture 3 Prescaler) */
  8509. #define TIM_CCMR2_IC3PSC_0 (0x1UL << TIM_CCMR2_IC3PSC_Pos) /*!< 0x00000004 */
  8510. #define TIM_CCMR2_IC3PSC_1 (0x2UL << TIM_CCMR2_IC3PSC_Pos) /*!< 0x00000008 */
  8511. #define TIM_CCMR2_IC3F_Pos (4U)
  8512. #define TIM_CCMR2_IC3F_Msk (0xFUL << TIM_CCMR2_IC3F_Pos) /*!< 0x000000F0 */
  8513. #define TIM_CCMR2_IC3F TIM_CCMR2_IC3F_Msk /*!<IC3F[3:0] bits (Input Capture 3 Filter) */
  8514. #define TIM_CCMR2_IC3F_0 (0x1UL << TIM_CCMR2_IC3F_Pos) /*!< 0x00000010 */
  8515. #define TIM_CCMR2_IC3F_1 (0x2UL << TIM_CCMR2_IC3F_Pos) /*!< 0x00000020 */
  8516. #define TIM_CCMR2_IC3F_2 (0x4UL << TIM_CCMR2_IC3F_Pos) /*!< 0x00000040 */
  8517. #define TIM_CCMR2_IC3F_3 (0x8UL << TIM_CCMR2_IC3F_Pos) /*!< 0x00000080 */
  8518. #define TIM_CCMR2_IC4PSC_Pos (10U)
  8519. #define TIM_CCMR2_IC4PSC_Msk (0x3UL << TIM_CCMR2_IC4PSC_Pos) /*!< 0x00000C00 */
  8520. #define TIM_CCMR2_IC4PSC TIM_CCMR2_IC4PSC_Msk /*!<IC4PSC[1:0] bits (Input Capture 4 Prescaler) */
  8521. #define TIM_CCMR2_IC4PSC_0 (0x1UL << TIM_CCMR2_IC4PSC_Pos) /*!< 0x00000400 */
  8522. #define TIM_CCMR2_IC4PSC_1 (0x2UL << TIM_CCMR2_IC4PSC_Pos) /*!< 0x00000800 */
  8523. #define TIM_CCMR2_IC4F_Pos (12U)
  8524. #define TIM_CCMR2_IC4F_Msk (0xFUL << TIM_CCMR2_IC4F_Pos) /*!< 0x0000F000 */
  8525. #define TIM_CCMR2_IC4F TIM_CCMR2_IC4F_Msk /*!<IC4F[3:0] bits (Input Capture 4 Filter) */
  8526. #define TIM_CCMR2_IC4F_0 (0x1UL << TIM_CCMR2_IC4F_Pos) /*!< 0x00001000 */
  8527. #define TIM_CCMR2_IC4F_1 (0x2UL << TIM_CCMR2_IC4F_Pos) /*!< 0x00002000 */
  8528. #define TIM_CCMR2_IC4F_2 (0x4UL << TIM_CCMR2_IC4F_Pos) /*!< 0x00004000 */
  8529. #define TIM_CCMR2_IC4F_3 (0x8UL << TIM_CCMR2_IC4F_Pos) /*!< 0x00008000 */
  8530. /****************** Bit definition for TIM_CCMR3 register *******************/
  8531. #define TIM_CCMR3_OC5FE_Pos (2U)
  8532. #define TIM_CCMR3_OC5FE_Msk (0x1UL << TIM_CCMR3_OC5FE_Pos) /*!< 0x00000004 */
  8533. #define TIM_CCMR3_OC5FE TIM_CCMR3_OC5FE_Msk /*!<Output Compare 5 Fast enable */
  8534. #define TIM_CCMR3_OC5PE_Pos (3U)
  8535. #define TIM_CCMR3_OC5PE_Msk (0x1UL << TIM_CCMR3_OC5PE_Pos) /*!< 0x00000008 */
  8536. #define TIM_CCMR3_OC5PE TIM_CCMR3_OC5PE_Msk /*!<Output Compare 5 Preload enable */
  8537. #define TIM_CCMR3_OC5M_Pos (4U)
  8538. #define TIM_CCMR3_OC5M_Msk (0x1007UL << TIM_CCMR3_OC5M_Pos) /*!< 0x00010070 */
  8539. #define TIM_CCMR3_OC5M TIM_CCMR3_OC5M_Msk /*!<OC5M[3:0] bits (Output Compare 5 Mode) */
  8540. #define TIM_CCMR3_OC5M_0 (0x0001UL << TIM_CCMR3_OC5M_Pos) /*!< 0x00000010 */
  8541. #define TIM_CCMR3_OC5M_1 (0x0002UL << TIM_CCMR3_OC5M_Pos) /*!< 0x00000020 */
  8542. #define TIM_CCMR3_OC5M_2 (0x0004UL << TIM_CCMR3_OC5M_Pos) /*!< 0x00000040 */
  8543. #define TIM_CCMR3_OC5M_3 (0x1000UL << TIM_CCMR3_OC5M_Pos) /*!< 0x00010000 */
  8544. #define TIM_CCMR3_OC5CE_Pos (7U)
  8545. #define TIM_CCMR3_OC5CE_Msk (0x1UL << TIM_CCMR3_OC5CE_Pos) /*!< 0x00000080 */
  8546. #define TIM_CCMR3_OC5CE TIM_CCMR3_OC5CE_Msk /*!<Output Compare 5 Clear Enable */
  8547. #define TIM_CCMR3_OC6FE_Pos (10U)
  8548. #define TIM_CCMR3_OC6FE_Msk (0x1UL << TIM_CCMR3_OC6FE_Pos) /*!< 0x00000400 */
  8549. #define TIM_CCMR3_OC6FE TIM_CCMR3_OC6FE_Msk /*!<Output Compare 6 Fast enable */
  8550. #define TIM_CCMR3_OC6PE_Pos (11U)
  8551. #define TIM_CCMR3_OC6PE_Msk (0x1UL << TIM_CCMR3_OC6PE_Pos) /*!< 0x00000800 */
  8552. #define TIM_CCMR3_OC6PE TIM_CCMR3_OC6PE_Msk /*!<Output Compare 6 Preload enable */
  8553. #define TIM_CCMR3_OC6M_Pos (12U)
  8554. #define TIM_CCMR3_OC6M_Msk (0x1007UL << TIM_CCMR3_OC6M_Pos) /*!< 0x01007000 */
  8555. #define TIM_CCMR3_OC6M TIM_CCMR3_OC6M_Msk /*!<OC6M[3:0] bits (Output Compare 6 Mode) */
  8556. #define TIM_CCMR3_OC6M_0 (0x0001UL << TIM_CCMR3_OC6M_Pos) /*!< 0x00001000 */
  8557. #define TIM_CCMR3_OC6M_1 (0x0002UL << TIM_CCMR3_OC6M_Pos) /*!< 0x00002000 */
  8558. #define TIM_CCMR3_OC6M_2 (0x0004UL << TIM_CCMR3_OC6M_Pos) /*!< 0x00004000 */
  8559. #define TIM_CCMR3_OC6M_3 (0x1000UL << TIM_CCMR3_OC6M_Pos) /*!< 0x01000000 */
  8560. #define TIM_CCMR3_OC6CE_Pos (15U)
  8561. #define TIM_CCMR3_OC6CE_Msk (0x1UL << TIM_CCMR3_OC6CE_Pos) /*!< 0x00008000 */
  8562. #define TIM_CCMR3_OC6CE TIM_CCMR3_OC6CE_Msk /*!<Output Compare 6 Clear Enable */
  8563. /******************* Bit definition for TIM_CCER register *******************/
  8564. #define TIM_CCER_CC1E_Pos (0U)
  8565. #define TIM_CCER_CC1E_Msk (0x1UL << TIM_CCER_CC1E_Pos) /*!< 0x00000001 */
  8566. #define TIM_CCER_CC1E TIM_CCER_CC1E_Msk /*!<Capture/Compare 1 output enable */
  8567. #define TIM_CCER_CC1P_Pos (1U)
  8568. #define TIM_CCER_CC1P_Msk (0x1UL << TIM_CCER_CC1P_Pos) /*!< 0x00000002 */
  8569. #define TIM_CCER_CC1P TIM_CCER_CC1P_Msk /*!<Capture/Compare 1 output Polarity */
  8570. #define TIM_CCER_CC1NE_Pos (2U)
  8571. #define TIM_CCER_CC1NE_Msk (0x1UL << TIM_CCER_CC1NE_Pos) /*!< 0x00000004 */
  8572. #define TIM_CCER_CC1NE TIM_CCER_CC1NE_Msk /*!<Capture/Compare 1 Complementary output enable */
  8573. #define TIM_CCER_CC1NP_Pos (3U)
  8574. #define TIM_CCER_CC1NP_Msk (0x1UL << TIM_CCER_CC1NP_Pos) /*!< 0x00000008 */
  8575. #define TIM_CCER_CC1NP TIM_CCER_CC1NP_Msk /*!<Capture/Compare 1 Complementary output Polarity */
  8576. #define TIM_CCER_CC2E_Pos (4U)
  8577. #define TIM_CCER_CC2E_Msk (0x1UL << TIM_CCER_CC2E_Pos) /*!< 0x00000010 */
  8578. #define TIM_CCER_CC2E TIM_CCER_CC2E_Msk /*!<Capture/Compare 2 output enable */
  8579. #define TIM_CCER_CC2P_Pos (5U)
  8580. #define TIM_CCER_CC2P_Msk (0x1UL << TIM_CCER_CC2P_Pos) /*!< 0x00000020 */
  8581. #define TIM_CCER_CC2P TIM_CCER_CC2P_Msk /*!<Capture/Compare 2 output Polarity */
  8582. #define TIM_CCER_CC2NE_Pos (6U)
  8583. #define TIM_CCER_CC2NE_Msk (0x1UL << TIM_CCER_CC2NE_Pos) /*!< 0x00000040 */
  8584. #define TIM_CCER_CC2NE TIM_CCER_CC2NE_Msk /*!<Capture/Compare 2 Complementary output enable */
  8585. #define TIM_CCER_CC2NP_Pos (7U)
  8586. #define TIM_CCER_CC2NP_Msk (0x1UL << TIM_CCER_CC2NP_Pos) /*!< 0x00000080 */
  8587. #define TIM_CCER_CC2NP TIM_CCER_CC2NP_Msk /*!<Capture/Compare 2 Complementary output Polarity */
  8588. #define TIM_CCER_CC3E_Pos (8U)
  8589. #define TIM_CCER_CC3E_Msk (0x1UL << TIM_CCER_CC3E_Pos) /*!< 0x00000100 */
  8590. #define TIM_CCER_CC3E TIM_CCER_CC3E_Msk /*!<Capture/Compare 3 output enable */
  8591. #define TIM_CCER_CC3P_Pos (9U)
  8592. #define TIM_CCER_CC3P_Msk (0x1UL << TIM_CCER_CC3P_Pos) /*!< 0x00000200 */
  8593. #define TIM_CCER_CC3P TIM_CCER_CC3P_Msk /*!<Capture/Compare 3 output Polarity */
  8594. #define TIM_CCER_CC3NE_Pos (10U)
  8595. #define TIM_CCER_CC3NE_Msk (0x1UL << TIM_CCER_CC3NE_Pos) /*!< 0x00000400 */
  8596. #define TIM_CCER_CC3NE TIM_CCER_CC3NE_Msk /*!<Capture/Compare 3 Complementary output enable */
  8597. #define TIM_CCER_CC3NP_Pos (11U)
  8598. #define TIM_CCER_CC3NP_Msk (0x1UL << TIM_CCER_CC3NP_Pos) /*!< 0x00000800 */
  8599. #define TIM_CCER_CC3NP TIM_CCER_CC3NP_Msk /*!<Capture/Compare 3 Complementary output Polarity */
  8600. #define TIM_CCER_CC4E_Pos (12U)
  8601. #define TIM_CCER_CC4E_Msk (0x1UL << TIM_CCER_CC4E_Pos) /*!< 0x00001000 */
  8602. #define TIM_CCER_CC4E TIM_CCER_CC4E_Msk /*!<Capture/Compare 4 output enable */
  8603. #define TIM_CCER_CC4P_Pos (13U)
  8604. #define TIM_CCER_CC4P_Msk (0x1UL << TIM_CCER_CC4P_Pos) /*!< 0x00002000 */
  8605. #define TIM_CCER_CC4P TIM_CCER_CC4P_Msk /*!<Capture/Compare 4 output Polarity */
  8606. #define TIM_CCER_CC4NP_Pos (15U)
  8607. #define TIM_CCER_CC4NP_Msk (0x1UL << TIM_CCER_CC4NP_Pos) /*!< 0x00008000 */
  8608. #define TIM_CCER_CC4NP TIM_CCER_CC4NP_Msk /*!<Capture/Compare 4 Complementary output Polarity */
  8609. #define TIM_CCER_CC5E_Pos (16U)
  8610. #define TIM_CCER_CC5E_Msk (0x1UL << TIM_CCER_CC5E_Pos) /*!< 0x00010000 */
  8611. #define TIM_CCER_CC5E TIM_CCER_CC5E_Msk /*!<Capture/Compare 5 output enable */
  8612. #define TIM_CCER_CC5P_Pos (17U)
  8613. #define TIM_CCER_CC5P_Msk (0x1UL << TIM_CCER_CC5P_Pos) /*!< 0x00020000 */
  8614. #define TIM_CCER_CC5P TIM_CCER_CC5P_Msk /*!<Capture/Compare 5 output Polarity */
  8615. #define TIM_CCER_CC6E_Pos (20U)
  8616. #define TIM_CCER_CC6E_Msk (0x1UL << TIM_CCER_CC6E_Pos) /*!< 0x00100000 */
  8617. #define TIM_CCER_CC6E TIM_CCER_CC6E_Msk /*!<Capture/Compare 6 output enable */
  8618. #define TIM_CCER_CC6P_Pos (21U)
  8619. #define TIM_CCER_CC6P_Msk (0x1UL << TIM_CCER_CC6P_Pos) /*!< 0x00200000 */
  8620. #define TIM_CCER_CC6P TIM_CCER_CC6P_Msk /*!<Capture/Compare 6 output Polarity */
  8621. /******************* Bit definition for TIM_CNT register ********************/
  8622. #define TIM_CNT_CNT_Pos (0U)
  8623. #define TIM_CNT_CNT_Msk (0xFFFFFFFFUL << TIM_CNT_CNT_Pos) /*!< 0xFFFFFFFF */
  8624. #define TIM_CNT_CNT TIM_CNT_CNT_Msk /*!<Counter Value */
  8625. #define TIM_CNT_UIFCPY_Pos (31U)
  8626. #define TIM_CNT_UIFCPY_Msk (0x1UL << TIM_CNT_UIFCPY_Pos) /*!< 0x80000000 */
  8627. #define TIM_CNT_UIFCPY TIM_CNT_UIFCPY_Msk /*!<Update interrupt flag copy (if UIFREMAP=1) */
  8628. /******************* Bit definition for TIM_PSC register ********************/
  8629. #define TIM_PSC_PSC_Pos (0U)
  8630. #define TIM_PSC_PSC_Msk (0xFFFFUL << TIM_PSC_PSC_Pos) /*!< 0x0000FFFF */
  8631. #define TIM_PSC_PSC TIM_PSC_PSC_Msk /*!<Prescaler Value */
  8632. /******************* Bit definition for TIM_ARR register ********************/
  8633. #define TIM_ARR_ARR_Pos (0U)
  8634. #define TIM_ARR_ARR_Msk (0xFFFFFFFFUL << TIM_ARR_ARR_Pos) /*!< 0xFFFFFFFF */
  8635. #define TIM_ARR_ARR TIM_ARR_ARR_Msk /*!<Actual auto-reload Value */
  8636. /******************* Bit definition for TIM_RCR register ********************/
  8637. #define TIM_RCR_REP_Pos (0U)
  8638. #define TIM_RCR_REP_Msk (0xFFFFUL << TIM_RCR_REP_Pos) /*!< 0x0000FFFF */
  8639. #define TIM_RCR_REP TIM_RCR_REP_Msk /*!<Repetition Counter Value */
  8640. /******************* Bit definition for TIM_CCR1 register *******************/
  8641. #define TIM_CCR1_CCR1_Pos (0U)
  8642. #define TIM_CCR1_CCR1_Msk (0xFFFFUL << TIM_CCR1_CCR1_Pos) /*!< 0x0000FFFF */
  8643. #define TIM_CCR1_CCR1 TIM_CCR1_CCR1_Msk /*!<Capture/Compare 1 Value */
  8644. /******************* Bit definition for TIM_CCR2 register *******************/
  8645. #define TIM_CCR2_CCR2_Pos (0U)
  8646. #define TIM_CCR2_CCR2_Msk (0xFFFFUL << TIM_CCR2_CCR2_Pos) /*!< 0x0000FFFF */
  8647. #define TIM_CCR2_CCR2 TIM_CCR2_CCR2_Msk /*!<Capture/Compare 2 Value */
  8648. /******************* Bit definition for TIM_CCR3 register *******************/
  8649. #define TIM_CCR3_CCR3_Pos (0U)
  8650. #define TIM_CCR3_CCR3_Msk (0xFFFFUL << TIM_CCR3_CCR3_Pos) /*!< 0x0000FFFF */
  8651. #define TIM_CCR3_CCR3 TIM_CCR3_CCR3_Msk /*!<Capture/Compare 3 Value */
  8652. /******************* Bit definition for TIM_CCR4 register *******************/
  8653. #define TIM_CCR4_CCR4_Pos (0U)
  8654. #define TIM_CCR4_CCR4_Msk (0xFFFFUL << TIM_CCR4_CCR4_Pos) /*!< 0x0000FFFF */
  8655. #define TIM_CCR4_CCR4 TIM_CCR4_CCR4_Msk /*!<Capture/Compare 4 Value */
  8656. /******************* Bit definition for TIM_CCR5 register *******************/
  8657. #define TIM_CCR5_CCR5_Pos (0U)
  8658. #define TIM_CCR5_CCR5_Msk (0xFFFFFFFFUL << TIM_CCR5_CCR5_Pos) /*!< 0xFFFFFFFF */
  8659. #define TIM_CCR5_CCR5 TIM_CCR5_CCR5_Msk /*!<Capture/Compare 5 Value */
  8660. #define TIM_CCR5_GC5C1_Pos (29U)
  8661. #define TIM_CCR5_GC5C1_Msk (0x1UL << TIM_CCR5_GC5C1_Pos) /*!< 0x20000000 */
  8662. #define TIM_CCR5_GC5C1 TIM_CCR5_GC5C1_Msk /*!<Group Channel 5 and Channel 1 */
  8663. #define TIM_CCR5_GC5C2_Pos (30U)
  8664. #define TIM_CCR5_GC5C2_Msk (0x1UL << TIM_CCR5_GC5C2_Pos) /*!< 0x40000000 */
  8665. #define TIM_CCR5_GC5C2 TIM_CCR5_GC5C2_Msk /*!<Group Channel 5 and Channel 2 */
  8666. #define TIM_CCR5_GC5C3_Pos (31U)
  8667. #define TIM_CCR5_GC5C3_Msk (0x1UL << TIM_CCR5_GC5C3_Pos) /*!< 0x80000000 */
  8668. #define TIM_CCR5_GC5C3 TIM_CCR5_GC5C3_Msk /*!<Group Channel 5 and Channel 3 */
  8669. /******************* Bit definition for TIM_CCR6 register *******************/
  8670. #define TIM_CCR6_CCR6_Pos (0U)
  8671. #define TIM_CCR6_CCR6_Msk (0xFFFFUL << TIM_CCR6_CCR6_Pos) /*!< 0x0000FFFF */
  8672. #define TIM_CCR6_CCR6 TIM_CCR6_CCR6_Msk /*!<Capture/Compare 6 Value */
  8673. /******************* Bit definition for TIM_BDTR register *******************/
  8674. #define TIM_BDTR_DTG_Pos (0U)
  8675. #define TIM_BDTR_DTG_Msk (0xFFUL << TIM_BDTR_DTG_Pos) /*!< 0x000000FF */
  8676. #define TIM_BDTR_DTG TIM_BDTR_DTG_Msk /*!<DTG[0:7] bits (Dead-Time Generator set-up) */
  8677. #define TIM_BDTR_DTG_0 (0x01UL << TIM_BDTR_DTG_Pos) /*!< 0x00000001 */
  8678. #define TIM_BDTR_DTG_1 (0x02UL << TIM_BDTR_DTG_Pos) /*!< 0x00000002 */
  8679. #define TIM_BDTR_DTG_2 (0x04UL << TIM_BDTR_DTG_Pos) /*!< 0x00000004 */
  8680. #define TIM_BDTR_DTG_3 (0x08UL << TIM_BDTR_DTG_Pos) /*!< 0x00000008 */
  8681. #define TIM_BDTR_DTG_4 (0x10UL << TIM_BDTR_DTG_Pos) /*!< 0x00000010 */
  8682. #define TIM_BDTR_DTG_5 (0x20UL << TIM_BDTR_DTG_Pos) /*!< 0x00000020 */
  8683. #define TIM_BDTR_DTG_6 (0x40UL << TIM_BDTR_DTG_Pos) /*!< 0x00000040 */
  8684. #define TIM_BDTR_DTG_7 (0x80UL << TIM_BDTR_DTG_Pos) /*!< 0x00000080 */
  8685. #define TIM_BDTR_LOCK_Pos (8U)
  8686. #define TIM_BDTR_LOCK_Msk (0x3UL << TIM_BDTR_LOCK_Pos) /*!< 0x00000300 */
  8687. #define TIM_BDTR_LOCK TIM_BDTR_LOCK_Msk /*!<LOCK[1:0] bits (Lock Configuration) */
  8688. #define TIM_BDTR_LOCK_0 (0x1UL << TIM_BDTR_LOCK_Pos) /*!< 0x00000100 */
  8689. #define TIM_BDTR_LOCK_1 (0x2UL << TIM_BDTR_LOCK_Pos) /*!< 0x00000200 */
  8690. #define TIM_BDTR_OSSI_Pos (10U)
  8691. #define TIM_BDTR_OSSI_Msk (0x1UL << TIM_BDTR_OSSI_Pos) /*!< 0x00000400 */
  8692. #define TIM_BDTR_OSSI TIM_BDTR_OSSI_Msk /*!<Off-State Selection for Idle mode */
  8693. #define TIM_BDTR_OSSR_Pos (11U)
  8694. #define TIM_BDTR_OSSR_Msk (0x1UL << TIM_BDTR_OSSR_Pos) /*!< 0x00000800 */
  8695. #define TIM_BDTR_OSSR TIM_BDTR_OSSR_Msk /*!<Off-State Selection for Run mode */
  8696. #define TIM_BDTR_BKE_Pos (12U)
  8697. #define TIM_BDTR_BKE_Msk (0x1UL << TIM_BDTR_BKE_Pos) /*!< 0x00001000 */
  8698. #define TIM_BDTR_BKE TIM_BDTR_BKE_Msk /*!<Break enable for Break 1 */
  8699. #define TIM_BDTR_BKP_Pos (13U)
  8700. #define TIM_BDTR_BKP_Msk (0x1UL << TIM_BDTR_BKP_Pos) /*!< 0x00002000 */
  8701. #define TIM_BDTR_BKP TIM_BDTR_BKP_Msk /*!<Break Polarity for Break 1 */
  8702. #define TIM_BDTR_AOE_Pos (14U)
  8703. #define TIM_BDTR_AOE_Msk (0x1UL << TIM_BDTR_AOE_Pos) /*!< 0x00004000 */
  8704. #define TIM_BDTR_AOE TIM_BDTR_AOE_Msk /*!<Automatic Output enable */
  8705. #define TIM_BDTR_MOE_Pos (15U)
  8706. #define TIM_BDTR_MOE_Msk (0x1UL << TIM_BDTR_MOE_Pos) /*!< 0x00008000 */
  8707. #define TIM_BDTR_MOE TIM_BDTR_MOE_Msk /*!<Main Output enable */
  8708. #define TIM_BDTR_BKF_Pos (16U)
  8709. #define TIM_BDTR_BKF_Msk (0xFUL << TIM_BDTR_BKF_Pos) /*!< 0x000F0000 */
  8710. #define TIM_BDTR_BKF TIM_BDTR_BKF_Msk /*!<Break Filter for Break 1 */
  8711. #define TIM_BDTR_BK2F_Pos (20U)
  8712. #define TIM_BDTR_BK2F_Msk (0xFUL << TIM_BDTR_BK2F_Pos) /*!< 0x00F00000 */
  8713. #define TIM_BDTR_BK2F TIM_BDTR_BK2F_Msk /*!<Break Filter for Break 2 */
  8714. #define TIM_BDTR_BK2E_Pos (24U)
  8715. #define TIM_BDTR_BK2E_Msk (0x1UL << TIM_BDTR_BK2E_Pos) /*!< 0x01000000 */
  8716. #define TIM_BDTR_BK2E TIM_BDTR_BK2E_Msk /*!<Break enable for Break 2 */
  8717. #define TIM_BDTR_BK2P_Pos (25U)
  8718. #define TIM_BDTR_BK2P_Msk (0x1UL << TIM_BDTR_BK2P_Pos) /*!< 0x02000000 */
  8719. #define TIM_BDTR_BK2P TIM_BDTR_BK2P_Msk /*!<Break Polarity for Break 2 */
  8720. #define TIM_BDTR_BKDSRM_Pos (26U)
  8721. #define TIM_BDTR_BKDSRM_Msk (0x1UL << TIM_BDTR_BKDSRM_Pos) /*!< 0x04000000 */
  8722. #define TIM_BDTR_BKDSRM TIM_BDTR_BKDSRM_Msk /*!<Break disarming/re-arming */
  8723. #define TIM_BDTR_BK2DSRM_Pos (27U)
  8724. #define TIM_BDTR_BK2DSRM_Msk (0x1UL << TIM_BDTR_BK2DSRM_Pos) /*!< 0x08000000 */
  8725. #define TIM_BDTR_BK2DSRM TIM_BDTR_BK2DSRM_Msk /*!<Break2 disarming/re-arming */
  8726. #define TIM_BDTR_BKBID_Pos (28U)
  8727. #define TIM_BDTR_BKBID_Msk (0x1UL << TIM_BDTR_BKBID_Pos) /*!< 0x10000000 */
  8728. #define TIM_BDTR_BKBID TIM_BDTR_BKBID_Msk /*!<Break BIDirectional */
  8729. #define TIM_BDTR_BK2BID_Pos (29U)
  8730. #define TIM_BDTR_BK2BID_Msk (0x1UL << TIM_BDTR_BK2BID_Pos) /*!< 0x20000000 */
  8731. #define TIM_BDTR_BK2BID TIM_BDTR_BK2BID_Msk /*!<Break2 BIDirectional */
  8732. /******************* Bit definition for TIM_DCR register ********************/
  8733. #define TIM_DCR_DBA_Pos (0U)
  8734. #define TIM_DCR_DBA_Msk (0x1FUL << TIM_DCR_DBA_Pos) /*!< 0x0000001F */
  8735. #define TIM_DCR_DBA TIM_DCR_DBA_Msk /*!<DBA[4:0] bits (DMA Base Address) */
  8736. #define TIM_DCR_DBA_0 (0x01UL << TIM_DCR_DBA_Pos) /*!< 0x00000001 */
  8737. #define TIM_DCR_DBA_1 (0x02UL << TIM_DCR_DBA_Pos) /*!< 0x00000002 */
  8738. #define TIM_DCR_DBA_2 (0x04UL << TIM_DCR_DBA_Pos) /*!< 0x00000004 */
  8739. #define TIM_DCR_DBA_3 (0x08UL << TIM_DCR_DBA_Pos) /*!< 0x00000008 */
  8740. #define TIM_DCR_DBA_4 (0x10UL << TIM_DCR_DBA_Pos) /*!< 0x00000010 */
  8741. #define TIM_DCR_DBL_Pos (8U)
  8742. #define TIM_DCR_DBL_Msk (0x1FUL << TIM_DCR_DBL_Pos) /*!< 0x00001F00 */
  8743. #define TIM_DCR_DBL TIM_DCR_DBL_Msk /*!<DBL[4:0] bits (DMA Burst Length) */
  8744. #define TIM_DCR_DBL_0 (0x01UL << TIM_DCR_DBL_Pos) /*!< 0x00000100 */
  8745. #define TIM_DCR_DBL_1 (0x02UL << TIM_DCR_DBL_Pos) /*!< 0x00000200 */
  8746. #define TIM_DCR_DBL_2 (0x04UL << TIM_DCR_DBL_Pos) /*!< 0x00000400 */
  8747. #define TIM_DCR_DBL_3 (0x08UL << TIM_DCR_DBL_Pos) /*!< 0x00000800 */
  8748. #define TIM_DCR_DBL_4 (0x10UL << TIM_DCR_DBL_Pos) /*!< 0x00001000 */
  8749. /******************* Bit definition for TIM_DMAR register *******************/
  8750. #define TIM_DMAR_DMAB_Pos (0U)
  8751. #define TIM_DMAR_DMAB_Msk (0xFFFFUL << TIM_DMAR_DMAB_Pos) /*!< 0x0000FFFF */
  8752. #define TIM_DMAR_DMAB TIM_DMAR_DMAB_Msk /*!<DMA register for burst accesses */
  8753. /******************* Bit definition for TIM1_OR1 register *******************/
  8754. #define TIM1_OR1_OCREF_CLR_Pos (0U)
  8755. #define TIM1_OR1_OCREF_CLR_Msk (0x3UL << TIM1_OR1_OCREF_CLR_Pos) /*!< 0x00000003 */
  8756. #define TIM1_OR1_OCREF_CLR TIM1_OR1_OCREF_CLR_Msk /*!< OCREF_CLR[1:0] input selection */
  8757. #define TIM1_OR1_OCREF_CLR_0 (0x1UL << TIM1_OR1_OCREF_CLR_Pos) /*!< 0x00000001 */
  8758. #define TIM1_OR1_OCREF_CLR_1 (0x2UL << TIM1_OR1_OCREF_CLR_Pos) /*!< 0x00000002 */
  8759. /******************* Bit definition for TIM1_AF1 register *******************/
  8760. #define TIM1_AF1_BKINE_Pos (0U)
  8761. #define TIM1_AF1_BKINE_Msk (0x1UL << TIM1_AF1_BKINE_Pos) /*!< 0x00000001 */
  8762. #define TIM1_AF1_BKINE TIM1_AF1_BKINE_Msk /*!<BRK BKIN input enable */
  8763. #define TIM1_AF1_BKCMP1E_Pos (1U)
  8764. #define TIM1_AF1_BKCMP1E_Msk (0x1UL << TIM1_AF1_BKCMP1E_Pos) /*!< 0x00000002 */
  8765. #define TIM1_AF1_BKCMP1E TIM1_AF1_BKCMP1E_Msk /*!<BRK COMP1 enable */
  8766. #define TIM1_AF1_BKCMP2E_Pos (2U)
  8767. #define TIM1_AF1_BKCMP2E_Msk (0x1UL << TIM1_AF1_BKCMP2E_Pos) /*!< 0x00000004 */
  8768. #define TIM1_AF1_BKCMP2E TIM1_AF1_BKCMP2E_Msk /*!<BRK COMP2 enable */
  8769. #define TIM1_AF1_BKCMP3E_Pos (3U)
  8770. #define TIM1_AF1_BKCMP3E_Msk (0x1UL << TIM1_AF1_BKCMP3E_Pos) /*!< 0x00000008 */
  8771. #define TIM1_AF1_BKCMP3E TIM1_AF1_BKCMP3E_Msk /*!<BRK COMP3 enable */
  8772. #define TIM1_AF1_BKINP_Pos (9U)
  8773. #define TIM1_AF1_BKINP_Msk (0x1UL << TIM1_AF1_BKINP_Pos) /*!< 0x00000200 */
  8774. #define TIM1_AF1_BKINP TIM1_AF1_BKINP_Msk /*!<BRK BKIN input polarity */
  8775. #define TIM1_AF1_BKCMP1P_Pos (10U)
  8776. #define TIM1_AF1_BKCMP1P_Msk (0x1UL << TIM1_AF1_BKCMP1P_Pos) /*!< 0x00000400 */
  8777. #define TIM1_AF1_BKCMP1P TIM1_AF1_BKCMP1P_Msk /*!<BRK COMP1 input polarity */
  8778. #define TIM1_AF1_BKCMP2P_Pos (11U)
  8779. #define TIM1_AF1_BKCMP2P_Msk (0x1UL << TIM1_AF1_BKCMP2P_Pos) /*!< 0x00000800 */
  8780. #define TIM1_AF1_BKCMP2P TIM1_AF1_BKCMP2P_Msk /*!<BRK COMP2 input polarity */
  8781. #define TIM1_AF1_BKCMP3P_Pos (12U)
  8782. #define TIM1_AF1_BKCMP3P_Msk (0x1UL << TIM1_AF1_BKCMP3P_Pos) /*!< 0x00001000 */
  8783. #define TIM1_AF1_BKCMP3P TIM1_AF1_BKCMP3P_Msk /*!<BRK COMP3 input polarity */
  8784. #define TIM1_AF1_ETRSEL_Pos (14U)
  8785. #define TIM1_AF1_ETRSEL_Msk (0xFUL << TIM1_AF1_ETRSEL_Pos) /*!< 0x0003C000 */
  8786. #define TIM1_AF1_ETRSEL TIM1_AF1_ETRSEL_Msk /*!<ETRSEL[3:0] bits (TIM1 ETR source selection) */
  8787. #define TIM1_AF1_ETRSEL_0 (0x1UL << TIM1_AF1_ETRSEL_Pos) /*!< 0x00004000 */
  8788. #define TIM1_AF1_ETRSEL_1 (0x2UL << TIM1_AF1_ETRSEL_Pos) /*!< 0x00008000 */
  8789. #define TIM1_AF1_ETRSEL_2 (0x4UL << TIM1_AF1_ETRSEL_Pos) /*!< 0x00010000 */
  8790. #define TIM1_AF1_ETRSEL_3 (0x8UL << TIM1_AF1_ETRSEL_Pos) /*!< 0x00020000 */
  8791. /******************* Bit definition for TIM1_AF2 register *******************/
  8792. #define TIM1_AF2_BK2INE_Pos (0U)
  8793. #define TIM1_AF2_BK2INE_Msk (0x1UL << TIM1_AF2_BK2INE_Pos) /*!< 0x00000001 */
  8794. #define TIM1_AF2_BK2INE TIM1_AF2_BK2INE_Msk /*!<BRK2 BKIN2 input enable */
  8795. #define TIM1_AF2_BK2CMP1E_Pos (1U)
  8796. #define TIM1_AF2_BK2CMP1E_Msk (0x1UL << TIM1_AF2_BK2CMP1E_Pos) /*!< 0x00000002 */
  8797. #define TIM1_AF2_BK2CMP1E TIM1_AF2_BK2CMP1E_Msk /*!<BRK2 COMP1 enable */
  8798. #define TIM1_AF2_BK2CMP2E_Pos (2U)
  8799. #define TIM1_AF2_BK2CMP2E_Msk (0x1UL << TIM1_AF2_BK2CMP2E_Pos) /*!< 0x00000004 */
  8800. #define TIM1_AF2_BK2CMP2E TIM1_AF2_BK2CMP2E_Msk /*!<BRK2 COMP2 enable */
  8801. #define TIM1_AF2_BK2CMP3E_Pos (3U)
  8802. #define TIM1_AF2_BK2CMP3E_Msk (0x1UL << TIM1_AF2_BK2CMP3E_Pos) /*!< 0x00000008 */
  8803. #define TIM1_AF2_BK2CMP3E TIM1_AF2_BK2CMP3E_Msk /*!<BRK2 COMP3 enable */
  8804. #define TIM1_AF2_BK2INP_Pos (9U)
  8805. #define TIM1_AF2_BK2INP_Msk (0x1UL << TIM1_AF2_BK2INP_Pos) /*!< 0x00000200 */
  8806. #define TIM1_AF2_BK2INP TIM1_AF2_BK2INP_Msk /*!<BRK2 BKIN2 input polarity */
  8807. #define TIM1_AF2_BK2CMP1P_Pos (10U)
  8808. #define TIM1_AF2_BK2CMP1P_Msk (0x1UL << TIM1_AF2_BK2CMP1P_Pos) /*!< 0x00000400 */
  8809. #define TIM1_AF2_BK2CMP1P TIM1_AF2_BK2CMP1P_Msk /*!<BRK2 COMP1 input polarity */
  8810. #define TIM1_AF2_BK2CMP2P_Pos (11U)
  8811. #define TIM1_AF2_BK2CMP2P_Msk (0x1UL << TIM1_AF2_BK2CMP2P_Pos) /*!< 0x00000800 */
  8812. #define TIM1_AF2_BK2CMP2P TIM1_AF2_BK2CMP2P_Msk /*!<BRK2 COMP2 input polarity */
  8813. #define TIM1_AF2_BK2CMP3P_Pos (12U)
  8814. #define TIM1_AF2_BK2CMP3P_Msk (0x1UL << TIM1_AF2_BK2CMP3P_Pos) /*!< 0x00001000 */
  8815. #define TIM1_AF2_BK2CMP3P TIM1_AF2_BK2CMP3P_Msk /*!<BRK2 COMP3 input polarity */
  8816. /******************* Bit definition for TIM2_OR1 register *******************/
  8817. #define TIM2_OR1_OCREF_CLR_Pos (0U)
  8818. #define TIM2_OR1_OCREF_CLR_Msk (0x3UL << TIM2_OR1_OCREF_CLR_Pos) /*!< 0x00000003 */
  8819. #define TIM2_OR1_OCREF_CLR TIM2_OR1_OCREF_CLR_Msk /*!< OCREF_CLR[1:0] input selection */
  8820. #define TIM2_OR1_OCREF_CLR_0 (0x1UL << TIM2_OR1_OCREF_CLR_Pos) /*!< 0x00000001 */
  8821. #define TIM2_OR1_OCREF_CLR_1 (0x2UL << TIM2_OR1_OCREF_CLR_Pos) /*!< 0x00000002 */
  8822. /******************* Bit definition for TIM2_AF1 register *******************/
  8823. #define TIM2_AF1_ETRSEL_Pos (14U)
  8824. #define TIM2_AF1_ETRSEL_Msk (0xFUL << TIM2_AF1_ETRSEL_Pos) /*!< 0x0003C000 */
  8825. #define TIM2_AF1_ETRSEL TIM2_AF1_ETRSEL_Msk /*!<ETRSEL[3:0] bits (TIM2 ETR source selection) */
  8826. #define TIM2_AF1_ETRSEL_0 (0x1UL << TIM2_AF1_ETRSEL_Pos) /*!< 0x00004000 */
  8827. #define TIM2_AF1_ETRSEL_1 (0x2UL << TIM2_AF1_ETRSEL_Pos) /*!< 0x00008000 */
  8828. #define TIM2_AF1_ETRSEL_2 (0x4UL << TIM2_AF1_ETRSEL_Pos) /*!< 0x00010000 */
  8829. #define TIM2_AF1_ETRSEL_3 (0x8UL << TIM2_AF1_ETRSEL_Pos) /*!< 0x00020000 */
  8830. /******************* Bit definition for TIM3_OR1 register *******************/
  8831. #define TIM3_OR1_OCREF_CLR_Pos (0U)
  8832. #define TIM3_OR1_OCREF_CLR_Msk (0x3UL << TIM3_OR1_OCREF_CLR_Pos) /*!< 0x00000003 */
  8833. #define TIM3_OR1_OCREF_CLR TIM3_OR1_OCREF_CLR_Msk /*!< OCREF_CLR[1:0] input selection */
  8834. #define TIM3_OR1_OCREF_CLR_0 (0x1UL << TIM3_OR1_OCREF_CLR_Pos) /*!< 0x00000001 */
  8835. #define TIM3_OR1_OCREF_CLR_1 (0x2UL << TIM3_OR1_OCREF_CLR_Pos) /*!< 0x00000002 */
  8836. /******************* Bit definition for TIM3_AF1 register *******************/
  8837. #define TIM3_AF1_ETRSEL_Pos (14U)
  8838. #define TIM3_AF1_ETRSEL_Msk (0xFUL << TIM3_AF1_ETRSEL_Pos) /*!< 0x0003C000 */
  8839. #define TIM3_AF1_ETRSEL TIM3_AF1_ETRSEL_Msk /*!<ETRSEL[3:0] bits (TIM3 ETR source selection) */
  8840. #define TIM3_AF1_ETRSEL_0 (0x1UL << TIM3_AF1_ETRSEL_Pos) /*!< 0x00004000 */
  8841. #define TIM3_AF1_ETRSEL_1 (0x2UL << TIM3_AF1_ETRSEL_Pos) /*!< 0x00008000 */
  8842. #define TIM3_AF1_ETRSEL_2 (0x4UL << TIM3_AF1_ETRSEL_Pos) /*!< 0x00010000 */
  8843. #define TIM3_AF1_ETRSEL_3 (0x8UL << TIM3_AF1_ETRSEL_Pos) /*!< 0x00020000 */
  8844. /******************* Bit definition for TIM4_OR1 register *******************/
  8845. #define TIM4_OR1_OCREF_CLR_Pos (0U)
  8846. #define TIM4_OR1_OCREF_CLR_Msk (0x3UL << TIM4_OR1_OCREF_CLR_Pos) /*!< 0x00000003 */
  8847. #define TIM4_OR1_OCREF_CLR TIM4_OR1_OCREF_CLR_Msk /*!< OCREF_CLR[1:0] input selection */
  8848. #define TIM4_OR1_OCREF_CLR_0 (0x1UL << TIM4_OR1_OCREF_CLR_Pos) /*!< 0x00000001 */
  8849. #define TIM4_OR1_OCREF_CLR_1 (0x2UL << TIM4_OR1_OCREF_CLR_Pos) /*!< 0x00000002 */
  8850. /******************* Bit definition for TIM4_AF1 register *******************/
  8851. #define TIM4_AF1_ETRSEL_Pos (14U)
  8852. #define TIM4_AF1_ETRSEL_Msk (0xFUL << TIM4_AF1_ETRSEL_Pos) /*!< 0x0003C000 */
  8853. #define TIM4_AF1_ETRSEL TIM4_AF1_ETRSEL_Msk /*!<ETRSEL[3:0] bits (TIM4 ETR source selection) */
  8854. #define TIM4_AF1_ETRSEL_0 (0x1UL << TIM4_AF1_ETRSEL_Pos) /*!< 0x00004000 */
  8855. #define TIM4_AF1_ETRSEL_1 (0x2UL << TIM4_AF1_ETRSEL_Pos) /*!< 0x00008000 */
  8856. #define TIM4_AF1_ETRSEL_2 (0x4UL << TIM4_AF1_ETRSEL_Pos) /*!< 0x00010000 */
  8857. #define TIM4_AF1_ETRSEL_3 (0x8UL << TIM4_AF1_ETRSEL_Pos) /*!< 0x00020000 */
  8858. /******************* Bit definition for TIM14_AF1 register *******************/
  8859. #define TIM14_AF1_ETRSEL_Pos (14U)
  8860. #define TIM14_AF1_ETRSEL_Msk (0xFUL << TIM14_AF1_ETRSEL_Pos) /*!< 0x0003C000 */
  8861. #define TIM14_AF1_ETRSEL TIM14_AF1_ETRSEL_Msk /*!<ETRSEL[3:0] bits (TIM14 ETR source selection) */
  8862. #define TIM14_AF1_ETRSEL_0 (0x1UL << TIM14_AF1_ETRSEL_Pos) /*!< 0x00004000 */
  8863. #define TIM14_AF1_ETRSEL_1 (0x2UL << TIM14_AF1_ETRSEL_Pos) /*!< 0x00008000 */
  8864. #define TIM14_AF1_ETRSEL_2 (0x4UL << TIM14_AF1_ETRSEL_Pos) /*!< 0x00010000 */
  8865. #define TIM14_AF1_ETRSEL_3 (0x8UL << TIM14_AF1_ETRSEL_Pos) /*!< 0x00020000 */
  8866. /******************* Bit definition for TIM15_AF1 register ******************/
  8867. #define TIM15_AF1_BKINE_Pos (0U)
  8868. #define TIM15_AF1_BKINE_Msk (0x1UL << TIM15_AF1_BKINE_Pos) /*!< 0x00000001 */
  8869. #define TIM15_AF1_BKINE TIM15_AF1_BKINE_Msk /*!<BRK BKIN input enable */
  8870. #define TIM15_AF1_BKCMP1E_Pos (1U)
  8871. #define TIM15_AF1_BKCMP1E_Msk (0x1UL << TIM15_AF1_BKCMP1E_Pos) /*!< 0x00000002 */
  8872. #define TIM15_AF1_BKCMP1E TIM15_AF1_BKCMP1E_Msk /*!<BRK COMP1 enable */
  8873. #define TIM15_AF1_BKCMP2E_Pos (2U)
  8874. #define TIM15_AF1_BKCMP2E_Msk (0x1UL << TIM15_AF1_BKCMP2E_Pos) /*!< 0x00000004 */
  8875. #define TIM15_AF1_BKCMP2E TIM15_AF1_BKCMP2E_Msk /*!<BRK COMP2 enable */
  8876. #define TIM15_AF1_BKCMP3E_Pos (3U)
  8877. #define TIM15_AF1_BKCMP3E_Msk (0x1UL << TIM15_AF1_BKCMP3E_Pos) /*!< 0x00000008 */
  8878. #define TIM15_AF1_BKCMP3E TIM15_AF1_BKCMP3E_Msk /*!<BRK COMP3 enable */
  8879. #define TIM15_AF1_BKINP_Pos (9U)
  8880. #define TIM15_AF1_BKINP_Msk (0x1UL << TIM15_AF1_BKINP_Pos) /*!< 0x00000200 */
  8881. #define TIM15_AF1_BKINP TIM15_AF1_BKINP_Msk /*!<BRK BKIN input polarity */
  8882. #define TIM15_AF1_BKCMP1P_Pos (10U)
  8883. #define TIM15_AF1_BKCMP1P_Msk (0x1UL << TIM15_AF1_BKCMP1P_Pos) /*!< 0x00000400 */
  8884. #define TIM15_AF1_BKCMP1P TIM15_AF1_BKCMP1P_Msk /*!<BRK COMP1 input polarity */
  8885. #define TIM15_AF1_BKCMP2P_Pos (11U)
  8886. #define TIM15_AF1_BKCMP2P_Msk (0x1UL << TIM15_AF1_BKCMP2P_Pos) /*!< 0x00000800 */
  8887. #define TIM15_AF1_BKCMP2P TIM15_AF1_BKCMP2P_Msk /*!<BRK COMP2 input polarity */
  8888. #define TIM15_AF1_BKCMP3P_Pos (12U)
  8889. #define TIM15_AF1_BKCMP3P_Msk (0x1UL << TIM15_AF1_BKCMP3P_Pos) /*!< 0x00000010 */
  8890. #define TIM15_AF1_BKCMP3P TIM15_AF1_BKCMP3P_Msk /*!<BRK COMP3 input polarity */
  8891. /******************* Bit definition for TIM16_AF1 register ******************/
  8892. #define TIM16_AF1_BKINE_Pos (0U)
  8893. #define TIM16_AF1_BKINE_Msk (0x1UL << TIM16_AF1_BKINE_Pos) /*!< 0x00000001 */
  8894. #define TIM16_AF1_BKINE TIM16_AF1_BKINE_Msk /*!<BRK BKIN input enable */
  8895. #define TIM16_AF1_BKCMP1E_Pos (1U)
  8896. #define TIM16_AF1_BKCMP1E_Msk (0x1UL << TIM16_AF1_BKCMP1E_Pos) /*!< 0x00000002 */
  8897. #define TIM16_AF1_BKCMP1E TIM16_AF1_BKCMP1E_Msk /*!<BRK COMP1 enable */
  8898. #define TIM16_AF1_BKCMP2E_Pos (2U)
  8899. #define TIM16_AF1_BKCMP2E_Msk (0x1UL << TIM16_AF1_BKCMP2E_Pos) /*!< 0x00000004 */
  8900. #define TIM16_AF1_BKCMP2E TIM16_AF1_BKCMP2E_Msk /*!<BRK COMP2 enable */
  8901. #define TIM16_AF1_BKCMP3E_Pos (3U)
  8902. #define TIM16_AF1_BKCMP3E_Msk (0x1UL << TIM16_AF1_BKCMP3E_Pos) /*!< 0x00000008 */
  8903. #define TIM16_AF1_BKCMP3E TIM16_AF1_BKCMP3E_Msk /*!<BRK COMP3 enable */
  8904. #define TIM16_AF1_BKINP_Pos (9U)
  8905. #define TIM16_AF1_BKINP_Msk (0x1UL << TIM16_AF1_BKINP_Pos) /*!< 0x00000200 */
  8906. #define TIM16_AF1_BKINP TIM16_AF1_BKINP_Msk /*!<BRK BKIN input polarity */
  8907. #define TIM16_AF1_BKCMP1P_Pos (10U)
  8908. #define TIM16_AF1_BKCMP1P_Msk (0x1UL << TIM16_AF1_BKCMP1P_Pos) /*!< 0x00000400 */
  8909. #define TIM16_AF1_BKCMP1P TIM16_AF1_BKCMP1P_Msk /*!<BRK COMP1 input polarity */
  8910. #define TIM16_AF1_BKCMP2P_Pos (11U)
  8911. #define TIM16_AF1_BKCMP2P_Msk (0x1UL << TIM16_AF1_BKCMP2P_Pos) /*!< 0x00000800 */
  8912. #define TIM16_AF1_BKCMP2P TIM16_AF1_BKCMP2P_Msk /*!<BRK COMP2 input polarity */
  8913. #define TIM16_AF1_BKCMP3P_Pos (12U)
  8914. #define TIM16_AF1_BKCMP3P_Msk (0x1UL << TIM16_AF1_BKCMP3P_Pos) /*!< 0x00000010 */
  8915. #define TIM16_AF1_BKCMP3P TIM16_AF1_BKCMP3P_Msk /*!<BRK COMP3 input polarity */
  8916. /******************* Bit definition for TIM17_AF1 register ******************/
  8917. #define TIM17_AF1_BKINE_Pos (0U)
  8918. #define TIM17_AF1_BKINE_Msk (0x1UL << TIM17_AF1_BKINE_Pos) /*!< 0x00000001 */
  8919. #define TIM17_AF1_BKINE TIM17_AF1_BKINE_Msk /*!<BRK BKIN input enable */
  8920. #define TIM17_AF1_BKCMP1E_Pos (1U)
  8921. #define TIM17_AF1_BKCMP1E_Msk (0x1UL << TIM17_AF1_BKCMP1E_Pos) /*!< 0x00000002 */
  8922. #define TIM17_AF1_BKCMP1E TIM17_AF1_BKCMP1E_Msk /*!<BRK COMP1 enable */
  8923. #define TIM17_AF1_BKCMP2E_Pos (2U)
  8924. #define TIM17_AF1_BKCMP2E_Msk (0x1UL << TIM17_AF1_BKCMP2E_Pos) /*!< 0x00000004 */
  8925. #define TIM17_AF1_BKCMP2E TIM17_AF1_BKCMP2E_Msk /*!<BRK COMP2 enable */
  8926. #define TIM17_AF1_BKCMP3E_Pos (3U)
  8927. #define TIM17_AF1_BKCMP3E_Msk (0x1UL << TIM17_AF1_BKCMP3E_Pos) /*!< 0x00000008 */
  8928. #define TIM17_AF1_BKCMP3E TIM17_AF1_BKCMP3E_Msk /*!<BRK COMP3 enable */
  8929. #define TIM17_AF1_BKINP_Pos (9U)
  8930. #define TIM17_AF1_BKINP_Msk (0x1UL << TIM17_AF1_BKINP_Pos) /*!< 0x00000200 */
  8931. #define TIM17_AF1_BKINP TIM17_AF1_BKINP_Msk /*!<BRK BKIN input polarity */
  8932. #define TIM17_AF1_BKCMP1P_Pos (10U)
  8933. #define TIM17_AF1_BKCMP1P_Msk (0x1UL << TIM17_AF1_BKCMP1P_Pos) /*!< 0x00000400 */
  8934. #define TIM17_AF1_BKCMP1P TIM17_AF1_BKCMP1P_Msk /*!<BRK COMP1 input polarity */
  8935. #define TIM17_AF1_BKCMP2P_Pos (11U)
  8936. #define TIM17_AF1_BKCMP2P_Msk (0x1UL << TIM17_AF1_BKCMP2P_Pos) /*!< 0x00000800 */
  8937. #define TIM17_AF1_BKCMP2P TIM17_AF1_BKCMP2P_Msk /*!<BRK COMP2 input polarity */
  8938. #define TIM17_AF1_BKCMP3P_Pos (12U)
  8939. #define TIM17_AF1_BKCMP3P_Msk (0x1UL << TIM17_AF1_BKCMP3P_Pos) /*!< 0x00000010 */
  8940. #define TIM17_AF1_BKCMP3P TIM17_AF1_BKCMP3P_Msk /*!<BRK COMP3 input polarity */
  8941. /******************* Bit definition for TIM_TISEL register *********************/
  8942. #define TIM_TISEL_TI1SEL_Pos (0U)
  8943. #define TIM_TISEL_TI1SEL_Msk (0xFUL << TIM_TISEL_TI1SEL_Pos) /*!< 0x0000000F */
  8944. #define TIM_TISEL_TI1SEL TIM_TISEL_TI1SEL_Msk /*!<TI1SEL[3:0] bits (TIM TI1 SEL)*/
  8945. #define TIM_TISEL_TI1SEL_0 (0x1UL << TIM_TISEL_TI1SEL_Pos) /*!< 0x00000001 */
  8946. #define TIM_TISEL_TI1SEL_1 (0x2UL << TIM_TISEL_TI1SEL_Pos) /*!< 0x00000002 */
  8947. #define TIM_TISEL_TI1SEL_2 (0x4UL << TIM_TISEL_TI1SEL_Pos) /*!< 0x00000004 */
  8948. #define TIM_TISEL_TI1SEL_3 (0x8UL << TIM_TISEL_TI1SEL_Pos) /*!< 0x00000008 */
  8949. #define TIM_TISEL_TI2SEL_Pos (8U)
  8950. #define TIM_TISEL_TI2SEL_Msk (0xFUL << TIM_TISEL_TI2SEL_Pos) /*!< 0x00000F00 */
  8951. #define TIM_TISEL_TI2SEL TIM_TISEL_TI2SEL_Msk /*!<TI2SEL[3:0] bits (TIM TI2 SEL)*/
  8952. #define TIM_TISEL_TI2SEL_0 (0x1UL << TIM_TISEL_TI2SEL_Pos) /*!< 0x00000100 */
  8953. #define TIM_TISEL_TI2SEL_1 (0x2UL << TIM_TISEL_TI2SEL_Pos) /*!< 0x00000200 */
  8954. #define TIM_TISEL_TI2SEL_2 (0x4UL << TIM_TISEL_TI2SEL_Pos) /*!< 0x00000400 */
  8955. #define TIM_TISEL_TI2SEL_3 (0x8UL << TIM_TISEL_TI2SEL_Pos) /*!< 0x00000800 */
  8956. #define TIM_TISEL_TI3SEL_Pos (16U)
  8957. #define TIM_TISEL_TI3SEL_Msk (0xFUL << TIM_TISEL_TI3SEL_Pos) /*!< 0x000F0000 */
  8958. #define TIM_TISEL_TI3SEL TIM_TISEL_TI3SEL_Msk /*!<TI3SEL[3:0] bits (TIM TI3 SEL)*/
  8959. #define TIM_TISEL_TI3SEL_0 (0x1UL << TIM_TISEL_TI3SEL_Pos) /*!< 0x00010000 */
  8960. #define TIM_TISEL_TI3SEL_1 (0x2UL << TIM_TISEL_TI3SEL_Pos) /*!< 0x00020000 */
  8961. #define TIM_TISEL_TI3SEL_2 (0x4UL << TIM_TISEL_TI3SEL_Pos) /*!< 0x00040000 */
  8962. #define TIM_TISEL_TI3SEL_3 (0x8UL << TIM_TISEL_TI3SEL_Pos) /*!< 0x00080000 */
  8963. #define TIM_TISEL_TI4SEL_Pos (24U)
  8964. #define TIM_TISEL_TI4SEL_Msk (0xFUL << TIM_TISEL_TI4SEL_Pos) /*!< 0x0F000000 */
  8965. #define TIM_TISEL_TI4SEL TIM_TISEL_TI4SEL_Msk /*!<TI4SEL[3:0] bits (TIM TI4 SEL)*/
  8966. #define TIM_TISEL_TI4SEL_0 (0x1UL << TIM_TISEL_TI4SEL_Pos) /*!< 0x01000000 */
  8967. #define TIM_TISEL_TI4SEL_1 (0x2UL << TIM_TISEL_TI4SEL_Pos) /*!< 0x02000000 */
  8968. #define TIM_TISEL_TI4SEL_2 (0x4UL << TIM_TISEL_TI4SEL_Pos) /*!< 0x04000000 */
  8969. #define TIM_TISEL_TI4SEL_3 (0x8UL << TIM_TISEL_TI4SEL_Pos) /*!< 0x08000000 */
  8970. /******************************************************************************/
  8971. /* */
  8972. /* Low Power Timer (LPTIM) */
  8973. /* */
  8974. /******************************************************************************/
  8975. /****************** Bit definition for LPTIM_ISR register *******************/
  8976. #define LPTIM_ISR_CMPM_Pos (0U)
  8977. #define LPTIM_ISR_CMPM_Msk (0x1UL << LPTIM_ISR_CMPM_Pos) /*!< 0x00000001 */
  8978. #define LPTIM_ISR_CMPM LPTIM_ISR_CMPM_Msk /*!< Compare match */
  8979. #define LPTIM_ISR_ARRM_Pos (1U)
  8980. #define LPTIM_ISR_ARRM_Msk (0x1UL << LPTIM_ISR_ARRM_Pos) /*!< 0x00000002 */
  8981. #define LPTIM_ISR_ARRM LPTIM_ISR_ARRM_Msk /*!< Autoreload match */
  8982. #define LPTIM_ISR_EXTTRIG_Pos (2U)
  8983. #define LPTIM_ISR_EXTTRIG_Msk (0x1UL << LPTIM_ISR_EXTTRIG_Pos) /*!< 0x00000004 */
  8984. #define LPTIM_ISR_EXTTRIG LPTIM_ISR_EXTTRIG_Msk /*!< External trigger edge event */
  8985. #define LPTIM_ISR_CMPOK_Pos (3U)
  8986. #define LPTIM_ISR_CMPOK_Msk (0x1UL << LPTIM_ISR_CMPOK_Pos) /*!< 0x00000008 */
  8987. #define LPTIM_ISR_CMPOK LPTIM_ISR_CMPOK_Msk /*!< Compare register update OK */
  8988. #define LPTIM_ISR_ARROK_Pos (4U)
  8989. #define LPTIM_ISR_ARROK_Msk (0x1UL << LPTIM_ISR_ARROK_Pos) /*!< 0x00000010 */
  8990. #define LPTIM_ISR_ARROK LPTIM_ISR_ARROK_Msk /*!< Autoreload register update OK */
  8991. #define LPTIM_ISR_UP_Pos (5U)
  8992. #define LPTIM_ISR_UP_Msk (0x1UL << LPTIM_ISR_UP_Pos) /*!< 0x00000020 */
  8993. #define LPTIM_ISR_UP LPTIM_ISR_UP_Msk /*!< Counter direction change down to up */
  8994. #define LPTIM_ISR_DOWN_Pos (6U)
  8995. #define LPTIM_ISR_DOWN_Msk (0x1UL << LPTIM_ISR_DOWN_Pos) /*!< 0x00000040 */
  8996. #define LPTIM_ISR_DOWN LPTIM_ISR_DOWN_Msk /*!< Counter direction change up to down */
  8997. /****************** Bit definition for LPTIM_ICR register *******************/
  8998. #define LPTIM_ICR_CMPMCF_Pos (0U)
  8999. #define LPTIM_ICR_CMPMCF_Msk (0x1UL << LPTIM_ICR_CMPMCF_Pos) /*!< 0x00000001 */
  9000. #define LPTIM_ICR_CMPMCF LPTIM_ICR_CMPMCF_Msk /*!< Compare match Clear Flag */
  9001. #define LPTIM_ICR_ARRMCF_Pos (1U)
  9002. #define LPTIM_ICR_ARRMCF_Msk (0x1UL << LPTIM_ICR_ARRMCF_Pos) /*!< 0x00000002 */
  9003. #define LPTIM_ICR_ARRMCF LPTIM_ICR_ARRMCF_Msk /*!< Autoreload match Clear Flag */
  9004. #define LPTIM_ICR_EXTTRIGCF_Pos (2U)
  9005. #define LPTIM_ICR_EXTTRIGCF_Msk (0x1UL << LPTIM_ICR_EXTTRIGCF_Pos) /*!< 0x00000004 */
  9006. #define LPTIM_ICR_EXTTRIGCF LPTIM_ICR_EXTTRIGCF_Msk /*!< External trigger edge event Clear Flag */
  9007. #define LPTIM_ICR_CMPOKCF_Pos (3U)
  9008. #define LPTIM_ICR_CMPOKCF_Msk (0x1UL << LPTIM_ICR_CMPOKCF_Pos) /*!< 0x00000008 */
  9009. #define LPTIM_ICR_CMPOKCF LPTIM_ICR_CMPOKCF_Msk /*!< Compare register update OK Clear Flag */
  9010. #define LPTIM_ICR_ARROKCF_Pos (4U)
  9011. #define LPTIM_ICR_ARROKCF_Msk (0x1UL << LPTIM_ICR_ARROKCF_Pos) /*!< 0x00000010 */
  9012. #define LPTIM_ICR_ARROKCF LPTIM_ICR_ARROKCF_Msk /*!< Autoreload register update OK Clear Flag */
  9013. #define LPTIM_ICR_UPCF_Pos (5U)
  9014. #define LPTIM_ICR_UPCF_Msk (0x1UL << LPTIM_ICR_UPCF_Pos) /*!< 0x00000020 */
  9015. #define LPTIM_ICR_UPCF LPTIM_ICR_UPCF_Msk /*!< Counter direction change down to up Clear Flag */
  9016. #define LPTIM_ICR_DOWNCF_Pos (6U)
  9017. #define LPTIM_ICR_DOWNCF_Msk (0x1UL << LPTIM_ICR_DOWNCF_Pos) /*!< 0x00000040 */
  9018. #define LPTIM_ICR_DOWNCF LPTIM_ICR_DOWNCF_Msk /*!< Counter direction change up to down Clear Flag */
  9019. /****************** Bit definition for LPTIM_IER register ********************/
  9020. #define LPTIM_IER_CMPMIE_Pos (0U)
  9021. #define LPTIM_IER_CMPMIE_Msk (0x1UL << LPTIM_IER_CMPMIE_Pos) /*!< 0x00000001 */
  9022. #define LPTIM_IER_CMPMIE LPTIM_IER_CMPMIE_Msk /*!< Compare match Interrupt Enable */
  9023. #define LPTIM_IER_ARRMIE_Pos (1U)
  9024. #define LPTIM_IER_ARRMIE_Msk (0x1UL << LPTIM_IER_ARRMIE_Pos) /*!< 0x00000002 */
  9025. #define LPTIM_IER_ARRMIE LPTIM_IER_ARRMIE_Msk /*!< Autoreload match Interrupt Enable */
  9026. #define LPTIM_IER_EXTTRIGIE_Pos (2U)
  9027. #define LPTIM_IER_EXTTRIGIE_Msk (0x1UL << LPTIM_IER_EXTTRIGIE_Pos) /*!< 0x00000004 */
  9028. #define LPTIM_IER_EXTTRIGIE LPTIM_IER_EXTTRIGIE_Msk /*!< External trigger edge event Interrupt Enable */
  9029. #define LPTIM_IER_CMPOKIE_Pos (3U)
  9030. #define LPTIM_IER_CMPOKIE_Msk (0x1UL << LPTIM_IER_CMPOKIE_Pos) /*!< 0x00000008 */
  9031. #define LPTIM_IER_CMPOKIE LPTIM_IER_CMPOKIE_Msk /*!< Compare register update OK Interrupt Enable */
  9032. #define LPTIM_IER_ARROKIE_Pos (4U)
  9033. #define LPTIM_IER_ARROKIE_Msk (0x1UL << LPTIM_IER_ARROKIE_Pos) /*!< 0x00000010 */
  9034. #define LPTIM_IER_ARROKIE LPTIM_IER_ARROKIE_Msk /*!< Autoreload register update OK Interrupt Enable */
  9035. #define LPTIM_IER_UPIE_Pos (5U)
  9036. #define LPTIM_IER_UPIE_Msk (0x1UL << LPTIM_IER_UPIE_Pos) /*!< 0x00000020 */
  9037. #define LPTIM_IER_UPIE LPTIM_IER_UPIE_Msk /*!< Counter direction change down to up Interrupt Enable */
  9038. #define LPTIM_IER_DOWNIE_Pos (6U)
  9039. #define LPTIM_IER_DOWNIE_Msk (0x1UL << LPTIM_IER_DOWNIE_Pos) /*!< 0x00000040 */
  9040. #define LPTIM_IER_DOWNIE LPTIM_IER_DOWNIE_Msk /*!< Counter direction change up to down Interrupt Enable */
  9041. /****************** Bit definition for LPTIM_CFGR register *******************/
  9042. #define LPTIM_CFGR_CKSEL_Pos (0U)
  9043. #define LPTIM_CFGR_CKSEL_Msk (0x1UL << LPTIM_CFGR_CKSEL_Pos) /*!< 0x00000001 */
  9044. #define LPTIM_CFGR_CKSEL LPTIM_CFGR_CKSEL_Msk /*!< Clock selector */
  9045. #define LPTIM_CFGR_CKPOL_Pos (1U)
  9046. #define LPTIM_CFGR_CKPOL_Msk (0x3UL << LPTIM_CFGR_CKPOL_Pos) /*!< 0x00000006 */
  9047. #define LPTIM_CFGR_CKPOL LPTIM_CFGR_CKPOL_Msk /*!< CKPOL[1:0] bits (Clock polarity) */
  9048. #define LPTIM_CFGR_CKPOL_0 (0x1UL << LPTIM_CFGR_CKPOL_Pos) /*!< 0x00000002 */
  9049. #define LPTIM_CFGR_CKPOL_1 (0x2UL << LPTIM_CFGR_CKPOL_Pos) /*!< 0x00000004 */
  9050. #define LPTIM_CFGR_CKFLT_Pos (3U)
  9051. #define LPTIM_CFGR_CKFLT_Msk (0x3UL << LPTIM_CFGR_CKFLT_Pos) /*!< 0x00000018 */
  9052. #define LPTIM_CFGR_CKFLT LPTIM_CFGR_CKFLT_Msk /*!< CKFLT[1:0] bits (Configurable digital filter for external clock) */
  9053. #define LPTIM_CFGR_CKFLT_0 (0x1UL << LPTIM_CFGR_CKFLT_Pos) /*!< 0x00000008 */
  9054. #define LPTIM_CFGR_CKFLT_1 (0x2UL << LPTIM_CFGR_CKFLT_Pos) /*!< 0x00000010 */
  9055. #define LPTIM_CFGR_TRGFLT_Pos (6U)
  9056. #define LPTIM_CFGR_TRGFLT_Msk (0x3UL << LPTIM_CFGR_TRGFLT_Pos) /*!< 0x000000C0 */
  9057. #define LPTIM_CFGR_TRGFLT LPTIM_CFGR_TRGFLT_Msk /*!< TRGFLT[1:0] bits (Configurable digital filter for trigger) */
  9058. #define LPTIM_CFGR_TRGFLT_0 (0x1UL << LPTIM_CFGR_TRGFLT_Pos) /*!< 0x00000040 */
  9059. #define LPTIM_CFGR_TRGFLT_1 (0x2UL << LPTIM_CFGR_TRGFLT_Pos) /*!< 0x00000080 */
  9060. #define LPTIM_CFGR_PRESC_Pos (9U)
  9061. #define LPTIM_CFGR_PRESC_Msk (0x7UL << LPTIM_CFGR_PRESC_Pos) /*!< 0x00000E00 */
  9062. #define LPTIM_CFGR_PRESC LPTIM_CFGR_PRESC_Msk /*!< PRESC[2:0] bits (Clock prescaler) */
  9063. #define LPTIM_CFGR_PRESC_0 (0x1UL << LPTIM_CFGR_PRESC_Pos) /*!< 0x00000200 */
  9064. #define LPTIM_CFGR_PRESC_1 (0x2UL << LPTIM_CFGR_PRESC_Pos) /*!< 0x00000400 */
  9065. #define LPTIM_CFGR_PRESC_2 (0x4UL << LPTIM_CFGR_PRESC_Pos) /*!< 0x00000800 */
  9066. #define LPTIM_CFGR_TRIGSEL_Pos (13U)
  9067. #define LPTIM_CFGR_TRIGSEL_Msk (0x7UL << LPTIM_CFGR_TRIGSEL_Pos) /*!< 0x0000E000 */
  9068. #define LPTIM_CFGR_TRIGSEL LPTIM_CFGR_TRIGSEL_Msk /*!< TRIGSEL[2:0]] bits (Trigger selector) */
  9069. #define LPTIM_CFGR_TRIGSEL_0 (0x1UL << LPTIM_CFGR_TRIGSEL_Pos) /*!< 0x00002000 */
  9070. #define LPTIM_CFGR_TRIGSEL_1 (0x2UL << LPTIM_CFGR_TRIGSEL_Pos) /*!< 0x00004000 */
  9071. #define LPTIM_CFGR_TRIGSEL_2 (0x4UL << LPTIM_CFGR_TRIGSEL_Pos) /*!< 0x00008000 */
  9072. #define LPTIM_CFGR_TRIGEN_Pos (17U)
  9073. #define LPTIM_CFGR_TRIGEN_Msk (0x3UL << LPTIM_CFGR_TRIGEN_Pos) /*!< 0x00060000 */
  9074. #define LPTIM_CFGR_TRIGEN LPTIM_CFGR_TRIGEN_Msk /*!< TRIGEN[1:0] bits (Trigger enable and polarity) */
  9075. #define LPTIM_CFGR_TRIGEN_0 (0x1UL << LPTIM_CFGR_TRIGEN_Pos) /*!< 0x00020000 */
  9076. #define LPTIM_CFGR_TRIGEN_1 (0x2UL << LPTIM_CFGR_TRIGEN_Pos) /*!< 0x00040000 */
  9077. #define LPTIM_CFGR_TIMOUT_Pos (19U)
  9078. #define LPTIM_CFGR_TIMOUT_Msk (0x1UL << LPTIM_CFGR_TIMOUT_Pos) /*!< 0x00080000 */
  9079. #define LPTIM_CFGR_TIMOUT LPTIM_CFGR_TIMOUT_Msk /*!< Timeout enable */
  9080. #define LPTIM_CFGR_WAVE_Pos (20U)
  9081. #define LPTIM_CFGR_WAVE_Msk (0x1UL << LPTIM_CFGR_WAVE_Pos) /*!< 0x00100000 */
  9082. #define LPTIM_CFGR_WAVE LPTIM_CFGR_WAVE_Msk /*!< Waveform shape */
  9083. #define LPTIM_CFGR_WAVPOL_Pos (21U)
  9084. #define LPTIM_CFGR_WAVPOL_Msk (0x1UL << LPTIM_CFGR_WAVPOL_Pos) /*!< 0x00200000 */
  9085. #define LPTIM_CFGR_WAVPOL LPTIM_CFGR_WAVPOL_Msk /*!< Waveform shape polarity */
  9086. #define LPTIM_CFGR_PRELOAD_Pos (22U)
  9087. #define LPTIM_CFGR_PRELOAD_Msk (0x1UL << LPTIM_CFGR_PRELOAD_Pos) /*!< 0x00400000 */
  9088. #define LPTIM_CFGR_PRELOAD LPTIM_CFGR_PRELOAD_Msk /*!< Reg update mode */
  9089. #define LPTIM_CFGR_COUNTMODE_Pos (23U)
  9090. #define LPTIM_CFGR_COUNTMODE_Msk (0x1UL << LPTIM_CFGR_COUNTMODE_Pos) /*!< 0x00800000 */
  9091. #define LPTIM_CFGR_COUNTMODE LPTIM_CFGR_COUNTMODE_Msk /*!< Counter mode enable */
  9092. #define LPTIM_CFGR_ENC_Pos (24U)
  9093. #define LPTIM_CFGR_ENC_Msk (0x1UL << LPTIM_CFGR_ENC_Pos) /*!< 0x01000000 */
  9094. #define LPTIM_CFGR_ENC LPTIM_CFGR_ENC_Msk /*!< Encoder mode enable */
  9095. /****************** Bit definition for LPTIM_CR register ********************/
  9096. #define LPTIM_CR_ENABLE_Pos (0U)
  9097. #define LPTIM_CR_ENABLE_Msk (0x1UL << LPTIM_CR_ENABLE_Pos) /*!< 0x00000001 */
  9098. #define LPTIM_CR_ENABLE LPTIM_CR_ENABLE_Msk /*!< LPTIMer enable */
  9099. #define LPTIM_CR_SNGSTRT_Pos (1U)
  9100. #define LPTIM_CR_SNGSTRT_Msk (0x1UL << LPTIM_CR_SNGSTRT_Pos) /*!< 0x00000002 */
  9101. #define LPTIM_CR_SNGSTRT LPTIM_CR_SNGSTRT_Msk /*!< Timer start in single mode */
  9102. #define LPTIM_CR_CNTSTRT_Pos (2U)
  9103. #define LPTIM_CR_CNTSTRT_Msk (0x1UL << LPTIM_CR_CNTSTRT_Pos) /*!< 0x00000004 */
  9104. #define LPTIM_CR_CNTSTRT LPTIM_CR_CNTSTRT_Msk /*!< Timer start in continuous mode */
  9105. #define LPTIM_CR_COUNTRST_Pos (3U)
  9106. #define LPTIM_CR_COUNTRST_Msk (0x1UL << LPTIM_CR_COUNTRST_Pos) /*!< 0x00000008 */
  9107. #define LPTIM_CR_COUNTRST LPTIM_CR_COUNTRST_Msk /*!< Counter reset */
  9108. #define LPTIM_CR_RSTARE_Pos (4U)
  9109. #define LPTIM_CR_RSTARE_Msk (0x1UL << LPTIM_CR_RSTARE_Pos) /*!< 0x00000010 */
  9110. #define LPTIM_CR_RSTARE LPTIM_CR_RSTARE_Msk /*!< Reset after read enable */
  9111. /****************** Bit definition for LPTIM_CMP register *******************/
  9112. #define LPTIM_CMP_CMP_Pos (0U)
  9113. #define LPTIM_CMP_CMP_Msk (0xFFFFUL << LPTIM_CMP_CMP_Pos) /*!< 0x0000FFFF */
  9114. #define LPTIM_CMP_CMP LPTIM_CMP_CMP_Msk /*!< Compare register */
  9115. /****************** Bit definition for LPTIM_ARR register *******************/
  9116. #define LPTIM_ARR_ARR_Pos (0U)
  9117. #define LPTIM_ARR_ARR_Msk (0xFFFFUL << LPTIM_ARR_ARR_Pos) /*!< 0x0000FFFF */
  9118. #define LPTIM_ARR_ARR LPTIM_ARR_ARR_Msk /*!< Auto reload register */
  9119. /****************** Bit definition for LPTIM_CNT register *******************/
  9120. #define LPTIM_CNT_CNT_Pos (0U)
  9121. #define LPTIM_CNT_CNT_Msk (0xFFFFUL << LPTIM_CNT_CNT_Pos) /*!< 0x0000FFFF */
  9122. #define LPTIM_CNT_CNT LPTIM_CNT_CNT_Msk /*!< Counter register */
  9123. /****************** Bit definition for LPTIM_CFGR2 register *******************/
  9124. #define LPTIM_CFGR2_IN1SEL_Pos (0U)
  9125. #define LPTIM_CFGR2_IN1SEL_Msk (0xFUL << LPTIM_CFGR2_IN1SEL_Pos) /*!< 0x0000000F */
  9126. #define LPTIM_CFGR2_IN1SEL LPTIM_CFGR2_IN1SEL_Msk /*!< CFGR2[3:0] bits (INPUT1 selection) */
  9127. #define LPTIM_CFGR2_IN1SEL_0 (0x1UL << LPTIM_CFGR2_IN1SEL_Pos) /*!< 0x00000001 */
  9128. #define LPTIM_CFGR2_IN1SEL_1 (0x2UL << LPTIM_CFGR2_IN1SEL_Pos) /*!< 0x00000002 */
  9129. #define LPTIM_CFGR2_IN1SEL_2 (0x4UL << LPTIM_CFGR2_IN1SEL_Pos) /*!< 0x00000004 */
  9130. #define LPTIM_CFGR2_IN1SEL_3 (0x8UL << LPTIM_CFGR2_IN1SEL_Pos) /*!< 0x00000008 */
  9131. #define LPTIM_CFGR2_IN2SEL_Pos (4U)
  9132. #define LPTIM_CFGR2_IN2SEL_Msk (0xFUL << LPTIM_CFGR2_IN2SEL_Pos) /*!< 0x000000F0 */
  9133. #define LPTIM_CFGR2_IN2SEL LPTIM_CFGR2_IN2SEL_Msk /*!< CFGR2[7:4] bits (INPUT2 selection) */
  9134. #define LPTIM_CFGR2_IN2SEL_0 (0x1UL << LPTIM_CFGR2_IN2SEL_Pos) /*!< 0x00000010 */
  9135. #define LPTIM_CFGR2_IN2SEL_1 (0x2UL << LPTIM_CFGR2_IN2SEL_Pos) /*!< 0x00000020 */
  9136. #define LPTIM_CFGR2_IN2SEL_2 (0x4UL << LPTIM_CFGR2_IN2SEL_Pos) /*!< 0x00000040 */
  9137. #define LPTIM_CFGR2_IN2SEL_3 (0x8UL << LPTIM_CFGR2_IN2SEL_Pos) /*!< 0x00000080 */
  9138. /******************************************************************************/
  9139. /* */
  9140. /* Analog Comparators (COMP) */
  9141. /* */
  9142. /******************************************************************************/
  9143. /********************** Bit definition for COMP_CSR register ****************/
  9144. #define COMP_CSR_EN_Pos (0U)
  9145. #define COMP_CSR_EN_Msk (0x1UL << COMP_CSR_EN_Pos) /*!< 0x00000001 */
  9146. #define COMP_CSR_EN COMP_CSR_EN_Msk /*!< Comparator enable */
  9147. #define COMP_CSR_INMSEL_Pos (4U)
  9148. #define COMP_CSR_INMSEL_Msk (0xFUL << COMP_CSR_INMSEL_Pos) /*!< 0x000000F0 */
  9149. #define COMP_CSR_INMSEL COMP_CSR_INMSEL_Msk /*!< Comparator input minus selection */
  9150. #define COMP_CSR_INMSEL_0 (0x1UL << COMP_CSR_INMSEL_Pos) /*!< 0x00000010 */
  9151. #define COMP_CSR_INMSEL_1 (0x2UL << COMP_CSR_INMSEL_Pos) /*!< 0x00000020 */
  9152. #define COMP_CSR_INMSEL_2 (0x4UL << COMP_CSR_INMSEL_Pos) /*!< 0x00000040 */
  9153. #define COMP_CSR_INMSEL_3 (0x8UL << COMP_CSR_INMSEL_Pos) /*!< 0x00000080 */
  9154. #define COMP_CSR_INPSEL_Pos (8U)
  9155. #define COMP_CSR_INPSEL_Msk (0x3UL << COMP_CSR_INPSEL_Pos) /*!< 0x00000300 */
  9156. #define COMP_CSR_INPSEL COMP_CSR_INPSEL_Msk /*!< Comparator plus minus selection */
  9157. #define COMP_CSR_INPSEL_0 (0x1UL << COMP_CSR_INPSEL_Pos) /*!< 0x00000100 */
  9158. #define COMP_CSR_INPSEL_1 (0x2UL << COMP_CSR_INPSEL_Pos) /*!< 0x00000200 */
  9159. #define COMP_CSR_WINMODE_Pos (11U)
  9160. #define COMP_CSR_WINMODE_Msk (0x1UL << COMP_CSR_WINMODE_Pos) /*!< 0x00000800 */
  9161. #define COMP_CSR_WINMODE COMP_CSR_WINMODE_Msk /*!< Pair of comparators window mode. Bit intended to be used with COMP common instance (COMP_Common_TypeDef) */
  9162. #define COMP_CSR_WINOUT_Pos (14U)
  9163. #define COMP_CSR_WINOUT_Msk (0x1UL << COMP_CSR_WINOUT_Pos) /*!< 0x00004000 */
  9164. #define COMP_CSR_WINOUT COMP_CSR_WINOUT_Msk /*!< Pair of comparators window output level. Bit intended to be used with COMP common instance (COMP_Common_TypeDef) */
  9165. #define COMP_CSR_POLARITY_Pos (15U)
  9166. #define COMP_CSR_POLARITY_Msk (0x1UL << COMP_CSR_POLARITY_Pos) /*!< 0x00008000 */
  9167. #define COMP_CSR_POLARITY COMP_CSR_POLARITY_Msk /*!< Comparator output polarity */
  9168. #define COMP_CSR_HYST_Pos (16U)
  9169. #define COMP_CSR_HYST_Msk (0x3UL << COMP_CSR_HYST_Pos) /*!< 0x00030000 */
  9170. #define COMP_CSR_HYST COMP_CSR_HYST_Msk /*!< Comparator input hysteresis */
  9171. #define COMP_CSR_HYST_0 (0x1UL << COMP_CSR_HYST_Pos) /*!< 0x00010000 */
  9172. #define COMP_CSR_HYST_1 (0x2UL << COMP_CSR_HYST_Pos) /*!< 0x00020000 */
  9173. #define COMP_CSR_PWRMODE_Pos (18U)
  9174. #define COMP_CSR_PWRMODE_Msk (0x3UL << COMP_CSR_PWRMODE_Pos) /*!< 0x000C0000 */
  9175. #define COMP_CSR_PWRMODE COMP_CSR_PWRMODE_Msk /*!< Comparator power mode */
  9176. #define COMP_CSR_PWRMODE_0 (0x1UL << COMP_CSR_PWRMODE_Pos) /*!< 0x00040000 */
  9177. #define COMP_CSR_PWRMODE_1 (0x2UL << COMP_CSR_PWRMODE_Pos) /*!< 0x00080000 */
  9178. #define COMP_CSR_BLANKING_Pos (20U)
  9179. #define COMP_CSR_BLANKING_Msk (0x1FUL << COMP_CSR_BLANKING_Pos) /*!< 0x01F00000 */
  9180. #define COMP_CSR_BLANKING COMP_CSR_BLANKING_Msk /*!< Comparator blanking source */
  9181. #define COMP_CSR_BLANKING_0 (0x01UL << COMP_CSR_BLANKING_Pos) /*!< 0x00100000 */
  9182. #define COMP_CSR_BLANKING_1 (0x02UL << COMP_CSR_BLANKING_Pos) /*!< 0x00200000 */
  9183. #define COMP_CSR_BLANKING_2 (0x04UL << COMP_CSR_BLANKING_Pos) /*!< 0x00400000 */
  9184. #define COMP_CSR_BLANKING_3 (0x08UL << COMP_CSR_BLANKING_Pos) /*!< 0x00800000 */
  9185. #define COMP_CSR_BLANKING_4 (0x10UL << COMP_CSR_BLANKING_Pos) /*!< 0x01000000 */
  9186. #define COMP_CSR_VALUE_Pos (30U)
  9187. #define COMP_CSR_VALUE_Msk (0x1UL << COMP_CSR_VALUE_Pos) /*!< 0x40000000 */
  9188. #define COMP_CSR_VALUE COMP_CSR_VALUE_Msk /*!< Comparator output level */
  9189. #define COMP_CSR_LOCK_Pos (31U)
  9190. #define COMP_CSR_LOCK_Msk (0x1UL << COMP_CSR_LOCK_Pos) /*!< 0x80000000 */
  9191. #define COMP_CSR_LOCK COMP_CSR_LOCK_Msk /*!< Comparator lock */
  9192. /******************************************************************************/
  9193. /* */
  9194. /* Universal Synchronous Asynchronous Receiver Transmitter (USART) */
  9195. /* */
  9196. /******************************************************************************/
  9197. /****************** Bit definition for USART_CR1 register *******************/
  9198. #define USART_CR1_UE_Pos (0U)
  9199. #define USART_CR1_UE_Msk (0x1UL << USART_CR1_UE_Pos) /*!< 0x00000001 */
  9200. #define USART_CR1_UE USART_CR1_UE_Msk /*!< USART Enable */
  9201. #define USART_CR1_UESM_Pos (1U)
  9202. #define USART_CR1_UESM_Msk (0x1UL << USART_CR1_UESM_Pos) /*!< 0x00000002 */
  9203. #define USART_CR1_UESM USART_CR1_UESM_Msk /*!< USART Enable in STOP Mode */
  9204. #define USART_CR1_RE_Pos (2U)
  9205. #define USART_CR1_RE_Msk (0x1UL << USART_CR1_RE_Pos) /*!< 0x00000004 */
  9206. #define USART_CR1_RE USART_CR1_RE_Msk /*!< Receiver Enable */
  9207. #define USART_CR1_TE_Pos (3U)
  9208. #define USART_CR1_TE_Msk (0x1UL << USART_CR1_TE_Pos) /*!< 0x00000008 */
  9209. #define USART_CR1_TE USART_CR1_TE_Msk /*!< Transmitter Enable */
  9210. #define USART_CR1_IDLEIE_Pos (4U)
  9211. #define USART_CR1_IDLEIE_Msk (0x1UL << USART_CR1_IDLEIE_Pos) /*!< 0x00000010 */
  9212. #define USART_CR1_IDLEIE USART_CR1_IDLEIE_Msk /*!< IDLE Interrupt Enable */
  9213. #define USART_CR1_RXNEIE_RXFNEIE_Pos (5U)
  9214. #define USART_CR1_RXNEIE_RXFNEIE_Msk (0x1UL << USART_CR1_RXNEIE_RXFNEIE_Pos) /*!< 0x00000020 */
  9215. #define USART_CR1_RXNEIE_RXFNEIE USART_CR1_RXNEIE_RXFNEIE_Msk /*!< RXNE/RXFIFO not empty Interrupt Enable */
  9216. #define USART_CR1_TCIE_Pos (6U)
  9217. #define USART_CR1_TCIE_Msk (0x1UL << USART_CR1_TCIE_Pos) /*!< 0x00000040 */
  9218. #define USART_CR1_TCIE USART_CR1_TCIE_Msk /*!< Transmission Complete Interrupt Enable */
  9219. #define USART_CR1_TXEIE_TXFNFIE_Pos (7U)
  9220. #define USART_CR1_TXEIE_TXFNFIE_Msk (0x1UL << USART_CR1_TXEIE_TXFNFIE_Pos) /*!< 0x00000080 */
  9221. #define USART_CR1_TXEIE_TXFNFIE USART_CR1_TXEIE_TXFNFIE_Msk /*!< TXE/TXFIFO not full Interrupt Enable */
  9222. #define USART_CR1_PEIE_Pos (8U)
  9223. #define USART_CR1_PEIE_Msk (0x1UL << USART_CR1_PEIE_Pos) /*!< 0x00000100 */
  9224. #define USART_CR1_PEIE USART_CR1_PEIE_Msk /*!< PE Interrupt Enable */
  9225. #define USART_CR1_PS_Pos (9U)
  9226. #define USART_CR1_PS_Msk (0x1UL << USART_CR1_PS_Pos) /*!< 0x00000200 */
  9227. #define USART_CR1_PS USART_CR1_PS_Msk /*!< Parity Selection */
  9228. #define USART_CR1_PCE_Pos (10U)
  9229. #define USART_CR1_PCE_Msk (0x1UL << USART_CR1_PCE_Pos) /*!< 0x00000400 */
  9230. #define USART_CR1_PCE USART_CR1_PCE_Msk /*!< Parity Control Enable */
  9231. #define USART_CR1_WAKE_Pos (11U)
  9232. #define USART_CR1_WAKE_Msk (0x1UL << USART_CR1_WAKE_Pos) /*!< 0x00000800 */
  9233. #define USART_CR1_WAKE USART_CR1_WAKE_Msk /*!< Receiver Wakeup method */
  9234. #define USART_CR1_M_Pos (12U)
  9235. #define USART_CR1_M_Msk (0x10001UL << USART_CR1_M_Pos) /*!< 0x10001000 */
  9236. #define USART_CR1_M USART_CR1_M_Msk /*!< Word length */
  9237. #define USART_CR1_M0_Pos (12U)
  9238. #define USART_CR1_M0_Msk (0x1UL << USART_CR1_M0_Pos) /*!< 0x00001000 */
  9239. #define USART_CR1_M0 USART_CR1_M0_Msk /*!< Word length - Bit 0 */
  9240. #define USART_CR1_MME_Pos (13U)
  9241. #define USART_CR1_MME_Msk (0x1UL << USART_CR1_MME_Pos) /*!< 0x00002000 */
  9242. #define USART_CR1_MME USART_CR1_MME_Msk /*!< Mute Mode Enable */
  9243. #define USART_CR1_CMIE_Pos (14U)
  9244. #define USART_CR1_CMIE_Msk (0x1UL << USART_CR1_CMIE_Pos) /*!< 0x00004000 */
  9245. #define USART_CR1_CMIE USART_CR1_CMIE_Msk /*!< Character match interrupt enable */
  9246. #define USART_CR1_OVER8_Pos (15U)
  9247. #define USART_CR1_OVER8_Msk (0x1UL << USART_CR1_OVER8_Pos) /*!< 0x00008000 */
  9248. #define USART_CR1_OVER8 USART_CR1_OVER8_Msk /*!< Oversampling by 8-bit or 16-bit mode */
  9249. #define USART_CR1_DEDT_Pos (16U)
  9250. #define USART_CR1_DEDT_Msk (0x1FUL << USART_CR1_DEDT_Pos) /*!< 0x001F0000 */
  9251. #define USART_CR1_DEDT USART_CR1_DEDT_Msk /*!< DEDT[4:0] bits (Driver Enable Deassertion Time) */
  9252. #define USART_CR1_DEDT_0 (0x01UL << USART_CR1_DEDT_Pos) /*!< 0x00010000 */
  9253. #define USART_CR1_DEDT_1 (0x02UL << USART_CR1_DEDT_Pos) /*!< 0x00020000 */
  9254. #define USART_CR1_DEDT_2 (0x04UL << USART_CR1_DEDT_Pos) /*!< 0x00040000 */
  9255. #define USART_CR1_DEDT_3 (0x08UL << USART_CR1_DEDT_Pos) /*!< 0x00080000 */
  9256. #define USART_CR1_DEDT_4 (0x10UL << USART_CR1_DEDT_Pos) /*!< 0x00100000 */
  9257. #define USART_CR1_DEAT_Pos (21U)
  9258. #define USART_CR1_DEAT_Msk (0x1FUL << USART_CR1_DEAT_Pos) /*!< 0x03E00000 */
  9259. #define USART_CR1_DEAT USART_CR1_DEAT_Msk /*!< DEAT[4:0] bits (Driver Enable Assertion Time) */
  9260. #define USART_CR1_DEAT_0 (0x01UL << USART_CR1_DEAT_Pos) /*!< 0x00200000 */
  9261. #define USART_CR1_DEAT_1 (0x02UL << USART_CR1_DEAT_Pos) /*!< 0x00400000 */
  9262. #define USART_CR1_DEAT_2 (0x04UL << USART_CR1_DEAT_Pos) /*!< 0x00800000 */
  9263. #define USART_CR1_DEAT_3 (0x08UL << USART_CR1_DEAT_Pos) /*!< 0x01000000 */
  9264. #define USART_CR1_DEAT_4 (0x10UL << USART_CR1_DEAT_Pos) /*!< 0x02000000 */
  9265. #define USART_CR1_RTOIE_Pos (26U)
  9266. #define USART_CR1_RTOIE_Msk (0x1UL << USART_CR1_RTOIE_Pos) /*!< 0x04000000 */
  9267. #define USART_CR1_RTOIE USART_CR1_RTOIE_Msk /*!< Receive Time Out interrupt enable */
  9268. #define USART_CR1_EOBIE_Pos (27U)
  9269. #define USART_CR1_EOBIE_Msk (0x1UL << USART_CR1_EOBIE_Pos) /*!< 0x08000000 */
  9270. #define USART_CR1_EOBIE USART_CR1_EOBIE_Msk /*!< End of Block interrupt enable */
  9271. #define USART_CR1_M1_Pos (28U)
  9272. #define USART_CR1_M1_Msk (0x1UL << USART_CR1_M1_Pos) /*!< 0x10000000 */
  9273. #define USART_CR1_M1 USART_CR1_M1_Msk /*!< Word length - Bit 1 */
  9274. #define USART_CR1_FIFOEN_Pos (29U)
  9275. #define USART_CR1_FIFOEN_Msk (0x1UL << USART_CR1_FIFOEN_Pos) /*!< 0x20000000 */
  9276. #define USART_CR1_FIFOEN USART_CR1_FIFOEN_Msk /*!< FIFO mode enable */
  9277. #define USART_CR1_TXFEIE_Pos (30U)
  9278. #define USART_CR1_TXFEIE_Msk (0x1UL << USART_CR1_TXFEIE_Pos) /*!< 0x40000000 */
  9279. #define USART_CR1_TXFEIE USART_CR1_TXFEIE_Msk /*!< TXFIFO empty interrupt enable */
  9280. #define USART_CR1_RXFFIE_Pos (31U)
  9281. #define USART_CR1_RXFFIE_Msk (0x1UL << USART_CR1_RXFFIE_Pos) /*!< 0x80000000 */
  9282. #define USART_CR1_RXFFIE USART_CR1_RXFFIE_Msk /*!< RXFIFO Full interrupt enable */
  9283. /****************** Bit definition for USART_CR2 register *******************/
  9284. #define USART_CR2_SLVEN_Pos (0U)
  9285. #define USART_CR2_SLVEN_Msk (0x1UL << USART_CR2_SLVEN_Pos) /*!< 0x00000001 */
  9286. #define USART_CR2_SLVEN USART_CR2_SLVEN_Msk /*!< Synchronous Slave mode enable */
  9287. #define USART_CR2_DIS_NSS_Pos (3U)
  9288. #define USART_CR2_DIS_NSS_Msk (0x1UL << USART_CR2_DIS_NSS_Pos) /*!< 0x00000008 */
  9289. #define USART_CR2_DIS_NSS USART_CR2_DIS_NSS_Msk /*!< NSS input pin disable for SPI slave selection */
  9290. #define USART_CR2_ADDM7_Pos (4U)
  9291. #define USART_CR2_ADDM7_Msk (0x1UL << USART_CR2_ADDM7_Pos) /*!< 0x00000010 */
  9292. #define USART_CR2_ADDM7 USART_CR2_ADDM7_Msk /*!< 7-bit or 4-bit Address Detection */
  9293. #define USART_CR2_LBDL_Pos (5U)
  9294. #define USART_CR2_LBDL_Msk (0x1UL << USART_CR2_LBDL_Pos) /*!< 0x00000020 */
  9295. #define USART_CR2_LBDL USART_CR2_LBDL_Msk /*!< LIN Break Detection Length */
  9296. #define USART_CR2_LBDIE_Pos (6U)
  9297. #define USART_CR2_LBDIE_Msk (0x1UL << USART_CR2_LBDIE_Pos) /*!< 0x00000040 */
  9298. #define USART_CR2_LBDIE USART_CR2_LBDIE_Msk /*!< LIN Break Detection Interrupt Enable */
  9299. #define USART_CR2_LBCL_Pos (8U)
  9300. #define USART_CR2_LBCL_Msk (0x1UL << USART_CR2_LBCL_Pos) /*!< 0x00000100 */
  9301. #define USART_CR2_LBCL USART_CR2_LBCL_Msk /*!< Last Bit Clock pulse */
  9302. #define USART_CR2_CPHA_Pos (9U)
  9303. #define USART_CR2_CPHA_Msk (0x1UL << USART_CR2_CPHA_Pos) /*!< 0x00000200 */
  9304. #define USART_CR2_CPHA USART_CR2_CPHA_Msk /*!< Clock Phase */
  9305. #define USART_CR2_CPOL_Pos (10U)
  9306. #define USART_CR2_CPOL_Msk (0x1UL << USART_CR2_CPOL_Pos) /*!< 0x00000400 */
  9307. #define USART_CR2_CPOL USART_CR2_CPOL_Msk /*!< Clock Polarity */
  9308. #define USART_CR2_CLKEN_Pos (11U)
  9309. #define USART_CR2_CLKEN_Msk (0x1UL << USART_CR2_CLKEN_Pos) /*!< 0x00000800 */
  9310. #define USART_CR2_CLKEN USART_CR2_CLKEN_Msk /*!< Clock Enable */
  9311. #define USART_CR2_STOP_Pos (12U)
  9312. #define USART_CR2_STOP_Msk (0x3UL << USART_CR2_STOP_Pos) /*!< 0x00003000 */
  9313. #define USART_CR2_STOP USART_CR2_STOP_Msk /*!< STOP[1:0] bits (STOP bits) */
  9314. #define USART_CR2_STOP_0 (0x1UL << USART_CR2_STOP_Pos) /*!< 0x00001000 */
  9315. #define USART_CR2_STOP_1 (0x2UL << USART_CR2_STOP_Pos) /*!< 0x00002000 */
  9316. #define USART_CR2_LINEN_Pos (14U)
  9317. #define USART_CR2_LINEN_Msk (0x1UL << USART_CR2_LINEN_Pos) /*!< 0x00004000 */
  9318. #define USART_CR2_LINEN USART_CR2_LINEN_Msk /*!< LIN mode enable */
  9319. #define USART_CR2_SWAP_Pos (15U)
  9320. #define USART_CR2_SWAP_Msk (0x1UL << USART_CR2_SWAP_Pos) /*!< 0x00008000 */
  9321. #define USART_CR2_SWAP USART_CR2_SWAP_Msk /*!< SWAP TX/RX pins */
  9322. #define USART_CR2_RXINV_Pos (16U)
  9323. #define USART_CR2_RXINV_Msk (0x1UL << USART_CR2_RXINV_Pos) /*!< 0x00010000 */
  9324. #define USART_CR2_RXINV USART_CR2_RXINV_Msk /*!< RX pin active level inversion */
  9325. #define USART_CR2_TXINV_Pos (17U)
  9326. #define USART_CR2_TXINV_Msk (0x1UL << USART_CR2_TXINV_Pos) /*!< 0x00020000 */
  9327. #define USART_CR2_TXINV USART_CR2_TXINV_Msk /*!< TX pin active level inversion */
  9328. #define USART_CR2_DATAINV_Pos (18U)
  9329. #define USART_CR2_DATAINV_Msk (0x1UL << USART_CR2_DATAINV_Pos) /*!< 0x00040000 */
  9330. #define USART_CR2_DATAINV USART_CR2_DATAINV_Msk /*!< Binary data inversion */
  9331. #define USART_CR2_MSBFIRST_Pos (19U)
  9332. #define USART_CR2_MSBFIRST_Msk (0x1UL << USART_CR2_MSBFIRST_Pos) /*!< 0x00080000 */
  9333. #define USART_CR2_MSBFIRST USART_CR2_MSBFIRST_Msk /*!< Most Significant Bit First */
  9334. #define USART_CR2_ABREN_Pos (20U)
  9335. #define USART_CR2_ABREN_Msk (0x1UL << USART_CR2_ABREN_Pos) /*!< 0x00100000 */
  9336. #define USART_CR2_ABREN USART_CR2_ABREN_Msk /*!< Auto Baud-Rate Enable*/
  9337. #define USART_CR2_ABRMODE_Pos (21U)
  9338. #define USART_CR2_ABRMODE_Msk (0x3UL << USART_CR2_ABRMODE_Pos) /*!< 0x00600000 */
  9339. #define USART_CR2_ABRMODE USART_CR2_ABRMODE_Msk /*!< ABRMOD[1:0] bits (Auto Baud-Rate Mode) */
  9340. #define USART_CR2_ABRMODE_0 (0x1UL << USART_CR2_ABRMODE_Pos) /*!< 0x00200000 */
  9341. #define USART_CR2_ABRMODE_1 (0x2UL << USART_CR2_ABRMODE_Pos) /*!< 0x00400000 */
  9342. #define USART_CR2_RTOEN_Pos (23U)
  9343. #define USART_CR2_RTOEN_Msk (0x1UL << USART_CR2_RTOEN_Pos) /*!< 0x00800000 */
  9344. #define USART_CR2_RTOEN USART_CR2_RTOEN_Msk /*!< Receiver Time-Out enable */
  9345. #define USART_CR2_ADD_Pos (24U)
  9346. #define USART_CR2_ADD_Msk (0xFFUL << USART_CR2_ADD_Pos) /*!< 0xFF000000 */
  9347. #define USART_CR2_ADD USART_CR2_ADD_Msk /*!< Address of the USART node */
  9348. /****************** Bit definition for USART_CR3 register *******************/
  9349. #define USART_CR3_EIE_Pos (0U)
  9350. #define USART_CR3_EIE_Msk (0x1UL << USART_CR3_EIE_Pos) /*!< 0x00000001 */
  9351. #define USART_CR3_EIE USART_CR3_EIE_Msk /*!< Error Interrupt Enable */
  9352. #define USART_CR3_IREN_Pos (1U)
  9353. #define USART_CR3_IREN_Msk (0x1UL << USART_CR3_IREN_Pos) /*!< 0x00000002 */
  9354. #define USART_CR3_IREN USART_CR3_IREN_Msk /*!< IrDA mode Enable */
  9355. #define USART_CR3_IRLP_Pos (2U)
  9356. #define USART_CR3_IRLP_Msk (0x1UL << USART_CR3_IRLP_Pos) /*!< 0x00000004 */
  9357. #define USART_CR3_IRLP USART_CR3_IRLP_Msk /*!< IrDA Low-Power */
  9358. #define USART_CR3_HDSEL_Pos (3U)
  9359. #define USART_CR3_HDSEL_Msk (0x1UL << USART_CR3_HDSEL_Pos) /*!< 0x00000008 */
  9360. #define USART_CR3_HDSEL USART_CR3_HDSEL_Msk /*!< Half-Duplex Selection */
  9361. #define USART_CR3_NACK_Pos (4U)
  9362. #define USART_CR3_NACK_Msk (0x1UL << USART_CR3_NACK_Pos) /*!< 0x00000010 */
  9363. #define USART_CR3_NACK USART_CR3_NACK_Msk /*!< SmartCard NACK enable */
  9364. #define USART_CR3_SCEN_Pos (5U)
  9365. #define USART_CR3_SCEN_Msk (0x1UL << USART_CR3_SCEN_Pos) /*!< 0x00000020 */
  9366. #define USART_CR3_SCEN USART_CR3_SCEN_Msk /*!< SmartCard mode enable */
  9367. #define USART_CR3_DMAR_Pos (6U)
  9368. #define USART_CR3_DMAR_Msk (0x1UL << USART_CR3_DMAR_Pos) /*!< 0x00000040 */
  9369. #define USART_CR3_DMAR USART_CR3_DMAR_Msk /*!< DMA Enable Receiver */
  9370. #define USART_CR3_DMAT_Pos (7U)
  9371. #define USART_CR3_DMAT_Msk (0x1UL << USART_CR3_DMAT_Pos) /*!< 0x00000080 */
  9372. #define USART_CR3_DMAT USART_CR3_DMAT_Msk /*!< DMA Enable Transmitter */
  9373. #define USART_CR3_RTSE_Pos (8U)
  9374. #define USART_CR3_RTSE_Msk (0x1UL << USART_CR3_RTSE_Pos) /*!< 0x00000100 */
  9375. #define USART_CR3_RTSE USART_CR3_RTSE_Msk /*!< RTS Enable */
  9376. #define USART_CR3_CTSE_Pos (9U)
  9377. #define USART_CR3_CTSE_Msk (0x1UL << USART_CR3_CTSE_Pos) /*!< 0x00000200 */
  9378. #define USART_CR3_CTSE USART_CR3_CTSE_Msk /*!< CTS Enable */
  9379. #define USART_CR3_CTSIE_Pos (10U)
  9380. #define USART_CR3_CTSIE_Msk (0x1UL << USART_CR3_CTSIE_Pos) /*!< 0x00000400 */
  9381. #define USART_CR3_CTSIE USART_CR3_CTSIE_Msk /*!< CTS Interrupt Enable */
  9382. #define USART_CR3_ONEBIT_Pos (11U)
  9383. #define USART_CR3_ONEBIT_Msk (0x1UL << USART_CR3_ONEBIT_Pos) /*!< 0x00000800 */
  9384. #define USART_CR3_ONEBIT USART_CR3_ONEBIT_Msk /*!< One sample bit method enable */
  9385. #define USART_CR3_OVRDIS_Pos (12U)
  9386. #define USART_CR3_OVRDIS_Msk (0x1UL << USART_CR3_OVRDIS_Pos) /*!< 0x00001000 */
  9387. #define USART_CR3_OVRDIS USART_CR3_OVRDIS_Msk /*!< Overrun Disable */
  9388. #define USART_CR3_DDRE_Pos (13U)
  9389. #define USART_CR3_DDRE_Msk (0x1UL << USART_CR3_DDRE_Pos) /*!< 0x00002000 */
  9390. #define USART_CR3_DDRE USART_CR3_DDRE_Msk /*!< DMA Disable on Reception Error */
  9391. #define USART_CR3_DEM_Pos (14U)
  9392. #define USART_CR3_DEM_Msk (0x1UL << USART_CR3_DEM_Pos) /*!< 0x00004000 */
  9393. #define USART_CR3_DEM USART_CR3_DEM_Msk /*!< Driver Enable Mode */
  9394. #define USART_CR3_DEP_Pos (15U)
  9395. #define USART_CR3_DEP_Msk (0x1UL << USART_CR3_DEP_Pos) /*!< 0x00008000 */
  9396. #define USART_CR3_DEP USART_CR3_DEP_Msk /*!< Driver Enable Polarity Selection */
  9397. #define USART_CR3_SCARCNT_Pos (17U)
  9398. #define USART_CR3_SCARCNT_Msk (0x7UL << USART_CR3_SCARCNT_Pos) /*!< 0x000E0000 */
  9399. #define USART_CR3_SCARCNT USART_CR3_SCARCNT_Msk /*!< SCARCNT[2:0] bits (SmartCard Auto-Retry Count) */
  9400. #define USART_CR3_SCARCNT_0 (0x1UL << USART_CR3_SCARCNT_Pos) /*!< 0x00020000 */
  9401. #define USART_CR3_SCARCNT_1 (0x2UL << USART_CR3_SCARCNT_Pos) /*!< 0x00040000 */
  9402. #define USART_CR3_SCARCNT_2 (0x4UL << USART_CR3_SCARCNT_Pos) /*!< 0x00080000 */
  9403. #define USART_CR3_WUS_Pos (20U)
  9404. #define USART_CR3_WUS_Msk (0x3UL << USART_CR3_WUS_Pos) /*!< 0x00300000 */
  9405. #define USART_CR3_WUS USART_CR3_WUS_Msk /*!< WUS[1:0] bits (Wake UP Interrupt Flag Selection) */
  9406. #define USART_CR3_WUS_0 (0x1UL << USART_CR3_WUS_Pos) /*!< 0x00100000 */
  9407. #define USART_CR3_WUS_1 (0x2UL << USART_CR3_WUS_Pos) /*!< 0x00200000 */
  9408. #define USART_CR3_WUFIE_Pos (22U)
  9409. #define USART_CR3_WUFIE_Msk (0x1UL << USART_CR3_WUFIE_Pos) /*!< 0x00400000 */
  9410. #define USART_CR3_WUFIE USART_CR3_WUFIE_Msk /*!< Wake Up Interrupt Enable */
  9411. #define USART_CR3_TXFTIE_Pos (23U)
  9412. #define USART_CR3_TXFTIE_Msk (0x1UL << USART_CR3_TXFTIE_Pos) /*!< 0x00800000 */
  9413. #define USART_CR3_TXFTIE USART_CR3_TXFTIE_Msk /*!< TXFIFO threshold interrupt enable */
  9414. #define USART_CR3_TCBGTIE_Pos (24U)
  9415. #define USART_CR3_TCBGTIE_Msk (0x1UL << USART_CR3_TCBGTIE_Pos) /*!< 0x01000000 */
  9416. #define USART_CR3_TCBGTIE USART_CR3_TCBGTIE_Msk /*!< Transmission Complete Before Guard Time Interrupt Enable */
  9417. #define USART_CR3_RXFTCFG_Pos (25U)
  9418. #define USART_CR3_RXFTCFG_Msk (0x7UL << USART_CR3_RXFTCFG_Pos) /*!< 0x0E000000 */
  9419. #define USART_CR3_RXFTCFG USART_CR3_RXFTCFG_Msk /*!< RXFIFO FIFO threshold configuration */
  9420. #define USART_CR3_RXFTCFG_0 (0x1UL << USART_CR3_RXFTCFG_Pos) /*!< 0x02000000 */
  9421. #define USART_CR3_RXFTCFG_1 (0x2UL << USART_CR3_RXFTCFG_Pos) /*!< 0x04000000 */
  9422. #define USART_CR3_RXFTCFG_2 (0x4UL << USART_CR3_RXFTCFG_Pos) /*!< 0x08000000 */
  9423. #define USART_CR3_RXFTIE_Pos (28U)
  9424. #define USART_CR3_RXFTIE_Msk (0x1UL << USART_CR3_RXFTIE_Pos) /*!< 0x10000000 */
  9425. #define USART_CR3_RXFTIE USART_CR3_RXFTIE_Msk /*!< RXFIFO threshold interrupt enable */
  9426. #define USART_CR3_TXFTCFG_Pos (29U)
  9427. #define USART_CR3_TXFTCFG_Msk (0x7UL << USART_CR3_TXFTCFG_Pos) /*!< 0xE0000000 */
  9428. #define USART_CR3_TXFTCFG USART_CR3_TXFTCFG_Msk /*!< TXFIFO threshold configuration */
  9429. #define USART_CR3_TXFTCFG_0 (0x1UL << USART_CR3_TXFTCFG_Pos) /*!< 0x20000000 */
  9430. #define USART_CR3_TXFTCFG_1 (0x2UL << USART_CR3_TXFTCFG_Pos) /*!< 0x40000000 */
  9431. #define USART_CR3_TXFTCFG_2 (0x4UL << USART_CR3_TXFTCFG_Pos) /*!< 0x80000000 */
  9432. /****************** Bit definition for USART_BRR register *******************/
  9433. #define USART_BRR_LPUART_Pos (0U)
  9434. #define USART_BRR_LPUART_Msk (0xFFFFFUL << USART_BRR_LPUART_Pos) /*!< 0x000FFFFF */
  9435. #define USART_BRR_LPUART USART_BRR_LPUART_Msk /*!< LPUART Baud rate register [19:0] */
  9436. #define USART_BRR_BRR ((uint16_t)0xFFFF) /*!< USART Baud rate register [15:0] */
  9437. /****************** Bit definition for USART_GTPR register ******************/
  9438. #define USART_GTPR_PSC_Pos (0U)
  9439. #define USART_GTPR_PSC_Msk (0xFFUL << USART_GTPR_PSC_Pos) /*!< 0x000000FF */
  9440. #define USART_GTPR_PSC USART_GTPR_PSC_Msk /*!< PSC[7:0] bits (Prescaler value) */
  9441. #define USART_GTPR_GT_Pos (8U)
  9442. #define USART_GTPR_GT_Msk (0xFFUL << USART_GTPR_GT_Pos) /*!< 0x0000FF00 */
  9443. #define USART_GTPR_GT USART_GTPR_GT_Msk /*!< GT[7:0] bits (Guard time value) */
  9444. /******************* Bit definition for USART_RTOR register *****************/
  9445. #define USART_RTOR_RTO_Pos (0U)
  9446. #define USART_RTOR_RTO_Msk (0xFFFFFFUL << USART_RTOR_RTO_Pos) /*!< 0x00FFFFFF */
  9447. #define USART_RTOR_RTO USART_RTOR_RTO_Msk /*!< Receiver Time Out Value */
  9448. #define USART_RTOR_BLEN_Pos (24U)
  9449. #define USART_RTOR_BLEN_Msk (0xFFUL << USART_RTOR_BLEN_Pos) /*!< 0xFF000000 */
  9450. #define USART_RTOR_BLEN USART_RTOR_BLEN_Msk /*!< Block Length */
  9451. /******************* Bit definition for USART_RQR register ******************/
  9452. #define USART_RQR_ABRRQ ((uint16_t)0x0001) /*!< Auto-Baud Rate Request */
  9453. #define USART_RQR_SBKRQ ((uint16_t)0x0002) /*!< Send Break Request */
  9454. #define USART_RQR_MMRQ ((uint16_t)0x0004) /*!< Mute Mode Request */
  9455. #define USART_RQR_RXFRQ ((uint16_t)0x0008) /*!< Receive Data flush Request */
  9456. #define USART_RQR_TXFRQ ((uint16_t)0x0010) /*!< Transmit data flush Request */
  9457. /******************* Bit definition for USART_ISR register ******************/
  9458. #define USART_ISR_PE_Pos (0U)
  9459. #define USART_ISR_PE_Msk (0x1UL << USART_ISR_PE_Pos) /*!< 0x00000001 */
  9460. #define USART_ISR_PE USART_ISR_PE_Msk /*!< Parity Error */
  9461. #define USART_ISR_FE_Pos (1U)
  9462. #define USART_ISR_FE_Msk (0x1UL << USART_ISR_FE_Pos) /*!< 0x00000002 */
  9463. #define USART_ISR_FE USART_ISR_FE_Msk /*!< Framing Error */
  9464. #define USART_ISR_NE_Pos (2U)
  9465. #define USART_ISR_NE_Msk (0x1UL << USART_ISR_NE_Pos) /*!< 0x00000004 */
  9466. #define USART_ISR_NE USART_ISR_NE_Msk /*!< Noise detected Flag */
  9467. #define USART_ISR_ORE_Pos (3U)
  9468. #define USART_ISR_ORE_Msk (0x1UL << USART_ISR_ORE_Pos) /*!< 0x00000008 */
  9469. #define USART_ISR_ORE USART_ISR_ORE_Msk /*!< OverRun Error */
  9470. #define USART_ISR_IDLE_Pos (4U)
  9471. #define USART_ISR_IDLE_Msk (0x1UL << USART_ISR_IDLE_Pos) /*!< 0x00000010 */
  9472. #define USART_ISR_IDLE USART_ISR_IDLE_Msk /*!< IDLE line detected */
  9473. #define USART_ISR_RXNE_RXFNE_Pos (5U)
  9474. #define USART_ISR_RXNE_RXFNE_Msk (0x1UL << USART_ISR_RXNE_RXFNE_Pos) /*!< 0x00000020 */
  9475. #define USART_ISR_RXNE_RXFNE USART_ISR_RXNE_RXFNE_Msk /*!< Read Data Register Not Empty/RXFIFO Not Empty */
  9476. #define USART_ISR_TC_Pos (6U)
  9477. #define USART_ISR_TC_Msk (0x1UL << USART_ISR_TC_Pos) /*!< 0x00000040 */
  9478. #define USART_ISR_TC USART_ISR_TC_Msk /*!< Transmission Complete */
  9479. #define USART_ISR_TXE_TXFNF_Pos (7U)
  9480. #define USART_ISR_TXE_TXFNF_Msk (0x1UL << USART_ISR_TXE_TXFNF_Pos) /*!< 0x00000080 */
  9481. #define USART_ISR_TXE_TXFNF USART_ISR_TXE_TXFNF_Msk /*!< Transmit Data Register Empty/TXFIFO Not Full */
  9482. #define USART_ISR_LBDF_Pos (8U)
  9483. #define USART_ISR_LBDF_Msk (0x1UL << USART_ISR_LBDF_Pos) /*!< 0x00000100 */
  9484. #define USART_ISR_LBDF USART_ISR_LBDF_Msk /*!< LIN Break Detection Flag */
  9485. #define USART_ISR_CTSIF_Pos (9U)
  9486. #define USART_ISR_CTSIF_Msk (0x1UL << USART_ISR_CTSIF_Pos) /*!< 0x00000200 */
  9487. #define USART_ISR_CTSIF USART_ISR_CTSIF_Msk /*!< CTS interrupt flag */
  9488. #define USART_ISR_CTS_Pos (10U)
  9489. #define USART_ISR_CTS_Msk (0x1UL << USART_ISR_CTS_Pos) /*!< 0x00000400 */
  9490. #define USART_ISR_CTS USART_ISR_CTS_Msk /*!< CTS flag */
  9491. #define USART_ISR_RTOF_Pos (11U)
  9492. #define USART_ISR_RTOF_Msk (0x1UL << USART_ISR_RTOF_Pos) /*!< 0x00000800 */
  9493. #define USART_ISR_RTOF USART_ISR_RTOF_Msk /*!< Receiver Time Out */
  9494. #define USART_ISR_EOBF_Pos (12U)
  9495. #define USART_ISR_EOBF_Msk (0x1UL << USART_ISR_EOBF_Pos) /*!< 0x00001000 */
  9496. #define USART_ISR_EOBF USART_ISR_EOBF_Msk /*!< End Of Block Flag */
  9497. #define USART_ISR_UDR_Pos (13U)
  9498. #define USART_ISR_UDR_Msk (0x1UL << USART_ISR_UDR_Pos) /*!< 0x00002000 */
  9499. #define USART_ISR_UDR USART_ISR_UDR_Msk /*!< SPI Slave Underrun Error Flag */
  9500. #define USART_ISR_ABRE_Pos (14U)
  9501. #define USART_ISR_ABRE_Msk (0x1UL << USART_ISR_ABRE_Pos) /*!< 0x00004000 */
  9502. #define USART_ISR_ABRE USART_ISR_ABRE_Msk /*!< Auto-Baud Rate Error */
  9503. #define USART_ISR_ABRF_Pos (15U)
  9504. #define USART_ISR_ABRF_Msk (0x1UL << USART_ISR_ABRF_Pos) /*!< 0x00008000 */
  9505. #define USART_ISR_ABRF USART_ISR_ABRF_Msk /*!< Auto-Baud Rate Flag */
  9506. #define USART_ISR_BUSY_Pos (16U)
  9507. #define USART_ISR_BUSY_Msk (0x1UL << USART_ISR_BUSY_Pos) /*!< 0x00010000 */
  9508. #define USART_ISR_BUSY USART_ISR_BUSY_Msk /*!< Busy Flag */
  9509. #define USART_ISR_CMF_Pos (17U)
  9510. #define USART_ISR_CMF_Msk (0x1UL << USART_ISR_CMF_Pos) /*!< 0x00020000 */
  9511. #define USART_ISR_CMF USART_ISR_CMF_Msk /*!< Character Match Flag */
  9512. #define USART_ISR_SBKF_Pos (18U)
  9513. #define USART_ISR_SBKF_Msk (0x1UL << USART_ISR_SBKF_Pos) /*!< 0x00040000 */
  9514. #define USART_ISR_SBKF USART_ISR_SBKF_Msk /*!< Send Break Flag */
  9515. #define USART_ISR_RWU_Pos (19U)
  9516. #define USART_ISR_RWU_Msk (0x1UL << USART_ISR_RWU_Pos) /*!< 0x00080000 */
  9517. #define USART_ISR_RWU USART_ISR_RWU_Msk /*!< Receive Wake Up from mute mode Flag */
  9518. #define USART_ISR_WUF_Pos (20U)
  9519. #define USART_ISR_WUF_Msk (0x1UL << USART_ISR_WUF_Pos) /*!< 0x00100000 */
  9520. #define USART_ISR_WUF USART_ISR_WUF_Msk /*!< Wake Up from stop mode Flag */
  9521. #define USART_ISR_TEACK_Pos (21U)
  9522. #define USART_ISR_TEACK_Msk (0x1UL << USART_ISR_TEACK_Pos) /*!< 0x00200000 */
  9523. #define USART_ISR_TEACK USART_ISR_TEACK_Msk /*!< Transmit Enable Acknowledge Flag */
  9524. #define USART_ISR_REACK_Pos (22U)
  9525. #define USART_ISR_REACK_Msk (0x1UL << USART_ISR_REACK_Pos) /*!< 0x00400000 */
  9526. #define USART_ISR_REACK USART_ISR_REACK_Msk /*!< Receive Enable Acknowledge Flag */
  9527. #define USART_ISR_TXFE_Pos (23U)
  9528. #define USART_ISR_TXFE_Msk (0x1UL << USART_ISR_TXFE_Pos) /*!< 0x00800000 */
  9529. #define USART_ISR_TXFE USART_ISR_TXFE_Msk /*!< TXFIFO Empty Flag */
  9530. #define USART_ISR_RXFF_Pos (24U)
  9531. #define USART_ISR_RXFF_Msk (0x1UL << USART_ISR_RXFF_Pos) /*!< 0x01000000 */
  9532. #define USART_ISR_RXFF USART_ISR_RXFF_Msk /*!< RXFIFO Full Flag */
  9533. #define USART_ISR_TCBGT_Pos (25U)
  9534. #define USART_ISR_TCBGT_Msk (0x1UL << USART_ISR_TCBGT_Pos) /*!< 0x02000000 */
  9535. #define USART_ISR_TCBGT USART_ISR_TCBGT_Msk /*!< Transmission Complete Before Guard Time Completion Flag */
  9536. #define USART_ISR_RXFT_Pos (26U)
  9537. #define USART_ISR_RXFT_Msk (0x1UL << USART_ISR_RXFT_Pos) /*!< 0x04000000 */
  9538. #define USART_ISR_RXFT USART_ISR_RXFT_Msk /*!< RXFIFO Threshold Flag */
  9539. #define USART_ISR_TXFT_Pos (27U)
  9540. #define USART_ISR_TXFT_Msk (0x1UL << USART_ISR_TXFT_Pos) /*!< 0x08000000 */
  9541. #define USART_ISR_TXFT USART_ISR_TXFT_Msk /*!< TXFIFO Threshold Flag */
  9542. /******************* Bit definition for USART_ICR register ******************/
  9543. #define USART_ICR_PECF_Pos (0U)
  9544. #define USART_ICR_PECF_Msk (0x1UL << USART_ICR_PECF_Pos) /*!< 0x00000001 */
  9545. #define USART_ICR_PECF USART_ICR_PECF_Msk /*!< Parity Error Clear Flag */
  9546. #define USART_ICR_FECF_Pos (1U)
  9547. #define USART_ICR_FECF_Msk (0x1UL << USART_ICR_FECF_Pos) /*!< 0x00000002 */
  9548. #define USART_ICR_FECF USART_ICR_FECF_Msk /*!< Framing Error Clear Flag */
  9549. #define USART_ICR_NECF_Pos (2U)
  9550. #define USART_ICR_NECF_Msk (0x1UL << USART_ICR_NECF_Pos) /*!< 0x00000004 */
  9551. #define USART_ICR_NECF USART_ICR_NECF_Msk /*!< Noise Error detected Clear Flag */
  9552. #define USART_ICR_ORECF_Pos (3U)
  9553. #define USART_ICR_ORECF_Msk (0x1UL << USART_ICR_ORECF_Pos) /*!< 0x00000008 */
  9554. #define USART_ICR_ORECF USART_ICR_ORECF_Msk /*!< OverRun Error Clear Flag */
  9555. #define USART_ICR_IDLECF_Pos (4U)
  9556. #define USART_ICR_IDLECF_Msk (0x1UL << USART_ICR_IDLECF_Pos) /*!< 0x00000010 */
  9557. #define USART_ICR_IDLECF USART_ICR_IDLECF_Msk /*!< IDLE line detected Clear Flag */
  9558. #define USART_ICR_TXFECF_Pos (5U)
  9559. #define USART_ICR_TXFECF_Msk (0x1UL << USART_ICR_TXFECF_Pos) /*!< 0x00000020 */
  9560. #define USART_ICR_TXFECF USART_ICR_TXFECF_Msk /*!< TXFIFO Empty Clear Flag */
  9561. #define USART_ICR_TCCF_Pos (6U)
  9562. #define USART_ICR_TCCF_Msk (0x1UL << USART_ICR_TCCF_Pos) /*!< 0x00000040 */
  9563. #define USART_ICR_TCCF USART_ICR_TCCF_Msk /*!< Transmission Complete Clear Flag */
  9564. #define USART_ICR_TCBGTCF_Pos (7U)
  9565. #define USART_ICR_TCBGTCF_Msk (0x1UL << USART_ICR_TCBGTCF_Pos) /*!< 0x00000080 */
  9566. #define USART_ICR_TCBGTCF USART_ICR_TCBGTCF_Msk /*!< Transmission Complete Before Guard Time Clear Flag */
  9567. #define USART_ICR_LBDCF_Pos (8U)
  9568. #define USART_ICR_LBDCF_Msk (0x1UL << USART_ICR_LBDCF_Pos) /*!< 0x00000100 */
  9569. #define USART_ICR_LBDCF USART_ICR_LBDCF_Msk /*!< LIN Break Detection Clear Flag */
  9570. #define USART_ICR_CTSCF_Pos (9U)
  9571. #define USART_ICR_CTSCF_Msk (0x1UL << USART_ICR_CTSCF_Pos) /*!< 0x00000200 */
  9572. #define USART_ICR_CTSCF USART_ICR_CTSCF_Msk /*!< CTS Interrupt Clear Flag */
  9573. #define USART_ICR_RTOCF_Pos (11U)
  9574. #define USART_ICR_RTOCF_Msk (0x1UL << USART_ICR_RTOCF_Pos) /*!< 0x00000800 */
  9575. #define USART_ICR_RTOCF USART_ICR_RTOCF_Msk /*!< Receiver Time Out Clear Flag */
  9576. #define USART_ICR_EOBCF_Pos (12U)
  9577. #define USART_ICR_EOBCF_Msk (0x1UL << USART_ICR_EOBCF_Pos) /*!< 0x00001000 */
  9578. #define USART_ICR_EOBCF USART_ICR_EOBCF_Msk /*!< End Of Block Clear Flag */
  9579. #define USART_ICR_UDRCF_Pos (13U)
  9580. #define USART_ICR_UDRCF_Msk (0x1UL << USART_ICR_UDRCF_Pos) /*!< 0x00002000 */
  9581. #define USART_ICR_UDRCF USART_ICR_UDRCF_Msk /*!< SPI Slave Underrun Clear Flag */
  9582. #define USART_ICR_CMCF_Pos (17U)
  9583. #define USART_ICR_CMCF_Msk (0x1UL << USART_ICR_CMCF_Pos) /*!< 0x00020000 */
  9584. #define USART_ICR_CMCF USART_ICR_CMCF_Msk /*!< Character Match Clear Flag */
  9585. #define USART_ICR_WUCF_Pos (20U)
  9586. #define USART_ICR_WUCF_Msk (0x1UL << USART_ICR_WUCF_Pos) /*!< 0x00100000 */
  9587. #define USART_ICR_WUCF USART_ICR_WUCF_Msk /*!< Wake Up from stop mode Clear Flag */
  9588. /******************* Bit definition for USART_RDR register ******************/
  9589. #define USART_RDR_RDR_Pos (0U)
  9590. #define USART_RDR_RDR_Msk (0x1FFUL << USART_RDR_RDR_Pos) /*!< 0x000001FF */
  9591. #define USART_RDR_RDR USART_RDR_RDR_Msk /*!< RDR[8:0] bits (Receive Data value) */
  9592. /******************* Bit definition for USART_TDR register ******************/
  9593. #define USART_TDR_TDR_Pos (0U)
  9594. #define USART_TDR_TDR_Msk (0x1FFUL << USART_TDR_TDR_Pos) /*!< 0x000001FF */
  9595. #define USART_TDR_TDR USART_TDR_TDR_Msk /*!< TDR[8:0] bits (Transmit Data value) */
  9596. /******************* Bit definition for USART_PRESC register ****************/
  9597. #define USART_PRESC_PRESCALER_Pos (0U)
  9598. #define USART_PRESC_PRESCALER_Msk (0xFUL << USART_PRESC_PRESCALER_Pos) /*!< 0x0000000F */
  9599. #define USART_PRESC_PRESCALER USART_PRESC_PRESCALER_Msk /*!< PRESCALER[3:0] bits (Clock prescaler) */
  9600. #define USART_PRESC_PRESCALER_0 (0x1UL << USART_PRESC_PRESCALER_Pos) /*!< 0x00000001 */
  9601. #define USART_PRESC_PRESCALER_1 (0x2UL << USART_PRESC_PRESCALER_Pos) /*!< 0x00000002 */
  9602. #define USART_PRESC_PRESCALER_2 (0x4UL << USART_PRESC_PRESCALER_Pos) /*!< 0x00000004 */
  9603. #define USART_PRESC_PRESCALER_3 (0x8UL << USART_PRESC_PRESCALER_Pos) /*!< 0x00000008 */
  9604. /******************************************************************************/
  9605. /* */
  9606. /* VREFBUF */
  9607. /* */
  9608. /******************************************************************************/
  9609. /******************* Bit definition for VREFBUF_CSR register ****************/
  9610. #define VREFBUF_CSR_ENVR_Pos (0U)
  9611. #define VREFBUF_CSR_ENVR_Msk (0x1UL << VREFBUF_CSR_ENVR_Pos) /*!< 0x00000001 */
  9612. #define VREFBUF_CSR_ENVR VREFBUF_CSR_ENVR_Msk /*!<Voltage reference buffer enable */
  9613. #define VREFBUF_CSR_HIZ_Pos (1U)
  9614. #define VREFBUF_CSR_HIZ_Msk (0x1UL << VREFBUF_CSR_HIZ_Pos) /*!< 0x00000002 */
  9615. #define VREFBUF_CSR_HIZ VREFBUF_CSR_HIZ_Msk /*!<High impedance mode */
  9616. #define VREFBUF_CSR_VRS_Pos (2U)
  9617. #define VREFBUF_CSR_VRS_Msk (0x1UL << VREFBUF_CSR_VRS_Pos) /*!< 0x00000004 */
  9618. #define VREFBUF_CSR_VRS VREFBUF_CSR_VRS_Msk /*!<Voltage reference scale */
  9619. #define VREFBUF_CSR_VRR_Pos (3U)
  9620. #define VREFBUF_CSR_VRR_Msk (0x1UL << VREFBUF_CSR_VRR_Pos) /*!< 0x00000008 */
  9621. #define VREFBUF_CSR_VRR VREFBUF_CSR_VRR_Msk /*!<Voltage reference buffer ready */
  9622. /******************* Bit definition for VREFBUF_CCR register ******************/
  9623. #define VREFBUF_CCR_TRIM_Pos (0U)
  9624. #define VREFBUF_CCR_TRIM_Msk (0x3FUL << VREFBUF_CCR_TRIM_Pos) /*!< 0x0000003F */
  9625. #define VREFBUF_CCR_TRIM VREFBUF_CCR_TRIM_Msk /*!<TRIM[5:0] bits (Trimming code) */
  9626. /******************************************************************************/
  9627. /* */
  9628. /* Window WATCHDOG */
  9629. /* */
  9630. /******************************************************************************/
  9631. /******************* Bit definition for WWDG_CR register ********************/
  9632. #define WWDG_CR_T_Pos (0U)
  9633. #define WWDG_CR_T_Msk (0x7FUL << WWDG_CR_T_Pos) /*!< 0x0000007F */
  9634. #define WWDG_CR_T WWDG_CR_T_Msk /*!<T[6:0] bits (7-Bit counter (MSB to LSB)) */
  9635. #define WWDG_CR_T_0 (0x01UL << WWDG_CR_T_Pos) /*!< 0x00000001 */
  9636. #define WWDG_CR_T_1 (0x02UL << WWDG_CR_T_Pos) /*!< 0x00000002 */
  9637. #define WWDG_CR_T_2 (0x04UL << WWDG_CR_T_Pos) /*!< 0x00000004 */
  9638. #define WWDG_CR_T_3 (0x08UL << WWDG_CR_T_Pos) /*!< 0x00000008 */
  9639. #define WWDG_CR_T_4 (0x10UL << WWDG_CR_T_Pos) /*!< 0x00000010 */
  9640. #define WWDG_CR_T_5 (0x20UL << WWDG_CR_T_Pos) /*!< 0x00000020 */
  9641. #define WWDG_CR_T_6 (0x40UL << WWDG_CR_T_Pos) /*!< 0x00000040 */
  9642. #define WWDG_CR_WDGA_Pos (7U)
  9643. #define WWDG_CR_WDGA_Msk (0x1UL << WWDG_CR_WDGA_Pos) /*!< 0x00000080 */
  9644. #define WWDG_CR_WDGA WWDG_CR_WDGA_Msk /*!<Activation bit */
  9645. /******************* Bit definition for WWDG_CFR register *******************/
  9646. #define WWDG_CFR_W_Pos (0U)
  9647. #define WWDG_CFR_W_Msk (0x7FUL << WWDG_CFR_W_Pos) /*!< 0x0000007F */
  9648. #define WWDG_CFR_W WWDG_CFR_W_Msk /*!<W[6:0] bits (7-bit window value) */
  9649. #define WWDG_CFR_W_0 (0x01UL << WWDG_CFR_W_Pos) /*!< 0x00000001 */
  9650. #define WWDG_CFR_W_1 (0x02UL << WWDG_CFR_W_Pos) /*!< 0x00000002 */
  9651. #define WWDG_CFR_W_2 (0x04UL << WWDG_CFR_W_Pos) /*!< 0x00000004 */
  9652. #define WWDG_CFR_W_3 (0x08UL << WWDG_CFR_W_Pos) /*!< 0x00000008 */
  9653. #define WWDG_CFR_W_4 (0x10UL << WWDG_CFR_W_Pos) /*!< 0x00000010 */
  9654. #define WWDG_CFR_W_5 (0x20UL << WWDG_CFR_W_Pos) /*!< 0x00000020 */
  9655. #define WWDG_CFR_W_6 (0x40UL << WWDG_CFR_W_Pos) /*!< 0x00000040 */
  9656. #define WWDG_CFR_WDGTB_Pos (11U)
  9657. #define WWDG_CFR_WDGTB_Msk (0x7UL << WWDG_CFR_WDGTB_Pos) /*!< 0x00003800 */
  9658. #define WWDG_CFR_WDGTB WWDG_CFR_WDGTB_Msk /*!<WDGTB[2:0] bits (Timer Base) */
  9659. #define WWDG_CFR_WDGTB_0 (0x1UL << WWDG_CFR_WDGTB_Pos) /*!< 0x00000800 */
  9660. #define WWDG_CFR_WDGTB_1 (0x2UL << WWDG_CFR_WDGTB_Pos) /*!< 0x00001000 */
  9661. #define WWDG_CFR_WDGTB_2 (0x4UL << WWDG_CFR_WDGTB_Pos) /*!< 0x00002000 */
  9662. #define WWDG_CFR_EWI_Pos (9U)
  9663. #define WWDG_CFR_EWI_Msk (0x1UL << WWDG_CFR_EWI_Pos) /*!< 0x00000200 */
  9664. #define WWDG_CFR_EWI WWDG_CFR_EWI_Msk /*!<Early Wakeup Interrupt */
  9665. /******************* Bit definition for WWDG_SR register ********************/
  9666. #define WWDG_SR_EWIF_Pos (0U)
  9667. #define WWDG_SR_EWIF_Msk (0x1UL << WWDG_SR_EWIF_Pos) /*!< 0x00000001 */
  9668. #define WWDG_SR_EWIF WWDG_SR_EWIF_Msk /*!<Early Wakeup Interrupt Flag */
  9669. /******************************************************************************/
  9670. /* */
  9671. /* Debug MCU */
  9672. /* */
  9673. /******************************************************************************/
  9674. /******************** Bit definition for DBG_IDCODE register *************/
  9675. #define DBG_IDCODE_DEV_ID_Pos (0U)
  9676. #define DBG_IDCODE_DEV_ID_Msk (0xFFFUL << DBG_IDCODE_DEV_ID_Pos) /*!< 0x00000FFF */
  9677. #define DBG_IDCODE_DEV_ID DBG_IDCODE_DEV_ID_Msk
  9678. #define DBG_IDCODE_REV_ID_Pos (16U)
  9679. #define DBG_IDCODE_REV_ID_Msk (0xFFFFUL << DBG_IDCODE_REV_ID_Pos) /*!< 0xFFFF0000 */
  9680. #define DBG_IDCODE_REV_ID DBG_IDCODE_REV_ID_Msk
  9681. /******************** Bit definition for DBG_CR register *****************/
  9682. #define DBG_CR_DBG_STOP_Pos (1U)
  9683. #define DBG_CR_DBG_STOP_Msk (0x1UL << DBG_CR_DBG_STOP_Pos) /*!< 0x00000002 */
  9684. #define DBG_CR_DBG_STOP DBG_CR_DBG_STOP_Msk
  9685. #define DBG_CR_DBG_STANDBY_Pos (2U)
  9686. #define DBG_CR_DBG_STANDBY_Msk (0x1UL << DBG_CR_DBG_STANDBY_Pos) /*!< 0x00000004 */
  9687. #define DBG_CR_DBG_STANDBY DBG_CR_DBG_STANDBY_Msk
  9688. /******************** Bit definition for DBG_APB_FZ1 register ***********/
  9689. #define DBG_APB_FZ1_DBG_TIM2_STOP_Pos (0U)
  9690. #define DBG_APB_FZ1_DBG_TIM2_STOP_Msk (0x1UL << DBG_APB_FZ1_DBG_TIM2_STOP_Pos) /*!< 0x00000001 */
  9691. #define DBG_APB_FZ1_DBG_TIM2_STOP DBG_APB_FZ1_DBG_TIM2_STOP_Msk
  9692. #define DBG_APB_FZ1_DBG_TIM3_STOP_Pos (1U)
  9693. #define DBG_APB_FZ1_DBG_TIM3_STOP_Msk (0x1UL << DBG_APB_FZ1_DBG_TIM3_STOP_Pos) /*!< 0x00000002 */
  9694. #define DBG_APB_FZ1_DBG_TIM3_STOP DBG_APB_FZ1_DBG_TIM3_STOP_Msk
  9695. #define DBG_APB_FZ1_DBG_TIM4_STOP_Pos (2U)
  9696. #define DBG_APB_FZ1_DBG_TIM4_STOP_Msk (0x1UL << DBG_APB_FZ1_DBG_TIM4_STOP_Pos) /*!< 0x00000004 */
  9697. #define DBG_APB_FZ1_DBG_TIM4_STOP DBG_APB_FZ1_DBG_TIM4_STOP_Msk
  9698. #define DBG_APB_FZ1_DBG_TIM6_STOP_Pos (4U)
  9699. #define DBG_APB_FZ1_DBG_TIM6_STOP_Msk (0x1UL << DBG_APB_FZ1_DBG_TIM6_STOP_Pos) /*!< 0x00000010 */
  9700. #define DBG_APB_FZ1_DBG_TIM6_STOP DBG_APB_FZ1_DBG_TIM6_STOP_Msk
  9701. #define DBG_APB_FZ1_DBG_TIM7_STOP_Pos (5U)
  9702. #define DBG_APB_FZ1_DBG_TIM7_STOP_Msk (0x1UL << DBG_APB_FZ1_DBG_TIM7_STOP_Pos) /*!< 0x00000020 */
  9703. #define DBG_APB_FZ1_DBG_TIM7_STOP DBG_APB_FZ1_DBG_TIM7_STOP_Msk
  9704. #define DBG_APB_FZ1_DBG_RTC_STOP_Pos (10U)
  9705. #define DBG_APB_FZ1_DBG_RTC_STOP_Msk (0x1UL << DBG_APB_FZ1_DBG_RTC_STOP_Pos) /*!< 0x00000400 */
  9706. #define DBG_APB_FZ1_DBG_RTC_STOP DBG_APB_FZ1_DBG_RTC_STOP_Msk
  9707. #define DBG_APB_FZ1_DBG_WWDG_STOP_Pos (11U)
  9708. #define DBG_APB_FZ1_DBG_WWDG_STOP_Msk (0x1UL << DBG_APB_FZ1_DBG_WWDG_STOP_Pos) /*!< 0x00000800 */
  9709. #define DBG_APB_FZ1_DBG_WWDG_STOP DBG_APB_FZ1_DBG_WWDG_STOP_Msk
  9710. #define DBG_APB_FZ1_DBG_IWDG_STOP_Pos (12U)
  9711. #define DBG_APB_FZ1_DBG_IWDG_STOP_Msk (0x1UL << DBG_APB_FZ1_DBG_IWDG_STOP_Pos) /*!< 0x00001000 */
  9712. #define DBG_APB_FZ1_DBG_IWDG_STOP DBG_APB_FZ1_DBG_IWDG_STOP_Msk
  9713. #define DBG_APB_FZ1_DBG_I2C1_SMBUS_TIMEOUT_STOP_Pos (21U)
  9714. #define DBG_APB_FZ1_DBG_I2C1_SMBUS_TIMEOUT_STOP_Msk (0x1UL << DBG_APB_FZ1_DBG_I2C1_SMBUS_TIMEOUT_STOP_Pos) /*!< 0x00200000 */
  9715. #define DBG_APB_FZ1_DBG_I2C1_SMBUS_TIMEOUT_STOP DBG_APB_FZ1_DBG_I2C1_SMBUS_TIMEOUT_STOP_Msk
  9716. #define DBG_APB_FZ1_DBG_I2C2_SMBUS_TIMEOUT_STOP_Pos (22U)
  9717. #define DBG_APB_FZ1_DBG_I2C2_SMBUS_TIMEOUT_STOP_Msk (0x1UL << DBG_APB_FZ1_DBG_I2C2_SMBUS_TIMEOUT_STOP_Pos) /*!< 0x00400000 */
  9718. #define DBG_APB_FZ1_DBG_I2C2_SMBUS_TIMEOUT_STOP DBG_APB_FZ1_DBG_I2C2_SMBUS_TIMEOUT_STOP_Msk
  9719. #define DBG_APB_FZ1_DBG_LPTIM2_STOP_Pos (30U)
  9720. #define DBG_APB_FZ1_DBG_LPTIM2_STOP_Msk (0x1UL << DBG_APB_FZ1_DBG_LPTIM2_STOP_Pos) /*!< 0x40000000 */
  9721. #define DBG_APB_FZ1_DBG_LPTIM2_STOP DBG_APB_FZ1_DBG_LPTIM2_STOP_Msk
  9722. #define DBG_APB_FZ1_DBG_LPTIM1_STOP_Pos (31U)
  9723. #define DBG_APB_FZ1_DBG_LPTIM1_STOP_Msk (0x1UL << DBG_APB_FZ1_DBG_LPTIM1_STOP_Pos) /*!< 0x80000000 */
  9724. #define DBG_APB_FZ1_DBG_LPTIM1_STOP DBG_APB_FZ1_DBG_LPTIM1_STOP_Msk
  9725. /******************** Bit definition for DBG_APB_FZ2 register ************/
  9726. #define DBG_APB_FZ2_DBG_TIM1_STOP_Pos (11U)
  9727. #define DBG_APB_FZ2_DBG_TIM1_STOP_Msk (0x1UL << DBG_APB_FZ2_DBG_TIM1_STOP_Pos) /*!< 0x00000800 */
  9728. #define DBG_APB_FZ2_DBG_TIM1_STOP DBG_APB_FZ2_DBG_TIM1_STOP_Msk
  9729. #define DBG_APB_FZ2_DBG_TIM14_STOP_Pos (15U)
  9730. #define DBG_APB_FZ2_DBG_TIM14_STOP_Msk (0x1UL << DBG_APB_FZ2_DBG_TIM14_STOP_Pos) /*!< 0x00008000 */
  9731. #define DBG_APB_FZ2_DBG_TIM14_STOP DBG_APB_FZ2_DBG_TIM14_STOP_Msk
  9732. #define DBG_APB_FZ2_DBG_TIM15_STOP_Pos (16U)
  9733. #define DBG_APB_FZ2_DBG_TIM15_STOP_Msk (0x1UL << DBG_APB_FZ2_DBG_TIM15_STOP_Pos) /*!< 0x00010000 */
  9734. #define DBG_APB_FZ2_DBG_TIM15_STOP DBG_APB_FZ2_DBG_TIM15_STOP_Msk
  9735. #define DBG_APB_FZ2_DBG_TIM16_STOP_Pos (17U)
  9736. #define DBG_APB_FZ2_DBG_TIM16_STOP_Msk (0x1UL << DBG_APB_FZ2_DBG_TIM16_STOP_Pos) /*!< 0x00020000 */
  9737. #define DBG_APB_FZ2_DBG_TIM16_STOP DBG_APB_FZ2_DBG_TIM16_STOP_Msk
  9738. #define DBG_APB_FZ2_DBG_TIM17_STOP_Pos (18U)
  9739. #define DBG_APB_FZ2_DBG_TIM17_STOP_Msk (0x1UL << DBG_APB_FZ2_DBG_TIM17_STOP_Pos) /*!< 0x00040000 */
  9740. #define DBG_APB_FZ2_DBG_TIM17_STOP DBG_APB_FZ2_DBG_TIM17_STOP_Msk
  9741. /******************************************************************************/
  9742. /* */
  9743. /* UCPD */
  9744. /* */
  9745. /******************************************************************************/
  9746. /******************** Bits definition for UCPD_CFG1 register *******************/
  9747. #define UCPD_CFG1_HBITCLKDIV_Pos (0U)
  9748. #define UCPD_CFG1_HBITCLKDIV_Msk (0x3FUL << UCPD_CFG1_HBITCLKDIV_Pos) /*!< 0x0000003F */
  9749. #define UCPD_CFG1_HBITCLKDIV UCPD_CFG1_HBITCLKDIV_Msk /*!< Number of cycles (minus 1) for a half bit clock */
  9750. #define UCPD_CFG1_HBITCLKDIV_0 (0x01UL << UCPD_CFG1_HBITCLKDIV_Pos) /*!< 0x00000001 */
  9751. #define UCPD_CFG1_HBITCLKDIV_1 (0x02UL << UCPD_CFG1_HBITCLKDIV_Pos) /*!< 0x00000002 */
  9752. #define UCPD_CFG1_HBITCLKDIV_2 (0x04UL << UCPD_CFG1_HBITCLKDIV_Pos) /*!< 0x00000004 */
  9753. #define UCPD_CFG1_HBITCLKDIV_3 (0x08UL << UCPD_CFG1_HBITCLKDIV_Pos) /*!< 0x00000008 */
  9754. #define UCPD_CFG1_HBITCLKDIV_4 (0x10UL << UCPD_CFG1_HBITCLKDIV_Pos) /*!< 0x00000010 */
  9755. #define UCPD_CFG1_HBITCLKDIV_5 (0x20UL << UCPD_CFG1_HBITCLKDIV_Pos) /*!< 0x00000020 */
  9756. #define UCPD_CFG1_IFRGAP_Pos (6U)
  9757. #define UCPD_CFG1_IFRGAP_Msk (0x1FUL << UCPD_CFG1_IFRGAP_Pos) /*!< 0x000007C0 */
  9758. #define UCPD_CFG1_IFRGAP UCPD_CFG1_IFRGAP_Msk /*!< Clock divider value to generates Interframe gap */
  9759. #define UCPD_CFG1_IFRGAP_0 (0x01UL << UCPD_CFG1_IFRGAP_Pos) /*!< 0x00000040 */
  9760. #define UCPD_CFG1_IFRGAP_1 (0x02UL << UCPD_CFG1_IFRGAP_Pos) /*!< 0x00000080 */
  9761. #define UCPD_CFG1_IFRGAP_2 (0x04UL << UCPD_CFG1_IFRGAP_Pos) /*!< 0x00000100 */
  9762. #define UCPD_CFG1_IFRGAP_3 (0x08UL << UCPD_CFG1_IFRGAP_Pos) /*!< 0x00000200 */
  9763. #define UCPD_CFG1_IFRGAP_4 (0x10UL << UCPD_CFG1_IFRGAP_Pos) /*!< 0x00000400 */
  9764. #define UCPD_CFG1_TRANSWIN_Pos (11U)
  9765. #define UCPD_CFG1_TRANSWIN_Msk (0x1FUL << UCPD_CFG1_TRANSWIN_Pos) /*!< 0x0000F800 */
  9766. #define UCPD_CFG1_TRANSWIN UCPD_CFG1_TRANSWIN_Msk /*!< Number of cycles (minus 1) of the half bit clock */
  9767. #define UCPD_CFG1_TRANSWIN_0 (0x01UL << UCPD_CFG1_TRANSWIN_Pos) /*!< 0x00000800 */
  9768. #define UCPD_CFG1_TRANSWIN_1 (0x02UL << UCPD_CFG1_TRANSWIN_Pos) /*!< 0x00001000 */
  9769. #define UCPD_CFG1_TRANSWIN_2 (0x04UL << UCPD_CFG1_TRANSWIN_Pos) /*!< 0x00002000 */
  9770. #define UCPD_CFG1_TRANSWIN_3 (0x08UL << UCPD_CFG1_TRANSWIN_Pos) /*!< 0x00004000 */
  9771. #define UCPD_CFG1_TRANSWIN_4 (0x10UL << UCPD_CFG1_TRANSWIN_Pos) /*!< 0x00008000 */
  9772. #define UCPD_CFG1_PSC_UCPDCLK_Pos (17U)
  9773. #define UCPD_CFG1_PSC_UCPDCLK_Msk (0x7UL << UCPD_CFG1_PSC_UCPDCLK_Pos) /*!< 0x000E0000 */
  9774. #define UCPD_CFG1_PSC_UCPDCLK UCPD_CFG1_PSC_UCPDCLK_Msk /*!< Prescaler for UCPDCLK */
  9775. #define UCPD_CFG1_PSC_UCPDCLK_0 (0x1UL << UCPD_CFG1_PSC_UCPDCLK_Pos) /*!< 0x00020000 */
  9776. #define UCPD_CFG1_PSC_UCPDCLK_1 (0x2UL << UCPD_CFG1_PSC_UCPDCLK_Pos) /*!< 0x00040000 */
  9777. #define UCPD_CFG1_PSC_UCPDCLK_2 (0x4UL << UCPD_CFG1_PSC_UCPDCLK_Pos) /*!< 0x00080000 */
  9778. #define UCPD_CFG1_RXORDSETEN_Pos (20U)
  9779. #define UCPD_CFG1_RXORDSETEN_Msk (0x1FFUL << UCPD_CFG1_RXORDSETEN_Pos) /*!< 0x1FF00000 */
  9780. #define UCPD_CFG1_RXORDSETEN UCPD_CFG1_RXORDSETEN_Msk /*!< Receiver ordered set detection enable */
  9781. #define UCPD_CFG1_RXORDSETEN_0 (0x001UL << UCPD_CFG1_RXORDSETEN_Pos) /*!< 0x00100000 */
  9782. #define UCPD_CFG1_RXORDSETEN_1 (0x002UL << UCPD_CFG1_RXORDSETEN_Pos) /*!< 0x00200000 */
  9783. #define UCPD_CFG1_RXORDSETEN_2 (0x004UL << UCPD_CFG1_RXORDSETEN_Pos) /*!< 0x00400000 */
  9784. #define UCPD_CFG1_RXORDSETEN_3 (0x008UL << UCPD_CFG1_RXORDSETEN_Pos) /*!< 0x00800000 */
  9785. #define UCPD_CFG1_RXORDSETEN_4 (0x010UL << UCPD_CFG1_RXORDSETEN_Pos) /*!< 0x01000000 */
  9786. #define UCPD_CFG1_RXORDSETEN_5 (0x020UL << UCPD_CFG1_RXORDSETEN_Pos) /*!< 0x02000000 */
  9787. #define UCPD_CFG1_RXORDSETEN_6 (0x040UL << UCPD_CFG1_RXORDSETEN_Pos) /*!< 0x04000000 */
  9788. #define UCPD_CFG1_RXORDSETEN_7 (0x080UL << UCPD_CFG1_RXORDSETEN_Pos) /*!< 0x08000000 */
  9789. #define UCPD_CFG1_RXORDSETEN_8 (0x100UL << UCPD_CFG1_RXORDSETEN_Pos) /*!< 0x10000000 */
  9790. #define UCPD_CFG1_TXDMAEN_Pos (29U)
  9791. #define UCPD_CFG1_TXDMAEN_Msk (0x1UL << UCPD_CFG1_TXDMAEN_Pos) /*!< 0x20000000 */
  9792. #define UCPD_CFG1_TXDMAEN UCPD_CFG1_TXDMAEN_Msk /*!< DMA transmission requests enable */
  9793. #define UCPD_CFG1_RXDMAEN_Pos (30U)
  9794. #define UCPD_CFG1_RXDMAEN_Msk (0x1UL << UCPD_CFG1_RXDMAEN_Pos) /*!< 0x40000000 */
  9795. #define UCPD_CFG1_RXDMAEN UCPD_CFG1_RXDMAEN_Msk /*!< DMA reception requests enable */
  9796. #define UCPD_CFG1_UCPDEN_Pos (31U)
  9797. #define UCPD_CFG1_UCPDEN_Msk (0x1UL << UCPD_CFG1_UCPDEN_Pos) /*!< 0x80000000 */
  9798. #define UCPD_CFG1_UCPDEN UCPD_CFG1_UCPDEN_Msk /*!< USB Power Delivery Block Enable */
  9799. /******************** Bits definition for UCPD_CFG2 register *******************/
  9800. #define UCPD_CFG2_RXFILTDIS_Pos (0U)
  9801. #define UCPD_CFG2_RXFILTDIS_Msk (0x1UL << UCPD_CFG2_RXFILTDIS_Pos) /*!< 0x00000001 */
  9802. #define UCPD_CFG2_RXFILTDIS UCPD_CFG2_RXFILTDIS_Msk /*!< Enables an Rx pre-filter for the BMC decoder */
  9803. #define UCPD_CFG2_RXFILT2N3_Pos (1U)
  9804. #define UCPD_CFG2_RXFILT2N3_Msk (0x1UL << UCPD_CFG2_RXFILT2N3_Pos) /*!< 0x00000002 */
  9805. #define UCPD_CFG2_RXFILT2N3 UCPD_CFG2_RXFILT2N3_Msk /*!< Controls the sampling method for an Rx pre-filter for the BMC decode */
  9806. #define UCPD_CFG2_FORCECLK_Pos (2U)
  9807. #define UCPD_CFG2_FORCECLK_Msk (0x1UL << UCPD_CFG2_FORCECLK_Pos) /*!< 0x00000004 */
  9808. #define UCPD_CFG2_FORCECLK UCPD_CFG2_FORCECLK_Msk /*!< Controls forcing of the clock request UCPDCLK_REQ */
  9809. #define UCPD_CFG2_WUPEN_Pos (3U)
  9810. #define UCPD_CFG2_WUPEN_Msk (0x1UL << UCPD_CFG2_WUPEN_Pos) /*!< 0x00000008 */
  9811. #define UCPD_CFG2_WUPEN UCPD_CFG2_WUPEN_Msk /*!< Wakeup from STOP enable */
  9812. /******************** Bits definition for UCPD_CR register ********************/
  9813. #define UCPD_CR_TXMODE_Pos (0U)
  9814. #define UCPD_CR_TXMODE_Msk (0x3UL << UCPD_CR_TXMODE_Pos) /*!< 0x00000003 */
  9815. #define UCPD_CR_TXMODE UCPD_CR_TXMODE_Msk /*!< Type of Tx packet */
  9816. #define UCPD_CR_TXMODE_0 (0x1UL << UCPD_CR_TXMODE_Pos) /*!< 0x00000001 */
  9817. #define UCPD_CR_TXMODE_1 (0x2UL << UCPD_CR_TXMODE_Pos) /*!< 0x00000002 */
  9818. #define UCPD_CR_TXSEND_Pos (2U)
  9819. #define UCPD_CR_TXSEND_Msk (0x1UL << UCPD_CR_TXSEND_Pos) /*!< 0x00000004 */
  9820. #define UCPD_CR_TXSEND UCPD_CR_TXSEND_Msk /*!< Type of Tx packet */
  9821. #define UCPD_CR_TXHRST_Pos (3U)
  9822. #define UCPD_CR_TXHRST_Msk (0x1UL << UCPD_CR_TXHRST_Pos) /*!< 0x00000008 */
  9823. #define UCPD_CR_TXHRST UCPD_CR_TXHRST_Msk /*!< Command to send a Tx Hard Reset */
  9824. #define UCPD_CR_RXMODE_Pos (4U)
  9825. #define UCPD_CR_RXMODE_Msk (0x1UL << UCPD_CR_RXMODE_Pos) /*!< 0x00000010 */
  9826. #define UCPD_CR_RXMODE UCPD_CR_RXMODE_Msk /*!< Receiver mode */
  9827. #define UCPD_CR_PHYRXEN_Pos (5U)
  9828. #define UCPD_CR_PHYRXEN_Msk (0x1UL << UCPD_CR_PHYRXEN_Pos) /*!< 0x00000020 */
  9829. #define UCPD_CR_PHYRXEN UCPD_CR_PHYRXEN_Msk /*!< Controls enable of USB Power Delivery receiver */
  9830. #define UCPD_CR_PHYCCSEL_Pos (6U)
  9831. #define UCPD_CR_PHYCCSEL_Msk (0x1UL << UCPD_CR_PHYCCSEL_Pos) /*!< 0x00000040 */
  9832. #define UCPD_CR_PHYCCSEL UCPD_CR_PHYCCSEL_Msk /*!< */
  9833. #define UCPD_CR_ANASUBMODE_Pos (7U)
  9834. #define UCPD_CR_ANASUBMODE_Msk (0x3UL << UCPD_CR_ANASUBMODE_Pos) /*!< 0x00000180 */
  9835. #define UCPD_CR_ANASUBMODE UCPD_CR_ANASUBMODE_Msk /*!< Analog PHY sub-mode */
  9836. #define UCPD_CR_ANASUBMODE_0 (0x1UL << UCPD_CR_ANASUBMODE_Pos) /*!< 0x00000080 */
  9837. #define UCPD_CR_ANASUBMODE_1 (0x2UL << UCPD_CR_ANASUBMODE_Pos) /*!< 0x00000100 */
  9838. #define UCPD_CR_ANAMODE_Pos (9U)
  9839. #define UCPD_CR_ANAMODE_Msk (0x1UL << UCPD_CR_ANAMODE_Pos) /*!< 0x00000200 */
  9840. #define UCPD_CR_ANAMODE UCPD_CR_ANAMODE_Msk /*!< Analog PHY working mode */
  9841. #define UCPD_CR_CCENABLE_Pos (10U)
  9842. #define UCPD_CR_CCENABLE_Msk (0x3UL << UCPD_CR_CCENABLE_Pos) /*!< 0x00000C00 */
  9843. #define UCPD_CR_CCENABLE UCPD_CR_CCENABLE_Msk /*!< */
  9844. #define UCPD_CR_CCENABLE_0 (0x1UL << UCPD_CR_CCENABLE_Pos) /*!< 0x00000400 */
  9845. #define UCPD_CR_CCENABLE_1 (0x2UL << UCPD_CR_CCENABLE_Pos) /*!< 0x00000800 */
  9846. #define UCPD_CR_FRSRXEN_Pos (16U)
  9847. #define UCPD_CR_FRSRXEN_Msk (0x1UL << UCPD_CR_FRSRXEN_Pos) /*!< 0x00010000 */
  9848. #define UCPD_CR_FRSRXEN UCPD_CR_FRSRXEN_Msk /*!< Enable FRS request detection function */
  9849. #define UCPD_CR_FRSTX_Pos (17U)
  9850. #define UCPD_CR_FRSTX_Msk (0x1UL << UCPD_CR_FRSTX_Pos) /*!< 0x00020000 */
  9851. #define UCPD_CR_FRSTX UCPD_CR_FRSTX_Msk /*!< Signal Fast Role Swap request */
  9852. #define UCPD_CR_RDCH_Pos (18U)
  9853. #define UCPD_CR_RDCH_Msk (0x1UL << UCPD_CR_RDCH_Pos) /*!< 0x00040000 */
  9854. #define UCPD_CR_RDCH UCPD_CR_RDCH_Msk /*!< */
  9855. #define UCPD_CR_CC1TCDIS_Pos (20U)
  9856. #define UCPD_CR_CC1TCDIS_Msk (0x1UL << UCPD_CR_CC1TCDIS_Pos) /*!< 0x00100000 */
  9857. #define UCPD_CR_CC1TCDIS UCPD_CR_CC1TCDIS_Msk /*!< The bit allows the Type-C detector for CC0 to be disabled. */
  9858. #define UCPD_CR_CC2TCDIS_Pos (21U)
  9859. #define UCPD_CR_CC2TCDIS_Msk (0x1UL << UCPD_CR_CC2TCDIS_Pos) /*!< 0x00200000 */
  9860. #define UCPD_CR_CC2TCDIS UCPD_CR_CC2TCDIS_Msk /*!< The bit allows the Type-C detector for CC2 to be disabled. */
  9861. /******************** Bits definition for UCPD_IMR register *******************/
  9862. #define UCPD_IMR_TXISIE_Pos (0U)
  9863. #define UCPD_IMR_TXISIE_Msk (0x1UL << UCPD_IMR_TXISIE_Pos) /*!< 0x00000001 */
  9864. #define UCPD_IMR_TXISIE UCPD_IMR_TXISIE_Msk /*!< Enable TXIS interrupt */
  9865. #define UCPD_IMR_TXMSGDISCIE_Pos (1U)
  9866. #define UCPD_IMR_TXMSGDISCIE_Msk (0x1UL << UCPD_IMR_TXMSGDISCIE_Pos) /*!< 0x00000002 */
  9867. #define UCPD_IMR_TXMSGDISCIE UCPD_IMR_TXMSGDISCIE_Msk /*!< Enable TXMSGDISC interrupt */
  9868. #define UCPD_IMR_TXMSGSENTIE_Pos (2U)
  9869. #define UCPD_IMR_TXMSGSENTIE_Msk (0x1UL << UCPD_IMR_TXMSGSENTIE_Pos) /*!< 0x00000004 */
  9870. #define UCPD_IMR_TXMSGSENTIE UCPD_IMR_TXMSGSENTIE_Msk /*!< Enable TXMSGSENT interrupt */
  9871. #define UCPD_IMR_TXMSGABTIE_Pos (3U)
  9872. #define UCPD_IMR_TXMSGABTIE_Msk (0x1UL << UCPD_IMR_TXMSGABTIE_Pos) /*!< 0x00000008 */
  9873. #define UCPD_IMR_TXMSGABTIE UCPD_IMR_TXMSGABTIE_Msk /*!< Enable TXMSGABT interrupt */
  9874. #define UCPD_IMR_HRSTDISCIE_Pos (4U)
  9875. #define UCPD_IMR_HRSTDISCIE_Msk (0x1UL << UCPD_IMR_HRSTDISCIE_Pos) /*!< 0x00000010 */
  9876. #define UCPD_IMR_HRSTDISCIE UCPD_IMR_HRSTDISCIE_Msk /*!< Enable HRSTDISC interrupt */
  9877. #define UCPD_IMR_HRSTSENTIE_Pos (5U)
  9878. #define UCPD_IMR_HRSTSENTIE_Msk (0x1UL << UCPD_IMR_HRSTSENTIE_Pos) /*!< 0x00000020 */
  9879. #define UCPD_IMR_HRSTSENTIE UCPD_IMR_HRSTSENTIE_Msk /*!< Enable HRSTSENT interrupt */
  9880. #define UCPD_IMR_TXUNDIE_Pos (6U)
  9881. #define UCPD_IMR_TXUNDIE_Msk (0x1UL << UCPD_IMR_TXUNDIE_Pos) /*!< 0x00000040 */
  9882. #define UCPD_IMR_TXUNDIE UCPD_IMR_TXUNDIE_Msk /*!< Enable TXUND interrupt */
  9883. #define UCPD_IMR_RXNEIE_Pos (8U)
  9884. #define UCPD_IMR_RXNEIE_Msk (0x1UL << UCPD_IMR_RXNEIE_Pos) /*!< 0x00000100 */
  9885. #define UCPD_IMR_RXNEIE UCPD_IMR_RXNEIE_Msk /*!< Enable RXNE interrupt */
  9886. #define UCPD_IMR_RXORDDETIE_Pos (9U)
  9887. #define UCPD_IMR_RXORDDETIE_Msk (0x1UL << UCPD_IMR_RXORDDETIE_Pos) /*!< 0x00000200 */
  9888. #define UCPD_IMR_RXORDDETIE UCPD_IMR_RXORDDETIE_Msk /*!< Enable RXORDDET interrupt */
  9889. #define UCPD_IMR_RXHRSTDETIE_Pos (10U)
  9890. #define UCPD_IMR_RXHRSTDETIE_Msk (0x1UL << UCPD_IMR_RXHRSTDETIE_Pos) /*!< 0x00000400 */
  9891. #define UCPD_IMR_RXHRSTDETIE UCPD_IMR_RXHRSTDETIE_Msk /*!< Enable RXHRSTDET interrupt */
  9892. #define UCPD_IMR_RXOVRIE_Pos (11U)
  9893. #define UCPD_IMR_RXOVRIE_Msk (0x1UL << UCPD_IMR_RXOVRIE_Pos) /*!< 0x00000800 */
  9894. #define UCPD_IMR_RXOVRIE UCPD_IMR_RXOVRIE_Msk /*!< Enable RXOVR interrupt */
  9895. #define UCPD_IMR_RXMSGENDIE_Pos (12U)
  9896. #define UCPD_IMR_RXMSGENDIE_Msk (0x1UL << UCPD_IMR_RXMSGENDIE_Pos) /*!< 0x00001000 */
  9897. #define UCPD_IMR_RXMSGENDIE UCPD_IMR_RXMSGENDIE_Msk /*!< Enable RXMSGEND interrupt */
  9898. #define UCPD_IMR_TYPECEVT1IE_Pos (14U)
  9899. #define UCPD_IMR_TYPECEVT1IE_Msk (0x1UL << UCPD_IMR_TYPECEVT1IE_Pos) /*!< 0x00004000 */
  9900. #define UCPD_IMR_TYPECEVT1IE UCPD_IMR_TYPECEVT1IE_Msk /*!< Enable TYPECEVT1IE interrupt */
  9901. #define UCPD_IMR_TYPECEVT2IE_Pos (15U)
  9902. #define UCPD_IMR_TYPECEVT2IE_Msk (0x1UL << UCPD_IMR_TYPECEVT2IE_Pos) /*!< 0x00008000 */
  9903. #define UCPD_IMR_TYPECEVT2IE UCPD_IMR_TYPECEVT2IE_Msk /*!< Enable TYPECEVT2IE interrupt */
  9904. #define UCPD_IMR_FRSEVTIE_Pos (20U)
  9905. #define UCPD_IMR_FRSEVTIE_Msk (0x1UL << UCPD_IMR_FRSEVTIE_Pos) /*!< 0x00100000 */
  9906. #define UCPD_IMR_FRSEVTIE UCPD_IMR_FRSEVTIE_Msk /*!< Fast Role Swap interrupt */
  9907. /******************** Bits definition for UCPD_SR register ********************/
  9908. #define UCPD_SR_TXIS_Pos (0U)
  9909. #define UCPD_SR_TXIS_Msk (0x1UL << UCPD_SR_TXIS_Pos) /*!< 0x00000001 */
  9910. #define UCPD_SR_TXIS UCPD_SR_TXIS_Msk /*!< Transmit interrupt status */
  9911. #define UCPD_SR_TXMSGDISC_Pos (1U)
  9912. #define UCPD_SR_TXMSGDISC_Msk (0x1UL << UCPD_SR_TXMSGDISC_Pos) /*!< 0x00000002 */
  9913. #define UCPD_SR_TXMSGDISC UCPD_SR_TXMSGDISC_Msk /*!< Transmit message discarded interrupt */
  9914. #define UCPD_SR_TXMSGSENT_Pos (2U)
  9915. #define UCPD_SR_TXMSGSENT_Msk (0x1UL << UCPD_SR_TXMSGSENT_Pos) /*!< 0x00000004 */
  9916. #define UCPD_SR_TXMSGSENT UCPD_SR_TXMSGSENT_Msk /*!< Transmit message sent interrupt */
  9917. #define UCPD_SR_TXMSGABT_Pos (3U)
  9918. #define UCPD_SR_TXMSGABT_Msk (0x1UL << UCPD_SR_TXMSGABT_Pos) /*!< 0x00000008 */
  9919. #define UCPD_SR_TXMSGABT UCPD_SR_TXMSGABT_Msk /*!< Transmit message abort interrupt */
  9920. #define UCPD_SR_HRSTDISC_Pos (4U)
  9921. #define UCPD_SR_HRSTDISC_Msk (0x1UL << UCPD_SR_HRSTDISC_Pos) /*!< 0x00000010 */
  9922. #define UCPD_SR_HRSTDISC UCPD_SR_HRSTDISC_Msk /*!< HRST discarded interrupt */
  9923. #define UCPD_SR_HRSTSENT_Pos (5U)
  9924. #define UCPD_SR_HRSTSENT_Msk (0x1UL << UCPD_SR_HRSTSENT_Pos) /*!< 0x00000020 */
  9925. #define UCPD_SR_HRSTSENT UCPD_SR_HRSTSENT_Msk /*!< HRST sent interrupt */
  9926. #define UCPD_SR_TXUND_Pos (6U)
  9927. #define UCPD_SR_TXUND_Msk (0x1UL << UCPD_SR_TXUND_Pos) /*!< 0x00000040 */
  9928. #define UCPD_SR_TXUND UCPD_SR_TXUND_Msk /*!< Tx data underrun condition interrupt */
  9929. #define UCPD_SR_RXNE_Pos (8U)
  9930. #define UCPD_SR_RXNE_Msk (0x1UL << UCPD_SR_RXNE_Pos) /*!< 0x00000100 */
  9931. #define UCPD_SR_RXNE UCPD_SR_RXNE_Msk /*!< Receive data register not empty interrupt */
  9932. #define UCPD_SR_RXORDDET_Pos (9U)
  9933. #define UCPD_SR_RXORDDET_Msk (0x1UL << UCPD_SR_RXORDDET_Pos) /*!< 0x00000200 */
  9934. #define UCPD_SR_RXORDDET UCPD_SR_RXORDDET_Msk /*!< Rx ordered set (4 K-codes) detected interrupt */
  9935. #define UCPD_SR_RXHRSTDET_Pos (10U)
  9936. #define UCPD_SR_RXHRSTDET_Msk (0x1UL << UCPD_SR_RXHRSTDET_Pos) /*!< 0x00000400 */
  9937. #define UCPD_SR_RXHRSTDET UCPD_SR_RXHRSTDET_Msk /*!< Rx Hard Reset detect interrupt */
  9938. #define UCPD_SR_RXOVR_Pos (11U)
  9939. #define UCPD_SR_RXOVR_Msk (0x1UL << UCPD_SR_RXOVR_Pos) /*!< 0x00000800 */
  9940. #define UCPD_SR_RXOVR UCPD_SR_RXOVR_Msk /*!< Rx data overflow interrupt */
  9941. #define UCPD_SR_RXMSGEND_Pos (12U)
  9942. #define UCPD_SR_RXMSGEND_Msk (0x1UL << UCPD_SR_RXMSGEND_Pos) /*!< 0x00001000 */
  9943. #define UCPD_SR_RXMSGEND UCPD_SR_RXMSGEND_Msk /*!< Rx message received */
  9944. #define UCPD_SR_RXERR_Pos (13U)
  9945. #define UCPD_SR_RXERR_Msk (0x1UL << UCPD_SR_RXERR_Pos) /*!< 0x00002000 */
  9946. #define UCPD_SR_RXERR UCPD_SR_RXERR_Msk /*!< RX Error */
  9947. #define UCPD_SR_TYPECEVT1_Pos (14U)
  9948. #define UCPD_SR_TYPECEVT1_Msk (0x1UL << UCPD_SR_TYPECEVT1_Pos) /*!< 0x00004000 */
  9949. #define UCPD_SR_TYPECEVT1 UCPD_SR_TYPECEVT1_Msk /*!< Type C voltage level event on CC1 */
  9950. #define UCPD_SR_TYPECEVT2_Pos (15U)
  9951. #define UCPD_SR_TYPECEVT2_Msk (0x1UL << UCPD_SR_TYPECEVT2_Pos) /*!< 0x00008000 */
  9952. #define UCPD_SR_TYPECEVT2 UCPD_SR_TYPECEVT2_Msk /*!< Type C voltage level event on CC2 */
  9953. #define UCPD_SR_TYPEC_VSTATE_CC1_Pos (16U)
  9954. #define UCPD_SR_TYPEC_VSTATE_CC1_Msk (0x3UL << UCPD_SR_TYPEC_VSTATE_CC1_Pos) /*!< 0x00030000 */
  9955. #define UCPD_SR_TYPEC_VSTATE_CC1 UCPD_SR_TYPEC_VSTATE_CC1_Msk /*!< Status of DC level on CC1 pin */
  9956. #define UCPD_SR_TYPEC_VSTATE_CC1_0 (0x1UL << UCPD_SR_TYPEC_VSTATE_CC1_Pos) /*!< 0x00010000 */
  9957. #define UCPD_SR_TYPEC_VSTATE_CC1_1 (0x2UL << UCPD_SR_TYPEC_VSTATE_CC1_Pos) /*!< 0x00020000 */
  9958. #define UCPD_SR_TYPEC_VSTATE_CC2_Pos (18U)
  9959. #define UCPD_SR_TYPEC_VSTATE_CC2_Msk (0x3UL << UCPD_SR_TYPEC_VSTATE_CC2_Pos) /*!< 0x000C0000 */
  9960. #define UCPD_SR_TYPEC_VSTATE_CC2 UCPD_SR_TYPEC_VSTATE_CC2_Msk /*!<Status of DC level on CC2 pin */
  9961. #define UCPD_SR_TYPEC_VSTATE_CC2_0 (0x1UL << UCPD_SR_TYPEC_VSTATE_CC2_Pos) /*!< 0x00040000 */
  9962. #define UCPD_SR_TYPEC_VSTATE_CC2_1 (0x2UL << UCPD_SR_TYPEC_VSTATE_CC2_Pos) /*!< 0x00080000 */
  9963. #define UCPD_SR_FRSEVT_Pos (20U)
  9964. #define UCPD_SR_FRSEVT_Msk (0x1UL << UCPD_SR_FRSEVT_Pos) /*!< 0x00100000 */
  9965. #define UCPD_SR_FRSEVT UCPD_SR_FRSEVT_Msk /*!< Fast Role Swap detection event */
  9966. /******************** Bits definition for UCPD_ICR register *******************/
  9967. #define UCPD_ICR_TXMSGDISCCF_Pos (1U)
  9968. #define UCPD_ICR_TXMSGDISCCF_Msk (0x1UL << UCPD_ICR_TXMSGDISCCF_Pos) /*!< 0x00000002 */
  9969. #define UCPD_ICR_TXMSGDISCCF UCPD_ICR_TXMSGDISCCF_Msk /*!< Tx message discarded flag (TXMSGDISC) clear */
  9970. #define UCPD_ICR_TXMSGSENTCF_Pos (2U)
  9971. #define UCPD_ICR_TXMSGSENTCF_Msk (0x1UL << UCPD_ICR_TXMSGSENTCF_Pos) /*!< 0x00000004 */
  9972. #define UCPD_ICR_TXMSGSENTCF UCPD_ICR_TXMSGSENTCF_Msk /*!< Tx message sent flag (TXMSGSENT) clear */
  9973. #define UCPD_ICR_TXMSGABTCF_Pos (3U)
  9974. #define UCPD_ICR_TXMSGABTCF_Msk (0x1UL << UCPD_ICR_TXMSGABTCF_Pos) /*!< 0x00000008 */
  9975. #define UCPD_ICR_TXMSGABTCF UCPD_ICR_TXMSGABTCF_Msk /*!< Tx message abort flag (TXMSGABT) clear */
  9976. #define UCPD_ICR_HRSTDISCCF_Pos (4U)
  9977. #define UCPD_ICR_HRSTDISCCF_Msk (0x1UL << UCPD_ICR_HRSTDISCCF_Pos) /*!< 0x00000010 */
  9978. #define UCPD_ICR_HRSTDISCCF UCPD_ICR_HRSTDISCCF_Msk /*!< Hard reset discarded flag (HRSTDISC) clear */
  9979. #define UCPD_ICR_HRSTSENTCF_Pos (5U)
  9980. #define UCPD_ICR_HRSTSENTCF_Msk (0x1UL << UCPD_ICR_HRSTSENTCF_Pos) /*!< 0x00000020 */
  9981. #define UCPD_ICR_HRSTSENTCF UCPD_ICR_HRSTSENTCF_Msk /*!< Hard reset sent flag (HRSTSENT) clear */
  9982. #define UCPD_ICR_TXUNDCF_Pos (6U)
  9983. #define UCPD_ICR_TXUNDCF_Msk (0x1UL << UCPD_ICR_TXUNDCF_Pos) /*!< 0x00000040 */
  9984. #define UCPD_ICR_TXUNDCF UCPD_ICR_TXUNDCF_Msk /*!< Tx underflow flag (TXUND) clear */
  9985. #define UCPD_ICR_RXORDDETCF_Pos (9U)
  9986. #define UCPD_ICR_RXORDDETCF_Msk (0x1UL << UCPD_ICR_RXORDDETCF_Pos) /*!< 0x00000200 */
  9987. #define UCPD_ICR_RXORDDETCF UCPD_ICR_RXORDDETCF_Msk /*!< Rx ordered set detect flag (RXORDDET) clear */
  9988. #define UCPD_ICR_RXHRSTDETCF_Pos (10U)
  9989. #define UCPD_ICR_RXHRSTDETCF_Msk (0x1UL << UCPD_ICR_RXHRSTDETCF_Pos) /*!< 0x00000400 */
  9990. #define UCPD_ICR_RXHRSTDETCF UCPD_ICR_RXHRSTDETCF_Msk /*!< Rx Hard Reset detected flag (RXHRSTDET) clear */
  9991. #define UCPD_ICR_RXOVRCF_Pos (11U)
  9992. #define UCPD_ICR_RXOVRCF_Msk (0x1UL << UCPD_ICR_RXOVRCF_Pos) /*!< 0x00000800 */
  9993. #define UCPD_ICR_RXOVRCF UCPD_ICR_RXOVRCF_Msk /*!< Rx overflow flag (RXOVR) clear */
  9994. #define UCPD_ICR_RXMSGENDCF_Pos (12U)
  9995. #define UCPD_ICR_RXMSGENDCF_Msk (0x1UL << UCPD_ICR_RXMSGENDCF_Pos) /*!< 0x00001000 */
  9996. #define UCPD_ICR_RXMSGENDCF UCPD_ICR_RXMSGENDCF_Msk /*!< Rx message received flag (RXMSGEND) clear */
  9997. #define UCPD_ICR_TYPECEVT1CF_Pos (14U)
  9998. #define UCPD_ICR_TYPECEVT1CF_Msk (0x1UL << UCPD_ICR_TYPECEVT1CF_Pos) /*!< 0x00004000 */
  9999. #define UCPD_ICR_TYPECEVT1CF UCPD_ICR_TYPECEVT1CF_Msk /*!< TypeC event (CC1) flag (TYPECEVT1) clear */
  10000. #define UCPD_ICR_TYPECEVT2CF_Pos (15U)
  10001. #define UCPD_ICR_TYPECEVT2CF_Msk (0x1UL << UCPD_ICR_TYPECEVT2CF_Pos) /*!< 0x00008000 */
  10002. #define UCPD_ICR_TYPECEVT2CF UCPD_ICR_TYPECEVT2CF_Msk /*!< TypeC event (CC2) flag (TYPECEVT2) clear */
  10003. #define UCPD_ICR_FRSEVTCF_Pos (20U)
  10004. #define UCPD_ICR_FRSEVTCF_Msk (0x1UL << UCPD_ICR_FRSEVTCF_Pos) /*!< 0x00100000 */
  10005. #define UCPD_ICR_FRSEVTCF UCPD_ICR_FRSEVTCF_Msk /*!< Fast Role Swap event flag clear */
  10006. /******************** Bits definition for UCPD_TXORDSET register **************/
  10007. #define UCPD_TX_ORDSET_TXORDSET_Pos (0U)
  10008. #define UCPD_TX_ORDSET_TXORDSET_Msk (0xFFFFFUL << UCPD_TX_ORDSET_TXORDSET_Pos) /*!< 0x000FFFFF */
  10009. #define UCPD_TX_ORDSET_TXORDSET UCPD_TX_ORDSET_TXORDSET_Msk /*!< Tx Ordered Set */
  10010. /******************** Bits definition for UCPD_TXPAYSZ register ****************/
  10011. #define UCPD_TX_PAYSZ_TXPAYSZ_Pos (0U)
  10012. #define UCPD_TX_PAYSZ_TXPAYSZ_Msk (0x3FFUL << UCPD_TX_PAYSZ_TXPAYSZ_Pos) /*!< 0x000003FF */
  10013. #define UCPD_TX_PAYSZ_TXPAYSZ UCPD_TX_PAYSZ_TXPAYSZ_Msk /*!< Tx payload size in bytes */
  10014. /******************** Bits definition for UCPD_TXDR register *******************/
  10015. #define UCPD_TXDR_TXDATA_Pos (0U)
  10016. #define UCPD_TXDR_TXDATA_Msk (0xFFUL << UCPD_TXDR_TXDATA_Pos) /*!< 0x000000FF */
  10017. #define UCPD_TXDR_TXDATA UCPD_TXDR_TXDATA_Msk /*!< Tx Data Register */
  10018. /******************** Bits definition for UCPD_RXORDSET register **************/
  10019. #define UCPD_RX_ORDSET_RXORDSET_Pos (0U)
  10020. #define UCPD_RX_ORDSET_RXORDSET_Msk (0x7UL << UCPD_RX_ORDSET_RXORDSET_Pos) /*!< 0x00000007 */
  10021. #define UCPD_RX_ORDSET_RXORDSET UCPD_RX_ORDSET_RXORDSET_Msk /*!< Rx Ordered Set Code detected */
  10022. #define UCPD_RX_ORDSET_RXORDSET_0 (0x1UL << UCPD_RX_ORDSET_RXORDSET_Pos) /*!< 0x00000001 */
  10023. #define UCPD_RX_ORDSET_RXORDSET_1 (0x2UL << UCPD_RX_ORDSET_RXORDSET_Pos) /*!< 0x00000002 */
  10024. #define UCPD_RX_ORDSET_RXORDSET_2 (0x4UL << UCPD_RX_ORDSET_RXORDSET_Pos) /*!< 0x00000004 */
  10025. #define UCPD_RX_ORDSET_RXSOP3OF4_Pos (3U)
  10026. #define UCPD_RX_ORDSET_RXSOP3OF4_Msk (0x1UL << UCPD_RX_ORDSET_RXSOP3OF4_Pos) /*!< 0x00000008 */
  10027. #define UCPD_RX_ORDSET_RXSOP3OF4 UCPD_RX_ORDSET_RXSOP3OF4_Msk /*!< Rx Ordered Set Debug indication */
  10028. #define UCPD_RX_ORDSET_RXSOPKINVALID_Pos (4U)
  10029. #define UCPD_RX_ORDSET_RXSOPKINVALID_Msk (0x7UL << UCPD_RX_ORDSET_RXSOPKINVALID_Pos) /*!< 0x00000070 */
  10030. #define UCPD_RX_ORDSET_RXSOPKINVALID UCPD_RX_ORDSET_RXSOPKINVALID_Msk /*!< Rx Ordered Set corrupted K-Codes (Debug) */
  10031. /******************** Bits definition for UCPD_RXPAYSZ register ****************/
  10032. #define UCPD_RX_PAYSZ_RXPAYSZ_Pos (0U)
  10033. #define UCPD_RX_PAYSZ_RXPAYSZ_Msk (0x3FFUL << UCPD_RX_PAYSZ_RXPAYSZ_Pos) /*!< 0x000003FF */
  10034. #define UCPD_RX_PAYSZ_RXPAYSZ UCPD_RX_PAYSZ_RXPAYSZ_Msk /*!< Rx payload size in bytes */
  10035. /******************** Bits definition for UCPD_RXDR register *******************/
  10036. #define UCPD_RXDR_RXDATA_Pos (0U)
  10037. #define UCPD_RXDR_RXDATA_Msk (0xFFUL << UCPD_RXDR_RXDATA_Pos) /*!< 0x000000FF */
  10038. #define UCPD_RXDR_RXDATA UCPD_RXDR_RXDATA_Msk /*!< 8-bit receive data */
  10039. /******************** Bits definition for UCPD_RXORDEXT1 register **************/
  10040. #define UCPD_RX_ORDEXT1_RXSOPX1_Pos (0U)
  10041. #define UCPD_RX_ORDEXT1_RXSOPX1_Msk (0xFFFFFUL << UCPD_RX_ORDEXT1_RXSOPX1_Pos) /*!< 0x000FFFFF */
  10042. #define UCPD_RX_ORDEXT1_RXSOPX1 UCPD_RX_ORDEXT1_RXSOPX1_Msk /*!< RX Ordered Set Extension Register 1 */
  10043. /******************** Bits definition for UCPD_RXORDEXT2 register **************/
  10044. #define UCPD_RX_ORDEXT2_RXSOPX2_Pos (0U)
  10045. #define UCPD_RX_ORDEXT2_RXSOPX2_Msk (0xFFFFFUL << UCPD_RX_ORDEXT2_RXSOPX2_Pos) /*!< 0x000FFFFF */
  10046. #define UCPD_RX_ORDEXT2_RXSOPX2 UCPD_RX_ORDEXT2_RXSOPX2_Msk /*!< RX Ordered Set Extension Register 1 */
  10047. /******************************************************************************/
  10048. /* */
  10049. /* USB Dual Role Device FS Endpoint registers */
  10050. /* */
  10051. /******************************************************************************/
  10052. /****************** Bits definition for USB_DRD_CNTR register *******************/
  10053. #define USB_CNTR_HOST_Pos (31U)
  10054. #define USB_CNTR_HOST_Msk (0x1UL << USB_CNTR_HOST_Pos) /*!< 0x80000000 */
  10055. #define USB_CNTR_HOST USB_CNTR_HOST_Msk /*!< Host Mode */
  10056. #define USB_CNTR_THR512M_Pos (16U)
  10057. #define USB_CNTR_THR512M_Msk (0x1UL << USB_CNTR_THR512M_Pos) /*!< 0x00010000 */
  10058. #define USB_CNTR_THR512M USB_CNTR_THR512M_Msk /*!< 512byte Threshold interrupt mask */
  10059. #define USB_CNTR_CTRM_Pos (15U)
  10060. #define USB_CNTR_CTRM_Msk (0x1UL << USB_CNTR_CTRM_Pos) /*!< 0x00008000 */
  10061. #define USB_CNTR_CTRM USB_CNTR_CTRM_Msk /*!< Correct Transfer Mask */
  10062. #define USB_CNTR_PMAOVRM_Pos (14U)
  10063. #define USB_CNTR_PMAOVRM_Msk (0x1UL << USB_CNTR_PMAOVRM_Pos) /*!< 0x00004000 */
  10064. #define USB_CNTR_PMAOVRM USB_CNTR_PMAOVRM_Msk /*!< DMA OVeR/underrun Mask */
  10065. #define USB_CNTR_ERRM_Pos (13U)
  10066. #define USB_CNTR_ERRM_Msk (0x1UL << USB_CNTR_ERRM_Pos) /*!< 0x00002000 */
  10067. #define USB_CNTR_ERRM USB_CNTR_ERRM_Msk /*!< ERRor Mask */
  10068. #define USB_CNTR_WKUPM_Pos (12U)
  10069. #define USB_CNTR_WKUPM_Msk (0x1UL << USB_CNTR_WKUPM_Pos) /*!< 0x00001000 */
  10070. #define USB_CNTR_WKUPM USB_CNTR_WKUPM_Msk /*!< WaKe UP Mask */
  10071. #define USB_CNTR_SUSPM_Pos (11U)
  10072. #define USB_CNTR_SUSPM_Msk (0x1UL << USB_CNTR_SUSPM_Pos) /*!< 0x00000800 */
  10073. #define USB_CNTR_SUSPM USB_CNTR_SUSPM_Msk /*!< SUSPend Mask */
  10074. #define USB_CNTR_RESETM_Pos (10U)
  10075. #define USB_CNTR_RESETM_Msk (0x1UL << USB_CNTR_RESETM_Pos) /*!< 0x00000400 */
  10076. #define USB_CNTR_RESETM USB_CNTR_RESETM_Msk /*!< RESET Mask */
  10077. #define USB_CNTR_DCON USB_CNTR_RESETM_Msk /*!< Disconnection Connection Mask */
  10078. #define USB_CNTR_SOFM_Pos (9U)
  10079. #define USB_CNTR_SOFM_Msk (0x1UL << USB_CNTR_SOFM_Pos) /*!< 0x00000200 */
  10080. #define USB_CNTR_SOFM USB_CNTR_SOFM_Msk /*!< Start Of Frame Mask */
  10081. #define USB_CNTR_ESOFM_Pos (8U)
  10082. #define USB_CNTR_ESOFM_Msk (0x1UL << USB_CNTR_ESOFM_Pos) /*!< 0x00000100 */
  10083. #define USB_CNTR_ESOFM USB_CNTR_ESOFM_Msk /*!< Expected Start Of Frame Mask */
  10084. #define USB_CNTR_L1REQM_Pos (7U)
  10085. #define USB_CNTR_L1REQM_Msk (0x1UL << USB_CNTR_L1REQM_Pos) /*!< 0x00000080 */
  10086. #define USB_CNTR_L1REQM USB_CNTR_L1REQM_Msk /*!< LPM L1 state request interrupt Mask */
  10087. #define USB_CNTR_L1XACT_Pos (6U)
  10088. #define USB_CNTR_L1XACT_Msk (0x1UL << USB_CNTR_L1XACT_Pos) /*!< 0x00000040 */
  10089. #define USB_CNTR_L1XACT USB_CNTR_L1XACT_Msk /*!< Host LPM L1 transaction request Mask */
  10090. #define USB_CNTR_L1RES_Pos (5U)
  10091. #define USB_CNTR_L1RES_Msk (0x1UL << USB_CNTR_L1RES_Pos) /*!< 0x00000020 */
  10092. #define USB_CNTR_L1RES USB_CNTR_L1RES_Msk /*!< LPM L1 Resume request/ Remote Wakeup Mask */
  10093. #define USB_CNTR_L2RES_Pos (4U)
  10094. #define USB_CNTR_L2RES_Msk (0x1UL << USB_CNTR_L2RES_Pos) /*!< 0x00000010 */
  10095. #define USB_CNTR_L2RES USB_CNTR_L2RES_Msk /*!< L2 Remote Wakeup / Resume driver Mask */
  10096. #define USB_CNTR_SUSPEN_Pos (3U)
  10097. #define USB_CNTR_SUSPEN_Msk (0x1UL << USB_CNTR_SUSPEN_Pos) /*!< 0x00000008 */
  10098. #define USB_CNTR_SUSPEN USB_CNTR_SUSPEN_Msk /*!< Suspend state enable Mask */
  10099. #define USB_CNTR_SUSPRDY_Pos (2U)
  10100. #define USB_CNTR_SUSPRDY_Msk (0x1UL << USB_CNTR_SUSPRDY_Pos) /*!< 0x00000004 */
  10101. #define USB_CNTR_SUSPRDY USB_CNTR_SUSPRDY_Msk /*!< Suspend state effective Mask */
  10102. #define USB_CNTR_PDWN_Pos (1U)
  10103. #define USB_CNTR_PDWN_Msk (0x1UL << USB_CNTR_PDWN_Pos) /*!< 0x00000002 */
  10104. #define USB_CNTR_PDWN USB_CNTR_PDWN_Msk /*!< Power DoWN Mask */
  10105. #define USB_CNTR_USBRST_Pos (0U)
  10106. #define USB_CNTR_USBRST_Msk (0x1UL << USB_CNTR_USBRST_Pos) /*!< 0x00000001 */
  10107. #define USB_CNTR_USBRST USB_CNTR_USBRST_Msk /*!< USB Reset Mask */
  10108. /****************** Bits definition for USB_DRD_ISTR register *******************/
  10109. #define USB_ISTR_IDN_Pos (0U)
  10110. #define USB_ISTR_IDN_Msk (0xFUL << USB_ISTR_IDN_Pos) /*!< 0x0000000F */
  10111. #define USB_ISTR_IDN USB_ISTR_IDN_Msk /*!< EndPoint IDentifier (read-only bit) Mask */
  10112. #define USB_ISTR_DIR_Pos (4U)
  10113. #define USB_ISTR_DIR_Msk (0x1UL << USB_ISTR_DIR_Pos) /*!< 0x00000010 */
  10114. #define USB_ISTR_DIR USB_ISTR_DIR_Msk /*!< DIRection of transaction (read-only bit) Mask */
  10115. #define USB_ISTR_L1REQ_Pos (7U)
  10116. #define USB_ISTR_L1REQ_Msk (0x1UL << USB_ISTR_L1REQ_Pos) /*!< 0x00000080 */
  10117. #define USB_ISTR_L1REQ USB_ISTR_L1REQ_Msk /*!< LPM L1 state request Mask */
  10118. #define USB_ISTR_ESOF_Pos (8U)
  10119. #define USB_ISTR_ESOF_Msk (0x1UL << USB_ISTR_ESOF_Pos) /*!< 0x00000100 */
  10120. #define USB_ISTR_ESOF USB_ISTR_ESOF_Msk /*!< Expected Start Of Frame (clear-only bit) Mask */
  10121. #define USB_ISTR_SOF_Pos (9U)
  10122. #define USB_ISTR_SOF_Msk (0x1UL << USB_ISTR_SOF_Pos) /*!< 0x00000200 */
  10123. #define USB_ISTR_SOF USB_ISTR_SOF_Msk /*!< Start Of Frame (clear-only bit) Mask */
  10124. #define USB_ISTR_RESET_Pos (10U)
  10125. #define USB_ISTR_RESET_Msk (0x1UL << USB_ISTR_RESET_Pos) /*!< 0x00000400 */
  10126. #define USB_ISTR_RESET USB_ISTR_RESET_Msk /*!< RESET Mask */
  10127. #define USB_ISTR_DCON_Pos (10U)
  10128. #define USB_ISTR_DCON_Msk (0x1UL << USB_ISTR_DCON_Pos) /*!< 0x00000400 */
  10129. #define USB_ISTR_DCON USB_ISTR_DCON_Msk /*!< HOST MODE-Device Connection or disconnection Mask */
  10130. #define USB_ISTR_SUSP_Pos (11U)
  10131. #define USB_ISTR_SUSP_Msk (0x1UL << USB_ISTR_SUSP_Pos) /*!< 0x00000800 */
  10132. #define USB_ISTR_SUSP USB_ISTR_SUSP_Msk /*!< SUSPend (clear-only bit) Mask */
  10133. #define USB_ISTR_WKUP_Pos (12U)
  10134. #define USB_ISTR_WKUP_Msk (0x1UL << USB_ISTR_WKUP_Pos) /*!< 0x00001000 */
  10135. #define USB_ISTR_WKUP USB_ISTR_WKUP_Msk /*!< WaKe UP (clear-only bit) Mask */
  10136. #define USB_ISTR_ERR_Pos (13U)
  10137. #define USB_ISTR_ERR_Msk (0x1UL << USB_ISTR_ERR_Pos) /*!< 0x00002000 */
  10138. #define USB_ISTR_ERR USB_ISTR_ERR_Msk /*!< ERRor (clear-only bit) Mask */
  10139. #define USB_ISTR_PMAOVR_Pos (14U)
  10140. #define USB_ISTR_PMAOVR_Msk (0x1UL << USB_ISTR_PMAOVR_Pos) /*!< 0x00004000 */
  10141. #define USB_ISTR_PMAOVR USB_ISTR_PMAOVR_Msk /*!< PMA OVeR/underrun (clear-only bit) Mask */
  10142. #define USB_ISTR_CTR_Pos (15U)
  10143. #define USB_ISTR_CTR_Msk (0x1UL << USB_ISTR_CTR_Pos) /*!< 0x00008000 */
  10144. #define USB_ISTR_CTR USB_ISTR_CTR_Msk /*!< Correct TRansfer (clear-only bit) Mask */
  10145. #define USB_ISTR_THR512_Pos (16U)
  10146. #define USB_ISTR_THR512_Msk (0x1UL << USB_ISTR_THR512_Pos) /*!< 0x00010000 */
  10147. #define USB_ISTR_THR512 USB_ISTR_THR512_Msk /*!< 512byte threshold interrupt (used with isochrnous single buffer ) */
  10148. #define USB_ISTR_DCON_STAT_Pos (29U)
  10149. #define USB_ISTR_DCON_STAT_Msk (0x1UL << USB_ISTR_DCON_STAT_Pos)/*!< 0x20000000 */
  10150. #define USB_ISTR_DCON_STAT USB_ISTR_DCON_STAT_Msk /*!< Device Connection status (connected/Disconnected) don't cause an interrupt */
  10151. #define USB_ISTR_LS_DCONN_Pos (30U)
  10152. #define USB_ISTR_LS_DCONN_Msk (0x1UL << USB_ISTR_LS_DCONN_Pos)/*!< 0x40000000 */
  10153. #define USB_ISTR_LS_DCONN USB_ISTR_LS_DCONN_Msk /*!< LS_DCONN Mask */
  10154. /****************** Bits definition for USB_DRD_FNR register ********************/
  10155. #define USB_FNR_FN_Pos (0U)
  10156. #define USB_FNR_FN_Msk (0x7FFUL << USB_FNR_FN_Pos) /*!< 0x000007FF */
  10157. #define USB_FNR_FN USB_FNR_FN_Msk /*!< Frame Number Mask */
  10158. #define USB_FNR_LSOF_Pos (11U)
  10159. #define USB_FNR_LSOF_Msk (0x3UL << USB_FNR_LSOF_Pos) /*!< 0x00001800 */
  10160. #define USB_FNR_LSOF USB_FNR_LSOF_Msk /*!< Lost SOF Mask */
  10161. #define USB_FNR_LCK_Pos (13U)
  10162. #define USB_FNR_LCK_Msk (0x1UL << USB_FNR_LCK_Pos) /*!< 0x00002000 */
  10163. #define USB_FNR_LCK USB_FNR_LCK_Msk /*!< LoCKed Mask */
  10164. #define USB_FNR_RXDM_Pos (14U)
  10165. #define USB_FNR_RXDM_Msk (0x1UL << USB_FNR_RXDM_Pos) /*!< 0x00004000 */
  10166. #define USB_FNR_RXDM USB_FNR_RXDM_Msk /*!< status of D- data line Mask */
  10167. #define USB_FNR_RXDP_Pos (15U)
  10168. #define USB_FNR_RXDP_Msk (0x1UL << USB_FNR_RXDP_Pos) /*!< 0x00008000 */
  10169. #define USB_FNR_RXDP USB_FNR_RXDP_Msk /*!< status of D+ data line Mask */
  10170. /****************** Bits definition for USB_DRD_DADDR register ****************/
  10171. #define USB_DADDR_ADD_Pos (0U)
  10172. #define USB_DADDR_ADD_Msk (0x7FUL << USB_DADDR_ADD_Pos) /*!< 0x0000007F */
  10173. #define USB_DADDR_ADD USB_DADDR_ADD_Msk /*!< ADD[6:0] bits (Device Address)Mask */
  10174. #define USB_DADDR_ADD0_Pos (0U)
  10175. #define USB_DADDR_ADD0_Msk (0x1UL << USB_DADDR_ADD0_Pos) /*!< 0x00000001 */
  10176. #define USB_DADDR_ADD0 USB_DADDR_ADD0_Msk /*!< Bit 0 Mask */
  10177. #define USB_DADDR_ADD1_Pos (1U)
  10178. #define USB_DADDR_ADD1_Msk (0x1UL << USB_DADDR_ADD1_Pos) /*!< 0x00000002 */
  10179. #define USB_DADDR_ADD1 USB_DADDR_ADD1_Msk /*!< Bit 1 Mask */
  10180. #define USB_DADDR_ADD2_Pos (2U)
  10181. #define USB_DADDR_ADD2_Msk (0x1UL << USB_DADDR_ADD2_Pos) /*!< 0x00000004 */
  10182. #define USB_DADDR_ADD2 USB_DADDR_ADD2_Msk /*!< Bit 2 Mask */
  10183. #define USB_DADDR_ADD3_Pos (3U)
  10184. #define USB_DADDR_ADD3_Msk (0x1UL << USB_DADDR_ADD3_Pos) /*!< 0x00000008 */
  10185. #define USB_DADDR_ADD3 USB_DADDR_ADD3_Msk /*!< Bit 3 Mask */
  10186. #define USB_DADDR_ADD4_Pos (4U)
  10187. #define USB_DADDR_ADD4_Msk (0x1UL << USB_DADDR_ADD4_Pos) /*!< 0x00000010 */
  10188. #define USB_DADDR_ADD4 USB_DADDR_ADD4_Msk /*!< Bit 4 Mask */
  10189. #define USB_DADDR_ADD5_Pos (5U)
  10190. #define USB_DADDR_ADD5_Msk (0x1UL << USB_DADDR_ADD5_Pos) /*!< 0x00000020 */
  10191. #define USB_DADDR_ADD5 USB_DADDR_ADD5_Msk /*!< Bit 5 Mask */
  10192. #define USB_DADDR_ADD6_Pos (6U)
  10193. #define USB_DADDR_ADD6_Msk (0x1UL << USB_DADDR_ADD6_Pos) /*!< 0x00000040 */
  10194. #define USB_DADDR_ADD6 USB_DADDR_ADD6_Msk /*!< Bit 6 Mask */
  10195. #define USB_DADDR_EF_Pos (7U)
  10196. #define USB_DADDR_EF_Msk (0x1UL << USB_DADDR_EF_Pos) /*!< 0x00000080 */
  10197. #define USB_DADDR_EF USB_DADDR_EF_Msk /*!< Enable Function Mask */
  10198. /****************** Bit definition for USB_DRD_BTABLE register ******************/
  10199. #define USB_BTABLE_BTABLE_Pos (3U)
  10200. #define USB_BTABLE_BTABLE_Msk (0xFFF8UL << USB_BTABLE_BTABLE_Pos)/*!< 0x00000000 */
  10201. #define USB_BTABLE_BTABLE USB_BTABLE_BTABLE_Msk /*!< Buffer Table Mask */
  10202. /******************* Bit definition for LPMCSR register *********************/
  10203. #define USB_LPMCSR_LMPEN_Pos (0U)
  10204. #define USB_LPMCSR_LMPEN_Msk (0x1UL << USB_LPMCSR_LMPEN_Pos) /*!< 0x00000001 */
  10205. #define USB_LPMCSR_LMPEN USB_LPMCSR_LMPEN_Msk /*!< LPM support enable Mask */
  10206. #define USB_LPMCSR_LPMACK_Pos (1U)
  10207. #define USB_LPMCSR_LPMACK_Msk (0x1UL << USB_LPMCSR_LPMACK_Pos) /*!< 0x00000002 */
  10208. #define USB_LPMCSR_LPMACK USB_LPMCSR_LPMACK_Msk /*!< LPM Token acknowledge enable Mask */
  10209. #define USB_LPMCSR_REMWAKE_Pos (3U)
  10210. #define USB_LPMCSR_REMWAKE_Msk (0x1UL << USB_LPMCSR_REMWAKE_Pos)/*!< 0x00000008 */
  10211. #define USB_LPMCSR_REMWAKE USB_LPMCSR_REMWAKE_Msk /*!< bRemoteWake value received with last ACKed LPM Token Mask */
  10212. #define USB_LPMCSR_BESL_Pos (4U)
  10213. #define USB_LPMCSR_BESL_Msk (0xFUL << USB_LPMCSR_BESL_Pos) /*!< 0x000000F0 */
  10214. #define USB_LPMCSR_BESL USB_LPMCSR_BESL_Msk /*!< BESL value received with last ACKed LPM Token Mask */
  10215. /****************** Bits definition for USB_DRD_BCDR register *******************/
  10216. #define USB_BCDR_BCDEN_Pos (0U)
  10217. #define USB_BCDR_BCDEN_Msk (0x1UL << USB_BCDR_BCDEN_Pos) /*!< 0x00000001 */
  10218. #define USB_BCDR_BCDEN USB_BCDR_BCDEN_Msk /*!< Battery charging detector (BCD) enable Mask */
  10219. #define USB_BCDR_DCDEN_Pos (1U)
  10220. #define USB_BCDR_DCDEN_Msk (0x1UL << USB_BCDR_DCDEN_Pos) /*!< 0x00000002 */
  10221. #define USB_BCDR_DCDEN USB_BCDR_DCDEN_Msk /*!< Data contact detection (DCD) mode enable Mask */
  10222. #define USB_BCDR_PDEN_Pos (2U)
  10223. #define USB_BCDR_PDEN_Msk (0x1UL << USB_BCDR_PDEN_Pos) /*!< 0x00000004 */
  10224. #define USB_BCDR_PDEN USB_BCDR_PDEN_Msk /*!< Primary detection (PD) mode enable Mask */
  10225. #define USB_BCDR_SDEN_Pos (3U)
  10226. #define USB_BCDR_SDEN_Msk (0x1UL << USB_BCDR_SDEN_Pos) /*!< 0x00000008 */
  10227. #define USB_BCDR_SDEN USB_BCDR_SDEN_Msk /*!< Secondary detection (SD) mode enable Mask */
  10228. #define USB_BCDR_DCDET_Pos (4U)
  10229. #define USB_BCDR_DCDET_Msk (0x1UL << USB_BCDR_DCDET_Pos) /*!< 0x00000010 */
  10230. #define USB_BCDR_DCDET USB_BCDR_DCDET_Msk /*!< Data contact detection (DCD) status Mask */
  10231. #define USB_BCDR_PDET_Pos (5U)
  10232. #define USB_BCDR_PDET_Msk (0x1UL << USB_BCDR_PDET_Pos) /*!< 0x00000020 */
  10233. #define USB_BCDR_PDET USB_BCDR_PDET_Msk /*!< Primary detection (PD) status Mask */
  10234. #define USB_BCDR_SDET_Pos (6U)
  10235. #define USB_BCDR_SDET_Msk (0x1UL << USB_BCDR_SDET_Pos) /*!< 0x00000040 */
  10236. #define USB_BCDR_SDET USB_BCDR_SDET_Msk /*!< Secondary detection (SD) status Mask */
  10237. #define USB_BCDR_PS2DET_Pos (7U)
  10238. #define USB_BCDR_PS2DET_Msk (0x1UL << USB_BCDR_PS2DET_Pos) /*!< 0x00000080 */
  10239. #define USB_BCDR_PS2DET USB_BCDR_PS2DET_Msk /*!< PS2 port or proprietary charger detected Mask */
  10240. #define USB_BCDR_DPPU_Pos (15U)
  10241. #define USB_BCDR_DPPU_Msk (0x1UL << USB_BCDR_DPPU_Pos) /*!< 0x00008000 */
  10242. #define USB_BCDR_DPPU USB_BCDR_DPPU_Msk /*!< DP Pull-up Enable Mask */
  10243. #define USB_BCDR_DPPD_Pos (15U)
  10244. #define USB_BCDR_DPPD_Msk (0x1UL << USB_BCDR_DPPD_Pos) /*!< 0x00008000 */
  10245. #define USB_BCDR_DPPD USB_BCDR_DPPD_Msk /*!< DP Pull-Down Enable Mask */
  10246. /****************** Bits definition for USB_DRD_CHEP register *******************/
  10247. #define USB_CHEP_ERRRX_Pos (26U)
  10248. #define USB_CHEP_ERRRX_Msk (0x01UL << USB_CHEP_ERRRX_Pos) /*!< 0x04000000 */
  10249. #define USB_CHEP_ERRRX USB_CHEP_ERRRX_Msk /*!< Receive error */
  10250. #define USB_EP_ERRRX USB_CHEP_ERRRX_Msk /*!< EP Receive error */
  10251. #define USB_CH_ERRRX USB_CHEP_ERRRX_Msk /*!< CH Receive error */
  10252. #define USB_CHEP_ERRTX_Pos (25U)
  10253. #define USB_CHEP_ERRTX_Msk (0x01UL << USB_CHEP_ERRTX_Pos) /*!< 0x02000000 */
  10254. #define USB_CHEP_ERRTX USB_CHEP_ERRTX_Msk /*!< Transmit error */
  10255. #define USB_EP_ERRTX USB_CHEP_ERRTX_Msk /*!< EP Transmit error */
  10256. #define USB_CH_ERRTX USB_CHEP_ERRTX_Msk /*!< CH Transmit error */
  10257. #define USB_CHEP_LSEP_Pos (24U)
  10258. #define USB_CHEP_LSEP_Msk (0x01UL << USB_CHEP_LSEP_Pos) /*!< 0x01000000 */
  10259. #define USB_CHEP_LSEP USB_CHEP_LSEP_Msk /*!< Low Speed Endpoint (host with Hub Only) */
  10260. #define USB_CHEP_NAK_Pos (23U)
  10261. #define USB_CHEP_NAK_Msk (0x01UL << USB_CHEP_NAK_Pos) /*!< 0x00800000 */
  10262. #define USB_CHEP_NAK USB_CHEP_NAK_Msk /*!< Previous NAK detected */
  10263. #define USB_CHEP_DEVADDR_Pos (16U)
  10264. #define USB_CHEP_DEVADDR_Msk (0x7FU << USB_CHEP_DEVADDR_Pos) /*!< 0x7F000000 */
  10265. #define USB_CHEP_DEVADDR USB_CHEP_DEVADDR_Msk /* Target Endpoint address*/
  10266. #define USB_CHEP_VTRX_Pos (15U)
  10267. #define USB_CHEP_VTRX_Msk (0x1UL << USB_CHEP_VTRX_Pos) /*!< 0x00008000 */
  10268. #define USB_CHEP_VTRX USB_CHEP_VTRX_Msk /*!< USB valid transaction received Mask */
  10269. #define USB_EP_VTRX USB_CHEP_VTRX_Msk /*!< USB Endpoint valid transaction received Mask */
  10270. #define USB_CH_VTRX USB_CHEP_VTRX_Msk /*!< USB valid Channel transaction received Mask */
  10271. #define USB_CHEP_DTOG_RX_Pos (14U)
  10272. #define USB_CHEP_DTOG_RX_Msk (0x1UL << USB_CHEP_DTOG_RX_Pos) /*!< 0x00004000 */
  10273. #define USB_CHEP_DTOG_RX USB_CHEP_DTOG_RX_Msk /*!< Data Toggle, for reception transfers Mask */
  10274. #define USB_EP_DTOG_RX USB_CHEP_DTOG_RX_Msk /*!< EP Data Toggle, for reception transfers Mask */
  10275. #define USB_CH_DTOG_RX USB_CHEP_DTOG_RX_Msk /*!< CH Data Toggle, for reception transfers Mask */
  10276. #define USB_CHEP_RX_STRX_Pos (12U)
  10277. #define USB_CHEP_RX_STRX_Msk (0x3UL << USB_CHEP_RX_STRX_Pos) /*!< 0x00003000 */
  10278. #define USB_CHEP_RX_STRX USB_CHEP_RX_STRX_Msk /*!< Status bits, for reception transfers Mask */
  10279. #define USB_EP_RX_STRX USB_CHEP_RX_STRX_Msk /*!< Status bits, for EP reception transfers Mask */
  10280. #define USB_CH_RX_STRX USB_CHEP_RX_STRX_Msk /*!< Status bits, for CH reception transfers Mask */
  10281. #define USB_CHEP_SETUP_Pos (11U)
  10282. #define USB_CHEP_SETUP_Msk (0x1UL << USB_CHEP_SETUP_Pos) /*!< 0x00000800 */
  10283. #define USB_CHEP_SETUP USB_CHEP_SETUP_Msk /*!< Setup transaction completed Mask */
  10284. #define USB_EP_SETUP USB_CHEP_SETUP_Msk /*!< EP Setup transaction completed Mask */
  10285. #define USB_CH_SETUP USB_CHEP_SETUP_Msk /*!< CH Setup transaction completed Mask */
  10286. #define USB_CHEP_UTYPE_Pos (9U)
  10287. #define USB_CHEP_UTYPE_Msk (0x3UL << USB_CHEP_UTYPE_Pos) /*!< 0x00000600 */
  10288. #define USB_CHEP_UTYPE USB_CHEP_UTYPE_Msk /*!< USB type of transaction Mask */
  10289. #define USB_EP_UTYPE USB_CHEP_UTYPE_Msk /*!< USB type of EP transaction Mask */
  10290. #define USB_CH_UTYPE USB_CHEP_UTYPE_Msk /*!< USB type of CH transaction Mask */
  10291. #define USB_CHEP_KIND_Pos (8U)
  10292. #define USB_CHEP_KIND_Msk (0x1UL << USB_CHEP_KIND_Pos) /*!< 0x00000100 */
  10293. #define USB_CHEP_KIND USB_CHEP_KIND_Msk /*!< EndPoint KIND Mask */
  10294. #define USB_EP_KIND USB_CHEP_KIND_Msk /*!< EndPoint KIND Mask */
  10295. #define USB_CH_KIND USB_CHEP_KIND_Msk /*!< Channel KIND Mask */
  10296. #define USB_CHEP_VTTX_Pos (7U)
  10297. #define USB_CHEP_VTTX_Msk (0x1UL << USB_CHEP_VTTX_Pos) /*!< 0x00000080 */
  10298. #define USB_CHEP_VTTX USB_CHEP_VTTX_Msk /*!< Valid USB transaction transmitted Mask */
  10299. #define USB_EP_VTTX USB_CHEP_VTTX_Msk /*!< USB Endpoint valid transaction transmitted Mask */
  10300. #define USB_CH_VTTX USB_CHEP_VTTX_Msk /*!< USB valid Channel transaction transmitted Mask */
  10301. #define USB_CHEP_DTOG_TX_Pos (6U)
  10302. #define USB_CHEP_DTOG_TX_Msk (0x1UL << USB_CHEP_DTOG_TX_Pos) /*!< 0x00000040 */
  10303. #define USB_CHEP_DTOG_TX USB_CHEP_DTOG_TX_Msk /*!< Data Toggle, for transmission transfers Mask */
  10304. #define USB_EP_DTOG_TX USB_CHEP_DTOG_TX_Msk /*!< EP Data Toggle, for transmission transfers Mask */
  10305. #define USB_CH_DTOG_TX USB_CHEP_DTOG_TX_Msk /*!< CH Data Toggle, for transmission transfers Mask */
  10306. #define USB_CHEP_TX_STTX_Pos (4U)
  10307. #define USB_CHEP_TX_STTX_Msk (0x3UL << USB_CHEP_TX_STTX_Pos) /*!< 0x00000030 */
  10308. #define USB_CHEP_TX_STTX USB_CHEP_TX_STTX_Msk /*!< Status bits, for transmission transfers Mask */
  10309. #define USB_EP_TX_STTX USB_CHEP_TX_STTX_Msk /*!< Status bits, for EP transmission transfers Mask */
  10310. #define USB_CH_TX_STTX USB_CHEP_TX_STTX_Msk /*!< Status bits, for CH transmission transfers Mask */
  10311. #define USB_CHEP_ADDR_Pos (0U)
  10312. #define USB_CHEP_ADDR_Msk (0xFUL << USB_CHEP_ADDR_Pos) /*!< 0x0000000F */
  10313. #define USB_CHEP_ADDR USB_CHEP_ADDR_Msk /*!< Endpoint address Mask */
  10314. /* EndPoint Register MASK (no toggle fields) */
  10315. #define USB_CHEP_REG_MASK (USB_CHEP_ERRRX | USB_CHEP_ERRTX | USB_CHEP_LSEP | \
  10316. USB_CHEP_DEVADDR | USB_CHEP_VTRX | USB_CHEP_SETUP | \
  10317. USB_CHEP_UTYPE | USB_CHEP_KIND | USB_CHEP_VTTX | USB_CHEP_ADDR |\
  10318. USB_CHEP_NAK) /* 0x07FF8F8F */
  10319. #define USB_CHEP_TX_DTOGMASK (USB_CHEP_TX_STTX | USB_CHEP_REG_MASK)
  10320. #define USB_CHEP_RX_DTOGMASK (USB_CHEP_RX_STRX | USB_CHEP_REG_MASK)
  10321. #define USB_CHEP_TX_DTOG1 (0x00000010UL) /*!< Channel/EndPoint TX Data Toggle bit1 */
  10322. #define USB_CHEP_TX_DTOG2 (0x00000020UL) /*!< Channel/EndPoint TX Data Toggle bit2 */
  10323. #define USB_CHEP_RX_DTOG1 (0x00001000UL) /*!< Channel/EndPoint RX Data Toggle bit1 */
  10324. #define USB_CHEP_RX_DTOG2 (0x00002000UL) /*!< Channel/EndPoint RX Data Toggle bit1 */
  10325. /*!< EP_TYPE[1:0] Channel/EndPoint TYPE */
  10326. #define USB_EP_TYPE_MASK (0x00000600UL) /*!< Channel/EndPoint TYPE Mask */
  10327. #define USB_EP_BULK (0x00000000UL) /*!< Channel/EndPoint BULK */
  10328. #define USB_EP_CONTROL (0x00000200UL) /*!< Channel/EndPoint CONTROL */
  10329. #define USB_EP_ISOCHRONOUS (0x00000400UL) /*!< Channel/EndPoint ISOCHRONOUS */
  10330. #define USB_EP_INTERRUPT (0x00000600UL) /*!< Channel/EndPoint INTERRUPT */
  10331. #define USB_EP_T_MASK ((~USB_EP_UTYPE) & USB_CHEP_REG_MASK) /* =0x898F */
  10332. #define USB_CH_T_MASK ((~USB_CH_UTYPE) & USB_CHEP_REG_MASK) /* =0x898F */
  10333. #define USB_EP_KIND_MASK ((~USB_EP_KIND) & USB_CHEP_REG_MASK) /*!< EP_KIND EndPoint KIND */
  10334. #define USB_CH_KIND_MASK ((~USB_CH_KIND) & USB_CHEP_REG_MASK) /*!< EP_KIND EndPoint KIND */
  10335. /*!< STAT_TX[1:0] STATus for TX transfer */
  10336. #define USB_EP_TX_DIS (0x00000000UL) /*!< EndPoint TX Disabled */
  10337. #define USB_EP_TX_STALL (0x00000010UL) /*!< EndPoint TX STALLed */
  10338. #define USB_EP_TX_NAK (0x00000020UL) /*!< EndPoint TX NAKed */
  10339. #define USB_EP_TX_VALID (0x00000030UL) /*!< EndPoint TX VALID */
  10340. #define USB_CH_TX_DIS (0x00000000UL) /*!< Channel TX Disabled */
  10341. #define USB_CH_TX_STALL (0x00000010UL) /*!< Channel TX STALLed */
  10342. #define USB_CH_TX_NAK (0x00000020UL) /*!< Channel TX NAKed */
  10343. #define USB_CH_TX_VALID (0x00000030UL) /*!< Channel TX VALID */
  10344. #define USB_EP_TX_ACK_SBUF (0x00000000UL) /*!< ACK single buffer mode */
  10345. #define USB_EP_TX_ACK_DBUF (0x00000030UL) /*!< ACK Double buffer mode */
  10346. #define USB_CH_TX_ACK_SBUF (0x00000000UL) /*!< ACK single buffer mode */
  10347. #define USB_CH_TX_ACK_DBUF (0x00000030UL) /*!< ACK Double buffer mode */
  10348. /*!< STAT_RX[1:0] STATus for RX transfer */
  10349. #define USB_EP_RX_DIS (0x00000000UL) /*!< EndPoint RX Disabled */
  10350. #define USB_EP_RX_STALL (0x00001000UL) /*!< EndPoint RX STALLed */
  10351. #define USB_EP_RX_NAK (0x00002000UL) /*!< EndPoint RX NAKed */
  10352. #define USB_EP_RX_VALID (0x00003000UL) /*!< EndPoint RX VALID */
  10353. #define USB_EP_RX_ACK_SBUF (0x00000000UL) /*!< ACK single buffer mode */
  10354. #define USB_EP_RX_ACK_DBUF (0x00003000UL) /*!< ACK Double buffer mode */
  10355. #define USB_CH_RX_DIS (0x00000000UL) /*!< EndPoint RX Disabled */
  10356. #define USB_CH_RX_STALL (0x00001000UL) /*!< EndPoint RX STALLed */
  10357. #define USB_CH_RX_NAK (0x00002000UL) /*!< Channel RX NAKed */
  10358. #define USB_CH_RX_VALID (0x00003000UL) /*!< Channel RX VALID */
  10359. #define USB_CH_RX_ACK_SBUF (0x00000000UL) /*!< ACK single buffer mode */
  10360. #define USB_CH_RX_ACK_DBUF (0x00003000UL) /*!< ACK Double buffer mode */
  10361. /*! <used For Double Buffer Enable Disable */
  10362. #define USB_CHEP_DB_MSK (0xFFFF0F0FUL)
  10363. /*Buffer Descriptor Mask*/
  10364. #define USB_PMA_TXBD_ADDMSK (0xFFFF0000UL)
  10365. #define USB_PMA_TXBD_COUNTMSK (0x0000FFFFUL)
  10366. #define USB_PMA_RXBD_ADDMSK (0xFFFF0000UL)
  10367. #define USB_PMA_RXBD_COUNTMSK (0x0000FFFFUL)
  10368. /** @addtogroup Exported_macros
  10369. * @{
  10370. */
  10371. /******************************* ADC Instances ********************************/
  10372. #define IS_ADC_ALL_INSTANCE(INSTANCE) ((INSTANCE) == ADC1)
  10373. #define IS_ADC_COMMON_INSTANCE(INSTANCE) ((INSTANCE) == ADC1_COMMON)
  10374. /******************************* AES Instances ********************************/
  10375. #define IS_AES_ALL_INSTANCE(INSTANCE) ((INSTANCE) == AES)
  10376. /****************************** CEC Instances *********************************/
  10377. #define IS_CEC_ALL_INSTANCE(INSTANCE) ((INSTANCE) == CEC)
  10378. /******************************** COMP Instances ******************************/
  10379. #define IS_COMP_ALL_INSTANCE(INSTANCE) (((INSTANCE) == COMP1) || \
  10380. ((INSTANCE) == COMP2) || \
  10381. ((INSTANCE) == COMP3))
  10382. #define IS_COMP_COMMON_INSTANCE(COMMON_INSTANCE) (((COMMON_INSTANCE) == COMP12_COMMON) || \
  10383. ((COMMON_INSTANCE) == COMP23_COMMON))
  10384. /******************** COMP Instances with window mode capability **************/
  10385. #define IS_COMP_WINDOWMODE_INSTANCE(INSTANCE) (((INSTANCE) == COMP1) || \
  10386. ((INSTANCE) == COMP2) || \
  10387. ((INSTANCE) == COMP3))
  10388. /******************************* CRC Instances ********************************/
  10389. #define IS_CRC_ALL_INSTANCE(INSTANCE) ((INSTANCE) == CRC)
  10390. /******************************* DAC Instances ********************************/
  10391. #define IS_DAC_ALL_INSTANCE(INSTANCE) ((INSTANCE) == DAC1)
  10392. /******************************** DMA Instances *******************************/
  10393. #define IS_DMA_ALL_INSTANCE(INSTANCE) (((INSTANCE) == DMA1_Channel1) || \
  10394. ((INSTANCE) == DMA1_Channel2) || \
  10395. ((INSTANCE) == DMA1_Channel3) || \
  10396. ((INSTANCE) == DMA1_Channel4) || \
  10397. ((INSTANCE) == DMA1_Channel5) || \
  10398. ((INSTANCE) == DMA1_Channel6) || \
  10399. ((INSTANCE) == DMA1_Channel7) || \
  10400. ((INSTANCE) == DMA2_Channel1) || \
  10401. ((INSTANCE) == DMA2_Channel2) || \
  10402. ((INSTANCE) == DMA2_Channel3) || \
  10403. ((INSTANCE) == DMA2_Channel4) || \
  10404. ((INSTANCE) == DMA2_Channel5))
  10405. /******************************** DMAMUX Instances ****************************/
  10406. #define IS_DMAMUX_ALL_INSTANCE(INSTANCE) ((INSTANCE) == DMAMUX1)
  10407. #define IS_DMAMUX_REQUEST_GEN_ALL_INSTANCE(INSTANCE) (((INSTANCE) == DMAMUX1_RequestGenerator0) || \
  10408. ((INSTANCE) == DMAMUX1_RequestGenerator1) || \
  10409. ((INSTANCE) == DMAMUX1_RequestGenerator2) || \
  10410. ((INSTANCE) == DMAMUX1_RequestGenerator3))
  10411. /******************************* GPIO Instances *******************************/
  10412. #define IS_GPIO_ALL_INSTANCE(INSTANCE) (((INSTANCE) == GPIOA) || \
  10413. ((INSTANCE) == GPIOB) || \
  10414. ((INSTANCE) == GPIOC) || \
  10415. ((INSTANCE) == GPIOD) || \
  10416. ((INSTANCE) == GPIOE) || \
  10417. ((INSTANCE) == GPIOF))
  10418. /******************************* GPIO AF Instances ****************************/
  10419. #define IS_GPIO_AF_INSTANCE(INSTANCE) IS_GPIO_ALL_INSTANCE(INSTANCE)
  10420. /**************************** GPIO Lock Instances *****************************/
  10421. #define IS_GPIO_LOCK_INSTANCE(INSTANCE) (((INSTANCE) == GPIOA) || \
  10422. ((INSTANCE) == GPIOB) || \
  10423. ((INSTANCE) == GPIOC))
  10424. /******************************** FDCAN Instances *******************************/
  10425. #define IS_FDCAN_ALL_INSTANCE(INSTANCE) (((INSTANCE) == FDCAN1) || \
  10426. ((INSTANCE) == FDCAN2))
  10427. /******************************** I2C Instances *******************************/
  10428. #define IS_I2C_ALL_INSTANCE(INSTANCE) (((INSTANCE) == I2C1) || \
  10429. ((INSTANCE) == I2C2) || \
  10430. ((INSTANCE) == I2C3))
  10431. /******************************* RNG Instances ********************************/
  10432. #define IS_RNG_ALL_INSTANCE(INSTANCE) ((INSTANCE) == RNG)
  10433. /****************************** RTC Instances *********************************/
  10434. #define IS_RTC_ALL_INSTANCE(INSTANCE) ((INSTANCE) == RTC)
  10435. /****************************** SMBUS Instances *******************************/
  10436. #define IS_SMBUS_ALL_INSTANCE(INSTANCE)(((INSTANCE) == I2C1) || \
  10437. ((INSTANCE) == I2C2))
  10438. /****************************** WAKEUP_FROMSTOP Instances *******************************/
  10439. #define IS_I2C_WAKEUP_FROMSTOP_INSTANCE(INSTANCE)(((INSTANCE) == I2C1) || \
  10440. ((INSTANCE) == I2C2))
  10441. /******************************** SPI Instances *******************************/
  10442. #define IS_SPI_ALL_INSTANCE(INSTANCE) (((INSTANCE) == SPI1) || \
  10443. ((INSTANCE) == SPI2) || \
  10444. ((INSTANCE) == SPI3))
  10445. /******************************** SPI Instances *******************************/
  10446. #define IS_I2S_ALL_INSTANCE(INSTANCE) (((INSTANCE) == SPI1) || \
  10447. ((INSTANCE) == SPI2))
  10448. /****************** LPTIM Instances : All supported instances *****************/
  10449. #define IS_LPTIM_INSTANCE(INSTANCE) (((INSTANCE) == LPTIM1) || \
  10450. ((INSTANCE) == LPTIM2))
  10451. /****************** LPTIM Instances : All supported instances *****************/
  10452. #define IS_LPTIM_ENCODER_INTERFACE_INSTANCE(INSTANCE) ((INSTANCE) == LPTIM1)
  10453. /****************** TIM Instances : All supported instances *******************/
  10454. #define IS_TIM_INSTANCE(INSTANCE) (((INSTANCE) == TIM1) || \
  10455. ((INSTANCE) == TIM2) || \
  10456. ((INSTANCE) == TIM3) || \
  10457. ((INSTANCE) == TIM4) || \
  10458. ((INSTANCE) == TIM6) || \
  10459. ((INSTANCE) == TIM7) || \
  10460. ((INSTANCE) == TIM14) || \
  10461. ((INSTANCE) == TIM15) || \
  10462. ((INSTANCE) == TIM16) || \
  10463. ((INSTANCE) == TIM17))
  10464. /****************** TIM Instances : supporting 32 bits counter ****************/
  10465. #define IS_TIM_32B_COUNTER_INSTANCE(INSTANCE) ((INSTANCE) == TIM2)
  10466. /****************** TIM Instances : supporting the break function *************/
  10467. #define IS_TIM_BREAK_INSTANCE(INSTANCE) (((INSTANCE) == TIM1) || \
  10468. ((INSTANCE) == TIM15) || \
  10469. ((INSTANCE) == TIM16) || \
  10470. ((INSTANCE) == TIM17))
  10471. /************** TIM Instances : supporting Break source selection *************/
  10472. #define IS_TIM_BREAKSOURCE_INSTANCE(INSTANCE) (((INSTANCE) == TIM1) || \
  10473. ((INSTANCE) == TIM15) || \
  10474. ((INSTANCE) == TIM16) || \
  10475. ((INSTANCE) == TIM17))
  10476. /****************** TIM Instances : supporting 2 break inputs *****************/
  10477. #define IS_TIM_BKIN2_INSTANCE(INSTANCE) ((INSTANCE) == TIM1)
  10478. /************* TIM Instances : at least 1 capture/compare channel *************/
  10479. #define IS_TIM_CC1_INSTANCE(INSTANCE) (((INSTANCE) == TIM1) || \
  10480. ((INSTANCE) == TIM2) || \
  10481. ((INSTANCE) == TIM3) || \
  10482. ((INSTANCE) == TIM4) || \
  10483. ((INSTANCE) == TIM14) || \
  10484. ((INSTANCE) == TIM15) || \
  10485. ((INSTANCE) == TIM16) || \
  10486. ((INSTANCE) == TIM17))
  10487. /************ TIM Instances : at least 2 capture/compare channels *************/
  10488. #define IS_TIM_CC2_INSTANCE(INSTANCE) (((INSTANCE) == TIM1) || \
  10489. ((INSTANCE) == TIM2) || \
  10490. ((INSTANCE) == TIM3) || \
  10491. ((INSTANCE) == TIM4) || \
  10492. ((INSTANCE) == TIM15))
  10493. /************ TIM Instances : at least 3 capture/compare channels *************/
  10494. #define IS_TIM_CC3_INSTANCE(INSTANCE) (((INSTANCE) == TIM1) || \
  10495. ((INSTANCE) == TIM2) || \
  10496. ((INSTANCE) == TIM3) || \
  10497. ((INSTANCE) == TIM4))
  10498. /************ TIM Instances : at least 4 capture/compare channels *************/
  10499. #define IS_TIM_CC4_INSTANCE(INSTANCE) (((INSTANCE) == TIM1) || \
  10500. ((INSTANCE) == TIM2) || \
  10501. ((INSTANCE) == TIM3) || \
  10502. ((INSTANCE) == TIM4))
  10503. /****************** TIM Instances : at least 5 capture/compare channels *******/
  10504. #define IS_TIM_CC5_INSTANCE(INSTANCE) ((INSTANCE) == TIM1)
  10505. /****************** TIM Instances : at least 6 capture/compare channels *******/
  10506. #define IS_TIM_CC6_INSTANCE(INSTANCE) ((INSTANCE) == TIM1)
  10507. /************ TIM Instances : DMA requests generation (TIMx_DIER.COMDE) *******/
  10508. #define IS_TIM_CCDMA_INSTANCE(INSTANCE) (((INSTANCE) == TIM1) || \
  10509. ((INSTANCE) == TIM15) || \
  10510. ((INSTANCE) == TIM16) || \
  10511. ((INSTANCE) == TIM17))
  10512. /****************** TIM Instances : DMA requests generation (TIMx_DIER.UDE) ***/
  10513. #define IS_TIM_DMA_INSTANCE(INSTANCE) (((INSTANCE) == TIM1) || \
  10514. ((INSTANCE) == TIM2) || \
  10515. ((INSTANCE) == TIM3) || \
  10516. ((INSTANCE) == TIM4) || \
  10517. ((INSTANCE) == TIM6) || \
  10518. ((INSTANCE) == TIM7) || \
  10519. ((INSTANCE) == TIM15) || \
  10520. ((INSTANCE) == TIM16) || \
  10521. ((INSTANCE) == TIM17))
  10522. /************ TIM Instances : DMA requests generation (TIMx_DIER.CCxDE) *******/
  10523. #define IS_TIM_DMA_CC_INSTANCE(INSTANCE) (((INSTANCE) == TIM1) || \
  10524. ((INSTANCE) == TIM2) || \
  10525. ((INSTANCE) == TIM3) || \
  10526. ((INSTANCE) == TIM4) || \
  10527. ((INSTANCE) == TIM14) || \
  10528. ((INSTANCE) == TIM15) || \
  10529. ((INSTANCE) == TIM16) || \
  10530. ((INSTANCE) == TIM17))
  10531. /******************** TIM Instances : DMA burst feature ***********************/
  10532. #define IS_TIM_DMABURST_INSTANCE(INSTANCE) (((INSTANCE) == TIM1) || \
  10533. ((INSTANCE) == TIM2) || \
  10534. ((INSTANCE) == TIM3) || \
  10535. ((INSTANCE) == TIM4) || \
  10536. ((INSTANCE) == TIM15) || \
  10537. ((INSTANCE) == TIM16) || \
  10538. ((INSTANCE) == TIM17))
  10539. /******************* TIM Instances : output(s) available **********************/
  10540. #define IS_TIM_CCX_INSTANCE(INSTANCE, CHANNEL) \
  10541. ((((INSTANCE) == TIM1) && \
  10542. (((CHANNEL) == TIM_CHANNEL_1) || \
  10543. ((CHANNEL) == TIM_CHANNEL_2) || \
  10544. ((CHANNEL) == TIM_CHANNEL_3) || \
  10545. ((CHANNEL) == TIM_CHANNEL_4) || \
  10546. ((CHANNEL) == TIM_CHANNEL_5) || \
  10547. ((CHANNEL) == TIM_CHANNEL_6))) \
  10548. || \
  10549. (((INSTANCE) == TIM2) && \
  10550. (((CHANNEL) == TIM_CHANNEL_1) || \
  10551. ((CHANNEL) == TIM_CHANNEL_2) || \
  10552. ((CHANNEL) == TIM_CHANNEL_3) || \
  10553. ((CHANNEL) == TIM_CHANNEL_4))) \
  10554. || \
  10555. (((INSTANCE) == TIM3) && \
  10556. (((CHANNEL) == TIM_CHANNEL_1) || \
  10557. ((CHANNEL) == TIM_CHANNEL_2) || \
  10558. ((CHANNEL) == TIM_CHANNEL_3) || \
  10559. ((CHANNEL) == TIM_CHANNEL_4))) \
  10560. || \
  10561. (((INSTANCE) == TIM4) && \
  10562. (((CHANNEL) == TIM_CHANNEL_1) || \
  10563. ((CHANNEL) == TIM_CHANNEL_2) || \
  10564. ((CHANNEL) == TIM_CHANNEL_3) || \
  10565. ((CHANNEL) == TIM_CHANNEL_4))) \
  10566. || \
  10567. (((INSTANCE) == TIM14) && \
  10568. (((CHANNEL) == TIM_CHANNEL_1))) \
  10569. || \
  10570. (((INSTANCE) == TIM15) && \
  10571. (((CHANNEL) == TIM_CHANNEL_1) || \
  10572. ((CHANNEL) == TIM_CHANNEL_2))) \
  10573. || \
  10574. (((INSTANCE) == TIM16) && \
  10575. (((CHANNEL) == TIM_CHANNEL_1))) \
  10576. || \
  10577. (((INSTANCE) == TIM17) && \
  10578. (((CHANNEL) == TIM_CHANNEL_1))))
  10579. /****************** TIM Instances : supporting complementary output(s) ********/
  10580. #define IS_TIM_CCXN_INSTANCE(INSTANCE, CHANNEL) \
  10581. ((((INSTANCE) == TIM1) && \
  10582. (((CHANNEL) == TIM_CHANNEL_1) || \
  10583. ((CHANNEL) == TIM_CHANNEL_2) || \
  10584. ((CHANNEL) == TIM_CHANNEL_3))) \
  10585. || \
  10586. (((INSTANCE) == TIM15) && \
  10587. ((CHANNEL) == TIM_CHANNEL_1)) \
  10588. || \
  10589. (((INSTANCE) == TIM16) && \
  10590. ((CHANNEL) == TIM_CHANNEL_1)) \
  10591. || \
  10592. (((INSTANCE) == TIM17) && \
  10593. ((CHANNEL) == TIM_CHANNEL_1)))
  10594. /****************** TIM Instances : supporting clock division *****************/
  10595. #define IS_TIM_CLOCK_DIVISION_INSTANCE(INSTANCE) (((INSTANCE) == TIM1) || \
  10596. ((INSTANCE) == TIM2) || \
  10597. ((INSTANCE) == TIM3) || \
  10598. ((INSTANCE) == TIM4) || \
  10599. ((INSTANCE) == TIM14) || \
  10600. ((INSTANCE) == TIM15) || \
  10601. ((INSTANCE) == TIM16) || \
  10602. ((INSTANCE) == TIM17))
  10603. /****** TIM Instances : supporting external clock mode 1 for ETRF input *******/
  10604. #define IS_TIM_CLOCKSOURCE_ETRMODE1_INSTANCE(INSTANCE) (((INSTANCE) == TIM1) || \
  10605. ((INSTANCE) == TIM2) || \
  10606. ((INSTANCE) == TIM3) || \
  10607. ((INSTANCE) == TIM4))
  10608. /****** TIM Instances : supporting external clock mode 2 for ETRF input *******/
  10609. #define IS_TIM_CLOCKSOURCE_ETRMODE2_INSTANCE(INSTANCE) (((INSTANCE) == TIM1) || \
  10610. ((INSTANCE) == TIM2) || \
  10611. ((INSTANCE) == TIM3) || \
  10612. ((INSTANCE) == TIM4))
  10613. /****************** TIM Instances : supporting external clock mode 1 for TIX inputs*/
  10614. #define IS_TIM_CLOCKSOURCE_TIX_INSTANCE(INSTANCE) (((INSTANCE) == TIM1) || \
  10615. ((INSTANCE) == TIM2) || \
  10616. ((INSTANCE) == TIM3) || \
  10617. ((INSTANCE) == TIM4) || \
  10618. ((INSTANCE) == TIM15))
  10619. /****************** TIM Instances : supporting internal trigger inputs(ITRX) *******/
  10620. #define IS_TIM_CLOCKSOURCE_ITRX_INSTANCE(INSTANCE) (((INSTANCE) == TIM1) || \
  10621. ((INSTANCE) == TIM2) || \
  10622. ((INSTANCE) == TIM3) || \
  10623. ((INSTANCE) == TIM4) || \
  10624. ((INSTANCE) == TIM15))
  10625. /****************** TIM Instances : supporting combined 3-phase PWM mode ******/
  10626. #define IS_TIM_COMBINED3PHASEPWM_INSTANCE(INSTANCE) ((INSTANCE) == TIM1)
  10627. /****************** TIM Instances : supporting commutation event generation ***/
  10628. #define IS_TIM_COMMUTATION_EVENT_INSTANCE(INSTANCE) (((INSTANCE) == TIM1) || \
  10629. ((INSTANCE) == TIM15) || \
  10630. ((INSTANCE) == TIM16) || \
  10631. ((INSTANCE) == TIM17))
  10632. /****************** TIM Instances : supporting counting mode selection ********/
  10633. #define IS_TIM_COUNTER_MODE_SELECT_INSTANCE(INSTANCE) (((INSTANCE) == TIM1) || \
  10634. ((INSTANCE) == TIM2) || \
  10635. ((INSTANCE) == TIM3) || \
  10636. ((INSTANCE) == TIM4))
  10637. /****************** TIM Instances : supporting encoder interface **************/
  10638. #define IS_TIM_ENCODER_INTERFACE_INSTANCE(INSTANCE) (((INSTANCE) == TIM1) || \
  10639. ((INSTANCE) == TIM2) || \
  10640. ((INSTANCE) == TIM3) || \
  10641. ((INSTANCE) == TIM4))
  10642. /****************** TIM Instances : supporting Hall sensor interface **********/
  10643. #define IS_TIM_HALL_SENSOR_INTERFACE_INSTANCE(INSTANCE) (((INSTANCE) == TIM1) || \
  10644. ((INSTANCE) == TIM2) || \
  10645. ((INSTANCE) == TIM3) || \
  10646. ((INSTANCE) == TIM4))
  10647. /**************** TIM Instances : external trigger input available ************/
  10648. #define IS_TIM_ETR_INSTANCE(INSTANCE) (((INSTANCE) == TIM1) || \
  10649. ((INSTANCE) == TIM2) || \
  10650. ((INSTANCE) == TIM3) || \
  10651. ((INSTANCE) == TIM4))
  10652. /************* TIM Instances : supporting ETR source selection ***************/
  10653. #define IS_TIM_ETRSEL_INSTANCE(INSTANCE) (((INSTANCE) == TIM1) || \
  10654. ((INSTANCE) == TIM2) || \
  10655. ((INSTANCE) == TIM3) || \
  10656. ((INSTANCE) == TIM4))
  10657. /****** TIM Instances : Master mode available (TIMx_CR2.MMS available )********/
  10658. #define IS_TIM_MASTER_INSTANCE(INSTANCE) (((INSTANCE) == TIM1) || \
  10659. ((INSTANCE) == TIM2) || \
  10660. ((INSTANCE) == TIM3) || \
  10661. ((INSTANCE) == TIM4) || \
  10662. ((INSTANCE) == TIM6) || \
  10663. ((INSTANCE) == TIM7) || \
  10664. ((INSTANCE) == TIM15))
  10665. /*********** TIM Instances : Slave mode available (TIMx_SMCR available )*******/
  10666. #define IS_TIM_SLAVE_INSTANCE(INSTANCE) (((INSTANCE) == TIM1) || \
  10667. ((INSTANCE) == TIM2) || \
  10668. ((INSTANCE) == TIM3) || \
  10669. ((INSTANCE) == TIM4) || \
  10670. ((INSTANCE) == TIM15))
  10671. /****************** TIM Instances : supporting OCxREF clear *******************/
  10672. #define IS_TIM_OCXREF_CLEAR_INSTANCE(INSTANCE) (((INSTANCE) == TIM1) || \
  10673. ((INSTANCE) == TIM2) || \
  10674. ((INSTANCE) == TIM3) || \
  10675. ((INSTANCE) == TIM4))
  10676. /****************** TIM Instances : supporting bitfield OCCS in SMCR register *******************/
  10677. #define IS_TIM_OCCS_INSTANCE(INSTANCE) (((INSTANCE) == TIM1) || \
  10678. ((INSTANCE) == TIM2) || \
  10679. ((INSTANCE) == TIM3))
  10680. /****************** TIM Instances : remapping capability **********************/
  10681. #define IS_TIM_REMAP_INSTANCE(INSTANCE) (((INSTANCE) == TIM1) || \
  10682. ((INSTANCE) == TIM2) || \
  10683. ((INSTANCE) == TIM3) || \
  10684. ((INSTANCE) == TIM4))
  10685. /****************** TIM Instances : supporting repetition counter *************/
  10686. #define IS_TIM_REPETITION_COUNTER_INSTANCE(INSTANCE) (((INSTANCE) == TIM1) || \
  10687. ((INSTANCE) == TIM15) || \
  10688. ((INSTANCE) == TIM16) || \
  10689. ((INSTANCE) == TIM17))
  10690. /****************** TIM Instances : supporting ADC triggering through TRGO2 ***/
  10691. #define IS_TIM_TRGO2_INSTANCE(INSTANCE) (((INSTANCE) == TIM1))
  10692. /******************* TIM Instances : Timer input XOR function *****************/
  10693. #define IS_TIM_XOR_INSTANCE(INSTANCE) (((INSTANCE) == TIM1) || \
  10694. ((INSTANCE) == TIM2) || \
  10695. ((INSTANCE) == TIM3) || \
  10696. ((INSTANCE) == TIM4) || \
  10697. ((INSTANCE) == TIM15))
  10698. /******************* TIM Instances : Timer input selection ********************/
  10699. #define IS_TIM_TISEL_INSTANCE(INSTANCE) (((INSTANCE) == TIM1) || \
  10700. ((INSTANCE) == TIM2) || \
  10701. ((INSTANCE) == TIM3) || \
  10702. ((INSTANCE) == TIM4) || \
  10703. ((INSTANCE) == TIM14) || \
  10704. ((INSTANCE) == TIM15) || \
  10705. ((INSTANCE) == TIM16) || \
  10706. ((INSTANCE) == TIM17))
  10707. /************ TIM Instances : Advanced timers ********************************/
  10708. #define IS_TIM_ADVANCED_INSTANCE(INSTANCE) (((INSTANCE) == TIM1))
  10709. /******************** UART Instances : Asynchronous mode **********************/
  10710. #define IS_UART_INSTANCE(INSTANCE) (((INSTANCE) == USART1) || \
  10711. ((INSTANCE) == USART2) || \
  10712. ((INSTANCE) == USART3) || \
  10713. ((INSTANCE) == USART4) || \
  10714. ((INSTANCE) == USART5) || \
  10715. ((INSTANCE) == USART6))
  10716. /******************** USART Instances : Synchronous mode **********************/
  10717. #define IS_USART_INSTANCE(INSTANCE) (((INSTANCE) == USART1) || \
  10718. ((INSTANCE) == USART2) || \
  10719. ((INSTANCE) == USART3) || \
  10720. ((INSTANCE) == USART4) || \
  10721. ((INSTANCE) == USART5) || \
  10722. ((INSTANCE) == USART6))
  10723. /****************** UART Instances : Hardware Flow control ********************/
  10724. #define IS_UART_HWFLOW_INSTANCE(INSTANCE) (((INSTANCE) == USART1) || \
  10725. ((INSTANCE) == USART2) || \
  10726. ((INSTANCE) == USART3) || \
  10727. ((INSTANCE) == USART4) || \
  10728. ((INSTANCE) == USART5) || \
  10729. ((INSTANCE) == USART6) || \
  10730. ((INSTANCE) == LPUART1)|| \
  10731. ((INSTANCE) == LPUART2))
  10732. /********************* USART Instances : Smard card mode ***********************/
  10733. #define IS_SMARTCARD_INSTANCE(INSTANCE) (((INSTANCE) == USART1) || \
  10734. ((INSTANCE) == USART2) || \
  10735. ((INSTANCE) == USART3))
  10736. /****************** UART Instances : Auto Baud Rate detection ****************/
  10737. #define IS_USART_AUTOBAUDRATE_DETECTION_INSTANCE(INSTANCE) (((INSTANCE) == USART1) || \
  10738. ((INSTANCE) == USART2) || \
  10739. ((INSTANCE) == USART3))
  10740. /******************** UART Instances : Half-Duplex mode **********************/
  10741. #define IS_UART_HALFDUPLEX_INSTANCE(INSTANCE) (((INSTANCE) == USART1) || \
  10742. ((INSTANCE) == USART2) || \
  10743. ((INSTANCE) == USART3) || \
  10744. ((INSTANCE) == USART4) || \
  10745. ((INSTANCE) == USART5) || \
  10746. ((INSTANCE) == USART6) || \
  10747. ((INSTANCE) == LPUART1)|| \
  10748. ((INSTANCE) == LPUART2))
  10749. /******************** UART Instances : LIN mode **********************/
  10750. #define IS_UART_LIN_INSTANCE(INSTANCE) (((INSTANCE) == USART1) || \
  10751. ((INSTANCE) == USART2) || \
  10752. ((INSTANCE) == USART3))
  10753. /******************** UART Instances : Wake-up from Stop mode **********************/
  10754. #define IS_UART_WAKEUP_FROMSTOP_INSTANCE(INSTANCE) (((INSTANCE) == USART1) || \
  10755. ((INSTANCE) == USART2) || \
  10756. ((INSTANCE) == USART3) || \
  10757. ((INSTANCE) == LPUART1) || \
  10758. ((INSTANCE) == LPUART2))
  10759. /****************** UART Instances : Driver Enable *****************/
  10760. #define IS_UART_DRIVER_ENABLE_INSTANCE(INSTANCE) (((INSTANCE) == USART1) || \
  10761. ((INSTANCE) == USART2) || \
  10762. ((INSTANCE) == USART3) || \
  10763. ((INSTANCE) == USART4) || \
  10764. ((INSTANCE) == USART5) || \
  10765. ((INSTANCE) == USART6) || \
  10766. ((INSTANCE) == LPUART1)|| \
  10767. ((INSTANCE) == LPUART2))
  10768. /****************** UART Instances : SPI Slave selection mode ***************/
  10769. #define IS_UART_SPI_SLAVE_INSTANCE(INSTANCE) (((INSTANCE) == USART1) || \
  10770. ((INSTANCE) == USART2) || \
  10771. ((INSTANCE) == USART3) || \
  10772. ((INSTANCE) == USART4) || \
  10773. ((INSTANCE) == USART5) || \
  10774. ((INSTANCE) == USART6))
  10775. /****************** UART Instances : Driver Enable *****************/
  10776. #define IS_UART_FIFO_INSTANCE(INSTANCE) (((INSTANCE) == USART1) || \
  10777. ((INSTANCE) == USART2) || \
  10778. ((INSTANCE) == USART3) || \
  10779. ((INSTANCE) == LPUART1) || \
  10780. ((INSTANCE) == LPUART2))
  10781. /*********************** UART Instances : IRDA mode ***************************/
  10782. #define IS_IRDA_INSTANCE(INSTANCE) (((INSTANCE) == USART1) || \
  10783. ((INSTANCE) == USART2) || \
  10784. ((INSTANCE) == USART3))
  10785. /******************** LPUART Instance *****************************************/
  10786. #define IS_LPUART_INSTANCE(INSTANCE) (((INSTANCE) == LPUART1) || \
  10787. ((INSTANCE) == LPUART2))
  10788. /****************************** IWDG Instances ********************************/
  10789. #define IS_IWDG_ALL_INSTANCE(INSTANCE) ((INSTANCE) == IWDG)
  10790. /****************************** WWDG Instances ********************************/
  10791. #define IS_WWDG_ALL_INSTANCE(INSTANCE) ((INSTANCE) == WWDG)
  10792. /****************************** UCPD Instances ********************************/
  10793. #define IS_UCPD_ALL_INSTANCE(INSTANCE) (((INSTANCE) == UCPD1) || \
  10794. ((INSTANCE) == UCPD2))
  10795. /****************************** USB Instances ********************************/
  10796. #define IS_USB_ALL_INSTANCE(INSTANCE) ((INSTANCE) == USB_DRD_FS)
  10797. /*********************** USB OTG PCD Instances ********************************/
  10798. #define IS_PCD_ALL_INSTANCE(INSTANCE) (((INSTANCE) == USB_DRD_FS))
  10799. /*********************** USB OTG HCD Instances ********************************/
  10800. #define IS_HCD_ALL_INSTANCE(INSTANCE) (((INSTANCE) == USB_DRD_FS))
  10801. /******************************************************************************/
  10802. /* For a painless codes migration between the STM32G0xx device product */
  10803. /* lines, the aliases defined below are put in place to overcome the */
  10804. /* differences in the interrupt handlers and IRQn definitions. */
  10805. /* No need to update developed interrupt code when moving across */
  10806. /* product lines within the same STM32G0 Family */
  10807. /******************************************************************************/
  10808. /* Aliases for IRQn_Type */
  10809. #define SVC_IRQn SVCall_IRQn
  10810. /**
  10811. * @}
  10812. */
  10813. /**
  10814. * @}
  10815. */
  10816. /**
  10817. * @}
  10818. */
  10819. #ifdef __cplusplus
  10820. }
  10821. #endif /* __cplusplus */
  10822. #endif /* STM32G0C1xx_H */
  10823. /**
  10824. * @}
  10825. */
  10826. /**
  10827. * @}
  10828. */