stm32f103xe.h 940 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769
  1. /**
  2. ******************************************************************************
  3. * @file stm32f103xe.h
  4. * @author MCD Application Team
  5. * @brief CMSIS Cortex-M3 Device Peripheral Access Layer Header File.
  6. * This file contains all the peripheral register's definitions, bits
  7. * definitions and memory mapping for STM32F1xx 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. * <h2><center>&copy; Copyright (c) 2017 STMicroelectronics.
  18. * All rights reserved.</center></h2>
  19. *
  20. * This software component is licensed by ST under BSD 3-Clause license,
  21. * the "License"; You may not use this file except in compliance with the
  22. * License. You may obtain a copy of the License at:
  23. * opensource.org/licenses/BSD-3-Clause
  24. *
  25. ******************************************************************************
  26. */
  27. /** @addtogroup CMSIS
  28. * @{
  29. */
  30. /** @addtogroup stm32f103xe
  31. * @{
  32. */
  33. #ifndef __STM32F103xE_H
  34. #define __STM32F103xE_H
  35. #ifdef __cplusplus
  36. extern "C" {
  37. #endif
  38. /** @addtogroup Configuration_section_for_CMSIS
  39. * @{
  40. */
  41. /**
  42. * @brief Configuration of the Cortex-M3 Processor and Core Peripherals
  43. */
  44. #define __CM3_REV 0x0200U /*!< Core Revision r2p0 */
  45. #define __MPU_PRESENT 0U /*!< Other STM32 devices does not provide an MPU */
  46. #define __NVIC_PRIO_BITS 4U /*!< STM32 uses 4 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 STM32F10x 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-M3 Processor Exceptions Numbers ***************************************************/
  62. NonMaskableInt_IRQn = -14, /*!< 2 Non Maskable Interrupt */
  63. HardFault_IRQn = -13, /*!< 3 Cortex-M3 Hard Fault Interrupt */
  64. MemoryManagement_IRQn = -12, /*!< 4 Cortex-M3 Memory Management Interrupt */
  65. BusFault_IRQn = -11, /*!< 5 Cortex-M3 Bus Fault Interrupt */
  66. UsageFault_IRQn = -10, /*!< 6 Cortex-M3 Usage Fault Interrupt */
  67. SVCall_IRQn = -5, /*!< 11 Cortex-M3 SV Call Interrupt */
  68. DebugMonitor_IRQn = -4, /*!< 12 Cortex-M3 Debug Monitor Interrupt */
  69. PendSV_IRQn = -2, /*!< 14 Cortex-M3 Pend SV Interrupt */
  70. SysTick_IRQn = -1, /*!< 15 Cortex-M3 System Tick Interrupt */
  71. /****** STM32 specific Interrupt Numbers *********************************************************/
  72. WWDG_IRQn = 0, /*!< Window WatchDog Interrupt */
  73. PVD_IRQn = 1, /*!< PVD through EXTI Line detection Interrupt */
  74. TAMPER_IRQn = 2, /*!< Tamper Interrupt */
  75. RTC_IRQn = 3, /*!< RTC global Interrupt */
  76. FLASH_IRQn = 4, /*!< FLASH global Interrupt */
  77. RCC_IRQn = 5, /*!< RCC global Interrupt */
  78. EXTI0_IRQn = 6, /*!< EXTI Line0 Interrupt */
  79. EXTI1_IRQn = 7, /*!< EXTI Line1 Interrupt */
  80. EXTI2_IRQn = 8, /*!< EXTI Line2 Interrupt */
  81. EXTI3_IRQn = 9, /*!< EXTI Line3 Interrupt */
  82. EXTI4_IRQn = 10, /*!< EXTI Line4 Interrupt */
  83. DMA1_Channel1_IRQn = 11, /*!< DMA1 Channel 1 global Interrupt */
  84. DMA1_Channel2_IRQn = 12, /*!< DMA1 Channel 2 global Interrupt */
  85. DMA1_Channel3_IRQn = 13, /*!< DMA1 Channel 3 global Interrupt */
  86. DMA1_Channel4_IRQn = 14, /*!< DMA1 Channel 4 global Interrupt */
  87. DMA1_Channel5_IRQn = 15, /*!< DMA1 Channel 5 global Interrupt */
  88. DMA1_Channel6_IRQn = 16, /*!< DMA1 Channel 6 global Interrupt */
  89. DMA1_Channel7_IRQn = 17, /*!< DMA1 Channel 7 global Interrupt */
  90. ADC1_2_IRQn = 18, /*!< ADC1 and ADC2 global Interrupt */
  91. USB_HP_CAN1_TX_IRQn = 19, /*!< USB Device High Priority or CAN1 TX Interrupts */
  92. USB_LP_CAN1_RX0_IRQn = 20, /*!< USB Device Low Priority or CAN1 RX0 Interrupts */
  93. CAN1_RX1_IRQn = 21, /*!< CAN1 RX1 Interrupt */
  94. CAN1_SCE_IRQn = 22, /*!< CAN1 SCE Interrupt */
  95. EXTI9_5_IRQn = 23, /*!< External Line[9:5] Interrupts */
  96. TIM1_BRK_IRQn = 24, /*!< TIM1 Break Interrupt */
  97. TIM1_UP_IRQn = 25, /*!< TIM1 Update Interrupt */
  98. TIM1_TRG_COM_IRQn = 26, /*!< TIM1 Trigger and Commutation Interrupt */
  99. TIM1_CC_IRQn = 27, /*!< TIM1 Capture Compare Interrupt */
  100. TIM2_IRQn = 28, /*!< TIM2 global Interrupt */
  101. TIM3_IRQn = 29, /*!< TIM3 global Interrupt */
  102. TIM4_IRQn = 30, /*!< TIM4 global Interrupt */
  103. I2C1_EV_IRQn = 31, /*!< I2C1 Event Interrupt */
  104. I2C1_ER_IRQn = 32, /*!< I2C1 Error Interrupt */
  105. I2C2_EV_IRQn = 33, /*!< I2C2 Event Interrupt */
  106. I2C2_ER_IRQn = 34, /*!< I2C2 Error Interrupt */
  107. SPI1_IRQn = 35, /*!< SPI1 global Interrupt */
  108. SPI2_IRQn = 36, /*!< SPI2 global Interrupt */
  109. USART1_IRQn = 37, /*!< USART1 global Interrupt */
  110. USART2_IRQn = 38, /*!< USART2 global Interrupt */
  111. USART3_IRQn = 39, /*!< USART3 global Interrupt */
  112. EXTI15_10_IRQn = 40, /*!< External Line[15:10] Interrupts */
  113. RTC_Alarm_IRQn = 41, /*!< RTC Alarm through EXTI Line Interrupt */
  114. USBWakeUp_IRQn = 42, /*!< USB Device WakeUp from suspend through EXTI Line Interrupt */
  115. TIM8_BRK_IRQn = 43, /*!< TIM8 Break Interrupt */
  116. TIM8_UP_IRQn = 44, /*!< TIM8 Update Interrupt */
  117. TIM8_TRG_COM_IRQn = 45, /*!< TIM8 Trigger and Commutation Interrupt */
  118. TIM8_CC_IRQn = 46, /*!< TIM8 Capture Compare Interrupt */
  119. ADC3_IRQn = 47, /*!< ADC3 global Interrupt */
  120. FSMC_IRQn = 48, /*!< FSMC global Interrupt */
  121. SDIO_IRQn = 49, /*!< SDIO global Interrupt */
  122. TIM5_IRQn = 50, /*!< TIM5 global Interrupt */
  123. SPI3_IRQn = 51, /*!< SPI3 global Interrupt */
  124. UART4_IRQn = 52, /*!< UART4 global Interrupt */
  125. UART5_IRQn = 53, /*!< UART5 global Interrupt */
  126. TIM6_IRQn = 54, /*!< TIM6 global Interrupt */
  127. TIM7_IRQn = 55, /*!< TIM7 global Interrupt */
  128. DMA2_Channel1_IRQn = 56, /*!< DMA2 Channel 1 global Interrupt */
  129. DMA2_Channel2_IRQn = 57, /*!< DMA2 Channel 2 global Interrupt */
  130. DMA2_Channel3_IRQn = 58, /*!< DMA2 Channel 3 global Interrupt */
  131. DMA2_Channel4_5_IRQn = 59, /*!< DMA2 Channel 4 and Channel 5 global Interrupt */
  132. } IRQn_Type;
  133. /**
  134. * @}
  135. */
  136. #include "core_cm3.h"
  137. #include "system_stm32f1xx.h"
  138. #include <stdint.h>
  139. /** @addtogroup Peripheral_registers_structures
  140. * @{
  141. */
  142. /**
  143. * @brief Analog to Digital Converter
  144. */
  145. typedef struct
  146. {
  147. __IO uint32_t SR;
  148. __IO uint32_t CR1;
  149. __IO uint32_t CR2;
  150. __IO uint32_t SMPR1;
  151. __IO uint32_t SMPR2;
  152. __IO uint32_t JOFR1;
  153. __IO uint32_t JOFR2;
  154. __IO uint32_t JOFR3;
  155. __IO uint32_t JOFR4;
  156. __IO uint32_t HTR;
  157. __IO uint32_t LTR;
  158. __IO uint32_t SQR1;
  159. __IO uint32_t SQR2;
  160. __IO uint32_t SQR3;
  161. __IO uint32_t JSQR;
  162. __IO uint32_t JDR1;
  163. __IO uint32_t JDR2;
  164. __IO uint32_t JDR3;
  165. __IO uint32_t JDR4;
  166. __IO uint32_t DR;
  167. } ADC_TypeDef;
  168. typedef struct
  169. {
  170. __IO uint32_t SR; /*!< ADC status register, used for ADC multimode (bits common to several ADC instances). Address offset: ADC1 base address */
  171. __IO uint32_t CR1; /*!< ADC control register 1, used for ADC multimode (bits common to several ADC instances). Address offset: ADC1 base address + 0x04 */
  172. __IO uint32_t CR2; /*!< ADC control register 2, used for ADC multimode (bits common to several ADC instances). Address offset: ADC1 base address + 0x08 */
  173. uint32_t RESERVED[16];
  174. __IO uint32_t DR; /*!< ADC data register, used for ADC multimode (bits common to several ADC instances). Address offset: ADC1 base address + 0x4C */
  175. } ADC_Common_TypeDef;
  176. /**
  177. * @brief Backup Registers
  178. */
  179. typedef struct
  180. {
  181. uint32_t RESERVED0;
  182. __IO uint32_t DR1;
  183. __IO uint32_t DR2;
  184. __IO uint32_t DR3;
  185. __IO uint32_t DR4;
  186. __IO uint32_t DR5;
  187. __IO uint32_t DR6;
  188. __IO uint32_t DR7;
  189. __IO uint32_t DR8;
  190. __IO uint32_t DR9;
  191. __IO uint32_t DR10;
  192. __IO uint32_t RTCCR;
  193. __IO uint32_t CR;
  194. __IO uint32_t CSR;
  195. uint32_t RESERVED13[2];
  196. __IO uint32_t DR11;
  197. __IO uint32_t DR12;
  198. __IO uint32_t DR13;
  199. __IO uint32_t DR14;
  200. __IO uint32_t DR15;
  201. __IO uint32_t DR16;
  202. __IO uint32_t DR17;
  203. __IO uint32_t DR18;
  204. __IO uint32_t DR19;
  205. __IO uint32_t DR20;
  206. __IO uint32_t DR21;
  207. __IO uint32_t DR22;
  208. __IO uint32_t DR23;
  209. __IO uint32_t DR24;
  210. __IO uint32_t DR25;
  211. __IO uint32_t DR26;
  212. __IO uint32_t DR27;
  213. __IO uint32_t DR28;
  214. __IO uint32_t DR29;
  215. __IO uint32_t DR30;
  216. __IO uint32_t DR31;
  217. __IO uint32_t DR32;
  218. __IO uint32_t DR33;
  219. __IO uint32_t DR34;
  220. __IO uint32_t DR35;
  221. __IO uint32_t DR36;
  222. __IO uint32_t DR37;
  223. __IO uint32_t DR38;
  224. __IO uint32_t DR39;
  225. __IO uint32_t DR40;
  226. __IO uint32_t DR41;
  227. __IO uint32_t DR42;
  228. } BKP_TypeDef;
  229. /**
  230. * @brief Controller Area Network TxMailBox
  231. */
  232. typedef struct
  233. {
  234. __IO uint32_t TIR;
  235. __IO uint32_t TDTR;
  236. __IO uint32_t TDLR;
  237. __IO uint32_t TDHR;
  238. } CAN_TxMailBox_TypeDef;
  239. /**
  240. * @brief Controller Area Network FIFOMailBox
  241. */
  242. typedef struct
  243. {
  244. __IO uint32_t RIR;
  245. __IO uint32_t RDTR;
  246. __IO uint32_t RDLR;
  247. __IO uint32_t RDHR;
  248. } CAN_FIFOMailBox_TypeDef;
  249. /**
  250. * @brief Controller Area Network FilterRegister
  251. */
  252. typedef struct
  253. {
  254. __IO uint32_t FR1;
  255. __IO uint32_t FR2;
  256. } CAN_FilterRegister_TypeDef;
  257. /**
  258. * @brief Controller Area Network
  259. */
  260. typedef struct
  261. {
  262. __IO uint32_t MCR;
  263. __IO uint32_t MSR;
  264. __IO uint32_t TSR;
  265. __IO uint32_t RF0R;
  266. __IO uint32_t RF1R;
  267. __IO uint32_t IER;
  268. __IO uint32_t ESR;
  269. __IO uint32_t BTR;
  270. uint32_t RESERVED0[88];
  271. CAN_TxMailBox_TypeDef sTxMailBox[3];
  272. CAN_FIFOMailBox_TypeDef sFIFOMailBox[2];
  273. uint32_t RESERVED1[12];
  274. __IO uint32_t FMR;
  275. __IO uint32_t FM1R;
  276. uint32_t RESERVED2;
  277. __IO uint32_t FS1R;
  278. uint32_t RESERVED3;
  279. __IO uint32_t FFA1R;
  280. uint32_t RESERVED4;
  281. __IO uint32_t FA1R;
  282. uint32_t RESERVED5[8];
  283. CAN_FilterRegister_TypeDef sFilterRegister[14];
  284. } CAN_TypeDef;
  285. /**
  286. * @brief CRC calculation unit
  287. */
  288. typedef struct
  289. {
  290. __IO uint32_t DR; /*!< CRC Data register, Address offset: 0x00 */
  291. __IO uint8_t IDR; /*!< CRC Independent data register, Address offset: 0x04 */
  292. uint8_t RESERVED0; /*!< Reserved, Address offset: 0x05 */
  293. uint16_t RESERVED1; /*!< Reserved, Address offset: 0x06 */
  294. __IO uint32_t CR; /*!< CRC Control register, Address offset: 0x08 */
  295. } CRC_TypeDef;
  296. /**
  297. * @brief Digital to Analog Converter
  298. */
  299. typedef struct
  300. {
  301. __IO uint32_t CR;
  302. __IO uint32_t SWTRIGR;
  303. __IO uint32_t DHR12R1;
  304. __IO uint32_t DHR12L1;
  305. __IO uint32_t DHR8R1;
  306. __IO uint32_t DHR12R2;
  307. __IO uint32_t DHR12L2;
  308. __IO uint32_t DHR8R2;
  309. __IO uint32_t DHR12RD;
  310. __IO uint32_t DHR12LD;
  311. __IO uint32_t DHR8RD;
  312. __IO uint32_t DOR1;
  313. __IO uint32_t DOR2;
  314. } DAC_TypeDef;
  315. /**
  316. * @brief Debug MCU
  317. */
  318. typedef struct
  319. {
  320. __IO uint32_t IDCODE;
  321. __IO uint32_t CR;
  322. }DBGMCU_TypeDef;
  323. /**
  324. * @brief DMA Controller
  325. */
  326. typedef struct
  327. {
  328. __IO uint32_t CCR;
  329. __IO uint32_t CNDTR;
  330. __IO uint32_t CPAR;
  331. __IO uint32_t CMAR;
  332. } DMA_Channel_TypeDef;
  333. typedef struct
  334. {
  335. __IO uint32_t ISR;
  336. __IO uint32_t IFCR;
  337. } DMA_TypeDef;
  338. /**
  339. * @brief External Interrupt/Event Controller
  340. */
  341. typedef struct
  342. {
  343. __IO uint32_t IMR;
  344. __IO uint32_t EMR;
  345. __IO uint32_t RTSR;
  346. __IO uint32_t FTSR;
  347. __IO uint32_t SWIER;
  348. __IO uint32_t PR;
  349. } EXTI_TypeDef;
  350. /**
  351. * @brief FLASH Registers
  352. */
  353. typedef struct
  354. {
  355. __IO uint32_t ACR;
  356. __IO uint32_t KEYR;
  357. __IO uint32_t OPTKEYR;
  358. __IO uint32_t SR;
  359. __IO uint32_t CR;
  360. __IO uint32_t AR;
  361. __IO uint32_t RESERVED;
  362. __IO uint32_t OBR;
  363. __IO uint32_t WRPR;
  364. } FLASH_TypeDef;
  365. /**
  366. * @brief Option Bytes Registers
  367. */
  368. typedef struct
  369. {
  370. __IO uint16_t RDP;
  371. __IO uint16_t USER;
  372. __IO uint16_t Data0;
  373. __IO uint16_t Data1;
  374. __IO uint16_t WRP0;
  375. __IO uint16_t WRP1;
  376. __IO uint16_t WRP2;
  377. __IO uint16_t WRP3;
  378. } OB_TypeDef;
  379. /**
  380. * @brief Flexible Static Memory Controller
  381. */
  382. typedef struct
  383. {
  384. __IO uint32_t BTCR[8];
  385. } FSMC_Bank1_TypeDef;
  386. /**
  387. * @brief Flexible Static Memory Controller Bank1E
  388. */
  389. typedef struct
  390. {
  391. __IO uint32_t BWTR[7];
  392. } FSMC_Bank1E_TypeDef;
  393. /**
  394. * @brief Flexible Static Memory Controller Bank2
  395. */
  396. typedef struct
  397. {
  398. __IO uint32_t PCR2; /*!< NAND Flash control register 2, Address offset: 0x60 */
  399. __IO uint32_t SR2; /*!< NAND Flash FIFO status and interrupt register 2, Address offset: 0x64 */
  400. __IO uint32_t PMEM2; /*!< NAND Flash Common memory space timing register 2, Address offset: 0x68 */
  401. __IO uint32_t PATT2; /*!< NAND Flash Attribute memory space timing register 2, Address offset: 0x6C */
  402. uint32_t RESERVED0; /*!< Reserved, 0x70 */
  403. __IO uint32_t ECCR2; /*!< NAND Flash ECC result registers 2, Address offset: 0x74 */
  404. uint32_t RESERVED1; /*!< Reserved, 0x78 */
  405. uint32_t RESERVED2; /*!< Reserved, 0x7C */
  406. __IO uint32_t PCR3; /*!< NAND Flash control register 3, Address offset: 0x80 */
  407. __IO uint32_t SR3; /*!< NAND Flash FIFO status and interrupt register 3, Address offset: 0x84 */
  408. __IO uint32_t PMEM3; /*!< NAND Flash Common memory space timing register 3, Address offset: 0x88 */
  409. __IO uint32_t PATT3; /*!< NAND Flash Attribute memory space timing register 3, Address offset: 0x8C */
  410. uint32_t RESERVED3; /*!< Reserved, 0x90 */
  411. __IO uint32_t ECCR3; /*!< NAND Flash ECC result registers 3, Address offset: 0x94 */
  412. } FSMC_Bank2_3_TypeDef;
  413. /**
  414. * @brief Flexible Static Memory Controller Bank4
  415. */
  416. typedef struct
  417. {
  418. __IO uint32_t PCR4;
  419. __IO uint32_t SR4;
  420. __IO uint32_t PMEM4;
  421. __IO uint32_t PATT4;
  422. __IO uint32_t PIO4;
  423. } FSMC_Bank4_TypeDef;
  424. /**
  425. * @brief General Purpose I/O
  426. */
  427. typedef struct
  428. {
  429. __IO uint32_t CRL;
  430. __IO uint32_t CRH;
  431. __IO uint32_t IDR;
  432. __IO uint32_t ODR;
  433. __IO uint32_t BSRR;
  434. __IO uint32_t BRR;
  435. __IO uint32_t LCKR;
  436. } GPIO_TypeDef;
  437. /**
  438. * @brief Alternate Function I/O
  439. */
  440. typedef struct
  441. {
  442. __IO uint32_t EVCR;
  443. __IO uint32_t MAPR;
  444. __IO uint32_t EXTICR[4];
  445. uint32_t RESERVED0;
  446. __IO uint32_t MAPR2;
  447. } AFIO_TypeDef;
  448. /**
  449. * @brief Inter Integrated Circuit Interface
  450. */
  451. typedef struct
  452. {
  453. __IO uint32_t CR1;
  454. __IO uint32_t CR2;
  455. __IO uint32_t OAR1;
  456. __IO uint32_t OAR2;
  457. __IO uint32_t DR;
  458. __IO uint32_t SR1;
  459. __IO uint32_t SR2;
  460. __IO uint32_t CCR;
  461. __IO uint32_t TRISE;
  462. } I2C_TypeDef;
  463. /**
  464. * @brief Independent WATCHDOG
  465. */
  466. typedef struct
  467. {
  468. __IO uint32_t KR; /*!< Key register, Address offset: 0x00 */
  469. __IO uint32_t PR; /*!< Prescaler register, Address offset: 0x04 */
  470. __IO uint32_t RLR; /*!< Reload register, Address offset: 0x08 */
  471. __IO uint32_t SR; /*!< Status register, Address offset: 0x0C */
  472. } IWDG_TypeDef;
  473. /**
  474. * @brief Power Control
  475. */
  476. typedef struct
  477. {
  478. __IO uint32_t CR;
  479. __IO uint32_t CSR;
  480. } PWR_TypeDef;
  481. /**
  482. * @brief Reset and Clock Control
  483. */
  484. typedef struct
  485. {
  486. __IO uint32_t CR;
  487. __IO uint32_t CFGR;
  488. __IO uint32_t CIR;
  489. __IO uint32_t APB2RSTR;
  490. __IO uint32_t APB1RSTR;
  491. __IO uint32_t AHBENR;
  492. __IO uint32_t APB2ENR;
  493. __IO uint32_t APB1ENR;
  494. __IO uint32_t BDCR;
  495. __IO uint32_t CSR;
  496. } RCC_TypeDef;
  497. /**
  498. * @brief Real-Time Clock
  499. */
  500. typedef struct
  501. {
  502. __IO uint32_t CRH;
  503. __IO uint32_t CRL;
  504. __IO uint32_t PRLH;
  505. __IO uint32_t PRLL;
  506. __IO uint32_t DIVH;
  507. __IO uint32_t DIVL;
  508. __IO uint32_t CNTH;
  509. __IO uint32_t CNTL;
  510. __IO uint32_t ALRH;
  511. __IO uint32_t ALRL;
  512. } RTC_TypeDef;
  513. /**
  514. * @brief SD host Interface
  515. */
  516. typedef struct
  517. {
  518. __IO uint32_t POWER;
  519. __IO uint32_t CLKCR;
  520. __IO uint32_t ARG;
  521. __IO uint32_t CMD;
  522. __I uint32_t RESPCMD;
  523. __I uint32_t RESP1;
  524. __I uint32_t RESP2;
  525. __I uint32_t RESP3;
  526. __I uint32_t RESP4;
  527. __IO uint32_t DTIMER;
  528. __IO uint32_t DLEN;
  529. __IO uint32_t DCTRL;
  530. __I uint32_t DCOUNT;
  531. __I uint32_t STA;
  532. __IO uint32_t ICR;
  533. __IO uint32_t MASK;
  534. uint32_t RESERVED0[2];
  535. __I uint32_t FIFOCNT;
  536. uint32_t RESERVED1[13];
  537. __IO uint32_t FIFO;
  538. } SDIO_TypeDef;
  539. /**
  540. * @brief Serial Peripheral Interface
  541. */
  542. typedef struct
  543. {
  544. __IO uint32_t CR1;
  545. __IO uint32_t CR2;
  546. __IO uint32_t SR;
  547. __IO uint32_t DR;
  548. __IO uint32_t CRCPR;
  549. __IO uint32_t RXCRCR;
  550. __IO uint32_t TXCRCR;
  551. __IO uint32_t I2SCFGR;
  552. __IO uint32_t I2SPR;
  553. } SPI_TypeDef;
  554. /**
  555. * @brief TIM Timers
  556. */
  557. typedef struct
  558. {
  559. __IO uint32_t CR1; /*!< TIM control register 1, Address offset: 0x00 */
  560. __IO uint32_t CR2; /*!< TIM control register 2, Address offset: 0x04 */
  561. __IO uint32_t SMCR; /*!< TIM slave Mode Control register, Address offset: 0x08 */
  562. __IO uint32_t DIER; /*!< TIM DMA/interrupt enable register, Address offset: 0x0C */
  563. __IO uint32_t SR; /*!< TIM status register, Address offset: 0x10 */
  564. __IO uint32_t EGR; /*!< TIM event generation register, Address offset: 0x14 */
  565. __IO uint32_t CCMR1; /*!< TIM capture/compare mode register 1, Address offset: 0x18 */
  566. __IO uint32_t CCMR2; /*!< TIM capture/compare mode register 2, Address offset: 0x1C */
  567. __IO uint32_t CCER; /*!< TIM capture/compare enable register, Address offset: 0x20 */
  568. __IO uint32_t CNT; /*!< TIM counter register, Address offset: 0x24 */
  569. __IO uint32_t PSC; /*!< TIM prescaler register, Address offset: 0x28 */
  570. __IO uint32_t ARR; /*!< TIM auto-reload register, Address offset: 0x2C */
  571. __IO uint32_t RCR; /*!< TIM repetition counter register, Address offset: 0x30 */
  572. __IO uint32_t CCR1; /*!< TIM capture/compare register 1, Address offset: 0x34 */
  573. __IO uint32_t CCR2; /*!< TIM capture/compare register 2, Address offset: 0x38 */
  574. __IO uint32_t CCR3; /*!< TIM capture/compare register 3, Address offset: 0x3C */
  575. __IO uint32_t CCR4; /*!< TIM capture/compare register 4, Address offset: 0x40 */
  576. __IO uint32_t BDTR; /*!< TIM break and dead-time register, Address offset: 0x44 */
  577. __IO uint32_t DCR; /*!< TIM DMA control register, Address offset: 0x48 */
  578. __IO uint32_t DMAR; /*!< TIM DMA address for full transfer register, Address offset: 0x4C */
  579. __IO uint32_t OR; /*!< TIM option register, Address offset: 0x50 */
  580. }TIM_TypeDef;
  581. /**
  582. * @brief Universal Synchronous Asynchronous Receiver Transmitter
  583. */
  584. typedef struct
  585. {
  586. __IO uint32_t SR; /*!< USART Status register, Address offset: 0x00 */
  587. __IO uint32_t DR; /*!< USART Data register, Address offset: 0x04 */
  588. __IO uint32_t BRR; /*!< USART Baud rate register, Address offset: 0x08 */
  589. __IO uint32_t CR1; /*!< USART Control register 1, Address offset: 0x0C */
  590. __IO uint32_t CR2; /*!< USART Control register 2, Address offset: 0x10 */
  591. __IO uint32_t CR3; /*!< USART Control register 3, Address offset: 0x14 */
  592. __IO uint32_t GTPR; /*!< USART Guard time and prescaler register, Address offset: 0x18 */
  593. } USART_TypeDef;
  594. /**
  595. * @brief Universal Serial Bus Full Speed Device
  596. */
  597. typedef struct
  598. {
  599. __IO uint16_t EP0R; /*!< USB Endpoint 0 register, Address offset: 0x00 */
  600. __IO uint16_t RESERVED0; /*!< Reserved */
  601. __IO uint16_t EP1R; /*!< USB Endpoint 1 register, Address offset: 0x04 */
  602. __IO uint16_t RESERVED1; /*!< Reserved */
  603. __IO uint16_t EP2R; /*!< USB Endpoint 2 register, Address offset: 0x08 */
  604. __IO uint16_t RESERVED2; /*!< Reserved */
  605. __IO uint16_t EP3R; /*!< USB Endpoint 3 register, Address offset: 0x0C */
  606. __IO uint16_t RESERVED3; /*!< Reserved */
  607. __IO uint16_t EP4R; /*!< USB Endpoint 4 register, Address offset: 0x10 */
  608. __IO uint16_t RESERVED4; /*!< Reserved */
  609. __IO uint16_t EP5R; /*!< USB Endpoint 5 register, Address offset: 0x14 */
  610. __IO uint16_t RESERVED5; /*!< Reserved */
  611. __IO uint16_t EP6R; /*!< USB Endpoint 6 register, Address offset: 0x18 */
  612. __IO uint16_t RESERVED6; /*!< Reserved */
  613. __IO uint16_t EP7R; /*!< USB Endpoint 7 register, Address offset: 0x1C */
  614. __IO uint16_t RESERVED7[17]; /*!< Reserved */
  615. __IO uint16_t CNTR; /*!< Control register, Address offset: 0x40 */
  616. __IO uint16_t RESERVED8; /*!< Reserved */
  617. __IO uint16_t ISTR; /*!< Interrupt status register, Address offset: 0x44 */
  618. __IO uint16_t RESERVED9; /*!< Reserved */
  619. __IO uint16_t FNR; /*!< Frame number register, Address offset: 0x48 */
  620. __IO uint16_t RESERVEDA; /*!< Reserved */
  621. __IO uint16_t DADDR; /*!< Device address register, Address offset: 0x4C */
  622. __IO uint16_t RESERVEDB; /*!< Reserved */
  623. __IO uint16_t BTABLE; /*!< Buffer Table address register, Address offset: 0x50 */
  624. __IO uint16_t RESERVEDC; /*!< Reserved */
  625. } USB_TypeDef;
  626. /**
  627. * @brief Window WATCHDOG
  628. */
  629. typedef struct
  630. {
  631. __IO uint32_t CR; /*!< WWDG Control register, Address offset: 0x00 */
  632. __IO uint32_t CFR; /*!< WWDG Configuration register, Address offset: 0x04 */
  633. __IO uint32_t SR; /*!< WWDG Status register, Address offset: 0x08 */
  634. } WWDG_TypeDef;
  635. /**
  636. * @}
  637. */
  638. /** @addtogroup Peripheral_memory_map
  639. * @{
  640. */
  641. #define FLASH_BASE 0x08000000UL /*!< FLASH base address in the alias region */
  642. #define FLASH_BANK1_END 0x0807FFFFUL /*!< FLASH END address of bank1 */
  643. #define SRAM_BASE 0x20000000UL /*!< SRAM base address in the alias region */
  644. #define PERIPH_BASE 0x40000000UL /*!< Peripheral base address in the alias region */
  645. #define SRAM_BB_BASE 0x22000000UL /*!< SRAM base address in the bit-band region */
  646. #define PERIPH_BB_BASE 0x42000000UL /*!< Peripheral base address in the bit-band region */
  647. #define FSMC_BASE 0x60000000UL /*!< FSMC base address */
  648. #define FSMC_R_BASE 0xA0000000UL /*!< FSMC registers base address */
  649. /*!< Peripheral memory map */
  650. #define APB1PERIPH_BASE PERIPH_BASE
  651. #define APB2PERIPH_BASE (PERIPH_BASE + 0x00010000UL)
  652. #define AHBPERIPH_BASE (PERIPH_BASE + 0x00020000UL)
  653. #define TIM2_BASE (APB1PERIPH_BASE + 0x00000000UL)
  654. #define TIM3_BASE (APB1PERIPH_BASE + 0x00000400UL)
  655. #define TIM4_BASE (APB1PERIPH_BASE + 0x00000800UL)
  656. #define TIM5_BASE (APB1PERIPH_BASE + 0x00000C00UL)
  657. #define TIM6_BASE (APB1PERIPH_BASE + 0x00001000UL)
  658. #define TIM7_BASE (APB1PERIPH_BASE + 0x00001400UL)
  659. #define RTC_BASE (APB1PERIPH_BASE + 0x00002800UL)
  660. #define WWDG_BASE (APB1PERIPH_BASE + 0x00002C00UL)
  661. #define IWDG_BASE (APB1PERIPH_BASE + 0x00003000UL)
  662. #define SPI2_BASE (APB1PERIPH_BASE + 0x00003800UL)
  663. #define SPI3_BASE (APB1PERIPH_BASE + 0x00003C00UL)
  664. #define USART2_BASE (APB1PERIPH_BASE + 0x00004400UL)
  665. #define USART3_BASE (APB1PERIPH_BASE + 0x00004800UL)
  666. #define UART4_BASE (APB1PERIPH_BASE + 0x00004C00UL)
  667. #define UART5_BASE (APB1PERIPH_BASE + 0x00005000UL)
  668. #define I2C1_BASE (APB1PERIPH_BASE + 0x00005400UL)
  669. #define I2C2_BASE (APB1PERIPH_BASE + 0x00005800UL)
  670. #define CAN1_BASE (APB1PERIPH_BASE + 0x00006400UL)
  671. #define BKP_BASE (APB1PERIPH_BASE + 0x00006C00UL)
  672. #define PWR_BASE (APB1PERIPH_BASE + 0x00007000UL)
  673. #define DAC_BASE (APB1PERIPH_BASE + 0x00007400UL)
  674. #define AFIO_BASE (APB2PERIPH_BASE + 0x00000000UL)
  675. #define EXTI_BASE (APB2PERIPH_BASE + 0x00000400UL)
  676. #define GPIOA_BASE (APB2PERIPH_BASE + 0x00000800UL)
  677. #define GPIOB_BASE (APB2PERIPH_BASE + 0x00000C00UL)
  678. #define GPIOC_BASE (APB2PERIPH_BASE + 0x00001000UL)
  679. #define GPIOD_BASE (APB2PERIPH_BASE + 0x00001400UL)
  680. #define GPIOE_BASE (APB2PERIPH_BASE + 0x00001800UL)
  681. #define GPIOF_BASE (APB2PERIPH_BASE + 0x00001C00UL)
  682. #define GPIOG_BASE (APB2PERIPH_BASE + 0x00002000UL)
  683. #define ADC1_BASE (APB2PERIPH_BASE + 0x00002400UL)
  684. #define ADC2_BASE (APB2PERIPH_BASE + 0x00002800UL)
  685. #define TIM1_BASE (APB2PERIPH_BASE + 0x00002C00UL)
  686. #define SPI1_BASE (APB2PERIPH_BASE + 0x00003000UL)
  687. #define TIM8_BASE (APB2PERIPH_BASE + 0x00003400UL)
  688. #define USART1_BASE (APB2PERIPH_BASE + 0x00003800UL)
  689. #define ADC3_BASE (APB2PERIPH_BASE + 0x00003C00UL)
  690. #define SDIO_BASE (PERIPH_BASE + 0x00018000UL)
  691. #define DMA1_BASE (AHBPERIPH_BASE + 0x00000000UL)
  692. #define DMA1_Channel1_BASE (AHBPERIPH_BASE + 0x00000008UL)
  693. #define DMA1_Channel2_BASE (AHBPERIPH_BASE + 0x0000001CUL)
  694. #define DMA1_Channel3_BASE (AHBPERIPH_BASE + 0x00000030UL)
  695. #define DMA1_Channel4_BASE (AHBPERIPH_BASE + 0x00000044UL)
  696. #define DMA1_Channel5_BASE (AHBPERIPH_BASE + 0x00000058UL)
  697. #define DMA1_Channel6_BASE (AHBPERIPH_BASE + 0x0000006CUL)
  698. #define DMA1_Channel7_BASE (AHBPERIPH_BASE + 0x00000080UL)
  699. #define DMA2_BASE (AHBPERIPH_BASE + 0x00000400UL)
  700. #define DMA2_Channel1_BASE (AHBPERIPH_BASE + 0x00000408UL)
  701. #define DMA2_Channel2_BASE (AHBPERIPH_BASE + 0x0000041CUL)
  702. #define DMA2_Channel3_BASE (AHBPERIPH_BASE + 0x00000430UL)
  703. #define DMA2_Channel4_BASE (AHBPERIPH_BASE + 0x00000444UL)
  704. #define DMA2_Channel5_BASE (AHBPERIPH_BASE + 0x00000458UL)
  705. #define RCC_BASE (AHBPERIPH_BASE + 0x00001000UL)
  706. #define CRC_BASE (AHBPERIPH_BASE + 0x00003000UL)
  707. #define FLASH_R_BASE (AHBPERIPH_BASE + 0x00002000UL) /*!< Flash registers base address */
  708. #define FLASHSIZE_BASE 0x1FFFF7E0UL /*!< FLASH Size register base address */
  709. #define UID_BASE 0x1FFFF7E8UL /*!< Unique device ID register base address */
  710. #define OB_BASE 0x1FFFF800UL /*!< Flash Option Bytes base address */
  711. #define FSMC_BANK1 (FSMC_BASE) /*!< FSMC Bank1 base address */
  712. #define FSMC_BANK1_1 (FSMC_BANK1) /*!< FSMC Bank1_1 base address */
  713. #define FSMC_BANK1_2 (FSMC_BANK1 + 0x04000000UL) /*!< FSMC Bank1_2 base address */
  714. #define FSMC_BANK1_3 (FSMC_BANK1 + 0x08000000UL) /*!< FSMC Bank1_3 base address */
  715. #define FSMC_BANK1_4 (FSMC_BANK1 + 0x0C000000UL) /*!< FSMC Bank1_4 base address */
  716. #define FSMC_BANK2 (FSMC_BASE + 0x10000000UL) /*!< FSMC Bank2 base address */
  717. #define FSMC_BANK3 (FSMC_BASE + 0x20000000UL) /*!< FSMC Bank3 base address */
  718. #define FSMC_BANK4 (FSMC_BASE + 0x30000000UL) /*!< FSMC Bank4 base address */
  719. #define FSMC_BANK1_R_BASE (FSMC_R_BASE + 0x00000000UL) /*!< FSMC Bank1 registers base address */
  720. #define FSMC_BANK1E_R_BASE (FSMC_R_BASE + 0x00000104UL) /*!< FSMC Bank1E registers base address */
  721. #define FSMC_BANK2_3_R_BASE (FSMC_R_BASE + 0x00000060UL) /*!< FSMC Bank2/Bank3 registers base address */
  722. #define FSMC_BANK4_R_BASE (FSMC_R_BASE + 0x000000A0UL) /*!< FSMC Bank4 registers base address */
  723. #define DBGMCU_BASE 0xE0042000UL /*!< Debug MCU registers base address */
  724. /* USB device FS */
  725. #define USB_BASE (APB1PERIPH_BASE + 0x00005C00UL) /*!< USB_IP Peripheral Registers base address */
  726. #define USB_PMAADDR (APB1PERIPH_BASE + 0x00006000UL) /*!< USB_IP Packet Memory Area base address */
  727. /**
  728. * @}
  729. */
  730. /** @addtogroup Peripheral_declaration
  731. * @{
  732. */
  733. #define TIM2 ((TIM_TypeDef *)TIM2_BASE)
  734. #define TIM3 ((TIM_TypeDef *)TIM3_BASE)
  735. #define TIM4 ((TIM_TypeDef *)TIM4_BASE)
  736. #define TIM5 ((TIM_TypeDef *)TIM5_BASE)
  737. #define TIM6 ((TIM_TypeDef *)TIM6_BASE)
  738. #define TIM7 ((TIM_TypeDef *)TIM7_BASE)
  739. #define RTC ((RTC_TypeDef *)RTC_BASE)
  740. #define WWDG ((WWDG_TypeDef *)WWDG_BASE)
  741. #define IWDG ((IWDG_TypeDef *)IWDG_BASE)
  742. #define SPI2 ((SPI_TypeDef *)SPI2_BASE)
  743. #define SPI3 ((SPI_TypeDef *)SPI3_BASE)
  744. #define USART2 ((USART_TypeDef *)USART2_BASE)
  745. #define USART3 ((USART_TypeDef *)USART3_BASE)
  746. #define UART4 ((USART_TypeDef *)UART4_BASE)
  747. #define UART5 ((USART_TypeDef *)UART5_BASE)
  748. #define I2C1 ((I2C_TypeDef *)I2C1_BASE)
  749. #define I2C2 ((I2C_TypeDef *)I2C2_BASE)
  750. #define USB ((USB_TypeDef *)USB_BASE)
  751. #define CAN1 ((CAN_TypeDef *)CAN1_BASE)
  752. #define BKP ((BKP_TypeDef *)BKP_BASE)
  753. #define PWR ((PWR_TypeDef *)PWR_BASE)
  754. #define DAC1 ((DAC_TypeDef *)DAC_BASE)
  755. #define DAC ((DAC_TypeDef *)DAC_BASE) /* Kept for legacy purpose */
  756. #define AFIO ((AFIO_TypeDef *)AFIO_BASE)
  757. #define EXTI ((EXTI_TypeDef *)EXTI_BASE)
  758. #define GPIOA ((GPIO_TypeDef *)GPIOA_BASE)
  759. #define GPIOB ((GPIO_TypeDef *)GPIOB_BASE)
  760. #define GPIOC ((GPIO_TypeDef *)GPIOC_BASE)
  761. #define GPIOD ((GPIO_TypeDef *)GPIOD_BASE)
  762. #define GPIOE ((GPIO_TypeDef *)GPIOE_BASE)
  763. #define GPIOF ((GPIO_TypeDef *)GPIOF_BASE)
  764. #define GPIOG ((GPIO_TypeDef *)GPIOG_BASE)
  765. #define ADC1 ((ADC_TypeDef *)ADC1_BASE)
  766. #define ADC2 ((ADC_TypeDef *)ADC2_BASE)
  767. #define ADC3 ((ADC_TypeDef *)ADC3_BASE)
  768. #define ADC12_COMMON ((ADC_Common_TypeDef *)ADC1_BASE)
  769. #define TIM1 ((TIM_TypeDef *)TIM1_BASE)
  770. #define SPI1 ((SPI_TypeDef *)SPI1_BASE)
  771. #define TIM8 ((TIM_TypeDef *)TIM8_BASE)
  772. #define USART1 ((USART_TypeDef *)USART1_BASE)
  773. #define SDIO ((SDIO_TypeDef *)SDIO_BASE)
  774. #define DMA1 ((DMA_TypeDef *)DMA1_BASE)
  775. #define DMA2 ((DMA_TypeDef *)DMA2_BASE)
  776. #define DMA1_Channel1 ((DMA_Channel_TypeDef *)DMA1_Channel1_BASE)
  777. #define DMA1_Channel2 ((DMA_Channel_TypeDef *)DMA1_Channel2_BASE)
  778. #define DMA1_Channel3 ((DMA_Channel_TypeDef *)DMA1_Channel3_BASE)
  779. #define DMA1_Channel4 ((DMA_Channel_TypeDef *)DMA1_Channel4_BASE)
  780. #define DMA1_Channel5 ((DMA_Channel_TypeDef *)DMA1_Channel5_BASE)
  781. #define DMA1_Channel6 ((DMA_Channel_TypeDef *)DMA1_Channel6_BASE)
  782. #define DMA1_Channel7 ((DMA_Channel_TypeDef *)DMA1_Channel7_BASE)
  783. #define DMA2_Channel1 ((DMA_Channel_TypeDef *)DMA2_Channel1_BASE)
  784. #define DMA2_Channel2 ((DMA_Channel_TypeDef *)DMA2_Channel2_BASE)
  785. #define DMA2_Channel3 ((DMA_Channel_TypeDef *)DMA2_Channel3_BASE)
  786. #define DMA2_Channel4 ((DMA_Channel_TypeDef *)DMA2_Channel4_BASE)
  787. #define DMA2_Channel5 ((DMA_Channel_TypeDef *)DMA2_Channel5_BASE)
  788. #define RCC ((RCC_TypeDef *)RCC_BASE)
  789. #define CRC ((CRC_TypeDef *)CRC_BASE)
  790. #define FLASH ((FLASH_TypeDef *)FLASH_R_BASE)
  791. #define OB ((OB_TypeDef *)OB_BASE)
  792. #define FSMC_Bank1 ((FSMC_Bank1_TypeDef *)FSMC_BANK1_R_BASE)
  793. #define FSMC_Bank1E ((FSMC_Bank1E_TypeDef *)FSMC_BANK1E_R_BASE)
  794. #define FSMC_Bank2_3 ((FSMC_Bank2_3_TypeDef *)FSMC_BANK2_3_R_BASE)
  795. #define FSMC_Bank4 ((FSMC_Bank4_TypeDef *)FSMC_BANK4_R_BASE)
  796. #define DBGMCU ((DBGMCU_TypeDef *)DBGMCU_BASE)
  797. /**
  798. * @}
  799. */
  800. /** @addtogroup Exported_constants
  801. * @{
  802. */
  803. /** @addtogroup Hardware_Constant_Definition
  804. * @{
  805. */
  806. #define LSI_STARTUP_TIME 85U /*!< LSI Maximum startup time in us */
  807. /**
  808. * @}
  809. */
  810. /** @addtogroup Peripheral_Registers_Bits_Definition
  811. * @{
  812. */
  813. /******************************************************************************/
  814. /* Peripheral Registers_Bits_Definition */
  815. /******************************************************************************/
  816. /******************************************************************************/
  817. /* */
  818. /* CRC calculation unit (CRC) */
  819. /* */
  820. /******************************************************************************/
  821. /******************* Bit definition for CRC_DR register *********************/
  822. #define CRC_DR_DR_Pos (0U)
  823. #define CRC_DR_DR_Msk (0xFFFFFFFFUL << CRC_DR_DR_Pos) /*!< 0xFFFFFFFF */
  824. #define CRC_DR_DR CRC_DR_DR_Msk /*!< Data register bits */
  825. /******************* Bit definition for CRC_IDR register ********************/
  826. #define CRC_IDR_IDR_Pos (0U)
  827. #define CRC_IDR_IDR_Msk (0xFFUL << CRC_IDR_IDR_Pos) /*!< 0x000000FF */
  828. #define CRC_IDR_IDR CRC_IDR_IDR_Msk /*!< General-purpose 8-bit data register bits */
  829. /******************** Bit definition for CRC_CR register ********************/
  830. #define CRC_CR_RESET_Pos (0U)
  831. #define CRC_CR_RESET_Msk (0x1UL << CRC_CR_RESET_Pos) /*!< 0x00000001 */
  832. #define CRC_CR_RESET CRC_CR_RESET_Msk /*!< RESET bit */
  833. /******************************************************************************/
  834. /* */
  835. /* Power Control */
  836. /* */
  837. /******************************************************************************/
  838. /******************** Bit definition for PWR_CR register ********************/
  839. #define PWR_CR_LPDS_Pos (0U)
  840. #define PWR_CR_LPDS_Msk (0x1UL << PWR_CR_LPDS_Pos) /*!< 0x00000001 */
  841. #define PWR_CR_LPDS PWR_CR_LPDS_Msk /*!< Low-Power Deepsleep */
  842. #define PWR_CR_PDDS_Pos (1U)
  843. #define PWR_CR_PDDS_Msk (0x1UL << PWR_CR_PDDS_Pos) /*!< 0x00000002 */
  844. #define PWR_CR_PDDS PWR_CR_PDDS_Msk /*!< Power Down Deepsleep */
  845. #define PWR_CR_CWUF_Pos (2U)
  846. #define PWR_CR_CWUF_Msk (0x1UL << PWR_CR_CWUF_Pos) /*!< 0x00000004 */
  847. #define PWR_CR_CWUF PWR_CR_CWUF_Msk /*!< Clear Wakeup Flag */
  848. #define PWR_CR_CSBF_Pos (3U)
  849. #define PWR_CR_CSBF_Msk (0x1UL << PWR_CR_CSBF_Pos) /*!< 0x00000008 */
  850. #define PWR_CR_CSBF PWR_CR_CSBF_Msk /*!< Clear Standby Flag */
  851. #define PWR_CR_PVDE_Pos (4U)
  852. #define PWR_CR_PVDE_Msk (0x1UL << PWR_CR_PVDE_Pos) /*!< 0x00000010 */
  853. #define PWR_CR_PVDE PWR_CR_PVDE_Msk /*!< Power Voltage Detector Enable */
  854. #define PWR_CR_PLS_Pos (5U)
  855. #define PWR_CR_PLS_Msk (0x7UL << PWR_CR_PLS_Pos) /*!< 0x000000E0 */
  856. #define PWR_CR_PLS PWR_CR_PLS_Msk /*!< PLS[2:0] bits (PVD Level Selection) */
  857. #define PWR_CR_PLS_0 (0x1UL << PWR_CR_PLS_Pos) /*!< 0x00000020 */
  858. #define PWR_CR_PLS_1 (0x2UL << PWR_CR_PLS_Pos) /*!< 0x00000040 */
  859. #define PWR_CR_PLS_2 (0x4UL << PWR_CR_PLS_Pos) /*!< 0x00000080 */
  860. /*!< PVD level configuration */
  861. #define PWR_CR_PLS_LEV0 0x00000000U /*!< PVD level 2.2V */
  862. #define PWR_CR_PLS_LEV1 0x00000020U /*!< PVD level 2.3V */
  863. #define PWR_CR_PLS_LEV2 0x00000040U /*!< PVD level 2.4V */
  864. #define PWR_CR_PLS_LEV3 0x00000060U /*!< PVD level 2.5V */
  865. #define PWR_CR_PLS_LEV4 0x00000080U /*!< PVD level 2.6V */
  866. #define PWR_CR_PLS_LEV5 0x000000A0U /*!< PVD level 2.7V */
  867. #define PWR_CR_PLS_LEV6 0x000000C0U /*!< PVD level 2.8V */
  868. #define PWR_CR_PLS_LEV7 0x000000E0U /*!< PVD level 2.9V */
  869. /* Legacy defines */
  870. #define PWR_CR_PLS_2V2 PWR_CR_PLS_LEV0
  871. #define PWR_CR_PLS_2V3 PWR_CR_PLS_LEV1
  872. #define PWR_CR_PLS_2V4 PWR_CR_PLS_LEV2
  873. #define PWR_CR_PLS_2V5 PWR_CR_PLS_LEV3
  874. #define PWR_CR_PLS_2V6 PWR_CR_PLS_LEV4
  875. #define PWR_CR_PLS_2V7 PWR_CR_PLS_LEV5
  876. #define PWR_CR_PLS_2V8 PWR_CR_PLS_LEV6
  877. #define PWR_CR_PLS_2V9 PWR_CR_PLS_LEV7
  878. #define PWR_CR_DBP_Pos (8U)
  879. #define PWR_CR_DBP_Msk (0x1UL << PWR_CR_DBP_Pos) /*!< 0x00000100 */
  880. #define PWR_CR_DBP PWR_CR_DBP_Msk /*!< Disable Backup Domain write protection */
  881. /******************* Bit definition for PWR_CSR register ********************/
  882. #define PWR_CSR_WUF_Pos (0U)
  883. #define PWR_CSR_WUF_Msk (0x1UL << PWR_CSR_WUF_Pos) /*!< 0x00000001 */
  884. #define PWR_CSR_WUF PWR_CSR_WUF_Msk /*!< Wakeup Flag */
  885. #define PWR_CSR_SBF_Pos (1U)
  886. #define PWR_CSR_SBF_Msk (0x1UL << PWR_CSR_SBF_Pos) /*!< 0x00000002 */
  887. #define PWR_CSR_SBF PWR_CSR_SBF_Msk /*!< Standby Flag */
  888. #define PWR_CSR_PVDO_Pos (2U)
  889. #define PWR_CSR_PVDO_Msk (0x1UL << PWR_CSR_PVDO_Pos) /*!< 0x00000004 */
  890. #define PWR_CSR_PVDO PWR_CSR_PVDO_Msk /*!< PVD Output */
  891. #define PWR_CSR_EWUP_Pos (8U)
  892. #define PWR_CSR_EWUP_Msk (0x1UL << PWR_CSR_EWUP_Pos) /*!< 0x00000100 */
  893. #define PWR_CSR_EWUP PWR_CSR_EWUP_Msk /*!< Enable WKUP pin */
  894. /******************************************************************************/
  895. /* */
  896. /* Backup registers */
  897. /* */
  898. /******************************************************************************/
  899. /******************* Bit definition for BKP_DR1 register ********************/
  900. #define BKP_DR1_D_Pos (0U)
  901. #define BKP_DR1_D_Msk (0xFFFFUL << BKP_DR1_D_Pos) /*!< 0x0000FFFF */
  902. #define BKP_DR1_D BKP_DR1_D_Msk /*!< Backup data */
  903. /******************* Bit definition for BKP_DR2 register ********************/
  904. #define BKP_DR2_D_Pos (0U)
  905. #define BKP_DR2_D_Msk (0xFFFFUL << BKP_DR2_D_Pos) /*!< 0x0000FFFF */
  906. #define BKP_DR2_D BKP_DR2_D_Msk /*!< Backup data */
  907. /******************* Bit definition for BKP_DR3 register ********************/
  908. #define BKP_DR3_D_Pos (0U)
  909. #define BKP_DR3_D_Msk (0xFFFFUL << BKP_DR3_D_Pos) /*!< 0x0000FFFF */
  910. #define BKP_DR3_D BKP_DR3_D_Msk /*!< Backup data */
  911. /******************* Bit definition for BKP_DR4 register ********************/
  912. #define BKP_DR4_D_Pos (0U)
  913. #define BKP_DR4_D_Msk (0xFFFFUL << BKP_DR4_D_Pos) /*!< 0x0000FFFF */
  914. #define BKP_DR4_D BKP_DR4_D_Msk /*!< Backup data */
  915. /******************* Bit definition for BKP_DR5 register ********************/
  916. #define BKP_DR5_D_Pos (0U)
  917. #define BKP_DR5_D_Msk (0xFFFFUL << BKP_DR5_D_Pos) /*!< 0x0000FFFF */
  918. #define BKP_DR5_D BKP_DR5_D_Msk /*!< Backup data */
  919. /******************* Bit definition for BKP_DR6 register ********************/
  920. #define BKP_DR6_D_Pos (0U)
  921. #define BKP_DR6_D_Msk (0xFFFFUL << BKP_DR6_D_Pos) /*!< 0x0000FFFF */
  922. #define BKP_DR6_D BKP_DR6_D_Msk /*!< Backup data */
  923. /******************* Bit definition for BKP_DR7 register ********************/
  924. #define BKP_DR7_D_Pos (0U)
  925. #define BKP_DR7_D_Msk (0xFFFFUL << BKP_DR7_D_Pos) /*!< 0x0000FFFF */
  926. #define BKP_DR7_D BKP_DR7_D_Msk /*!< Backup data */
  927. /******************* Bit definition for BKP_DR8 register ********************/
  928. #define BKP_DR8_D_Pos (0U)
  929. #define BKP_DR8_D_Msk (0xFFFFUL << BKP_DR8_D_Pos) /*!< 0x0000FFFF */
  930. #define BKP_DR8_D BKP_DR8_D_Msk /*!< Backup data */
  931. /******************* Bit definition for BKP_DR9 register ********************/
  932. #define BKP_DR9_D_Pos (0U)
  933. #define BKP_DR9_D_Msk (0xFFFFUL << BKP_DR9_D_Pos) /*!< 0x0000FFFF */
  934. #define BKP_DR9_D BKP_DR9_D_Msk /*!< Backup data */
  935. /******************* Bit definition for BKP_DR10 register *******************/
  936. #define BKP_DR10_D_Pos (0U)
  937. #define BKP_DR10_D_Msk (0xFFFFUL << BKP_DR10_D_Pos) /*!< 0x0000FFFF */
  938. #define BKP_DR10_D BKP_DR10_D_Msk /*!< Backup data */
  939. /******************* Bit definition for BKP_DR11 register *******************/
  940. #define BKP_DR11_D_Pos (0U)
  941. #define BKP_DR11_D_Msk (0xFFFFUL << BKP_DR11_D_Pos) /*!< 0x0000FFFF */
  942. #define BKP_DR11_D BKP_DR11_D_Msk /*!< Backup data */
  943. /******************* Bit definition for BKP_DR12 register *******************/
  944. #define BKP_DR12_D_Pos (0U)
  945. #define BKP_DR12_D_Msk (0xFFFFUL << BKP_DR12_D_Pos) /*!< 0x0000FFFF */
  946. #define BKP_DR12_D BKP_DR12_D_Msk /*!< Backup data */
  947. /******************* Bit definition for BKP_DR13 register *******************/
  948. #define BKP_DR13_D_Pos (0U)
  949. #define BKP_DR13_D_Msk (0xFFFFUL << BKP_DR13_D_Pos) /*!< 0x0000FFFF */
  950. #define BKP_DR13_D BKP_DR13_D_Msk /*!< Backup data */
  951. /******************* Bit definition for BKP_DR14 register *******************/
  952. #define BKP_DR14_D_Pos (0U)
  953. #define BKP_DR14_D_Msk (0xFFFFUL << BKP_DR14_D_Pos) /*!< 0x0000FFFF */
  954. #define BKP_DR14_D BKP_DR14_D_Msk /*!< Backup data */
  955. /******************* Bit definition for BKP_DR15 register *******************/
  956. #define BKP_DR15_D_Pos (0U)
  957. #define BKP_DR15_D_Msk (0xFFFFUL << BKP_DR15_D_Pos) /*!< 0x0000FFFF */
  958. #define BKP_DR15_D BKP_DR15_D_Msk /*!< Backup data */
  959. /******************* Bit definition for BKP_DR16 register *******************/
  960. #define BKP_DR16_D_Pos (0U)
  961. #define BKP_DR16_D_Msk (0xFFFFUL << BKP_DR16_D_Pos) /*!< 0x0000FFFF */
  962. #define BKP_DR16_D BKP_DR16_D_Msk /*!< Backup data */
  963. /******************* Bit definition for BKP_DR17 register *******************/
  964. #define BKP_DR17_D_Pos (0U)
  965. #define BKP_DR17_D_Msk (0xFFFFUL << BKP_DR17_D_Pos) /*!< 0x0000FFFF */
  966. #define BKP_DR17_D BKP_DR17_D_Msk /*!< Backup data */
  967. /****************** Bit definition for BKP_DR18 register ********************/
  968. #define BKP_DR18_D_Pos (0U)
  969. #define BKP_DR18_D_Msk (0xFFFFUL << BKP_DR18_D_Pos) /*!< 0x0000FFFF */
  970. #define BKP_DR18_D BKP_DR18_D_Msk /*!< Backup data */
  971. /******************* Bit definition for BKP_DR19 register *******************/
  972. #define BKP_DR19_D_Pos (0U)
  973. #define BKP_DR19_D_Msk (0xFFFFUL << BKP_DR19_D_Pos) /*!< 0x0000FFFF */
  974. #define BKP_DR19_D BKP_DR19_D_Msk /*!< Backup data */
  975. /******************* Bit definition for BKP_DR20 register *******************/
  976. #define BKP_DR20_D_Pos (0U)
  977. #define BKP_DR20_D_Msk (0xFFFFUL << BKP_DR20_D_Pos) /*!< 0x0000FFFF */
  978. #define BKP_DR20_D BKP_DR20_D_Msk /*!< Backup data */
  979. /******************* Bit definition for BKP_DR21 register *******************/
  980. #define BKP_DR21_D_Pos (0U)
  981. #define BKP_DR21_D_Msk (0xFFFFUL << BKP_DR21_D_Pos) /*!< 0x0000FFFF */
  982. #define BKP_DR21_D BKP_DR21_D_Msk /*!< Backup data */
  983. /******************* Bit definition for BKP_DR22 register *******************/
  984. #define BKP_DR22_D_Pos (0U)
  985. #define BKP_DR22_D_Msk (0xFFFFUL << BKP_DR22_D_Pos) /*!< 0x0000FFFF */
  986. #define BKP_DR22_D BKP_DR22_D_Msk /*!< Backup data */
  987. /******************* Bit definition for BKP_DR23 register *******************/
  988. #define BKP_DR23_D_Pos (0U)
  989. #define BKP_DR23_D_Msk (0xFFFFUL << BKP_DR23_D_Pos) /*!< 0x0000FFFF */
  990. #define BKP_DR23_D BKP_DR23_D_Msk /*!< Backup data */
  991. /******************* Bit definition for BKP_DR24 register *******************/
  992. #define BKP_DR24_D_Pos (0U)
  993. #define BKP_DR24_D_Msk (0xFFFFUL << BKP_DR24_D_Pos) /*!< 0x0000FFFF */
  994. #define BKP_DR24_D BKP_DR24_D_Msk /*!< Backup data */
  995. /******************* Bit definition for BKP_DR25 register *******************/
  996. #define BKP_DR25_D_Pos (0U)
  997. #define BKP_DR25_D_Msk (0xFFFFUL << BKP_DR25_D_Pos) /*!< 0x0000FFFF */
  998. #define BKP_DR25_D BKP_DR25_D_Msk /*!< Backup data */
  999. /******************* Bit definition for BKP_DR26 register *******************/
  1000. #define BKP_DR26_D_Pos (0U)
  1001. #define BKP_DR26_D_Msk (0xFFFFUL << BKP_DR26_D_Pos) /*!< 0x0000FFFF */
  1002. #define BKP_DR26_D BKP_DR26_D_Msk /*!< Backup data */
  1003. /******************* Bit definition for BKP_DR27 register *******************/
  1004. #define BKP_DR27_D_Pos (0U)
  1005. #define BKP_DR27_D_Msk (0xFFFFUL << BKP_DR27_D_Pos) /*!< 0x0000FFFF */
  1006. #define BKP_DR27_D BKP_DR27_D_Msk /*!< Backup data */
  1007. /******************* Bit definition for BKP_DR28 register *******************/
  1008. #define BKP_DR28_D_Pos (0U)
  1009. #define BKP_DR28_D_Msk (0xFFFFUL << BKP_DR28_D_Pos) /*!< 0x0000FFFF */
  1010. #define BKP_DR28_D BKP_DR28_D_Msk /*!< Backup data */
  1011. /******************* Bit definition for BKP_DR29 register *******************/
  1012. #define BKP_DR29_D_Pos (0U)
  1013. #define BKP_DR29_D_Msk (0xFFFFUL << BKP_DR29_D_Pos) /*!< 0x0000FFFF */
  1014. #define BKP_DR29_D BKP_DR29_D_Msk /*!< Backup data */
  1015. /******************* Bit definition for BKP_DR30 register *******************/
  1016. #define BKP_DR30_D_Pos (0U)
  1017. #define BKP_DR30_D_Msk (0xFFFFUL << BKP_DR30_D_Pos) /*!< 0x0000FFFF */
  1018. #define BKP_DR30_D BKP_DR30_D_Msk /*!< Backup data */
  1019. /******************* Bit definition for BKP_DR31 register *******************/
  1020. #define BKP_DR31_D_Pos (0U)
  1021. #define BKP_DR31_D_Msk (0xFFFFUL << BKP_DR31_D_Pos) /*!< 0x0000FFFF */
  1022. #define BKP_DR31_D BKP_DR31_D_Msk /*!< Backup data */
  1023. /******************* Bit definition for BKP_DR32 register *******************/
  1024. #define BKP_DR32_D_Pos (0U)
  1025. #define BKP_DR32_D_Msk (0xFFFFUL << BKP_DR32_D_Pos) /*!< 0x0000FFFF */
  1026. #define BKP_DR32_D BKP_DR32_D_Msk /*!< Backup data */
  1027. /******************* Bit definition for BKP_DR33 register *******************/
  1028. #define BKP_DR33_D_Pos (0U)
  1029. #define BKP_DR33_D_Msk (0xFFFFUL << BKP_DR33_D_Pos) /*!< 0x0000FFFF */
  1030. #define BKP_DR33_D BKP_DR33_D_Msk /*!< Backup data */
  1031. /******************* Bit definition for BKP_DR34 register *******************/
  1032. #define BKP_DR34_D_Pos (0U)
  1033. #define BKP_DR34_D_Msk (0xFFFFUL << BKP_DR34_D_Pos) /*!< 0x0000FFFF */
  1034. #define BKP_DR34_D BKP_DR34_D_Msk /*!< Backup data */
  1035. /******************* Bit definition for BKP_DR35 register *******************/
  1036. #define BKP_DR35_D_Pos (0U)
  1037. #define BKP_DR35_D_Msk (0xFFFFUL << BKP_DR35_D_Pos) /*!< 0x0000FFFF */
  1038. #define BKP_DR35_D BKP_DR35_D_Msk /*!< Backup data */
  1039. /******************* Bit definition for BKP_DR36 register *******************/
  1040. #define BKP_DR36_D_Pos (0U)
  1041. #define BKP_DR36_D_Msk (0xFFFFUL << BKP_DR36_D_Pos) /*!< 0x0000FFFF */
  1042. #define BKP_DR36_D BKP_DR36_D_Msk /*!< Backup data */
  1043. /******************* Bit definition for BKP_DR37 register *******************/
  1044. #define BKP_DR37_D_Pos (0U)
  1045. #define BKP_DR37_D_Msk (0xFFFFUL << BKP_DR37_D_Pos) /*!< 0x0000FFFF */
  1046. #define BKP_DR37_D BKP_DR37_D_Msk /*!< Backup data */
  1047. /******************* Bit definition for BKP_DR38 register *******************/
  1048. #define BKP_DR38_D_Pos (0U)
  1049. #define BKP_DR38_D_Msk (0xFFFFUL << BKP_DR38_D_Pos) /*!< 0x0000FFFF */
  1050. #define BKP_DR38_D BKP_DR38_D_Msk /*!< Backup data */
  1051. /******************* Bit definition for BKP_DR39 register *******************/
  1052. #define BKP_DR39_D_Pos (0U)
  1053. #define BKP_DR39_D_Msk (0xFFFFUL << BKP_DR39_D_Pos) /*!< 0x0000FFFF */
  1054. #define BKP_DR39_D BKP_DR39_D_Msk /*!< Backup data */
  1055. /******************* Bit definition for BKP_DR40 register *******************/
  1056. #define BKP_DR40_D_Pos (0U)
  1057. #define BKP_DR40_D_Msk (0xFFFFUL << BKP_DR40_D_Pos) /*!< 0x0000FFFF */
  1058. #define BKP_DR40_D BKP_DR40_D_Msk /*!< Backup data */
  1059. /******************* Bit definition for BKP_DR41 register *******************/
  1060. #define BKP_DR41_D_Pos (0U)
  1061. #define BKP_DR41_D_Msk (0xFFFFUL << BKP_DR41_D_Pos) /*!< 0x0000FFFF */
  1062. #define BKP_DR41_D BKP_DR41_D_Msk /*!< Backup data */
  1063. /******************* Bit definition for BKP_DR42 register *******************/
  1064. #define BKP_DR42_D_Pos (0U)
  1065. #define BKP_DR42_D_Msk (0xFFFFUL << BKP_DR42_D_Pos) /*!< 0x0000FFFF */
  1066. #define BKP_DR42_D BKP_DR42_D_Msk /*!< Backup data */
  1067. #define RTC_BKP_NUMBER 42
  1068. /****************** Bit definition for BKP_RTCCR register *******************/
  1069. #define BKP_RTCCR_CAL_Pos (0U)
  1070. #define BKP_RTCCR_CAL_Msk (0x7FUL << BKP_RTCCR_CAL_Pos) /*!< 0x0000007F */
  1071. #define BKP_RTCCR_CAL BKP_RTCCR_CAL_Msk /*!< Calibration value */
  1072. #define BKP_RTCCR_CCO_Pos (7U)
  1073. #define BKP_RTCCR_CCO_Msk (0x1UL << BKP_RTCCR_CCO_Pos) /*!< 0x00000080 */
  1074. #define BKP_RTCCR_CCO BKP_RTCCR_CCO_Msk /*!< Calibration Clock Output */
  1075. #define BKP_RTCCR_ASOE_Pos (8U)
  1076. #define BKP_RTCCR_ASOE_Msk (0x1UL << BKP_RTCCR_ASOE_Pos) /*!< 0x00000100 */
  1077. #define BKP_RTCCR_ASOE BKP_RTCCR_ASOE_Msk /*!< Alarm or Second Output Enable */
  1078. #define BKP_RTCCR_ASOS_Pos (9U)
  1079. #define BKP_RTCCR_ASOS_Msk (0x1UL << BKP_RTCCR_ASOS_Pos) /*!< 0x00000200 */
  1080. #define BKP_RTCCR_ASOS BKP_RTCCR_ASOS_Msk /*!< Alarm or Second Output Selection */
  1081. /******************** Bit definition for BKP_CR register ********************/
  1082. #define BKP_CR_TPE_Pos (0U)
  1083. #define BKP_CR_TPE_Msk (0x1UL << BKP_CR_TPE_Pos) /*!< 0x00000001 */
  1084. #define BKP_CR_TPE BKP_CR_TPE_Msk /*!< TAMPER pin enable */
  1085. #define BKP_CR_TPAL_Pos (1U)
  1086. #define BKP_CR_TPAL_Msk (0x1UL << BKP_CR_TPAL_Pos) /*!< 0x00000002 */
  1087. #define BKP_CR_TPAL BKP_CR_TPAL_Msk /*!< TAMPER pin active level */
  1088. /******************* Bit definition for BKP_CSR register ********************/
  1089. #define BKP_CSR_CTE_Pos (0U)
  1090. #define BKP_CSR_CTE_Msk (0x1UL << BKP_CSR_CTE_Pos) /*!< 0x00000001 */
  1091. #define BKP_CSR_CTE BKP_CSR_CTE_Msk /*!< Clear Tamper event */
  1092. #define BKP_CSR_CTI_Pos (1U)
  1093. #define BKP_CSR_CTI_Msk (0x1UL << BKP_CSR_CTI_Pos) /*!< 0x00000002 */
  1094. #define BKP_CSR_CTI BKP_CSR_CTI_Msk /*!< Clear Tamper Interrupt */
  1095. #define BKP_CSR_TPIE_Pos (2U)
  1096. #define BKP_CSR_TPIE_Msk (0x1UL << BKP_CSR_TPIE_Pos) /*!< 0x00000004 */
  1097. #define BKP_CSR_TPIE BKP_CSR_TPIE_Msk /*!< TAMPER Pin interrupt enable */
  1098. #define BKP_CSR_TEF_Pos (8U)
  1099. #define BKP_CSR_TEF_Msk (0x1UL << BKP_CSR_TEF_Pos) /*!< 0x00000100 */
  1100. #define BKP_CSR_TEF BKP_CSR_TEF_Msk /*!< Tamper Event Flag */
  1101. #define BKP_CSR_TIF_Pos (9U)
  1102. #define BKP_CSR_TIF_Msk (0x1UL << BKP_CSR_TIF_Pos) /*!< 0x00000200 */
  1103. #define BKP_CSR_TIF BKP_CSR_TIF_Msk /*!< Tamper Interrupt Flag */
  1104. /******************************************************************************/
  1105. /* */
  1106. /* Reset and Clock Control */
  1107. /* */
  1108. /******************************************************************************/
  1109. /******************** Bit definition for RCC_CR register ********************/
  1110. #define RCC_CR_HSION_Pos (0U)
  1111. #define RCC_CR_HSION_Msk (0x1UL << RCC_CR_HSION_Pos) /*!< 0x00000001 */
  1112. #define RCC_CR_HSION RCC_CR_HSION_Msk /*!< Internal High Speed clock enable */
  1113. #define RCC_CR_HSIRDY_Pos (1U)
  1114. #define RCC_CR_HSIRDY_Msk (0x1UL << RCC_CR_HSIRDY_Pos) /*!< 0x00000002 */
  1115. #define RCC_CR_HSIRDY RCC_CR_HSIRDY_Msk /*!< Internal High Speed clock ready flag */
  1116. #define RCC_CR_HSITRIM_Pos (3U)
  1117. #define RCC_CR_HSITRIM_Msk (0x1FUL << RCC_CR_HSITRIM_Pos) /*!< 0x000000F8 */
  1118. #define RCC_CR_HSITRIM RCC_CR_HSITRIM_Msk /*!< Internal High Speed clock trimming */
  1119. #define RCC_CR_HSICAL_Pos (8U)
  1120. #define RCC_CR_HSICAL_Msk (0xFFUL << RCC_CR_HSICAL_Pos) /*!< 0x0000FF00 */
  1121. #define RCC_CR_HSICAL RCC_CR_HSICAL_Msk /*!< Internal High Speed clock Calibration */
  1122. #define RCC_CR_HSEON_Pos (16U)
  1123. #define RCC_CR_HSEON_Msk (0x1UL << RCC_CR_HSEON_Pos) /*!< 0x00010000 */
  1124. #define RCC_CR_HSEON RCC_CR_HSEON_Msk /*!< External High Speed clock enable */
  1125. #define RCC_CR_HSERDY_Pos (17U)
  1126. #define RCC_CR_HSERDY_Msk (0x1UL << RCC_CR_HSERDY_Pos) /*!< 0x00020000 */
  1127. #define RCC_CR_HSERDY RCC_CR_HSERDY_Msk /*!< External High Speed clock ready flag */
  1128. #define RCC_CR_HSEBYP_Pos (18U)
  1129. #define RCC_CR_HSEBYP_Msk (0x1UL << RCC_CR_HSEBYP_Pos) /*!< 0x00040000 */
  1130. #define RCC_CR_HSEBYP RCC_CR_HSEBYP_Msk /*!< External High Speed clock Bypass */
  1131. #define RCC_CR_CSSON_Pos (19U)
  1132. #define RCC_CR_CSSON_Msk (0x1UL << RCC_CR_CSSON_Pos) /*!< 0x00080000 */
  1133. #define RCC_CR_CSSON RCC_CR_CSSON_Msk /*!< Clock Security System enable */
  1134. #define RCC_CR_PLLON_Pos (24U)
  1135. #define RCC_CR_PLLON_Msk (0x1UL << RCC_CR_PLLON_Pos) /*!< 0x01000000 */
  1136. #define RCC_CR_PLLON RCC_CR_PLLON_Msk /*!< PLL enable */
  1137. #define RCC_CR_PLLRDY_Pos (25U)
  1138. #define RCC_CR_PLLRDY_Msk (0x1UL << RCC_CR_PLLRDY_Pos) /*!< 0x02000000 */
  1139. #define RCC_CR_PLLRDY RCC_CR_PLLRDY_Msk /*!< PLL clock ready flag */
  1140. /******************* Bit definition for RCC_CFGR register *******************/
  1141. /*!< SW configuration */
  1142. #define RCC_CFGR_SW_Pos (0U)
  1143. #define RCC_CFGR_SW_Msk (0x3UL << RCC_CFGR_SW_Pos) /*!< 0x00000003 */
  1144. #define RCC_CFGR_SW RCC_CFGR_SW_Msk /*!< SW[1:0] bits (System clock Switch) */
  1145. #define RCC_CFGR_SW_0 (0x1UL << RCC_CFGR_SW_Pos) /*!< 0x00000001 */
  1146. #define RCC_CFGR_SW_1 (0x2UL << RCC_CFGR_SW_Pos) /*!< 0x00000002 */
  1147. #define RCC_CFGR_SW_HSI 0x00000000U /*!< HSI selected as system clock */
  1148. #define RCC_CFGR_SW_HSE 0x00000001U /*!< HSE selected as system clock */
  1149. #define RCC_CFGR_SW_PLL 0x00000002U /*!< PLL selected as system clock */
  1150. /*!< SWS configuration */
  1151. #define RCC_CFGR_SWS_Pos (2U)
  1152. #define RCC_CFGR_SWS_Msk (0x3UL << RCC_CFGR_SWS_Pos) /*!< 0x0000000C */
  1153. #define RCC_CFGR_SWS RCC_CFGR_SWS_Msk /*!< SWS[1:0] bits (System Clock Switch Status) */
  1154. #define RCC_CFGR_SWS_0 (0x1UL << RCC_CFGR_SWS_Pos) /*!< 0x00000004 */
  1155. #define RCC_CFGR_SWS_1 (0x2UL << RCC_CFGR_SWS_Pos) /*!< 0x00000008 */
  1156. #define RCC_CFGR_SWS_HSI 0x00000000U /*!< HSI oscillator used as system clock */
  1157. #define RCC_CFGR_SWS_HSE 0x00000004U /*!< HSE oscillator used as system clock */
  1158. #define RCC_CFGR_SWS_PLL 0x00000008U /*!< PLL used as system clock */
  1159. /*!< HPRE configuration */
  1160. #define RCC_CFGR_HPRE_Pos (4U)
  1161. #define RCC_CFGR_HPRE_Msk (0xFUL << RCC_CFGR_HPRE_Pos) /*!< 0x000000F0 */
  1162. #define RCC_CFGR_HPRE RCC_CFGR_HPRE_Msk /*!< HPRE[3:0] bits (AHB prescaler) */
  1163. #define RCC_CFGR_HPRE_0 (0x1UL << RCC_CFGR_HPRE_Pos) /*!< 0x00000010 */
  1164. #define RCC_CFGR_HPRE_1 (0x2UL << RCC_CFGR_HPRE_Pos) /*!< 0x00000020 */
  1165. #define RCC_CFGR_HPRE_2 (0x4UL << RCC_CFGR_HPRE_Pos) /*!< 0x00000040 */
  1166. #define RCC_CFGR_HPRE_3 (0x8UL << RCC_CFGR_HPRE_Pos) /*!< 0x00000080 */
  1167. #define RCC_CFGR_HPRE_DIV1 0x00000000U /*!< SYSCLK not divided */
  1168. #define RCC_CFGR_HPRE_DIV2 0x00000080U /*!< SYSCLK divided by 2 */
  1169. #define RCC_CFGR_HPRE_DIV4 0x00000090U /*!< SYSCLK divided by 4 */
  1170. #define RCC_CFGR_HPRE_DIV8 0x000000A0U /*!< SYSCLK divided by 8 */
  1171. #define RCC_CFGR_HPRE_DIV16 0x000000B0U /*!< SYSCLK divided by 16 */
  1172. #define RCC_CFGR_HPRE_DIV64 0x000000C0U /*!< SYSCLK divided by 64 */
  1173. #define RCC_CFGR_HPRE_DIV128 0x000000D0U /*!< SYSCLK divided by 128 */
  1174. #define RCC_CFGR_HPRE_DIV256 0x000000E0U /*!< SYSCLK divided by 256 */
  1175. #define RCC_CFGR_HPRE_DIV512 0x000000F0U /*!< SYSCLK divided by 512 */
  1176. /*!< PPRE1 configuration */
  1177. #define RCC_CFGR_PPRE1_Pos (8U)
  1178. #define RCC_CFGR_PPRE1_Msk (0x7UL << RCC_CFGR_PPRE1_Pos) /*!< 0x00000700 */
  1179. #define RCC_CFGR_PPRE1 RCC_CFGR_PPRE1_Msk /*!< PRE1[2:0] bits (APB1 prescaler) */
  1180. #define RCC_CFGR_PPRE1_0 (0x1UL << RCC_CFGR_PPRE1_Pos) /*!< 0x00000100 */
  1181. #define RCC_CFGR_PPRE1_1 (0x2UL << RCC_CFGR_PPRE1_Pos) /*!< 0x00000200 */
  1182. #define RCC_CFGR_PPRE1_2 (0x4UL << RCC_CFGR_PPRE1_Pos) /*!< 0x00000400 */
  1183. #define RCC_CFGR_PPRE1_DIV1 0x00000000U /*!< HCLK not divided */
  1184. #define RCC_CFGR_PPRE1_DIV2 0x00000400U /*!< HCLK divided by 2 */
  1185. #define RCC_CFGR_PPRE1_DIV4 0x00000500U /*!< HCLK divided by 4 */
  1186. #define RCC_CFGR_PPRE1_DIV8 0x00000600U /*!< HCLK divided by 8 */
  1187. #define RCC_CFGR_PPRE1_DIV16 0x00000700U /*!< HCLK divided by 16 */
  1188. /*!< PPRE2 configuration */
  1189. #define RCC_CFGR_PPRE2_Pos (11U)
  1190. #define RCC_CFGR_PPRE2_Msk (0x7UL << RCC_CFGR_PPRE2_Pos) /*!< 0x00003800 */
  1191. #define RCC_CFGR_PPRE2 RCC_CFGR_PPRE2_Msk /*!< PRE2[2:0] bits (APB2 prescaler) */
  1192. #define RCC_CFGR_PPRE2_0 (0x1UL << RCC_CFGR_PPRE2_Pos) /*!< 0x00000800 */
  1193. #define RCC_CFGR_PPRE2_1 (0x2UL << RCC_CFGR_PPRE2_Pos) /*!< 0x00001000 */
  1194. #define RCC_CFGR_PPRE2_2 (0x4UL << RCC_CFGR_PPRE2_Pos) /*!< 0x00002000 */
  1195. #define RCC_CFGR_PPRE2_DIV1 0x00000000U /*!< HCLK not divided */
  1196. #define RCC_CFGR_PPRE2_DIV2 0x00002000U /*!< HCLK divided by 2 */
  1197. #define RCC_CFGR_PPRE2_DIV4 0x00002800U /*!< HCLK divided by 4 */
  1198. #define RCC_CFGR_PPRE2_DIV8 0x00003000U /*!< HCLK divided by 8 */
  1199. #define RCC_CFGR_PPRE2_DIV16 0x00003800U /*!< HCLK divided by 16 */
  1200. /*!< ADCPPRE configuration */
  1201. #define RCC_CFGR_ADCPRE_Pos (14U)
  1202. #define RCC_CFGR_ADCPRE_Msk (0x3UL << RCC_CFGR_ADCPRE_Pos) /*!< 0x0000C000 */
  1203. #define RCC_CFGR_ADCPRE RCC_CFGR_ADCPRE_Msk /*!< ADCPRE[1:0] bits (ADC prescaler) */
  1204. #define RCC_CFGR_ADCPRE_0 (0x1UL << RCC_CFGR_ADCPRE_Pos) /*!< 0x00004000 */
  1205. #define RCC_CFGR_ADCPRE_1 (0x2UL << RCC_CFGR_ADCPRE_Pos) /*!< 0x00008000 */
  1206. #define RCC_CFGR_ADCPRE_DIV2 0x00000000U /*!< PCLK2 divided by 2 */
  1207. #define RCC_CFGR_ADCPRE_DIV4 0x00004000U /*!< PCLK2 divided by 4 */
  1208. #define RCC_CFGR_ADCPRE_DIV6 0x00008000U /*!< PCLK2 divided by 6 */
  1209. #define RCC_CFGR_ADCPRE_DIV8 0x0000C000U /*!< PCLK2 divided by 8 */
  1210. #define RCC_CFGR_PLLSRC_Pos (16U)
  1211. #define RCC_CFGR_PLLSRC_Msk (0x1UL << RCC_CFGR_PLLSRC_Pos) /*!< 0x00010000 */
  1212. #define RCC_CFGR_PLLSRC RCC_CFGR_PLLSRC_Msk /*!< PLL entry clock source */
  1213. #define RCC_CFGR_PLLXTPRE_Pos (17U)
  1214. #define RCC_CFGR_PLLXTPRE_Msk (0x1UL << RCC_CFGR_PLLXTPRE_Pos) /*!< 0x00020000 */
  1215. #define RCC_CFGR_PLLXTPRE RCC_CFGR_PLLXTPRE_Msk /*!< HSE divider for PLL entry */
  1216. /*!< PLLMUL configuration */
  1217. #define RCC_CFGR_PLLMULL_Pos (18U)
  1218. #define RCC_CFGR_PLLMULL_Msk (0xFUL << RCC_CFGR_PLLMULL_Pos) /*!< 0x003C0000 */
  1219. #define RCC_CFGR_PLLMULL RCC_CFGR_PLLMULL_Msk /*!< PLLMUL[3:0] bits (PLL multiplication factor) */
  1220. #define RCC_CFGR_PLLMULL_0 (0x1UL << RCC_CFGR_PLLMULL_Pos) /*!< 0x00040000 */
  1221. #define RCC_CFGR_PLLMULL_1 (0x2UL << RCC_CFGR_PLLMULL_Pos) /*!< 0x00080000 */
  1222. #define RCC_CFGR_PLLMULL_2 (0x4UL << RCC_CFGR_PLLMULL_Pos) /*!< 0x00100000 */
  1223. #define RCC_CFGR_PLLMULL_3 (0x8UL << RCC_CFGR_PLLMULL_Pos) /*!< 0x00200000 */
  1224. #define RCC_CFGR_PLLXTPRE_HSE 0x00000000U /*!< HSE clock not divided for PLL entry */
  1225. #define RCC_CFGR_PLLXTPRE_HSE_DIV2 0x00020000U /*!< HSE clock divided by 2 for PLL entry */
  1226. #define RCC_CFGR_PLLMULL2 0x00000000U /*!< PLL input clock*2 */
  1227. #define RCC_CFGR_PLLMULL3_Pos (18U)
  1228. #define RCC_CFGR_PLLMULL3_Msk (0x1UL << RCC_CFGR_PLLMULL3_Pos) /*!< 0x00040000 */
  1229. #define RCC_CFGR_PLLMULL3 RCC_CFGR_PLLMULL3_Msk /*!< PLL input clock*3 */
  1230. #define RCC_CFGR_PLLMULL4_Pos (19U)
  1231. #define RCC_CFGR_PLLMULL4_Msk (0x1UL << RCC_CFGR_PLLMULL4_Pos) /*!< 0x00080000 */
  1232. #define RCC_CFGR_PLLMULL4 RCC_CFGR_PLLMULL4_Msk /*!< PLL input clock*4 */
  1233. #define RCC_CFGR_PLLMULL5_Pos (18U)
  1234. #define RCC_CFGR_PLLMULL5_Msk (0x3UL << RCC_CFGR_PLLMULL5_Pos) /*!< 0x000C0000 */
  1235. #define RCC_CFGR_PLLMULL5 RCC_CFGR_PLLMULL5_Msk /*!< PLL input clock*5 */
  1236. #define RCC_CFGR_PLLMULL6_Pos (20U)
  1237. #define RCC_CFGR_PLLMULL6_Msk (0x1UL << RCC_CFGR_PLLMULL6_Pos) /*!< 0x00100000 */
  1238. #define RCC_CFGR_PLLMULL6 RCC_CFGR_PLLMULL6_Msk /*!< PLL input clock*6 */
  1239. #define RCC_CFGR_PLLMULL7_Pos (18U)
  1240. #define RCC_CFGR_PLLMULL7_Msk (0x5UL << RCC_CFGR_PLLMULL7_Pos) /*!< 0x00140000 */
  1241. #define RCC_CFGR_PLLMULL7 RCC_CFGR_PLLMULL7_Msk /*!< PLL input clock*7 */
  1242. #define RCC_CFGR_PLLMULL8_Pos (19U)
  1243. #define RCC_CFGR_PLLMULL8_Msk (0x3UL << RCC_CFGR_PLLMULL8_Pos) /*!< 0x00180000 */
  1244. #define RCC_CFGR_PLLMULL8 RCC_CFGR_PLLMULL8_Msk /*!< PLL input clock*8 */
  1245. #define RCC_CFGR_PLLMULL9_Pos (18U)
  1246. #define RCC_CFGR_PLLMULL9_Msk (0x7UL << RCC_CFGR_PLLMULL9_Pos) /*!< 0x001C0000 */
  1247. #define RCC_CFGR_PLLMULL9 RCC_CFGR_PLLMULL9_Msk /*!< PLL input clock*9 */
  1248. #define RCC_CFGR_PLLMULL10_Pos (21U)
  1249. #define RCC_CFGR_PLLMULL10_Msk (0x1UL << RCC_CFGR_PLLMULL10_Pos) /*!< 0x00200000 */
  1250. #define RCC_CFGR_PLLMULL10 RCC_CFGR_PLLMULL10_Msk /*!< PLL input clock10 */
  1251. #define RCC_CFGR_PLLMULL11_Pos (18U)
  1252. #define RCC_CFGR_PLLMULL11_Msk (0x9UL << RCC_CFGR_PLLMULL11_Pos) /*!< 0x00240000 */
  1253. #define RCC_CFGR_PLLMULL11 RCC_CFGR_PLLMULL11_Msk /*!< PLL input clock*11 */
  1254. #define RCC_CFGR_PLLMULL12_Pos (19U)
  1255. #define RCC_CFGR_PLLMULL12_Msk (0x5UL << RCC_CFGR_PLLMULL12_Pos) /*!< 0x00280000 */
  1256. #define RCC_CFGR_PLLMULL12 RCC_CFGR_PLLMULL12_Msk /*!< PLL input clock*12 */
  1257. #define RCC_CFGR_PLLMULL13_Pos (18U)
  1258. #define RCC_CFGR_PLLMULL13_Msk (0xBUL << RCC_CFGR_PLLMULL13_Pos) /*!< 0x002C0000 */
  1259. #define RCC_CFGR_PLLMULL13 RCC_CFGR_PLLMULL13_Msk /*!< PLL input clock*13 */
  1260. #define RCC_CFGR_PLLMULL14_Pos (20U)
  1261. #define RCC_CFGR_PLLMULL14_Msk (0x3UL << RCC_CFGR_PLLMULL14_Pos) /*!< 0x00300000 */
  1262. #define RCC_CFGR_PLLMULL14 RCC_CFGR_PLLMULL14_Msk /*!< PLL input clock*14 */
  1263. #define RCC_CFGR_PLLMULL15_Pos (18U)
  1264. #define RCC_CFGR_PLLMULL15_Msk (0xDUL << RCC_CFGR_PLLMULL15_Pos) /*!< 0x00340000 */
  1265. #define RCC_CFGR_PLLMULL15 RCC_CFGR_PLLMULL15_Msk /*!< PLL input clock*15 */
  1266. #define RCC_CFGR_PLLMULL16_Pos (19U)
  1267. #define RCC_CFGR_PLLMULL16_Msk (0x7UL << RCC_CFGR_PLLMULL16_Pos) /*!< 0x00380000 */
  1268. #define RCC_CFGR_PLLMULL16 RCC_CFGR_PLLMULL16_Msk /*!< PLL input clock*16 */
  1269. #define RCC_CFGR_USBPRE_Pos (22U)
  1270. #define RCC_CFGR_USBPRE_Msk (0x1UL << RCC_CFGR_USBPRE_Pos) /*!< 0x00400000 */
  1271. #define RCC_CFGR_USBPRE RCC_CFGR_USBPRE_Msk /*!< USB Device prescaler */
  1272. /*!< MCO configuration */
  1273. #define RCC_CFGR_MCO_Pos (24U)
  1274. #define RCC_CFGR_MCO_Msk (0x7UL << RCC_CFGR_MCO_Pos) /*!< 0x07000000 */
  1275. #define RCC_CFGR_MCO RCC_CFGR_MCO_Msk /*!< MCO[2:0] bits (Microcontroller Clock Output) */
  1276. #define RCC_CFGR_MCO_0 (0x1UL << RCC_CFGR_MCO_Pos) /*!< 0x01000000 */
  1277. #define RCC_CFGR_MCO_1 (0x2UL << RCC_CFGR_MCO_Pos) /*!< 0x02000000 */
  1278. #define RCC_CFGR_MCO_2 (0x4UL << RCC_CFGR_MCO_Pos) /*!< 0x04000000 */
  1279. #define RCC_CFGR_MCO_NOCLOCK 0x00000000U /*!< No clock */
  1280. #define RCC_CFGR_MCO_SYSCLK 0x04000000U /*!< System clock selected as MCO source */
  1281. #define RCC_CFGR_MCO_HSI 0x05000000U /*!< HSI clock selected as MCO source */
  1282. #define RCC_CFGR_MCO_HSE 0x06000000U /*!< HSE clock selected as MCO source */
  1283. #define RCC_CFGR_MCO_PLLCLK_DIV2 0x07000000U /*!< PLL clock divided by 2 selected as MCO source */
  1284. /* Reference defines */
  1285. #define RCC_CFGR_MCOSEL RCC_CFGR_MCO
  1286. #define RCC_CFGR_MCOSEL_0 RCC_CFGR_MCO_0
  1287. #define RCC_CFGR_MCOSEL_1 RCC_CFGR_MCO_1
  1288. #define RCC_CFGR_MCOSEL_2 RCC_CFGR_MCO_2
  1289. #define RCC_CFGR_MCOSEL_NOCLOCK RCC_CFGR_MCO_NOCLOCK
  1290. #define RCC_CFGR_MCOSEL_SYSCLK RCC_CFGR_MCO_SYSCLK
  1291. #define RCC_CFGR_MCOSEL_HSI RCC_CFGR_MCO_HSI
  1292. #define RCC_CFGR_MCOSEL_HSE RCC_CFGR_MCO_HSE
  1293. #define RCC_CFGR_MCOSEL_PLL_DIV2 RCC_CFGR_MCO_PLLCLK_DIV2
  1294. /*!<****************** Bit definition for RCC_CIR register ********************/
  1295. #define RCC_CIR_LSIRDYF_Pos (0U)
  1296. #define RCC_CIR_LSIRDYF_Msk (0x1UL << RCC_CIR_LSIRDYF_Pos) /*!< 0x00000001 */
  1297. #define RCC_CIR_LSIRDYF RCC_CIR_LSIRDYF_Msk /*!< LSI Ready Interrupt flag */
  1298. #define RCC_CIR_LSERDYF_Pos (1U)
  1299. #define RCC_CIR_LSERDYF_Msk (0x1UL << RCC_CIR_LSERDYF_Pos) /*!< 0x00000002 */
  1300. #define RCC_CIR_LSERDYF RCC_CIR_LSERDYF_Msk /*!< LSE Ready Interrupt flag */
  1301. #define RCC_CIR_HSIRDYF_Pos (2U)
  1302. #define RCC_CIR_HSIRDYF_Msk (0x1UL << RCC_CIR_HSIRDYF_Pos) /*!< 0x00000004 */
  1303. #define RCC_CIR_HSIRDYF RCC_CIR_HSIRDYF_Msk /*!< HSI Ready Interrupt flag */
  1304. #define RCC_CIR_HSERDYF_Pos (3U)
  1305. #define RCC_CIR_HSERDYF_Msk (0x1UL << RCC_CIR_HSERDYF_Pos) /*!< 0x00000008 */
  1306. #define RCC_CIR_HSERDYF RCC_CIR_HSERDYF_Msk /*!< HSE Ready Interrupt flag */
  1307. #define RCC_CIR_PLLRDYF_Pos (4U)
  1308. #define RCC_CIR_PLLRDYF_Msk (0x1UL << RCC_CIR_PLLRDYF_Pos) /*!< 0x00000010 */
  1309. #define RCC_CIR_PLLRDYF RCC_CIR_PLLRDYF_Msk /*!< PLL Ready Interrupt flag */
  1310. #define RCC_CIR_CSSF_Pos (7U)
  1311. #define RCC_CIR_CSSF_Msk (0x1UL << RCC_CIR_CSSF_Pos) /*!< 0x00000080 */
  1312. #define RCC_CIR_CSSF RCC_CIR_CSSF_Msk /*!< Clock Security System Interrupt flag */
  1313. #define RCC_CIR_LSIRDYIE_Pos (8U)
  1314. #define RCC_CIR_LSIRDYIE_Msk (0x1UL << RCC_CIR_LSIRDYIE_Pos) /*!< 0x00000100 */
  1315. #define RCC_CIR_LSIRDYIE RCC_CIR_LSIRDYIE_Msk /*!< LSI Ready Interrupt Enable */
  1316. #define RCC_CIR_LSERDYIE_Pos (9U)
  1317. #define RCC_CIR_LSERDYIE_Msk (0x1UL << RCC_CIR_LSERDYIE_Pos) /*!< 0x00000200 */
  1318. #define RCC_CIR_LSERDYIE RCC_CIR_LSERDYIE_Msk /*!< LSE Ready Interrupt Enable */
  1319. #define RCC_CIR_HSIRDYIE_Pos (10U)
  1320. #define RCC_CIR_HSIRDYIE_Msk (0x1UL << RCC_CIR_HSIRDYIE_Pos) /*!< 0x00000400 */
  1321. #define RCC_CIR_HSIRDYIE RCC_CIR_HSIRDYIE_Msk /*!< HSI Ready Interrupt Enable */
  1322. #define RCC_CIR_HSERDYIE_Pos (11U)
  1323. #define RCC_CIR_HSERDYIE_Msk (0x1UL << RCC_CIR_HSERDYIE_Pos) /*!< 0x00000800 */
  1324. #define RCC_CIR_HSERDYIE RCC_CIR_HSERDYIE_Msk /*!< HSE Ready Interrupt Enable */
  1325. #define RCC_CIR_PLLRDYIE_Pos (12U)
  1326. #define RCC_CIR_PLLRDYIE_Msk (0x1UL << RCC_CIR_PLLRDYIE_Pos) /*!< 0x00001000 */
  1327. #define RCC_CIR_PLLRDYIE RCC_CIR_PLLRDYIE_Msk /*!< PLL Ready Interrupt Enable */
  1328. #define RCC_CIR_LSIRDYC_Pos (16U)
  1329. #define RCC_CIR_LSIRDYC_Msk (0x1UL << RCC_CIR_LSIRDYC_Pos) /*!< 0x00010000 */
  1330. #define RCC_CIR_LSIRDYC RCC_CIR_LSIRDYC_Msk /*!< LSI Ready Interrupt Clear */
  1331. #define RCC_CIR_LSERDYC_Pos (17U)
  1332. #define RCC_CIR_LSERDYC_Msk (0x1UL << RCC_CIR_LSERDYC_Pos) /*!< 0x00020000 */
  1333. #define RCC_CIR_LSERDYC RCC_CIR_LSERDYC_Msk /*!< LSE Ready Interrupt Clear */
  1334. #define RCC_CIR_HSIRDYC_Pos (18U)
  1335. #define RCC_CIR_HSIRDYC_Msk (0x1UL << RCC_CIR_HSIRDYC_Pos) /*!< 0x00040000 */
  1336. #define RCC_CIR_HSIRDYC RCC_CIR_HSIRDYC_Msk /*!< HSI Ready Interrupt Clear */
  1337. #define RCC_CIR_HSERDYC_Pos (19U)
  1338. #define RCC_CIR_HSERDYC_Msk (0x1UL << RCC_CIR_HSERDYC_Pos) /*!< 0x00080000 */
  1339. #define RCC_CIR_HSERDYC RCC_CIR_HSERDYC_Msk /*!< HSE Ready Interrupt Clear */
  1340. #define RCC_CIR_PLLRDYC_Pos (20U)
  1341. #define RCC_CIR_PLLRDYC_Msk (0x1UL << RCC_CIR_PLLRDYC_Pos) /*!< 0x00100000 */
  1342. #define RCC_CIR_PLLRDYC RCC_CIR_PLLRDYC_Msk /*!< PLL Ready Interrupt Clear */
  1343. #define RCC_CIR_CSSC_Pos (23U)
  1344. #define RCC_CIR_CSSC_Msk (0x1UL << RCC_CIR_CSSC_Pos) /*!< 0x00800000 */
  1345. #define RCC_CIR_CSSC RCC_CIR_CSSC_Msk /*!< Clock Security System Interrupt Clear */
  1346. /***************** Bit definition for RCC_APB2RSTR register *****************/
  1347. #define RCC_APB2RSTR_AFIORST_Pos (0U)
  1348. #define RCC_APB2RSTR_AFIORST_Msk (0x1UL << RCC_APB2RSTR_AFIORST_Pos) /*!< 0x00000001 */
  1349. #define RCC_APB2RSTR_AFIORST RCC_APB2RSTR_AFIORST_Msk /*!< Alternate Function I/O reset */
  1350. #define RCC_APB2RSTR_IOPARST_Pos (2U)
  1351. #define RCC_APB2RSTR_IOPARST_Msk (0x1UL << RCC_APB2RSTR_IOPARST_Pos) /*!< 0x00000004 */
  1352. #define RCC_APB2RSTR_IOPARST RCC_APB2RSTR_IOPARST_Msk /*!< I/O port A reset */
  1353. #define RCC_APB2RSTR_IOPBRST_Pos (3U)
  1354. #define RCC_APB2RSTR_IOPBRST_Msk (0x1UL << RCC_APB2RSTR_IOPBRST_Pos) /*!< 0x00000008 */
  1355. #define RCC_APB2RSTR_IOPBRST RCC_APB2RSTR_IOPBRST_Msk /*!< I/O port B reset */
  1356. #define RCC_APB2RSTR_IOPCRST_Pos (4U)
  1357. #define RCC_APB2RSTR_IOPCRST_Msk (0x1UL << RCC_APB2RSTR_IOPCRST_Pos) /*!< 0x00000010 */
  1358. #define RCC_APB2RSTR_IOPCRST RCC_APB2RSTR_IOPCRST_Msk /*!< I/O port C reset */
  1359. #define RCC_APB2RSTR_IOPDRST_Pos (5U)
  1360. #define RCC_APB2RSTR_IOPDRST_Msk (0x1UL << RCC_APB2RSTR_IOPDRST_Pos) /*!< 0x00000020 */
  1361. #define RCC_APB2RSTR_IOPDRST RCC_APB2RSTR_IOPDRST_Msk /*!< I/O port D reset */
  1362. #define RCC_APB2RSTR_ADC1RST_Pos (9U)
  1363. #define RCC_APB2RSTR_ADC1RST_Msk (0x1UL << RCC_APB2RSTR_ADC1RST_Pos) /*!< 0x00000200 */
  1364. #define RCC_APB2RSTR_ADC1RST RCC_APB2RSTR_ADC1RST_Msk /*!< ADC 1 interface reset */
  1365. #define RCC_APB2RSTR_ADC2RST_Pos (10U)
  1366. #define RCC_APB2RSTR_ADC2RST_Msk (0x1UL << RCC_APB2RSTR_ADC2RST_Pos) /*!< 0x00000400 */
  1367. #define RCC_APB2RSTR_ADC2RST RCC_APB2RSTR_ADC2RST_Msk /*!< ADC 2 interface reset */
  1368. #define RCC_APB2RSTR_TIM1RST_Pos (11U)
  1369. #define RCC_APB2RSTR_TIM1RST_Msk (0x1UL << RCC_APB2RSTR_TIM1RST_Pos) /*!< 0x00000800 */
  1370. #define RCC_APB2RSTR_TIM1RST RCC_APB2RSTR_TIM1RST_Msk /*!< TIM1 Timer reset */
  1371. #define RCC_APB2RSTR_SPI1RST_Pos (12U)
  1372. #define RCC_APB2RSTR_SPI1RST_Msk (0x1UL << RCC_APB2RSTR_SPI1RST_Pos) /*!< 0x00001000 */
  1373. #define RCC_APB2RSTR_SPI1RST RCC_APB2RSTR_SPI1RST_Msk /*!< SPI 1 reset */
  1374. #define RCC_APB2RSTR_USART1RST_Pos (14U)
  1375. #define RCC_APB2RSTR_USART1RST_Msk (0x1UL << RCC_APB2RSTR_USART1RST_Pos) /*!< 0x00004000 */
  1376. #define RCC_APB2RSTR_USART1RST RCC_APB2RSTR_USART1RST_Msk /*!< USART1 reset */
  1377. #define RCC_APB2RSTR_IOPERST_Pos (6U)
  1378. #define RCC_APB2RSTR_IOPERST_Msk (0x1UL << RCC_APB2RSTR_IOPERST_Pos) /*!< 0x00000040 */
  1379. #define RCC_APB2RSTR_IOPERST RCC_APB2RSTR_IOPERST_Msk /*!< I/O port E reset */
  1380. #define RCC_APB2RSTR_IOPFRST_Pos (7U)
  1381. #define RCC_APB2RSTR_IOPFRST_Msk (0x1UL << RCC_APB2RSTR_IOPFRST_Pos) /*!< 0x00000080 */
  1382. #define RCC_APB2RSTR_IOPFRST RCC_APB2RSTR_IOPFRST_Msk /*!< I/O port F reset */
  1383. #define RCC_APB2RSTR_IOPGRST_Pos (8U)
  1384. #define RCC_APB2RSTR_IOPGRST_Msk (0x1UL << RCC_APB2RSTR_IOPGRST_Pos) /*!< 0x00000100 */
  1385. #define RCC_APB2RSTR_IOPGRST RCC_APB2RSTR_IOPGRST_Msk /*!< I/O port G reset */
  1386. #define RCC_APB2RSTR_TIM8RST_Pos (13U)
  1387. #define RCC_APB2RSTR_TIM8RST_Msk (0x1UL << RCC_APB2RSTR_TIM8RST_Pos) /*!< 0x00002000 */
  1388. #define RCC_APB2RSTR_TIM8RST RCC_APB2RSTR_TIM8RST_Msk /*!< TIM8 Timer reset */
  1389. #define RCC_APB2RSTR_ADC3RST_Pos (15U)
  1390. #define RCC_APB2RSTR_ADC3RST_Msk (0x1UL << RCC_APB2RSTR_ADC3RST_Pos) /*!< 0x00008000 */
  1391. #define RCC_APB2RSTR_ADC3RST RCC_APB2RSTR_ADC3RST_Msk /*!< ADC3 interface reset */
  1392. /***************** Bit definition for RCC_APB1RSTR register *****************/
  1393. #define RCC_APB1RSTR_TIM2RST_Pos (0U)
  1394. #define RCC_APB1RSTR_TIM2RST_Msk (0x1UL << RCC_APB1RSTR_TIM2RST_Pos) /*!< 0x00000001 */
  1395. #define RCC_APB1RSTR_TIM2RST RCC_APB1RSTR_TIM2RST_Msk /*!< Timer 2 reset */
  1396. #define RCC_APB1RSTR_TIM3RST_Pos (1U)
  1397. #define RCC_APB1RSTR_TIM3RST_Msk (0x1UL << RCC_APB1RSTR_TIM3RST_Pos) /*!< 0x00000002 */
  1398. #define RCC_APB1RSTR_TIM3RST RCC_APB1RSTR_TIM3RST_Msk /*!< Timer 3 reset */
  1399. #define RCC_APB1RSTR_WWDGRST_Pos (11U)
  1400. #define RCC_APB1RSTR_WWDGRST_Msk (0x1UL << RCC_APB1RSTR_WWDGRST_Pos) /*!< 0x00000800 */
  1401. #define RCC_APB1RSTR_WWDGRST RCC_APB1RSTR_WWDGRST_Msk /*!< Window Watchdog reset */
  1402. #define RCC_APB1RSTR_USART2RST_Pos (17U)
  1403. #define RCC_APB1RSTR_USART2RST_Msk (0x1UL << RCC_APB1RSTR_USART2RST_Pos) /*!< 0x00020000 */
  1404. #define RCC_APB1RSTR_USART2RST RCC_APB1RSTR_USART2RST_Msk /*!< USART 2 reset */
  1405. #define RCC_APB1RSTR_I2C1RST_Pos (21U)
  1406. #define RCC_APB1RSTR_I2C1RST_Msk (0x1UL << RCC_APB1RSTR_I2C1RST_Pos) /*!< 0x00200000 */
  1407. #define RCC_APB1RSTR_I2C1RST RCC_APB1RSTR_I2C1RST_Msk /*!< I2C 1 reset */
  1408. #define RCC_APB1RSTR_CAN1RST_Pos (25U)
  1409. #define RCC_APB1RSTR_CAN1RST_Msk (0x1UL << RCC_APB1RSTR_CAN1RST_Pos) /*!< 0x02000000 */
  1410. #define RCC_APB1RSTR_CAN1RST RCC_APB1RSTR_CAN1RST_Msk /*!< CAN1 reset */
  1411. #define RCC_APB1RSTR_BKPRST_Pos (27U)
  1412. #define RCC_APB1RSTR_BKPRST_Msk (0x1UL << RCC_APB1RSTR_BKPRST_Pos) /*!< 0x08000000 */
  1413. #define RCC_APB1RSTR_BKPRST RCC_APB1RSTR_BKPRST_Msk /*!< Backup interface reset */
  1414. #define RCC_APB1RSTR_PWRRST_Pos (28U)
  1415. #define RCC_APB1RSTR_PWRRST_Msk (0x1UL << RCC_APB1RSTR_PWRRST_Pos) /*!< 0x10000000 */
  1416. #define RCC_APB1RSTR_PWRRST RCC_APB1RSTR_PWRRST_Msk /*!< Power interface reset */
  1417. #define RCC_APB1RSTR_TIM4RST_Pos (2U)
  1418. #define RCC_APB1RSTR_TIM4RST_Msk (0x1UL << RCC_APB1RSTR_TIM4RST_Pos) /*!< 0x00000004 */
  1419. #define RCC_APB1RSTR_TIM4RST RCC_APB1RSTR_TIM4RST_Msk /*!< Timer 4 reset */
  1420. #define RCC_APB1RSTR_SPI2RST_Pos (14U)
  1421. #define RCC_APB1RSTR_SPI2RST_Msk (0x1UL << RCC_APB1RSTR_SPI2RST_Pos) /*!< 0x00004000 */
  1422. #define RCC_APB1RSTR_SPI2RST RCC_APB1RSTR_SPI2RST_Msk /*!< SPI 2 reset */
  1423. #define RCC_APB1RSTR_USART3RST_Pos (18U)
  1424. #define RCC_APB1RSTR_USART3RST_Msk (0x1UL << RCC_APB1RSTR_USART3RST_Pos) /*!< 0x00040000 */
  1425. #define RCC_APB1RSTR_USART3RST RCC_APB1RSTR_USART3RST_Msk /*!< USART 3 reset */
  1426. #define RCC_APB1RSTR_I2C2RST_Pos (22U)
  1427. #define RCC_APB1RSTR_I2C2RST_Msk (0x1UL << RCC_APB1RSTR_I2C2RST_Pos) /*!< 0x00400000 */
  1428. #define RCC_APB1RSTR_I2C2RST RCC_APB1RSTR_I2C2RST_Msk /*!< I2C 2 reset */
  1429. #define RCC_APB1RSTR_USBRST_Pos (23U)
  1430. #define RCC_APB1RSTR_USBRST_Msk (0x1UL << RCC_APB1RSTR_USBRST_Pos) /*!< 0x00800000 */
  1431. #define RCC_APB1RSTR_USBRST RCC_APB1RSTR_USBRST_Msk /*!< USB Device reset */
  1432. #define RCC_APB1RSTR_TIM5RST_Pos (3U)
  1433. #define RCC_APB1RSTR_TIM5RST_Msk (0x1UL << RCC_APB1RSTR_TIM5RST_Pos) /*!< 0x00000008 */
  1434. #define RCC_APB1RSTR_TIM5RST RCC_APB1RSTR_TIM5RST_Msk /*!< Timer 5 reset */
  1435. #define RCC_APB1RSTR_TIM6RST_Pos (4U)
  1436. #define RCC_APB1RSTR_TIM6RST_Msk (0x1UL << RCC_APB1RSTR_TIM6RST_Pos) /*!< 0x00000010 */
  1437. #define RCC_APB1RSTR_TIM6RST RCC_APB1RSTR_TIM6RST_Msk /*!< Timer 6 reset */
  1438. #define RCC_APB1RSTR_TIM7RST_Pos (5U)
  1439. #define RCC_APB1RSTR_TIM7RST_Msk (0x1UL << RCC_APB1RSTR_TIM7RST_Pos) /*!< 0x00000020 */
  1440. #define RCC_APB1RSTR_TIM7RST RCC_APB1RSTR_TIM7RST_Msk /*!< Timer 7 reset */
  1441. #define RCC_APB1RSTR_SPI3RST_Pos (15U)
  1442. #define RCC_APB1RSTR_SPI3RST_Msk (0x1UL << RCC_APB1RSTR_SPI3RST_Pos) /*!< 0x00008000 */
  1443. #define RCC_APB1RSTR_SPI3RST RCC_APB1RSTR_SPI3RST_Msk /*!< SPI 3 reset */
  1444. #define RCC_APB1RSTR_UART4RST_Pos (19U)
  1445. #define RCC_APB1RSTR_UART4RST_Msk (0x1UL << RCC_APB1RSTR_UART4RST_Pos) /*!< 0x00080000 */
  1446. #define RCC_APB1RSTR_UART4RST RCC_APB1RSTR_UART4RST_Msk /*!< UART 4 reset */
  1447. #define RCC_APB1RSTR_UART5RST_Pos (20U)
  1448. #define RCC_APB1RSTR_UART5RST_Msk (0x1UL << RCC_APB1RSTR_UART5RST_Pos) /*!< 0x00100000 */
  1449. #define RCC_APB1RSTR_UART5RST RCC_APB1RSTR_UART5RST_Msk /*!< UART 5 reset */
  1450. #define RCC_APB1RSTR_DACRST_Pos (29U)
  1451. #define RCC_APB1RSTR_DACRST_Msk (0x1UL << RCC_APB1RSTR_DACRST_Pos) /*!< 0x20000000 */
  1452. #define RCC_APB1RSTR_DACRST RCC_APB1RSTR_DACRST_Msk /*!< DAC interface reset */
  1453. /****************** Bit definition for RCC_AHBENR register ******************/
  1454. #define RCC_AHBENR_DMA1EN_Pos (0U)
  1455. #define RCC_AHBENR_DMA1EN_Msk (0x1UL << RCC_AHBENR_DMA1EN_Pos) /*!< 0x00000001 */
  1456. #define RCC_AHBENR_DMA1EN RCC_AHBENR_DMA1EN_Msk /*!< DMA1 clock enable */
  1457. #define RCC_AHBENR_SRAMEN_Pos (2U)
  1458. #define RCC_AHBENR_SRAMEN_Msk (0x1UL << RCC_AHBENR_SRAMEN_Pos) /*!< 0x00000004 */
  1459. #define RCC_AHBENR_SRAMEN RCC_AHBENR_SRAMEN_Msk /*!< SRAM interface clock enable */
  1460. #define RCC_AHBENR_FLITFEN_Pos (4U)
  1461. #define RCC_AHBENR_FLITFEN_Msk (0x1UL << RCC_AHBENR_FLITFEN_Pos) /*!< 0x00000010 */
  1462. #define RCC_AHBENR_FLITFEN RCC_AHBENR_FLITFEN_Msk /*!< FLITF clock enable */
  1463. #define RCC_AHBENR_CRCEN_Pos (6U)
  1464. #define RCC_AHBENR_CRCEN_Msk (0x1UL << RCC_AHBENR_CRCEN_Pos) /*!< 0x00000040 */
  1465. #define RCC_AHBENR_CRCEN RCC_AHBENR_CRCEN_Msk /*!< CRC clock enable */
  1466. #define RCC_AHBENR_DMA2EN_Pos (1U)
  1467. #define RCC_AHBENR_DMA2EN_Msk (0x1UL << RCC_AHBENR_DMA2EN_Pos) /*!< 0x00000002 */
  1468. #define RCC_AHBENR_DMA2EN RCC_AHBENR_DMA2EN_Msk /*!< DMA2 clock enable */
  1469. #define RCC_AHBENR_FSMCEN_Pos (8U)
  1470. #define RCC_AHBENR_FSMCEN_Msk (0x1UL << RCC_AHBENR_FSMCEN_Pos) /*!< 0x00000100 */
  1471. #define RCC_AHBENR_FSMCEN RCC_AHBENR_FSMCEN_Msk /*!< FSMC clock enable */
  1472. #define RCC_AHBENR_SDIOEN_Pos (10U)
  1473. #define RCC_AHBENR_SDIOEN_Msk (0x1UL << RCC_AHBENR_SDIOEN_Pos) /*!< 0x00000400 */
  1474. #define RCC_AHBENR_SDIOEN RCC_AHBENR_SDIOEN_Msk /*!< SDIO clock enable */
  1475. /****************** Bit definition for RCC_APB2ENR register *****************/
  1476. #define RCC_APB2ENR_AFIOEN_Pos (0U)
  1477. #define RCC_APB2ENR_AFIOEN_Msk (0x1UL << RCC_APB2ENR_AFIOEN_Pos) /*!< 0x00000001 */
  1478. #define RCC_APB2ENR_AFIOEN RCC_APB2ENR_AFIOEN_Msk /*!< Alternate Function I/O clock enable */
  1479. #define RCC_APB2ENR_IOPAEN_Pos (2U)
  1480. #define RCC_APB2ENR_IOPAEN_Msk (0x1UL << RCC_APB2ENR_IOPAEN_Pos) /*!< 0x00000004 */
  1481. #define RCC_APB2ENR_IOPAEN RCC_APB2ENR_IOPAEN_Msk /*!< I/O port A clock enable */
  1482. #define RCC_APB2ENR_IOPBEN_Pos (3U)
  1483. #define RCC_APB2ENR_IOPBEN_Msk (0x1UL << RCC_APB2ENR_IOPBEN_Pos) /*!< 0x00000008 */
  1484. #define RCC_APB2ENR_IOPBEN RCC_APB2ENR_IOPBEN_Msk /*!< I/O port B clock enable */
  1485. #define RCC_APB2ENR_IOPCEN_Pos (4U)
  1486. #define RCC_APB2ENR_IOPCEN_Msk (0x1UL << RCC_APB2ENR_IOPCEN_Pos) /*!< 0x00000010 */
  1487. #define RCC_APB2ENR_IOPCEN RCC_APB2ENR_IOPCEN_Msk /*!< I/O port C clock enable */
  1488. #define RCC_APB2ENR_IOPDEN_Pos (5U)
  1489. #define RCC_APB2ENR_IOPDEN_Msk (0x1UL << RCC_APB2ENR_IOPDEN_Pos) /*!< 0x00000020 */
  1490. #define RCC_APB2ENR_IOPDEN RCC_APB2ENR_IOPDEN_Msk /*!< I/O port D clock enable */
  1491. #define RCC_APB2ENR_ADC1EN_Pos (9U)
  1492. #define RCC_APB2ENR_ADC1EN_Msk (0x1UL << RCC_APB2ENR_ADC1EN_Pos) /*!< 0x00000200 */
  1493. #define RCC_APB2ENR_ADC1EN RCC_APB2ENR_ADC1EN_Msk /*!< ADC 1 interface clock enable */
  1494. #define RCC_APB2ENR_ADC2EN_Pos (10U)
  1495. #define RCC_APB2ENR_ADC2EN_Msk (0x1UL << RCC_APB2ENR_ADC2EN_Pos) /*!< 0x00000400 */
  1496. #define RCC_APB2ENR_ADC2EN RCC_APB2ENR_ADC2EN_Msk /*!< ADC 2 interface clock enable */
  1497. #define RCC_APB2ENR_TIM1EN_Pos (11U)
  1498. #define RCC_APB2ENR_TIM1EN_Msk (0x1UL << RCC_APB2ENR_TIM1EN_Pos) /*!< 0x00000800 */
  1499. #define RCC_APB2ENR_TIM1EN RCC_APB2ENR_TIM1EN_Msk /*!< TIM1 Timer clock enable */
  1500. #define RCC_APB2ENR_SPI1EN_Pos (12U)
  1501. #define RCC_APB2ENR_SPI1EN_Msk (0x1UL << RCC_APB2ENR_SPI1EN_Pos) /*!< 0x00001000 */
  1502. #define RCC_APB2ENR_SPI1EN RCC_APB2ENR_SPI1EN_Msk /*!< SPI 1 clock enable */
  1503. #define RCC_APB2ENR_USART1EN_Pos (14U)
  1504. #define RCC_APB2ENR_USART1EN_Msk (0x1UL << RCC_APB2ENR_USART1EN_Pos) /*!< 0x00004000 */
  1505. #define RCC_APB2ENR_USART1EN RCC_APB2ENR_USART1EN_Msk /*!< USART1 clock enable */
  1506. #define RCC_APB2ENR_IOPEEN_Pos (6U)
  1507. #define RCC_APB2ENR_IOPEEN_Msk (0x1UL << RCC_APB2ENR_IOPEEN_Pos) /*!< 0x00000040 */
  1508. #define RCC_APB2ENR_IOPEEN RCC_APB2ENR_IOPEEN_Msk /*!< I/O port E clock enable */
  1509. #define RCC_APB2ENR_IOPFEN_Pos (7U)
  1510. #define RCC_APB2ENR_IOPFEN_Msk (0x1UL << RCC_APB2ENR_IOPFEN_Pos) /*!< 0x00000080 */
  1511. #define RCC_APB2ENR_IOPFEN RCC_APB2ENR_IOPFEN_Msk /*!< I/O port F clock enable */
  1512. #define RCC_APB2ENR_IOPGEN_Pos (8U)
  1513. #define RCC_APB2ENR_IOPGEN_Msk (0x1UL << RCC_APB2ENR_IOPGEN_Pos) /*!< 0x00000100 */
  1514. #define RCC_APB2ENR_IOPGEN RCC_APB2ENR_IOPGEN_Msk /*!< I/O port G clock enable */
  1515. #define RCC_APB2ENR_TIM8EN_Pos (13U)
  1516. #define RCC_APB2ENR_TIM8EN_Msk (0x1UL << RCC_APB2ENR_TIM8EN_Pos) /*!< 0x00002000 */
  1517. #define RCC_APB2ENR_TIM8EN RCC_APB2ENR_TIM8EN_Msk /*!< TIM8 Timer clock enable */
  1518. #define RCC_APB2ENR_ADC3EN_Pos (15U)
  1519. #define RCC_APB2ENR_ADC3EN_Msk (0x1UL << RCC_APB2ENR_ADC3EN_Pos) /*!< 0x00008000 */
  1520. #define RCC_APB2ENR_ADC3EN RCC_APB2ENR_ADC3EN_Msk /*!< DMA1 clock enable */
  1521. /***************** Bit definition for RCC_APB1ENR register ******************/
  1522. #define RCC_APB1ENR_TIM2EN_Pos (0U)
  1523. #define RCC_APB1ENR_TIM2EN_Msk (0x1UL << RCC_APB1ENR_TIM2EN_Pos) /*!< 0x00000001 */
  1524. #define RCC_APB1ENR_TIM2EN RCC_APB1ENR_TIM2EN_Msk /*!< Timer 2 clock enabled*/
  1525. #define RCC_APB1ENR_TIM3EN_Pos (1U)
  1526. #define RCC_APB1ENR_TIM3EN_Msk (0x1UL << RCC_APB1ENR_TIM3EN_Pos) /*!< 0x00000002 */
  1527. #define RCC_APB1ENR_TIM3EN RCC_APB1ENR_TIM3EN_Msk /*!< Timer 3 clock enable */
  1528. #define RCC_APB1ENR_WWDGEN_Pos (11U)
  1529. #define RCC_APB1ENR_WWDGEN_Msk (0x1UL << RCC_APB1ENR_WWDGEN_Pos) /*!< 0x00000800 */
  1530. #define RCC_APB1ENR_WWDGEN RCC_APB1ENR_WWDGEN_Msk /*!< Window Watchdog clock enable */
  1531. #define RCC_APB1ENR_USART2EN_Pos (17U)
  1532. #define RCC_APB1ENR_USART2EN_Msk (0x1UL << RCC_APB1ENR_USART2EN_Pos) /*!< 0x00020000 */
  1533. #define RCC_APB1ENR_USART2EN RCC_APB1ENR_USART2EN_Msk /*!< USART 2 clock enable */
  1534. #define RCC_APB1ENR_I2C1EN_Pos (21U)
  1535. #define RCC_APB1ENR_I2C1EN_Msk (0x1UL << RCC_APB1ENR_I2C1EN_Pos) /*!< 0x00200000 */
  1536. #define RCC_APB1ENR_I2C1EN RCC_APB1ENR_I2C1EN_Msk /*!< I2C 1 clock enable */
  1537. #define RCC_APB1ENR_CAN1EN_Pos (25U)
  1538. #define RCC_APB1ENR_CAN1EN_Msk (0x1UL << RCC_APB1ENR_CAN1EN_Pos) /*!< 0x02000000 */
  1539. #define RCC_APB1ENR_CAN1EN RCC_APB1ENR_CAN1EN_Msk /*!< CAN1 clock enable */
  1540. #define RCC_APB1ENR_BKPEN_Pos (27U)
  1541. #define RCC_APB1ENR_BKPEN_Msk (0x1UL << RCC_APB1ENR_BKPEN_Pos) /*!< 0x08000000 */
  1542. #define RCC_APB1ENR_BKPEN RCC_APB1ENR_BKPEN_Msk /*!< Backup interface clock enable */
  1543. #define RCC_APB1ENR_PWREN_Pos (28U)
  1544. #define RCC_APB1ENR_PWREN_Msk (0x1UL << RCC_APB1ENR_PWREN_Pos) /*!< 0x10000000 */
  1545. #define RCC_APB1ENR_PWREN RCC_APB1ENR_PWREN_Msk /*!< Power interface clock enable */
  1546. #define RCC_APB1ENR_TIM4EN_Pos (2U)
  1547. #define RCC_APB1ENR_TIM4EN_Msk (0x1UL << RCC_APB1ENR_TIM4EN_Pos) /*!< 0x00000004 */
  1548. #define RCC_APB1ENR_TIM4EN RCC_APB1ENR_TIM4EN_Msk /*!< Timer 4 clock enable */
  1549. #define RCC_APB1ENR_SPI2EN_Pos (14U)
  1550. #define RCC_APB1ENR_SPI2EN_Msk (0x1UL << RCC_APB1ENR_SPI2EN_Pos) /*!< 0x00004000 */
  1551. #define RCC_APB1ENR_SPI2EN RCC_APB1ENR_SPI2EN_Msk /*!< SPI 2 clock enable */
  1552. #define RCC_APB1ENR_USART3EN_Pos (18U)
  1553. #define RCC_APB1ENR_USART3EN_Msk (0x1UL << RCC_APB1ENR_USART3EN_Pos) /*!< 0x00040000 */
  1554. #define RCC_APB1ENR_USART3EN RCC_APB1ENR_USART3EN_Msk /*!< USART 3 clock enable */
  1555. #define RCC_APB1ENR_I2C2EN_Pos (22U)
  1556. #define RCC_APB1ENR_I2C2EN_Msk (0x1UL << RCC_APB1ENR_I2C2EN_Pos) /*!< 0x00400000 */
  1557. #define RCC_APB1ENR_I2C2EN RCC_APB1ENR_I2C2EN_Msk /*!< I2C 2 clock enable */
  1558. #define RCC_APB1ENR_USBEN_Pos (23U)
  1559. #define RCC_APB1ENR_USBEN_Msk (0x1UL << RCC_APB1ENR_USBEN_Pos) /*!< 0x00800000 */
  1560. #define RCC_APB1ENR_USBEN RCC_APB1ENR_USBEN_Msk /*!< USB Device clock enable */
  1561. #define RCC_APB1ENR_TIM5EN_Pos (3U)
  1562. #define RCC_APB1ENR_TIM5EN_Msk (0x1UL << RCC_APB1ENR_TIM5EN_Pos) /*!< 0x00000008 */
  1563. #define RCC_APB1ENR_TIM5EN RCC_APB1ENR_TIM5EN_Msk /*!< Timer 5 clock enable */
  1564. #define RCC_APB1ENR_TIM6EN_Pos (4U)
  1565. #define RCC_APB1ENR_TIM6EN_Msk (0x1UL << RCC_APB1ENR_TIM6EN_Pos) /*!< 0x00000010 */
  1566. #define RCC_APB1ENR_TIM6EN RCC_APB1ENR_TIM6EN_Msk /*!< Timer 6 clock enable */
  1567. #define RCC_APB1ENR_TIM7EN_Pos (5U)
  1568. #define RCC_APB1ENR_TIM7EN_Msk (0x1UL << RCC_APB1ENR_TIM7EN_Pos) /*!< 0x00000020 */
  1569. #define RCC_APB1ENR_TIM7EN RCC_APB1ENR_TIM7EN_Msk /*!< Timer 7 clock enable */
  1570. #define RCC_APB1ENR_SPI3EN_Pos (15U)
  1571. #define RCC_APB1ENR_SPI3EN_Msk (0x1UL << RCC_APB1ENR_SPI3EN_Pos) /*!< 0x00008000 */
  1572. #define RCC_APB1ENR_SPI3EN RCC_APB1ENR_SPI3EN_Msk /*!< SPI 3 clock enable */
  1573. #define RCC_APB1ENR_UART4EN_Pos (19U)
  1574. #define RCC_APB1ENR_UART4EN_Msk (0x1UL << RCC_APB1ENR_UART4EN_Pos) /*!< 0x00080000 */
  1575. #define RCC_APB1ENR_UART4EN RCC_APB1ENR_UART4EN_Msk /*!< UART 4 clock enable */
  1576. #define RCC_APB1ENR_UART5EN_Pos (20U)
  1577. #define RCC_APB1ENR_UART5EN_Msk (0x1UL << RCC_APB1ENR_UART5EN_Pos) /*!< 0x00100000 */
  1578. #define RCC_APB1ENR_UART5EN RCC_APB1ENR_UART5EN_Msk /*!< UART 5 clock enable */
  1579. #define RCC_APB1ENR_DACEN_Pos (29U)
  1580. #define RCC_APB1ENR_DACEN_Msk (0x1UL << RCC_APB1ENR_DACEN_Pos) /*!< 0x20000000 */
  1581. #define RCC_APB1ENR_DACEN RCC_APB1ENR_DACEN_Msk /*!< DAC interface clock enable */
  1582. /******************* Bit definition for RCC_BDCR register *******************/
  1583. #define RCC_BDCR_LSEON_Pos (0U)
  1584. #define RCC_BDCR_LSEON_Msk (0x1UL << RCC_BDCR_LSEON_Pos) /*!< 0x00000001 */
  1585. #define RCC_BDCR_LSEON RCC_BDCR_LSEON_Msk /*!< External Low Speed oscillator enable */
  1586. #define RCC_BDCR_LSERDY_Pos (1U)
  1587. #define RCC_BDCR_LSERDY_Msk (0x1UL << RCC_BDCR_LSERDY_Pos) /*!< 0x00000002 */
  1588. #define RCC_BDCR_LSERDY RCC_BDCR_LSERDY_Msk /*!< External Low Speed oscillator Ready */
  1589. #define RCC_BDCR_LSEBYP_Pos (2U)
  1590. #define RCC_BDCR_LSEBYP_Msk (0x1UL << RCC_BDCR_LSEBYP_Pos) /*!< 0x00000004 */
  1591. #define RCC_BDCR_LSEBYP RCC_BDCR_LSEBYP_Msk /*!< External Low Speed oscillator Bypass */
  1592. #define RCC_BDCR_RTCSEL_Pos (8U)
  1593. #define RCC_BDCR_RTCSEL_Msk (0x3UL << RCC_BDCR_RTCSEL_Pos) /*!< 0x00000300 */
  1594. #define RCC_BDCR_RTCSEL RCC_BDCR_RTCSEL_Msk /*!< RTCSEL[1:0] bits (RTC clock source selection) */
  1595. #define RCC_BDCR_RTCSEL_0 (0x1UL << RCC_BDCR_RTCSEL_Pos) /*!< 0x00000100 */
  1596. #define RCC_BDCR_RTCSEL_1 (0x2UL << RCC_BDCR_RTCSEL_Pos) /*!< 0x00000200 */
  1597. /*!< RTC congiguration */
  1598. #define RCC_BDCR_RTCSEL_NOCLOCK 0x00000000U /*!< No clock */
  1599. #define RCC_BDCR_RTCSEL_LSE 0x00000100U /*!< LSE oscillator clock used as RTC clock */
  1600. #define RCC_BDCR_RTCSEL_LSI 0x00000200U /*!< LSI oscillator clock used as RTC clock */
  1601. #define RCC_BDCR_RTCSEL_HSE 0x00000300U /*!< HSE oscillator clock divided by 128 used as RTC clock */
  1602. #define RCC_BDCR_RTCEN_Pos (15U)
  1603. #define RCC_BDCR_RTCEN_Msk (0x1UL << RCC_BDCR_RTCEN_Pos) /*!< 0x00008000 */
  1604. #define RCC_BDCR_RTCEN RCC_BDCR_RTCEN_Msk /*!< RTC clock enable */
  1605. #define RCC_BDCR_BDRST_Pos (16U)
  1606. #define RCC_BDCR_BDRST_Msk (0x1UL << RCC_BDCR_BDRST_Pos) /*!< 0x00010000 */
  1607. #define RCC_BDCR_BDRST RCC_BDCR_BDRST_Msk /*!< Backup domain software reset */
  1608. /******************* Bit definition for RCC_CSR register ********************/
  1609. #define RCC_CSR_LSION_Pos (0U)
  1610. #define RCC_CSR_LSION_Msk (0x1UL << RCC_CSR_LSION_Pos) /*!< 0x00000001 */
  1611. #define RCC_CSR_LSION RCC_CSR_LSION_Msk /*!< Internal Low Speed oscillator enable */
  1612. #define RCC_CSR_LSIRDY_Pos (1U)
  1613. #define RCC_CSR_LSIRDY_Msk (0x1UL << RCC_CSR_LSIRDY_Pos) /*!< 0x00000002 */
  1614. #define RCC_CSR_LSIRDY RCC_CSR_LSIRDY_Msk /*!< Internal Low Speed oscillator Ready */
  1615. #define RCC_CSR_RMVF_Pos (24U)
  1616. #define RCC_CSR_RMVF_Msk (0x1UL << RCC_CSR_RMVF_Pos) /*!< 0x01000000 */
  1617. #define RCC_CSR_RMVF RCC_CSR_RMVF_Msk /*!< Remove reset flag */
  1618. #define RCC_CSR_PINRSTF_Pos (26U)
  1619. #define RCC_CSR_PINRSTF_Msk (0x1UL << RCC_CSR_PINRSTF_Pos) /*!< 0x04000000 */
  1620. #define RCC_CSR_PINRSTF RCC_CSR_PINRSTF_Msk /*!< PIN reset flag */
  1621. #define RCC_CSR_PORRSTF_Pos (27U)
  1622. #define RCC_CSR_PORRSTF_Msk (0x1UL << RCC_CSR_PORRSTF_Pos) /*!< 0x08000000 */
  1623. #define RCC_CSR_PORRSTF RCC_CSR_PORRSTF_Msk /*!< POR/PDR reset flag */
  1624. #define RCC_CSR_SFTRSTF_Pos (28U)
  1625. #define RCC_CSR_SFTRSTF_Msk (0x1UL << RCC_CSR_SFTRSTF_Pos) /*!< 0x10000000 */
  1626. #define RCC_CSR_SFTRSTF RCC_CSR_SFTRSTF_Msk /*!< Software Reset flag */
  1627. #define RCC_CSR_IWDGRSTF_Pos (29U)
  1628. #define RCC_CSR_IWDGRSTF_Msk (0x1UL << RCC_CSR_IWDGRSTF_Pos) /*!< 0x20000000 */
  1629. #define RCC_CSR_IWDGRSTF RCC_CSR_IWDGRSTF_Msk /*!< Independent Watchdog reset flag */
  1630. #define RCC_CSR_WWDGRSTF_Pos (30U)
  1631. #define RCC_CSR_WWDGRSTF_Msk (0x1UL << RCC_CSR_WWDGRSTF_Pos) /*!< 0x40000000 */
  1632. #define RCC_CSR_WWDGRSTF RCC_CSR_WWDGRSTF_Msk /*!< Window watchdog reset flag */
  1633. #define RCC_CSR_LPWRRSTF_Pos (31U)
  1634. #define RCC_CSR_LPWRRSTF_Msk (0x1UL << RCC_CSR_LPWRRSTF_Pos) /*!< 0x80000000 */
  1635. #define RCC_CSR_LPWRRSTF RCC_CSR_LPWRRSTF_Msk /*!< Low-Power reset flag */
  1636. /******************************************************************************/
  1637. /* */
  1638. /* General Purpose and Alternate Function I/O */
  1639. /* */
  1640. /******************************************************************************/
  1641. /******************* Bit definition for GPIO_CRL register *******************/
  1642. #define GPIO_CRL_MODE_Pos (0U)
  1643. #define GPIO_CRL_MODE_Msk (0x33333333UL << GPIO_CRL_MODE_Pos) /*!< 0x33333333 */
  1644. #define GPIO_CRL_MODE GPIO_CRL_MODE_Msk /*!< Port x mode bits */
  1645. #define GPIO_CRL_MODE0_Pos (0U)
  1646. #define GPIO_CRL_MODE0_Msk (0x3UL << GPIO_CRL_MODE0_Pos) /*!< 0x00000003 */
  1647. #define GPIO_CRL_MODE0 GPIO_CRL_MODE0_Msk /*!< MODE0[1:0] bits (Port x mode bits, pin 0) */
  1648. #define GPIO_CRL_MODE0_0 (0x1UL << GPIO_CRL_MODE0_Pos) /*!< 0x00000001 */
  1649. #define GPIO_CRL_MODE0_1 (0x2UL << GPIO_CRL_MODE0_Pos) /*!< 0x00000002 */
  1650. #define GPIO_CRL_MODE1_Pos (4U)
  1651. #define GPIO_CRL_MODE1_Msk (0x3UL << GPIO_CRL_MODE1_Pos) /*!< 0x00000030 */
  1652. #define GPIO_CRL_MODE1 GPIO_CRL_MODE1_Msk /*!< MODE1[1:0] bits (Port x mode bits, pin 1) */
  1653. #define GPIO_CRL_MODE1_0 (0x1UL << GPIO_CRL_MODE1_Pos) /*!< 0x00000010 */
  1654. #define GPIO_CRL_MODE1_1 (0x2UL << GPIO_CRL_MODE1_Pos) /*!< 0x00000020 */
  1655. #define GPIO_CRL_MODE2_Pos (8U)
  1656. #define GPIO_CRL_MODE2_Msk (0x3UL << GPIO_CRL_MODE2_Pos) /*!< 0x00000300 */
  1657. #define GPIO_CRL_MODE2 GPIO_CRL_MODE2_Msk /*!< MODE2[1:0] bits (Port x mode bits, pin 2) */
  1658. #define GPIO_CRL_MODE2_0 (0x1UL << GPIO_CRL_MODE2_Pos) /*!< 0x00000100 */
  1659. #define GPIO_CRL_MODE2_1 (0x2UL << GPIO_CRL_MODE2_Pos) /*!< 0x00000200 */
  1660. #define GPIO_CRL_MODE3_Pos (12U)
  1661. #define GPIO_CRL_MODE3_Msk (0x3UL << GPIO_CRL_MODE3_Pos) /*!< 0x00003000 */
  1662. #define GPIO_CRL_MODE3 GPIO_CRL_MODE3_Msk /*!< MODE3[1:0] bits (Port x mode bits, pin 3) */
  1663. #define GPIO_CRL_MODE3_0 (0x1UL << GPIO_CRL_MODE3_Pos) /*!< 0x00001000 */
  1664. #define GPIO_CRL_MODE3_1 (0x2UL << GPIO_CRL_MODE3_Pos) /*!< 0x00002000 */
  1665. #define GPIO_CRL_MODE4_Pos (16U)
  1666. #define GPIO_CRL_MODE4_Msk (0x3UL << GPIO_CRL_MODE4_Pos) /*!< 0x00030000 */
  1667. #define GPIO_CRL_MODE4 GPIO_CRL_MODE4_Msk /*!< MODE4[1:0] bits (Port x mode bits, pin 4) */
  1668. #define GPIO_CRL_MODE4_0 (0x1UL << GPIO_CRL_MODE4_Pos) /*!< 0x00010000 */
  1669. #define GPIO_CRL_MODE4_1 (0x2UL << GPIO_CRL_MODE4_Pos) /*!< 0x00020000 */
  1670. #define GPIO_CRL_MODE5_Pos (20U)
  1671. #define GPIO_CRL_MODE5_Msk (0x3UL << GPIO_CRL_MODE5_Pos) /*!< 0x00300000 */
  1672. #define GPIO_CRL_MODE5 GPIO_CRL_MODE5_Msk /*!< MODE5[1:0] bits (Port x mode bits, pin 5) */
  1673. #define GPIO_CRL_MODE5_0 (0x1UL << GPIO_CRL_MODE5_Pos) /*!< 0x00100000 */
  1674. #define GPIO_CRL_MODE5_1 (0x2UL << GPIO_CRL_MODE5_Pos) /*!< 0x00200000 */
  1675. #define GPIO_CRL_MODE6_Pos (24U)
  1676. #define GPIO_CRL_MODE6_Msk (0x3UL << GPIO_CRL_MODE6_Pos) /*!< 0x03000000 */
  1677. #define GPIO_CRL_MODE6 GPIO_CRL_MODE6_Msk /*!< MODE6[1:0] bits (Port x mode bits, pin 6) */
  1678. #define GPIO_CRL_MODE6_0 (0x1UL << GPIO_CRL_MODE6_Pos) /*!< 0x01000000 */
  1679. #define GPIO_CRL_MODE6_1 (0x2UL << GPIO_CRL_MODE6_Pos) /*!< 0x02000000 */
  1680. #define GPIO_CRL_MODE7_Pos (28U)
  1681. #define GPIO_CRL_MODE7_Msk (0x3UL << GPIO_CRL_MODE7_Pos) /*!< 0x30000000 */
  1682. #define GPIO_CRL_MODE7 GPIO_CRL_MODE7_Msk /*!< MODE7[1:0] bits (Port x mode bits, pin 7) */
  1683. #define GPIO_CRL_MODE7_0 (0x1UL << GPIO_CRL_MODE7_Pos) /*!< 0x10000000 */
  1684. #define GPIO_CRL_MODE7_1 (0x2UL << GPIO_CRL_MODE7_Pos) /*!< 0x20000000 */
  1685. #define GPIO_CRL_CNF_Pos (2U)
  1686. #define GPIO_CRL_CNF_Msk (0x33333333UL << GPIO_CRL_CNF_Pos) /*!< 0xCCCCCCCC */
  1687. #define GPIO_CRL_CNF GPIO_CRL_CNF_Msk /*!< Port x configuration bits */
  1688. #define GPIO_CRL_CNF0_Pos (2U)
  1689. #define GPIO_CRL_CNF0_Msk (0x3UL << GPIO_CRL_CNF0_Pos) /*!< 0x0000000C */
  1690. #define GPIO_CRL_CNF0 GPIO_CRL_CNF0_Msk /*!< CNF0[1:0] bits (Port x configuration bits, pin 0) */
  1691. #define GPIO_CRL_CNF0_0 (0x1UL << GPIO_CRL_CNF0_Pos) /*!< 0x00000004 */
  1692. #define GPIO_CRL_CNF0_1 (0x2UL << GPIO_CRL_CNF0_Pos) /*!< 0x00000008 */
  1693. #define GPIO_CRL_CNF1_Pos (6U)
  1694. #define GPIO_CRL_CNF1_Msk (0x3UL << GPIO_CRL_CNF1_Pos) /*!< 0x000000C0 */
  1695. #define GPIO_CRL_CNF1 GPIO_CRL_CNF1_Msk /*!< CNF1[1:0] bits (Port x configuration bits, pin 1) */
  1696. #define GPIO_CRL_CNF1_0 (0x1UL << GPIO_CRL_CNF1_Pos) /*!< 0x00000040 */
  1697. #define GPIO_CRL_CNF1_1 (0x2UL << GPIO_CRL_CNF1_Pos) /*!< 0x00000080 */
  1698. #define GPIO_CRL_CNF2_Pos (10U)
  1699. #define GPIO_CRL_CNF2_Msk (0x3UL << GPIO_CRL_CNF2_Pos) /*!< 0x00000C00 */
  1700. #define GPIO_CRL_CNF2 GPIO_CRL_CNF2_Msk /*!< CNF2[1:0] bits (Port x configuration bits, pin 2) */
  1701. #define GPIO_CRL_CNF2_0 (0x1UL << GPIO_CRL_CNF2_Pos) /*!< 0x00000400 */
  1702. #define GPIO_CRL_CNF2_1 (0x2UL << GPIO_CRL_CNF2_Pos) /*!< 0x00000800 */
  1703. #define GPIO_CRL_CNF3_Pos (14U)
  1704. #define GPIO_CRL_CNF3_Msk (0x3UL << GPIO_CRL_CNF3_Pos) /*!< 0x0000C000 */
  1705. #define GPIO_CRL_CNF3 GPIO_CRL_CNF3_Msk /*!< CNF3[1:0] bits (Port x configuration bits, pin 3) */
  1706. #define GPIO_CRL_CNF3_0 (0x1UL << GPIO_CRL_CNF3_Pos) /*!< 0x00004000 */
  1707. #define GPIO_CRL_CNF3_1 (0x2UL << GPIO_CRL_CNF3_Pos) /*!< 0x00008000 */
  1708. #define GPIO_CRL_CNF4_Pos (18U)
  1709. #define GPIO_CRL_CNF4_Msk (0x3UL << GPIO_CRL_CNF4_Pos) /*!< 0x000C0000 */
  1710. #define GPIO_CRL_CNF4 GPIO_CRL_CNF4_Msk /*!< CNF4[1:0] bits (Port x configuration bits, pin 4) */
  1711. #define GPIO_CRL_CNF4_0 (0x1UL << GPIO_CRL_CNF4_Pos) /*!< 0x00040000 */
  1712. #define GPIO_CRL_CNF4_1 (0x2UL << GPIO_CRL_CNF4_Pos) /*!< 0x00080000 */
  1713. #define GPIO_CRL_CNF5_Pos (22U)
  1714. #define GPIO_CRL_CNF5_Msk (0x3UL << GPIO_CRL_CNF5_Pos) /*!< 0x00C00000 */
  1715. #define GPIO_CRL_CNF5 GPIO_CRL_CNF5_Msk /*!< CNF5[1:0] bits (Port x configuration bits, pin 5) */
  1716. #define GPIO_CRL_CNF5_0 (0x1UL << GPIO_CRL_CNF5_Pos) /*!< 0x00400000 */
  1717. #define GPIO_CRL_CNF5_1 (0x2UL << GPIO_CRL_CNF5_Pos) /*!< 0x00800000 */
  1718. #define GPIO_CRL_CNF6_Pos (26U)
  1719. #define GPIO_CRL_CNF6_Msk (0x3UL << GPIO_CRL_CNF6_Pos) /*!< 0x0C000000 */
  1720. #define GPIO_CRL_CNF6 GPIO_CRL_CNF6_Msk /*!< CNF6[1:0] bits (Port x configuration bits, pin 6) */
  1721. #define GPIO_CRL_CNF6_0 (0x1UL << GPIO_CRL_CNF6_Pos) /*!< 0x04000000 */
  1722. #define GPIO_CRL_CNF6_1 (0x2UL << GPIO_CRL_CNF6_Pos) /*!< 0x08000000 */
  1723. #define GPIO_CRL_CNF7_Pos (30U)
  1724. #define GPIO_CRL_CNF7_Msk (0x3UL << GPIO_CRL_CNF7_Pos) /*!< 0xC0000000 */
  1725. #define GPIO_CRL_CNF7 GPIO_CRL_CNF7_Msk /*!< CNF7[1:0] bits (Port x configuration bits, pin 7) */
  1726. #define GPIO_CRL_CNF7_0 (0x1UL << GPIO_CRL_CNF7_Pos) /*!< 0x40000000 */
  1727. #define GPIO_CRL_CNF7_1 (0x2UL << GPIO_CRL_CNF7_Pos) /*!< 0x80000000 */
  1728. /******************* Bit definition for GPIO_CRH register *******************/
  1729. #define GPIO_CRH_MODE_Pos (0U)
  1730. #define GPIO_CRH_MODE_Msk (0x33333333UL << GPIO_CRH_MODE_Pos) /*!< 0x33333333 */
  1731. #define GPIO_CRH_MODE GPIO_CRH_MODE_Msk /*!< Port x mode bits */
  1732. #define GPIO_CRH_MODE8_Pos (0U)
  1733. #define GPIO_CRH_MODE8_Msk (0x3UL << GPIO_CRH_MODE8_Pos) /*!< 0x00000003 */
  1734. #define GPIO_CRH_MODE8 GPIO_CRH_MODE8_Msk /*!< MODE8[1:0] bits (Port x mode bits, pin 8) */
  1735. #define GPIO_CRH_MODE8_0 (0x1UL << GPIO_CRH_MODE8_Pos) /*!< 0x00000001 */
  1736. #define GPIO_CRH_MODE8_1 (0x2UL << GPIO_CRH_MODE8_Pos) /*!< 0x00000002 */
  1737. #define GPIO_CRH_MODE9_Pos (4U)
  1738. #define GPIO_CRH_MODE9_Msk (0x3UL << GPIO_CRH_MODE9_Pos) /*!< 0x00000030 */
  1739. #define GPIO_CRH_MODE9 GPIO_CRH_MODE9_Msk /*!< MODE9[1:0] bits (Port x mode bits, pin 9) */
  1740. #define GPIO_CRH_MODE9_0 (0x1UL << GPIO_CRH_MODE9_Pos) /*!< 0x00000010 */
  1741. #define GPIO_CRH_MODE9_1 (0x2UL << GPIO_CRH_MODE9_Pos) /*!< 0x00000020 */
  1742. #define GPIO_CRH_MODE10_Pos (8U)
  1743. #define GPIO_CRH_MODE10_Msk (0x3UL << GPIO_CRH_MODE10_Pos) /*!< 0x00000300 */
  1744. #define GPIO_CRH_MODE10 GPIO_CRH_MODE10_Msk /*!< MODE10[1:0] bits (Port x mode bits, pin 10) */
  1745. #define GPIO_CRH_MODE10_0 (0x1UL << GPIO_CRH_MODE10_Pos) /*!< 0x00000100 */
  1746. #define GPIO_CRH_MODE10_1 (0x2UL << GPIO_CRH_MODE10_Pos) /*!< 0x00000200 */
  1747. #define GPIO_CRH_MODE11_Pos (12U)
  1748. #define GPIO_CRH_MODE11_Msk (0x3UL << GPIO_CRH_MODE11_Pos) /*!< 0x00003000 */
  1749. #define GPIO_CRH_MODE11 GPIO_CRH_MODE11_Msk /*!< MODE11[1:0] bits (Port x mode bits, pin 11) */
  1750. #define GPIO_CRH_MODE11_0 (0x1UL << GPIO_CRH_MODE11_Pos) /*!< 0x00001000 */
  1751. #define GPIO_CRH_MODE11_1 (0x2UL << GPIO_CRH_MODE11_Pos) /*!< 0x00002000 */
  1752. #define GPIO_CRH_MODE12_Pos (16U)
  1753. #define GPIO_CRH_MODE12_Msk (0x3UL << GPIO_CRH_MODE12_Pos) /*!< 0x00030000 */
  1754. #define GPIO_CRH_MODE12 GPIO_CRH_MODE12_Msk /*!< MODE12[1:0] bits (Port x mode bits, pin 12) */
  1755. #define GPIO_CRH_MODE12_0 (0x1UL << GPIO_CRH_MODE12_Pos) /*!< 0x00010000 */
  1756. #define GPIO_CRH_MODE12_1 (0x2UL << GPIO_CRH_MODE12_Pos) /*!< 0x00020000 */
  1757. #define GPIO_CRH_MODE13_Pos (20U)
  1758. #define GPIO_CRH_MODE13_Msk (0x3UL << GPIO_CRH_MODE13_Pos) /*!< 0x00300000 */
  1759. #define GPIO_CRH_MODE13 GPIO_CRH_MODE13_Msk /*!< MODE13[1:0] bits (Port x mode bits, pin 13) */
  1760. #define GPIO_CRH_MODE13_0 (0x1UL << GPIO_CRH_MODE13_Pos) /*!< 0x00100000 */
  1761. #define GPIO_CRH_MODE13_1 (0x2UL << GPIO_CRH_MODE13_Pos) /*!< 0x00200000 */
  1762. #define GPIO_CRH_MODE14_Pos (24U)
  1763. #define GPIO_CRH_MODE14_Msk (0x3UL << GPIO_CRH_MODE14_Pos) /*!< 0x03000000 */
  1764. #define GPIO_CRH_MODE14 GPIO_CRH_MODE14_Msk /*!< MODE14[1:0] bits (Port x mode bits, pin 14) */
  1765. #define GPIO_CRH_MODE14_0 (0x1UL << GPIO_CRH_MODE14_Pos) /*!< 0x01000000 */
  1766. #define GPIO_CRH_MODE14_1 (0x2UL << GPIO_CRH_MODE14_Pos) /*!< 0x02000000 */
  1767. #define GPIO_CRH_MODE15_Pos (28U)
  1768. #define GPIO_CRH_MODE15_Msk (0x3UL << GPIO_CRH_MODE15_Pos) /*!< 0x30000000 */
  1769. #define GPIO_CRH_MODE15 GPIO_CRH_MODE15_Msk /*!< MODE15[1:0] bits (Port x mode bits, pin 15) */
  1770. #define GPIO_CRH_MODE15_0 (0x1UL << GPIO_CRH_MODE15_Pos) /*!< 0x10000000 */
  1771. #define GPIO_CRH_MODE15_1 (0x2UL << GPIO_CRH_MODE15_Pos) /*!< 0x20000000 */
  1772. #define GPIO_CRH_CNF_Pos (2U)
  1773. #define GPIO_CRH_CNF_Msk (0x33333333UL << GPIO_CRH_CNF_Pos) /*!< 0xCCCCCCCC */
  1774. #define GPIO_CRH_CNF GPIO_CRH_CNF_Msk /*!< Port x configuration bits */
  1775. #define GPIO_CRH_CNF8_Pos (2U)
  1776. #define GPIO_CRH_CNF8_Msk (0x3UL << GPIO_CRH_CNF8_Pos) /*!< 0x0000000C */
  1777. #define GPIO_CRH_CNF8 GPIO_CRH_CNF8_Msk /*!< CNF8[1:0] bits (Port x configuration bits, pin 8) */
  1778. #define GPIO_CRH_CNF8_0 (0x1UL << GPIO_CRH_CNF8_Pos) /*!< 0x00000004 */
  1779. #define GPIO_CRH_CNF8_1 (0x2UL << GPIO_CRH_CNF8_Pos) /*!< 0x00000008 */
  1780. #define GPIO_CRH_CNF9_Pos (6U)
  1781. #define GPIO_CRH_CNF9_Msk (0x3UL << GPIO_CRH_CNF9_Pos) /*!< 0x000000C0 */
  1782. #define GPIO_CRH_CNF9 GPIO_CRH_CNF9_Msk /*!< CNF9[1:0] bits (Port x configuration bits, pin 9) */
  1783. #define GPIO_CRH_CNF9_0 (0x1UL << GPIO_CRH_CNF9_Pos) /*!< 0x00000040 */
  1784. #define GPIO_CRH_CNF9_1 (0x2UL << GPIO_CRH_CNF9_Pos) /*!< 0x00000080 */
  1785. #define GPIO_CRH_CNF10_Pos (10U)
  1786. #define GPIO_CRH_CNF10_Msk (0x3UL << GPIO_CRH_CNF10_Pos) /*!< 0x00000C00 */
  1787. #define GPIO_CRH_CNF10 GPIO_CRH_CNF10_Msk /*!< CNF10[1:0] bits (Port x configuration bits, pin 10) */
  1788. #define GPIO_CRH_CNF10_0 (0x1UL << GPIO_CRH_CNF10_Pos) /*!< 0x00000400 */
  1789. #define GPIO_CRH_CNF10_1 (0x2UL << GPIO_CRH_CNF10_Pos) /*!< 0x00000800 */
  1790. #define GPIO_CRH_CNF11_Pos (14U)
  1791. #define GPIO_CRH_CNF11_Msk (0x3UL << GPIO_CRH_CNF11_Pos) /*!< 0x0000C000 */
  1792. #define GPIO_CRH_CNF11 GPIO_CRH_CNF11_Msk /*!< CNF11[1:0] bits (Port x configuration bits, pin 11) */
  1793. #define GPIO_CRH_CNF11_0 (0x1UL << GPIO_CRH_CNF11_Pos) /*!< 0x00004000 */
  1794. #define GPIO_CRH_CNF11_1 (0x2UL << GPIO_CRH_CNF11_Pos) /*!< 0x00008000 */
  1795. #define GPIO_CRH_CNF12_Pos (18U)
  1796. #define GPIO_CRH_CNF12_Msk (0x3UL << GPIO_CRH_CNF12_Pos) /*!< 0x000C0000 */
  1797. #define GPIO_CRH_CNF12 GPIO_CRH_CNF12_Msk /*!< CNF12[1:0] bits (Port x configuration bits, pin 12) */
  1798. #define GPIO_CRH_CNF12_0 (0x1UL << GPIO_CRH_CNF12_Pos) /*!< 0x00040000 */
  1799. #define GPIO_CRH_CNF12_1 (0x2UL << GPIO_CRH_CNF12_Pos) /*!< 0x00080000 */
  1800. #define GPIO_CRH_CNF13_Pos (22U)
  1801. #define GPIO_CRH_CNF13_Msk (0x3UL << GPIO_CRH_CNF13_Pos) /*!< 0x00C00000 */
  1802. #define GPIO_CRH_CNF13 GPIO_CRH_CNF13_Msk /*!< CNF13[1:0] bits (Port x configuration bits, pin 13) */
  1803. #define GPIO_CRH_CNF13_0 (0x1UL << GPIO_CRH_CNF13_Pos) /*!< 0x00400000 */
  1804. #define GPIO_CRH_CNF13_1 (0x2UL << GPIO_CRH_CNF13_Pos) /*!< 0x00800000 */
  1805. #define GPIO_CRH_CNF14_Pos (26U)
  1806. #define GPIO_CRH_CNF14_Msk (0x3UL << GPIO_CRH_CNF14_Pos) /*!< 0x0C000000 */
  1807. #define GPIO_CRH_CNF14 GPIO_CRH_CNF14_Msk /*!< CNF14[1:0] bits (Port x configuration bits, pin 14) */
  1808. #define GPIO_CRH_CNF14_0 (0x1UL << GPIO_CRH_CNF14_Pos) /*!< 0x04000000 */
  1809. #define GPIO_CRH_CNF14_1 (0x2UL << GPIO_CRH_CNF14_Pos) /*!< 0x08000000 */
  1810. #define GPIO_CRH_CNF15_Pos (30U)
  1811. #define GPIO_CRH_CNF15_Msk (0x3UL << GPIO_CRH_CNF15_Pos) /*!< 0xC0000000 */
  1812. #define GPIO_CRH_CNF15 GPIO_CRH_CNF15_Msk /*!< CNF15[1:0] bits (Port x configuration bits, pin 15) */
  1813. #define GPIO_CRH_CNF15_0 (0x1UL << GPIO_CRH_CNF15_Pos) /*!< 0x40000000 */
  1814. #define GPIO_CRH_CNF15_1 (0x2UL << GPIO_CRH_CNF15_Pos) /*!< 0x80000000 */
  1815. /*!<****************** Bit definition for GPIO_IDR register *******************/
  1816. #define GPIO_IDR_IDR0_Pos (0U)
  1817. #define GPIO_IDR_IDR0_Msk (0x1UL << GPIO_IDR_IDR0_Pos) /*!< 0x00000001 */
  1818. #define GPIO_IDR_IDR0 GPIO_IDR_IDR0_Msk /*!< Port input data, bit 0 */
  1819. #define GPIO_IDR_IDR1_Pos (1U)
  1820. #define GPIO_IDR_IDR1_Msk (0x1UL << GPIO_IDR_IDR1_Pos) /*!< 0x00000002 */
  1821. #define GPIO_IDR_IDR1 GPIO_IDR_IDR1_Msk /*!< Port input data, bit 1 */
  1822. #define GPIO_IDR_IDR2_Pos (2U)
  1823. #define GPIO_IDR_IDR2_Msk (0x1UL << GPIO_IDR_IDR2_Pos) /*!< 0x00000004 */
  1824. #define GPIO_IDR_IDR2 GPIO_IDR_IDR2_Msk /*!< Port input data, bit 2 */
  1825. #define GPIO_IDR_IDR3_Pos (3U)
  1826. #define GPIO_IDR_IDR3_Msk (0x1UL << GPIO_IDR_IDR3_Pos) /*!< 0x00000008 */
  1827. #define GPIO_IDR_IDR3 GPIO_IDR_IDR3_Msk /*!< Port input data, bit 3 */
  1828. #define GPIO_IDR_IDR4_Pos (4U)
  1829. #define GPIO_IDR_IDR4_Msk (0x1UL << GPIO_IDR_IDR4_Pos) /*!< 0x00000010 */
  1830. #define GPIO_IDR_IDR4 GPIO_IDR_IDR4_Msk /*!< Port input data, bit 4 */
  1831. #define GPIO_IDR_IDR5_Pos (5U)
  1832. #define GPIO_IDR_IDR5_Msk (0x1UL << GPIO_IDR_IDR5_Pos) /*!< 0x00000020 */
  1833. #define GPIO_IDR_IDR5 GPIO_IDR_IDR5_Msk /*!< Port input data, bit 5 */
  1834. #define GPIO_IDR_IDR6_Pos (6U)
  1835. #define GPIO_IDR_IDR6_Msk (0x1UL << GPIO_IDR_IDR6_Pos) /*!< 0x00000040 */
  1836. #define GPIO_IDR_IDR6 GPIO_IDR_IDR6_Msk /*!< Port input data, bit 6 */
  1837. #define GPIO_IDR_IDR7_Pos (7U)
  1838. #define GPIO_IDR_IDR7_Msk (0x1UL << GPIO_IDR_IDR7_Pos) /*!< 0x00000080 */
  1839. #define GPIO_IDR_IDR7 GPIO_IDR_IDR7_Msk /*!< Port input data, bit 7 */
  1840. #define GPIO_IDR_IDR8_Pos (8U)
  1841. #define GPIO_IDR_IDR8_Msk (0x1UL << GPIO_IDR_IDR8_Pos) /*!< 0x00000100 */
  1842. #define GPIO_IDR_IDR8 GPIO_IDR_IDR8_Msk /*!< Port input data, bit 8 */
  1843. #define GPIO_IDR_IDR9_Pos (9U)
  1844. #define GPIO_IDR_IDR9_Msk (0x1UL << GPIO_IDR_IDR9_Pos) /*!< 0x00000200 */
  1845. #define GPIO_IDR_IDR9 GPIO_IDR_IDR9_Msk /*!< Port input data, bit 9 */
  1846. #define GPIO_IDR_IDR10_Pos (10U)
  1847. #define GPIO_IDR_IDR10_Msk (0x1UL << GPIO_IDR_IDR10_Pos) /*!< 0x00000400 */
  1848. #define GPIO_IDR_IDR10 GPIO_IDR_IDR10_Msk /*!< Port input data, bit 10 */
  1849. #define GPIO_IDR_IDR11_Pos (11U)
  1850. #define GPIO_IDR_IDR11_Msk (0x1UL << GPIO_IDR_IDR11_Pos) /*!< 0x00000800 */
  1851. #define GPIO_IDR_IDR11 GPIO_IDR_IDR11_Msk /*!< Port input data, bit 11 */
  1852. #define GPIO_IDR_IDR12_Pos (12U)
  1853. #define GPIO_IDR_IDR12_Msk (0x1UL << GPIO_IDR_IDR12_Pos) /*!< 0x00001000 */
  1854. #define GPIO_IDR_IDR12 GPIO_IDR_IDR12_Msk /*!< Port input data, bit 12 */
  1855. #define GPIO_IDR_IDR13_Pos (13U)
  1856. #define GPIO_IDR_IDR13_Msk (0x1UL << GPIO_IDR_IDR13_Pos) /*!< 0x00002000 */
  1857. #define GPIO_IDR_IDR13 GPIO_IDR_IDR13_Msk /*!< Port input data, bit 13 */
  1858. #define GPIO_IDR_IDR14_Pos (14U)
  1859. #define GPIO_IDR_IDR14_Msk (0x1UL << GPIO_IDR_IDR14_Pos) /*!< 0x00004000 */
  1860. #define GPIO_IDR_IDR14 GPIO_IDR_IDR14_Msk /*!< Port input data, bit 14 */
  1861. #define GPIO_IDR_IDR15_Pos (15U)
  1862. #define GPIO_IDR_IDR15_Msk (0x1UL << GPIO_IDR_IDR15_Pos) /*!< 0x00008000 */
  1863. #define GPIO_IDR_IDR15 GPIO_IDR_IDR15_Msk /*!< Port input data, bit 15 */
  1864. /******************* Bit definition for GPIO_ODR register *******************/
  1865. #define GPIO_ODR_ODR0_Pos (0U)
  1866. #define GPIO_ODR_ODR0_Msk (0x1UL << GPIO_ODR_ODR0_Pos) /*!< 0x00000001 */
  1867. #define GPIO_ODR_ODR0 GPIO_ODR_ODR0_Msk /*!< Port output data, bit 0 */
  1868. #define GPIO_ODR_ODR1_Pos (1U)
  1869. #define GPIO_ODR_ODR1_Msk (0x1UL << GPIO_ODR_ODR1_Pos) /*!< 0x00000002 */
  1870. #define GPIO_ODR_ODR1 GPIO_ODR_ODR1_Msk /*!< Port output data, bit 1 */
  1871. #define GPIO_ODR_ODR2_Pos (2U)
  1872. #define GPIO_ODR_ODR2_Msk (0x1UL << GPIO_ODR_ODR2_Pos) /*!< 0x00000004 */
  1873. #define GPIO_ODR_ODR2 GPIO_ODR_ODR2_Msk /*!< Port output data, bit 2 */
  1874. #define GPIO_ODR_ODR3_Pos (3U)
  1875. #define GPIO_ODR_ODR3_Msk (0x1UL << GPIO_ODR_ODR3_Pos) /*!< 0x00000008 */
  1876. #define GPIO_ODR_ODR3 GPIO_ODR_ODR3_Msk /*!< Port output data, bit 3 */
  1877. #define GPIO_ODR_ODR4_Pos (4U)
  1878. #define GPIO_ODR_ODR4_Msk (0x1UL << GPIO_ODR_ODR4_Pos) /*!< 0x00000010 */
  1879. #define GPIO_ODR_ODR4 GPIO_ODR_ODR4_Msk /*!< Port output data, bit 4 */
  1880. #define GPIO_ODR_ODR5_Pos (5U)
  1881. #define GPIO_ODR_ODR5_Msk (0x1UL << GPIO_ODR_ODR5_Pos) /*!< 0x00000020 */
  1882. #define GPIO_ODR_ODR5 GPIO_ODR_ODR5_Msk /*!< Port output data, bit 5 */
  1883. #define GPIO_ODR_ODR6_Pos (6U)
  1884. #define GPIO_ODR_ODR6_Msk (0x1UL << GPIO_ODR_ODR6_Pos) /*!< 0x00000040 */
  1885. #define GPIO_ODR_ODR6 GPIO_ODR_ODR6_Msk /*!< Port output data, bit 6 */
  1886. #define GPIO_ODR_ODR7_Pos (7U)
  1887. #define GPIO_ODR_ODR7_Msk (0x1UL << GPIO_ODR_ODR7_Pos) /*!< 0x00000080 */
  1888. #define GPIO_ODR_ODR7 GPIO_ODR_ODR7_Msk /*!< Port output data, bit 7 */
  1889. #define GPIO_ODR_ODR8_Pos (8U)
  1890. #define GPIO_ODR_ODR8_Msk (0x1UL << GPIO_ODR_ODR8_Pos) /*!< 0x00000100 */
  1891. #define GPIO_ODR_ODR8 GPIO_ODR_ODR8_Msk /*!< Port output data, bit 8 */
  1892. #define GPIO_ODR_ODR9_Pos (9U)
  1893. #define GPIO_ODR_ODR9_Msk (0x1UL << GPIO_ODR_ODR9_Pos) /*!< 0x00000200 */
  1894. #define GPIO_ODR_ODR9 GPIO_ODR_ODR9_Msk /*!< Port output data, bit 9 */
  1895. #define GPIO_ODR_ODR10_Pos (10U)
  1896. #define GPIO_ODR_ODR10_Msk (0x1UL << GPIO_ODR_ODR10_Pos) /*!< 0x00000400 */
  1897. #define GPIO_ODR_ODR10 GPIO_ODR_ODR10_Msk /*!< Port output data, bit 10 */
  1898. #define GPIO_ODR_ODR11_Pos (11U)
  1899. #define GPIO_ODR_ODR11_Msk (0x1UL << GPIO_ODR_ODR11_Pos) /*!< 0x00000800 */
  1900. #define GPIO_ODR_ODR11 GPIO_ODR_ODR11_Msk /*!< Port output data, bit 11 */
  1901. #define GPIO_ODR_ODR12_Pos (12U)
  1902. #define GPIO_ODR_ODR12_Msk (0x1UL << GPIO_ODR_ODR12_Pos) /*!< 0x00001000 */
  1903. #define GPIO_ODR_ODR12 GPIO_ODR_ODR12_Msk /*!< Port output data, bit 12 */
  1904. #define GPIO_ODR_ODR13_Pos (13U)
  1905. #define GPIO_ODR_ODR13_Msk (0x1UL << GPIO_ODR_ODR13_Pos) /*!< 0x00002000 */
  1906. #define GPIO_ODR_ODR13 GPIO_ODR_ODR13_Msk /*!< Port output data, bit 13 */
  1907. #define GPIO_ODR_ODR14_Pos (14U)
  1908. #define GPIO_ODR_ODR14_Msk (0x1UL << GPIO_ODR_ODR14_Pos) /*!< 0x00004000 */
  1909. #define GPIO_ODR_ODR14 GPIO_ODR_ODR14_Msk /*!< Port output data, bit 14 */
  1910. #define GPIO_ODR_ODR15_Pos (15U)
  1911. #define GPIO_ODR_ODR15_Msk (0x1UL << GPIO_ODR_ODR15_Pos) /*!< 0x00008000 */
  1912. #define GPIO_ODR_ODR15 GPIO_ODR_ODR15_Msk /*!< Port output data, bit 15 */
  1913. /****************** Bit definition for GPIO_BSRR register *******************/
  1914. #define GPIO_BSRR_BS0_Pos (0U)
  1915. #define GPIO_BSRR_BS0_Msk (0x1UL << GPIO_BSRR_BS0_Pos) /*!< 0x00000001 */
  1916. #define GPIO_BSRR_BS0 GPIO_BSRR_BS0_Msk /*!< Port x Set bit 0 */
  1917. #define GPIO_BSRR_BS1_Pos (1U)
  1918. #define GPIO_BSRR_BS1_Msk (0x1UL << GPIO_BSRR_BS1_Pos) /*!< 0x00000002 */
  1919. #define GPIO_BSRR_BS1 GPIO_BSRR_BS1_Msk /*!< Port x Set bit 1 */
  1920. #define GPIO_BSRR_BS2_Pos (2U)
  1921. #define GPIO_BSRR_BS2_Msk (0x1UL << GPIO_BSRR_BS2_Pos) /*!< 0x00000004 */
  1922. #define GPIO_BSRR_BS2 GPIO_BSRR_BS2_Msk /*!< Port x Set bit 2 */
  1923. #define GPIO_BSRR_BS3_Pos (3U)
  1924. #define GPIO_BSRR_BS3_Msk (0x1UL << GPIO_BSRR_BS3_Pos) /*!< 0x00000008 */
  1925. #define GPIO_BSRR_BS3 GPIO_BSRR_BS3_Msk /*!< Port x Set bit 3 */
  1926. #define GPIO_BSRR_BS4_Pos (4U)
  1927. #define GPIO_BSRR_BS4_Msk (0x1UL << GPIO_BSRR_BS4_Pos) /*!< 0x00000010 */
  1928. #define GPIO_BSRR_BS4 GPIO_BSRR_BS4_Msk /*!< Port x Set bit 4 */
  1929. #define GPIO_BSRR_BS5_Pos (5U)
  1930. #define GPIO_BSRR_BS5_Msk (0x1UL << GPIO_BSRR_BS5_Pos) /*!< 0x00000020 */
  1931. #define GPIO_BSRR_BS5 GPIO_BSRR_BS5_Msk /*!< Port x Set bit 5 */
  1932. #define GPIO_BSRR_BS6_Pos (6U)
  1933. #define GPIO_BSRR_BS6_Msk (0x1UL << GPIO_BSRR_BS6_Pos) /*!< 0x00000040 */
  1934. #define GPIO_BSRR_BS6 GPIO_BSRR_BS6_Msk /*!< Port x Set bit 6 */
  1935. #define GPIO_BSRR_BS7_Pos (7U)
  1936. #define GPIO_BSRR_BS7_Msk (0x1UL << GPIO_BSRR_BS7_Pos) /*!< 0x00000080 */
  1937. #define GPIO_BSRR_BS7 GPIO_BSRR_BS7_Msk /*!< Port x Set bit 7 */
  1938. #define GPIO_BSRR_BS8_Pos (8U)
  1939. #define GPIO_BSRR_BS8_Msk (0x1UL << GPIO_BSRR_BS8_Pos) /*!< 0x00000100 */
  1940. #define GPIO_BSRR_BS8 GPIO_BSRR_BS8_Msk /*!< Port x Set bit 8 */
  1941. #define GPIO_BSRR_BS9_Pos (9U)
  1942. #define GPIO_BSRR_BS9_Msk (0x1UL << GPIO_BSRR_BS9_Pos) /*!< 0x00000200 */
  1943. #define GPIO_BSRR_BS9 GPIO_BSRR_BS9_Msk /*!< Port x Set bit 9 */
  1944. #define GPIO_BSRR_BS10_Pos (10U)
  1945. #define GPIO_BSRR_BS10_Msk (0x1UL << GPIO_BSRR_BS10_Pos) /*!< 0x00000400 */
  1946. #define GPIO_BSRR_BS10 GPIO_BSRR_BS10_Msk /*!< Port x Set bit 10 */
  1947. #define GPIO_BSRR_BS11_Pos (11U)
  1948. #define GPIO_BSRR_BS11_Msk (0x1UL << GPIO_BSRR_BS11_Pos) /*!< 0x00000800 */
  1949. #define GPIO_BSRR_BS11 GPIO_BSRR_BS11_Msk /*!< Port x Set bit 11 */
  1950. #define GPIO_BSRR_BS12_Pos (12U)
  1951. #define GPIO_BSRR_BS12_Msk (0x1UL << GPIO_BSRR_BS12_Pos) /*!< 0x00001000 */
  1952. #define GPIO_BSRR_BS12 GPIO_BSRR_BS12_Msk /*!< Port x Set bit 12 */
  1953. #define GPIO_BSRR_BS13_Pos (13U)
  1954. #define GPIO_BSRR_BS13_Msk (0x1UL << GPIO_BSRR_BS13_Pos) /*!< 0x00002000 */
  1955. #define GPIO_BSRR_BS13 GPIO_BSRR_BS13_Msk /*!< Port x Set bit 13 */
  1956. #define GPIO_BSRR_BS14_Pos (14U)
  1957. #define GPIO_BSRR_BS14_Msk (0x1UL << GPIO_BSRR_BS14_Pos) /*!< 0x00004000 */
  1958. #define GPIO_BSRR_BS14 GPIO_BSRR_BS14_Msk /*!< Port x Set bit 14 */
  1959. #define GPIO_BSRR_BS15_Pos (15U)
  1960. #define GPIO_BSRR_BS15_Msk (0x1UL << GPIO_BSRR_BS15_Pos) /*!< 0x00008000 */
  1961. #define GPIO_BSRR_BS15 GPIO_BSRR_BS15_Msk /*!< Port x Set bit 15 */
  1962. #define GPIO_BSRR_BR0_Pos (16U)
  1963. #define GPIO_BSRR_BR0_Msk (0x1UL << GPIO_BSRR_BR0_Pos) /*!< 0x00010000 */
  1964. #define GPIO_BSRR_BR0 GPIO_BSRR_BR0_Msk /*!< Port x Reset bit 0 */
  1965. #define GPIO_BSRR_BR1_Pos (17U)
  1966. #define GPIO_BSRR_BR1_Msk (0x1UL << GPIO_BSRR_BR1_Pos) /*!< 0x00020000 */
  1967. #define GPIO_BSRR_BR1 GPIO_BSRR_BR1_Msk /*!< Port x Reset bit 1 */
  1968. #define GPIO_BSRR_BR2_Pos (18U)
  1969. #define GPIO_BSRR_BR2_Msk (0x1UL << GPIO_BSRR_BR2_Pos) /*!< 0x00040000 */
  1970. #define GPIO_BSRR_BR2 GPIO_BSRR_BR2_Msk /*!< Port x Reset bit 2 */
  1971. #define GPIO_BSRR_BR3_Pos (19U)
  1972. #define GPIO_BSRR_BR3_Msk (0x1UL << GPIO_BSRR_BR3_Pos) /*!< 0x00080000 */
  1973. #define GPIO_BSRR_BR3 GPIO_BSRR_BR3_Msk /*!< Port x Reset bit 3 */
  1974. #define GPIO_BSRR_BR4_Pos (20U)
  1975. #define GPIO_BSRR_BR4_Msk (0x1UL << GPIO_BSRR_BR4_Pos) /*!< 0x00100000 */
  1976. #define GPIO_BSRR_BR4 GPIO_BSRR_BR4_Msk /*!< Port x Reset bit 4 */
  1977. #define GPIO_BSRR_BR5_Pos (21U)
  1978. #define GPIO_BSRR_BR5_Msk (0x1UL << GPIO_BSRR_BR5_Pos) /*!< 0x00200000 */
  1979. #define GPIO_BSRR_BR5 GPIO_BSRR_BR5_Msk /*!< Port x Reset bit 5 */
  1980. #define GPIO_BSRR_BR6_Pos (22U)
  1981. #define GPIO_BSRR_BR6_Msk (0x1UL << GPIO_BSRR_BR6_Pos) /*!< 0x00400000 */
  1982. #define GPIO_BSRR_BR6 GPIO_BSRR_BR6_Msk /*!< Port x Reset bit 6 */
  1983. #define GPIO_BSRR_BR7_Pos (23U)
  1984. #define GPIO_BSRR_BR7_Msk (0x1UL << GPIO_BSRR_BR7_Pos) /*!< 0x00800000 */
  1985. #define GPIO_BSRR_BR7 GPIO_BSRR_BR7_Msk /*!< Port x Reset bit 7 */
  1986. #define GPIO_BSRR_BR8_Pos (24U)
  1987. #define GPIO_BSRR_BR8_Msk (0x1UL << GPIO_BSRR_BR8_Pos) /*!< 0x01000000 */
  1988. #define GPIO_BSRR_BR8 GPIO_BSRR_BR8_Msk /*!< Port x Reset bit 8 */
  1989. #define GPIO_BSRR_BR9_Pos (25U)
  1990. #define GPIO_BSRR_BR9_Msk (0x1UL << GPIO_BSRR_BR9_Pos) /*!< 0x02000000 */
  1991. #define GPIO_BSRR_BR9 GPIO_BSRR_BR9_Msk /*!< Port x Reset bit 9 */
  1992. #define GPIO_BSRR_BR10_Pos (26U)
  1993. #define GPIO_BSRR_BR10_Msk (0x1UL << GPIO_BSRR_BR10_Pos) /*!< 0x04000000 */
  1994. #define GPIO_BSRR_BR10 GPIO_BSRR_BR10_Msk /*!< Port x Reset bit 10 */
  1995. #define GPIO_BSRR_BR11_Pos (27U)
  1996. #define GPIO_BSRR_BR11_Msk (0x1UL << GPIO_BSRR_BR11_Pos) /*!< 0x08000000 */
  1997. #define GPIO_BSRR_BR11 GPIO_BSRR_BR11_Msk /*!< Port x Reset bit 11 */
  1998. #define GPIO_BSRR_BR12_Pos (28U)
  1999. #define GPIO_BSRR_BR12_Msk (0x1UL << GPIO_BSRR_BR12_Pos) /*!< 0x10000000 */
  2000. #define GPIO_BSRR_BR12 GPIO_BSRR_BR12_Msk /*!< Port x Reset bit 12 */
  2001. #define GPIO_BSRR_BR13_Pos (29U)
  2002. #define GPIO_BSRR_BR13_Msk (0x1UL << GPIO_BSRR_BR13_Pos) /*!< 0x20000000 */
  2003. #define GPIO_BSRR_BR13 GPIO_BSRR_BR13_Msk /*!< Port x Reset bit 13 */
  2004. #define GPIO_BSRR_BR14_Pos (30U)
  2005. #define GPIO_BSRR_BR14_Msk (0x1UL << GPIO_BSRR_BR14_Pos) /*!< 0x40000000 */
  2006. #define GPIO_BSRR_BR14 GPIO_BSRR_BR14_Msk /*!< Port x Reset bit 14 */
  2007. #define GPIO_BSRR_BR15_Pos (31U)
  2008. #define GPIO_BSRR_BR15_Msk (0x1UL << GPIO_BSRR_BR15_Pos) /*!< 0x80000000 */
  2009. #define GPIO_BSRR_BR15 GPIO_BSRR_BR15_Msk /*!< Port x Reset bit 15 */
  2010. /******************* Bit definition for GPIO_BRR register *******************/
  2011. #define GPIO_BRR_BR0_Pos (0U)
  2012. #define GPIO_BRR_BR0_Msk (0x1UL << GPIO_BRR_BR0_Pos) /*!< 0x00000001 */
  2013. #define GPIO_BRR_BR0 GPIO_BRR_BR0_Msk /*!< Port x Reset bit 0 */
  2014. #define GPIO_BRR_BR1_Pos (1U)
  2015. #define GPIO_BRR_BR1_Msk (0x1UL << GPIO_BRR_BR1_Pos) /*!< 0x00000002 */
  2016. #define GPIO_BRR_BR1 GPIO_BRR_BR1_Msk /*!< Port x Reset bit 1 */
  2017. #define GPIO_BRR_BR2_Pos (2U)
  2018. #define GPIO_BRR_BR2_Msk (0x1UL << GPIO_BRR_BR2_Pos) /*!< 0x00000004 */
  2019. #define GPIO_BRR_BR2 GPIO_BRR_BR2_Msk /*!< Port x Reset bit 2 */
  2020. #define GPIO_BRR_BR3_Pos (3U)
  2021. #define GPIO_BRR_BR3_Msk (0x1UL << GPIO_BRR_BR3_Pos) /*!< 0x00000008 */
  2022. #define GPIO_BRR_BR3 GPIO_BRR_BR3_Msk /*!< Port x Reset bit 3 */
  2023. #define GPIO_BRR_BR4_Pos (4U)
  2024. #define GPIO_BRR_BR4_Msk (0x1UL << GPIO_BRR_BR4_Pos) /*!< 0x00000010 */
  2025. #define GPIO_BRR_BR4 GPIO_BRR_BR4_Msk /*!< Port x Reset bit 4 */
  2026. #define GPIO_BRR_BR5_Pos (5U)
  2027. #define GPIO_BRR_BR5_Msk (0x1UL << GPIO_BRR_BR5_Pos) /*!< 0x00000020 */
  2028. #define GPIO_BRR_BR5 GPIO_BRR_BR5_Msk /*!< Port x Reset bit 5 */
  2029. #define GPIO_BRR_BR6_Pos (6U)
  2030. #define GPIO_BRR_BR6_Msk (0x1UL << GPIO_BRR_BR6_Pos) /*!< 0x00000040 */
  2031. #define GPIO_BRR_BR6 GPIO_BRR_BR6_Msk /*!< Port x Reset bit 6 */
  2032. #define GPIO_BRR_BR7_Pos (7U)
  2033. #define GPIO_BRR_BR7_Msk (0x1UL << GPIO_BRR_BR7_Pos) /*!< 0x00000080 */
  2034. #define GPIO_BRR_BR7 GPIO_BRR_BR7_Msk /*!< Port x Reset bit 7 */
  2035. #define GPIO_BRR_BR8_Pos (8U)
  2036. #define GPIO_BRR_BR8_Msk (0x1UL << GPIO_BRR_BR8_Pos) /*!< 0x00000100 */
  2037. #define GPIO_BRR_BR8 GPIO_BRR_BR8_Msk /*!< Port x Reset bit 8 */
  2038. #define GPIO_BRR_BR9_Pos (9U)
  2039. #define GPIO_BRR_BR9_Msk (0x1UL << GPIO_BRR_BR9_Pos) /*!< 0x00000200 */
  2040. #define GPIO_BRR_BR9 GPIO_BRR_BR9_Msk /*!< Port x Reset bit 9 */
  2041. #define GPIO_BRR_BR10_Pos (10U)
  2042. #define GPIO_BRR_BR10_Msk (0x1UL << GPIO_BRR_BR10_Pos) /*!< 0x00000400 */
  2043. #define GPIO_BRR_BR10 GPIO_BRR_BR10_Msk /*!< Port x Reset bit 10 */
  2044. #define GPIO_BRR_BR11_Pos (11U)
  2045. #define GPIO_BRR_BR11_Msk (0x1UL << GPIO_BRR_BR11_Pos) /*!< 0x00000800 */
  2046. #define GPIO_BRR_BR11 GPIO_BRR_BR11_Msk /*!< Port x Reset bit 11 */
  2047. #define GPIO_BRR_BR12_Pos (12U)
  2048. #define GPIO_BRR_BR12_Msk (0x1UL << GPIO_BRR_BR12_Pos) /*!< 0x00001000 */
  2049. #define GPIO_BRR_BR12 GPIO_BRR_BR12_Msk /*!< Port x Reset bit 12 */
  2050. #define GPIO_BRR_BR13_Pos (13U)
  2051. #define GPIO_BRR_BR13_Msk (0x1UL << GPIO_BRR_BR13_Pos) /*!< 0x00002000 */
  2052. #define GPIO_BRR_BR13 GPIO_BRR_BR13_Msk /*!< Port x Reset bit 13 */
  2053. #define GPIO_BRR_BR14_Pos (14U)
  2054. #define GPIO_BRR_BR14_Msk (0x1UL << GPIO_BRR_BR14_Pos) /*!< 0x00004000 */
  2055. #define GPIO_BRR_BR14 GPIO_BRR_BR14_Msk /*!< Port x Reset bit 14 */
  2056. #define GPIO_BRR_BR15_Pos (15U)
  2057. #define GPIO_BRR_BR15_Msk (0x1UL << GPIO_BRR_BR15_Pos) /*!< 0x00008000 */
  2058. #define GPIO_BRR_BR15 GPIO_BRR_BR15_Msk /*!< Port x Reset bit 15 */
  2059. /****************** Bit definition for GPIO_LCKR register *******************/
  2060. #define GPIO_LCKR_LCK0_Pos (0U)
  2061. #define GPIO_LCKR_LCK0_Msk (0x1UL << GPIO_LCKR_LCK0_Pos) /*!< 0x00000001 */
  2062. #define GPIO_LCKR_LCK0 GPIO_LCKR_LCK0_Msk /*!< Port x Lock bit 0 */
  2063. #define GPIO_LCKR_LCK1_Pos (1U)
  2064. #define GPIO_LCKR_LCK1_Msk (0x1UL << GPIO_LCKR_LCK1_Pos) /*!< 0x00000002 */
  2065. #define GPIO_LCKR_LCK1 GPIO_LCKR_LCK1_Msk /*!< Port x Lock bit 1 */
  2066. #define GPIO_LCKR_LCK2_Pos (2U)
  2067. #define GPIO_LCKR_LCK2_Msk (0x1UL << GPIO_LCKR_LCK2_Pos) /*!< 0x00000004 */
  2068. #define GPIO_LCKR_LCK2 GPIO_LCKR_LCK2_Msk /*!< Port x Lock bit 2 */
  2069. #define GPIO_LCKR_LCK3_Pos (3U)
  2070. #define GPIO_LCKR_LCK3_Msk (0x1UL << GPIO_LCKR_LCK3_Pos) /*!< 0x00000008 */
  2071. #define GPIO_LCKR_LCK3 GPIO_LCKR_LCK3_Msk /*!< Port x Lock bit 3 */
  2072. #define GPIO_LCKR_LCK4_Pos (4U)
  2073. #define GPIO_LCKR_LCK4_Msk (0x1UL << GPIO_LCKR_LCK4_Pos) /*!< 0x00000010 */
  2074. #define GPIO_LCKR_LCK4 GPIO_LCKR_LCK4_Msk /*!< Port x Lock bit 4 */
  2075. #define GPIO_LCKR_LCK5_Pos (5U)
  2076. #define GPIO_LCKR_LCK5_Msk (0x1UL << GPIO_LCKR_LCK5_Pos) /*!< 0x00000020 */
  2077. #define GPIO_LCKR_LCK5 GPIO_LCKR_LCK5_Msk /*!< Port x Lock bit 5 */
  2078. #define GPIO_LCKR_LCK6_Pos (6U)
  2079. #define GPIO_LCKR_LCK6_Msk (0x1UL << GPIO_LCKR_LCK6_Pos) /*!< 0x00000040 */
  2080. #define GPIO_LCKR_LCK6 GPIO_LCKR_LCK6_Msk /*!< Port x Lock bit 6 */
  2081. #define GPIO_LCKR_LCK7_Pos (7U)
  2082. #define GPIO_LCKR_LCK7_Msk (0x1UL << GPIO_LCKR_LCK7_Pos) /*!< 0x00000080 */
  2083. #define GPIO_LCKR_LCK7 GPIO_LCKR_LCK7_Msk /*!< Port x Lock bit 7 */
  2084. #define GPIO_LCKR_LCK8_Pos (8U)
  2085. #define GPIO_LCKR_LCK8_Msk (0x1UL << GPIO_LCKR_LCK8_Pos) /*!< 0x00000100 */
  2086. #define GPIO_LCKR_LCK8 GPIO_LCKR_LCK8_Msk /*!< Port x Lock bit 8 */
  2087. #define GPIO_LCKR_LCK9_Pos (9U)
  2088. #define GPIO_LCKR_LCK9_Msk (0x1UL << GPIO_LCKR_LCK9_Pos) /*!< 0x00000200 */
  2089. #define GPIO_LCKR_LCK9 GPIO_LCKR_LCK9_Msk /*!< Port x Lock bit 9 */
  2090. #define GPIO_LCKR_LCK10_Pos (10U)
  2091. #define GPIO_LCKR_LCK10_Msk (0x1UL << GPIO_LCKR_LCK10_Pos) /*!< 0x00000400 */
  2092. #define GPIO_LCKR_LCK10 GPIO_LCKR_LCK10_Msk /*!< Port x Lock bit 10 */
  2093. #define GPIO_LCKR_LCK11_Pos (11U)
  2094. #define GPIO_LCKR_LCK11_Msk (0x1UL << GPIO_LCKR_LCK11_Pos) /*!< 0x00000800 */
  2095. #define GPIO_LCKR_LCK11 GPIO_LCKR_LCK11_Msk /*!< Port x Lock bit 11 */
  2096. #define GPIO_LCKR_LCK12_Pos (12U)
  2097. #define GPIO_LCKR_LCK12_Msk (0x1UL << GPIO_LCKR_LCK12_Pos) /*!< 0x00001000 */
  2098. #define GPIO_LCKR_LCK12 GPIO_LCKR_LCK12_Msk /*!< Port x Lock bit 12 */
  2099. #define GPIO_LCKR_LCK13_Pos (13U)
  2100. #define GPIO_LCKR_LCK13_Msk (0x1UL << GPIO_LCKR_LCK13_Pos) /*!< 0x00002000 */
  2101. #define GPIO_LCKR_LCK13 GPIO_LCKR_LCK13_Msk /*!< Port x Lock bit 13 */
  2102. #define GPIO_LCKR_LCK14_Pos (14U)
  2103. #define GPIO_LCKR_LCK14_Msk (0x1UL << GPIO_LCKR_LCK14_Pos) /*!< 0x00004000 */
  2104. #define GPIO_LCKR_LCK14 GPIO_LCKR_LCK14_Msk /*!< Port x Lock bit 14 */
  2105. #define GPIO_LCKR_LCK15_Pos (15U)
  2106. #define GPIO_LCKR_LCK15_Msk (0x1UL << GPIO_LCKR_LCK15_Pos) /*!< 0x00008000 */
  2107. #define GPIO_LCKR_LCK15 GPIO_LCKR_LCK15_Msk /*!< Port x Lock bit 15 */
  2108. #define GPIO_LCKR_LCKK_Pos (16U)
  2109. #define GPIO_LCKR_LCKK_Msk (0x1UL << GPIO_LCKR_LCKK_Pos) /*!< 0x00010000 */
  2110. #define GPIO_LCKR_LCKK GPIO_LCKR_LCKK_Msk /*!< Lock key */
  2111. /*----------------------------------------------------------------------------*/
  2112. /****************** Bit definition for AFIO_EVCR register *******************/
  2113. #define AFIO_EVCR_PIN_Pos (0U)
  2114. #define AFIO_EVCR_PIN_Msk (0xFUL << AFIO_EVCR_PIN_Pos) /*!< 0x0000000F */
  2115. #define AFIO_EVCR_PIN AFIO_EVCR_PIN_Msk /*!< PIN[3:0] bits (Pin selection) */
  2116. #define AFIO_EVCR_PIN_0 (0x1UL << AFIO_EVCR_PIN_Pos) /*!< 0x00000001 */
  2117. #define AFIO_EVCR_PIN_1 (0x2UL << AFIO_EVCR_PIN_Pos) /*!< 0x00000002 */
  2118. #define AFIO_EVCR_PIN_2 (0x4UL << AFIO_EVCR_PIN_Pos) /*!< 0x00000004 */
  2119. #define AFIO_EVCR_PIN_3 (0x8UL << AFIO_EVCR_PIN_Pos) /*!< 0x00000008 */
  2120. /*!< PIN configuration */
  2121. #define AFIO_EVCR_PIN_PX0 0x00000000U /*!< Pin 0 selected */
  2122. #define AFIO_EVCR_PIN_PX1_Pos (0U)
  2123. #define AFIO_EVCR_PIN_PX1_Msk (0x1UL << AFIO_EVCR_PIN_PX1_Pos) /*!< 0x00000001 */
  2124. #define AFIO_EVCR_PIN_PX1 AFIO_EVCR_PIN_PX1_Msk /*!< Pin 1 selected */
  2125. #define AFIO_EVCR_PIN_PX2_Pos (1U)
  2126. #define AFIO_EVCR_PIN_PX2_Msk (0x1UL << AFIO_EVCR_PIN_PX2_Pos) /*!< 0x00000002 */
  2127. #define AFIO_EVCR_PIN_PX2 AFIO_EVCR_PIN_PX2_Msk /*!< Pin 2 selected */
  2128. #define AFIO_EVCR_PIN_PX3_Pos (0U)
  2129. #define AFIO_EVCR_PIN_PX3_Msk (0x3UL << AFIO_EVCR_PIN_PX3_Pos) /*!< 0x00000003 */
  2130. #define AFIO_EVCR_PIN_PX3 AFIO_EVCR_PIN_PX3_Msk /*!< Pin 3 selected */
  2131. #define AFIO_EVCR_PIN_PX4_Pos (2U)
  2132. #define AFIO_EVCR_PIN_PX4_Msk (0x1UL << AFIO_EVCR_PIN_PX4_Pos) /*!< 0x00000004 */
  2133. #define AFIO_EVCR_PIN_PX4 AFIO_EVCR_PIN_PX4_Msk /*!< Pin 4 selected */
  2134. #define AFIO_EVCR_PIN_PX5_Pos (0U)
  2135. #define AFIO_EVCR_PIN_PX5_Msk (0x5UL << AFIO_EVCR_PIN_PX5_Pos) /*!< 0x00000005 */
  2136. #define AFIO_EVCR_PIN_PX5 AFIO_EVCR_PIN_PX5_Msk /*!< Pin 5 selected */
  2137. #define AFIO_EVCR_PIN_PX6_Pos (1U)
  2138. #define AFIO_EVCR_PIN_PX6_Msk (0x3UL << AFIO_EVCR_PIN_PX6_Pos) /*!< 0x00000006 */
  2139. #define AFIO_EVCR_PIN_PX6 AFIO_EVCR_PIN_PX6_Msk /*!< Pin 6 selected */
  2140. #define AFIO_EVCR_PIN_PX7_Pos (0U)
  2141. #define AFIO_EVCR_PIN_PX7_Msk (0x7UL << AFIO_EVCR_PIN_PX7_Pos) /*!< 0x00000007 */
  2142. #define AFIO_EVCR_PIN_PX7 AFIO_EVCR_PIN_PX7_Msk /*!< Pin 7 selected */
  2143. #define AFIO_EVCR_PIN_PX8_Pos (3U)
  2144. #define AFIO_EVCR_PIN_PX8_Msk (0x1UL << AFIO_EVCR_PIN_PX8_Pos) /*!< 0x00000008 */
  2145. #define AFIO_EVCR_PIN_PX8 AFIO_EVCR_PIN_PX8_Msk /*!< Pin 8 selected */
  2146. #define AFIO_EVCR_PIN_PX9_Pos (0U)
  2147. #define AFIO_EVCR_PIN_PX9_Msk (0x9UL << AFIO_EVCR_PIN_PX9_Pos) /*!< 0x00000009 */
  2148. #define AFIO_EVCR_PIN_PX9 AFIO_EVCR_PIN_PX9_Msk /*!< Pin 9 selected */
  2149. #define AFIO_EVCR_PIN_PX10_Pos (1U)
  2150. #define AFIO_EVCR_PIN_PX10_Msk (0x5UL << AFIO_EVCR_PIN_PX10_Pos) /*!< 0x0000000A */
  2151. #define AFIO_EVCR_PIN_PX10 AFIO_EVCR_PIN_PX10_Msk /*!< Pin 10 selected */
  2152. #define AFIO_EVCR_PIN_PX11_Pos (0U)
  2153. #define AFIO_EVCR_PIN_PX11_Msk (0xBUL << AFIO_EVCR_PIN_PX11_Pos) /*!< 0x0000000B */
  2154. #define AFIO_EVCR_PIN_PX11 AFIO_EVCR_PIN_PX11_Msk /*!< Pin 11 selected */
  2155. #define AFIO_EVCR_PIN_PX12_Pos (2U)
  2156. #define AFIO_EVCR_PIN_PX12_Msk (0x3UL << AFIO_EVCR_PIN_PX12_Pos) /*!< 0x0000000C */
  2157. #define AFIO_EVCR_PIN_PX12 AFIO_EVCR_PIN_PX12_Msk /*!< Pin 12 selected */
  2158. #define AFIO_EVCR_PIN_PX13_Pos (0U)
  2159. #define AFIO_EVCR_PIN_PX13_Msk (0xDUL << AFIO_EVCR_PIN_PX13_Pos) /*!< 0x0000000D */
  2160. #define AFIO_EVCR_PIN_PX13 AFIO_EVCR_PIN_PX13_Msk /*!< Pin 13 selected */
  2161. #define AFIO_EVCR_PIN_PX14_Pos (1U)
  2162. #define AFIO_EVCR_PIN_PX14_Msk (0x7UL << AFIO_EVCR_PIN_PX14_Pos) /*!< 0x0000000E */
  2163. #define AFIO_EVCR_PIN_PX14 AFIO_EVCR_PIN_PX14_Msk /*!< Pin 14 selected */
  2164. #define AFIO_EVCR_PIN_PX15_Pos (0U)
  2165. #define AFIO_EVCR_PIN_PX15_Msk (0xFUL << AFIO_EVCR_PIN_PX15_Pos) /*!< 0x0000000F */
  2166. #define AFIO_EVCR_PIN_PX15 AFIO_EVCR_PIN_PX15_Msk /*!< Pin 15 selected */
  2167. #define AFIO_EVCR_PORT_Pos (4U)
  2168. #define AFIO_EVCR_PORT_Msk (0x7UL << AFIO_EVCR_PORT_Pos) /*!< 0x00000070 */
  2169. #define AFIO_EVCR_PORT AFIO_EVCR_PORT_Msk /*!< PORT[2:0] bits (Port selection) */
  2170. #define AFIO_EVCR_PORT_0 (0x1UL << AFIO_EVCR_PORT_Pos) /*!< 0x00000010 */
  2171. #define AFIO_EVCR_PORT_1 (0x2UL << AFIO_EVCR_PORT_Pos) /*!< 0x00000020 */
  2172. #define AFIO_EVCR_PORT_2 (0x4UL << AFIO_EVCR_PORT_Pos) /*!< 0x00000040 */
  2173. /*!< PORT configuration */
  2174. #define AFIO_EVCR_PORT_PA 0x00000000 /*!< Port A selected */
  2175. #define AFIO_EVCR_PORT_PB_Pos (4U)
  2176. #define AFIO_EVCR_PORT_PB_Msk (0x1UL << AFIO_EVCR_PORT_PB_Pos) /*!< 0x00000010 */
  2177. #define AFIO_EVCR_PORT_PB AFIO_EVCR_PORT_PB_Msk /*!< Port B selected */
  2178. #define AFIO_EVCR_PORT_PC_Pos (5U)
  2179. #define AFIO_EVCR_PORT_PC_Msk (0x1UL << AFIO_EVCR_PORT_PC_Pos) /*!< 0x00000020 */
  2180. #define AFIO_EVCR_PORT_PC AFIO_EVCR_PORT_PC_Msk /*!< Port C selected */
  2181. #define AFIO_EVCR_PORT_PD_Pos (4U)
  2182. #define AFIO_EVCR_PORT_PD_Msk (0x3UL << AFIO_EVCR_PORT_PD_Pos) /*!< 0x00000030 */
  2183. #define AFIO_EVCR_PORT_PD AFIO_EVCR_PORT_PD_Msk /*!< Port D selected */
  2184. #define AFIO_EVCR_PORT_PE_Pos (6U)
  2185. #define AFIO_EVCR_PORT_PE_Msk (0x1UL << AFIO_EVCR_PORT_PE_Pos) /*!< 0x00000040 */
  2186. #define AFIO_EVCR_PORT_PE AFIO_EVCR_PORT_PE_Msk /*!< Port E selected */
  2187. #define AFIO_EVCR_EVOE_Pos (7U)
  2188. #define AFIO_EVCR_EVOE_Msk (0x1UL << AFIO_EVCR_EVOE_Pos) /*!< 0x00000080 */
  2189. #define AFIO_EVCR_EVOE AFIO_EVCR_EVOE_Msk /*!< Event Output Enable */
  2190. /****************** Bit definition for AFIO_MAPR register *******************/
  2191. #define AFIO_MAPR_SPI1_REMAP_Pos (0U)
  2192. #define AFIO_MAPR_SPI1_REMAP_Msk (0x1UL << AFIO_MAPR_SPI1_REMAP_Pos) /*!< 0x00000001 */
  2193. #define AFIO_MAPR_SPI1_REMAP AFIO_MAPR_SPI1_REMAP_Msk /*!< SPI1 remapping */
  2194. #define AFIO_MAPR_I2C1_REMAP_Pos (1U)
  2195. #define AFIO_MAPR_I2C1_REMAP_Msk (0x1UL << AFIO_MAPR_I2C1_REMAP_Pos) /*!< 0x00000002 */
  2196. #define AFIO_MAPR_I2C1_REMAP AFIO_MAPR_I2C1_REMAP_Msk /*!< I2C1 remapping */
  2197. #define AFIO_MAPR_USART1_REMAP_Pos (2U)
  2198. #define AFIO_MAPR_USART1_REMAP_Msk (0x1UL << AFIO_MAPR_USART1_REMAP_Pos) /*!< 0x00000004 */
  2199. #define AFIO_MAPR_USART1_REMAP AFIO_MAPR_USART1_REMAP_Msk /*!< USART1 remapping */
  2200. #define AFIO_MAPR_USART2_REMAP_Pos (3U)
  2201. #define AFIO_MAPR_USART2_REMAP_Msk (0x1UL << AFIO_MAPR_USART2_REMAP_Pos) /*!< 0x00000008 */
  2202. #define AFIO_MAPR_USART2_REMAP AFIO_MAPR_USART2_REMAP_Msk /*!< USART2 remapping */
  2203. #define AFIO_MAPR_USART3_REMAP_Pos (4U)
  2204. #define AFIO_MAPR_USART3_REMAP_Msk (0x3UL << AFIO_MAPR_USART3_REMAP_Pos) /*!< 0x00000030 */
  2205. #define AFIO_MAPR_USART3_REMAP AFIO_MAPR_USART3_REMAP_Msk /*!< USART3_REMAP[1:0] bits (USART3 remapping) */
  2206. #define AFIO_MAPR_USART3_REMAP_0 (0x1UL << AFIO_MAPR_USART3_REMAP_Pos) /*!< 0x00000010 */
  2207. #define AFIO_MAPR_USART3_REMAP_1 (0x2UL << AFIO_MAPR_USART3_REMAP_Pos) /*!< 0x00000020 */
  2208. /* USART3_REMAP configuration */
  2209. #define AFIO_MAPR_USART3_REMAP_NOREMAP 0x00000000U /*!< No remap (TX/PB10, RX/PB11, CK/PB12, CTS/PB13, RTS/PB14) */
  2210. #define AFIO_MAPR_USART3_REMAP_PARTIALREMAP_Pos (4U)
  2211. #define AFIO_MAPR_USART3_REMAP_PARTIALREMAP_Msk (0x1UL << AFIO_MAPR_USART3_REMAP_PARTIALREMAP_Pos) /*!< 0x00000010 */
  2212. #define AFIO_MAPR_USART3_REMAP_PARTIALREMAP AFIO_MAPR_USART3_REMAP_PARTIALREMAP_Msk /*!< Partial remap (TX/PC10, RX/PC11, CK/PC12, CTS/PB13, RTS/PB14) */
  2213. #define AFIO_MAPR_USART3_REMAP_FULLREMAP_Pos (4U)
  2214. #define AFIO_MAPR_USART3_REMAP_FULLREMAP_Msk (0x3UL << AFIO_MAPR_USART3_REMAP_FULLREMAP_Pos) /*!< 0x00000030 */
  2215. #define AFIO_MAPR_USART3_REMAP_FULLREMAP AFIO_MAPR_USART3_REMAP_FULLREMAP_Msk /*!< Full remap (TX/PD8, RX/PD9, CK/PD10, CTS/PD11, RTS/PD12) */
  2216. #define AFIO_MAPR_TIM1_REMAP_Pos (6U)
  2217. #define AFIO_MAPR_TIM1_REMAP_Msk (0x3UL << AFIO_MAPR_TIM1_REMAP_Pos) /*!< 0x000000C0 */
  2218. #define AFIO_MAPR_TIM1_REMAP AFIO_MAPR_TIM1_REMAP_Msk /*!< TIM1_REMAP[1:0] bits (TIM1 remapping) */
  2219. #define AFIO_MAPR_TIM1_REMAP_0 (0x1UL << AFIO_MAPR_TIM1_REMAP_Pos) /*!< 0x00000040 */
  2220. #define AFIO_MAPR_TIM1_REMAP_1 (0x2UL << AFIO_MAPR_TIM1_REMAP_Pos) /*!< 0x00000080 */
  2221. /*!< TIM1_REMAP configuration */
  2222. #define AFIO_MAPR_TIM1_REMAP_NOREMAP 0x00000000U /*!< No remap (ETR/PA12, CH1/PA8, CH2/PA9, CH3/PA10, CH4/PA11, BKIN/PB12, CH1N/PB13, CH2N/PB14, CH3N/PB15) */
  2223. #define AFIO_MAPR_TIM1_REMAP_PARTIALREMAP_Pos (6U)
  2224. #define AFIO_MAPR_TIM1_REMAP_PARTIALREMAP_Msk (0x1UL << AFIO_MAPR_TIM1_REMAP_PARTIALREMAP_Pos) /*!< 0x00000040 */
  2225. #define AFIO_MAPR_TIM1_REMAP_PARTIALREMAP AFIO_MAPR_TIM1_REMAP_PARTIALREMAP_Msk /*!< Partial remap (ETR/PA12, CH1/PA8, CH2/PA9, CH3/PA10, CH4/PA11, BKIN/PA6, CH1N/PA7, CH2N/PB0, CH3N/PB1) */
  2226. #define AFIO_MAPR_TIM1_REMAP_FULLREMAP_Pos (6U)
  2227. #define AFIO_MAPR_TIM1_REMAP_FULLREMAP_Msk (0x3UL << AFIO_MAPR_TIM1_REMAP_FULLREMAP_Pos) /*!< 0x000000C0 */
  2228. #define AFIO_MAPR_TIM1_REMAP_FULLREMAP AFIO_MAPR_TIM1_REMAP_FULLREMAP_Msk /*!< Full remap (ETR/PE7, CH1/PE9, CH2/PE11, CH3/PE13, CH4/PE14, BKIN/PE15, CH1N/PE8, CH2N/PE10, CH3N/PE12) */
  2229. #define AFIO_MAPR_TIM2_REMAP_Pos (8U)
  2230. #define AFIO_MAPR_TIM2_REMAP_Msk (0x3UL << AFIO_MAPR_TIM2_REMAP_Pos) /*!< 0x00000300 */
  2231. #define AFIO_MAPR_TIM2_REMAP AFIO_MAPR_TIM2_REMAP_Msk /*!< TIM2_REMAP[1:0] bits (TIM2 remapping) */
  2232. #define AFIO_MAPR_TIM2_REMAP_0 (0x1UL << AFIO_MAPR_TIM2_REMAP_Pos) /*!< 0x00000100 */
  2233. #define AFIO_MAPR_TIM2_REMAP_1 (0x2UL << AFIO_MAPR_TIM2_REMAP_Pos) /*!< 0x00000200 */
  2234. /*!< TIM2_REMAP configuration */
  2235. #define AFIO_MAPR_TIM2_REMAP_NOREMAP 0x00000000U /*!< No remap (CH1/ETR/PA0, CH2/PA1, CH3/PA2, CH4/PA3) */
  2236. #define AFIO_MAPR_TIM2_REMAP_PARTIALREMAP1_Pos (8U)
  2237. #define AFIO_MAPR_TIM2_REMAP_PARTIALREMAP1_Msk (0x1UL << AFIO_MAPR_TIM2_REMAP_PARTIALREMAP1_Pos) /*!< 0x00000100 */
  2238. #define AFIO_MAPR_TIM2_REMAP_PARTIALREMAP1 AFIO_MAPR_TIM2_REMAP_PARTIALREMAP1_Msk /*!< Partial remap (CH1/ETR/PA15, CH2/PB3, CH3/PA2, CH4/PA3) */
  2239. #define AFIO_MAPR_TIM2_REMAP_PARTIALREMAP2_Pos (9U)
  2240. #define AFIO_MAPR_TIM2_REMAP_PARTIALREMAP2_Msk (0x1UL << AFIO_MAPR_TIM2_REMAP_PARTIALREMAP2_Pos) /*!< 0x00000200 */
  2241. #define AFIO_MAPR_TIM2_REMAP_PARTIALREMAP2 AFIO_MAPR_TIM2_REMAP_PARTIALREMAP2_Msk /*!< Partial remap (CH1/ETR/PA0, CH2/PA1, CH3/PB10, CH4/PB11) */
  2242. #define AFIO_MAPR_TIM2_REMAP_FULLREMAP_Pos (8U)
  2243. #define AFIO_MAPR_TIM2_REMAP_FULLREMAP_Msk (0x3UL << AFIO_MAPR_TIM2_REMAP_FULLREMAP_Pos) /*!< 0x00000300 */
  2244. #define AFIO_MAPR_TIM2_REMAP_FULLREMAP AFIO_MAPR_TIM2_REMAP_FULLREMAP_Msk /*!< Full remap (CH1/ETR/PA15, CH2/PB3, CH3/PB10, CH4/PB11) */
  2245. #define AFIO_MAPR_TIM3_REMAP_Pos (10U)
  2246. #define AFIO_MAPR_TIM3_REMAP_Msk (0x3UL << AFIO_MAPR_TIM3_REMAP_Pos) /*!< 0x00000C00 */
  2247. #define AFIO_MAPR_TIM3_REMAP AFIO_MAPR_TIM3_REMAP_Msk /*!< TIM3_REMAP[1:0] bits (TIM3 remapping) */
  2248. #define AFIO_MAPR_TIM3_REMAP_0 (0x1UL << AFIO_MAPR_TIM3_REMAP_Pos) /*!< 0x00000400 */
  2249. #define AFIO_MAPR_TIM3_REMAP_1 (0x2UL << AFIO_MAPR_TIM3_REMAP_Pos) /*!< 0x00000800 */
  2250. /*!< TIM3_REMAP configuration */
  2251. #define AFIO_MAPR_TIM3_REMAP_NOREMAP 0x00000000U /*!< No remap (CH1/PA6, CH2/PA7, CH3/PB0, CH4/PB1) */
  2252. #define AFIO_MAPR_TIM3_REMAP_PARTIALREMAP_Pos (11U)
  2253. #define AFIO_MAPR_TIM3_REMAP_PARTIALREMAP_Msk (0x1UL << AFIO_MAPR_TIM3_REMAP_PARTIALREMAP_Pos) /*!< 0x00000800 */
  2254. #define AFIO_MAPR_TIM3_REMAP_PARTIALREMAP AFIO_MAPR_TIM3_REMAP_PARTIALREMAP_Msk /*!< Partial remap (CH1/PB4, CH2/PB5, CH3/PB0, CH4/PB1) */
  2255. #define AFIO_MAPR_TIM3_REMAP_FULLREMAP_Pos (10U)
  2256. #define AFIO_MAPR_TIM3_REMAP_FULLREMAP_Msk (0x3UL << AFIO_MAPR_TIM3_REMAP_FULLREMAP_Pos) /*!< 0x00000C00 */
  2257. #define AFIO_MAPR_TIM3_REMAP_FULLREMAP AFIO_MAPR_TIM3_REMAP_FULLREMAP_Msk /*!< Full remap (CH1/PC6, CH2/PC7, CH3/PC8, CH4/PC9) */
  2258. #define AFIO_MAPR_TIM4_REMAP_Pos (12U)
  2259. #define AFIO_MAPR_TIM4_REMAP_Msk (0x1UL << AFIO_MAPR_TIM4_REMAP_Pos) /*!< 0x00001000 */
  2260. #define AFIO_MAPR_TIM4_REMAP AFIO_MAPR_TIM4_REMAP_Msk /*!< TIM4_REMAP bit (TIM4 remapping) */
  2261. #define AFIO_MAPR_CAN_REMAP_Pos (13U)
  2262. #define AFIO_MAPR_CAN_REMAP_Msk (0x3UL << AFIO_MAPR_CAN_REMAP_Pos) /*!< 0x00006000 */
  2263. #define AFIO_MAPR_CAN_REMAP AFIO_MAPR_CAN_REMAP_Msk /*!< CAN_REMAP[1:0] bits (CAN Alternate function remapping) */
  2264. #define AFIO_MAPR_CAN_REMAP_0 (0x1UL << AFIO_MAPR_CAN_REMAP_Pos) /*!< 0x00002000 */
  2265. #define AFIO_MAPR_CAN_REMAP_1 (0x2UL << AFIO_MAPR_CAN_REMAP_Pos) /*!< 0x00004000 */
  2266. /*!< CAN_REMAP configuration */
  2267. #define AFIO_MAPR_CAN_REMAP_REMAP1 0x00000000U /*!< CANRX mapped to PA11, CANTX mapped to PA12 */
  2268. #define AFIO_MAPR_CAN_REMAP_REMAP2_Pos (14U)
  2269. #define AFIO_MAPR_CAN_REMAP_REMAP2_Msk (0x1UL << AFIO_MAPR_CAN_REMAP_REMAP2_Pos) /*!< 0x00004000 */
  2270. #define AFIO_MAPR_CAN_REMAP_REMAP2 AFIO_MAPR_CAN_REMAP_REMAP2_Msk /*!< CANRX mapped to PB8, CANTX mapped to PB9 */
  2271. #define AFIO_MAPR_CAN_REMAP_REMAP3_Pos (13U)
  2272. #define AFIO_MAPR_CAN_REMAP_REMAP3_Msk (0x3UL << AFIO_MAPR_CAN_REMAP_REMAP3_Pos) /*!< 0x00006000 */
  2273. #define AFIO_MAPR_CAN_REMAP_REMAP3 AFIO_MAPR_CAN_REMAP_REMAP3_Msk /*!< CANRX mapped to PD0, CANTX mapped to PD1 */
  2274. #define AFIO_MAPR_PD01_REMAP_Pos (15U)
  2275. #define AFIO_MAPR_PD01_REMAP_Msk (0x1UL << AFIO_MAPR_PD01_REMAP_Pos) /*!< 0x00008000 */
  2276. #define AFIO_MAPR_PD01_REMAP AFIO_MAPR_PD01_REMAP_Msk /*!< Port D0/Port D1 mapping on OSC_IN/OSC_OUT */
  2277. #define AFIO_MAPR_TIM5CH4_IREMAP_Pos (16U)
  2278. #define AFIO_MAPR_TIM5CH4_IREMAP_Msk (0x1UL << AFIO_MAPR_TIM5CH4_IREMAP_Pos) /*!< 0x00010000 */
  2279. #define AFIO_MAPR_TIM5CH4_IREMAP AFIO_MAPR_TIM5CH4_IREMAP_Msk /*!< TIM5 Channel4 Internal Remap */
  2280. #define AFIO_MAPR_ADC1_ETRGINJ_REMAP_Pos (17U)
  2281. #define AFIO_MAPR_ADC1_ETRGINJ_REMAP_Msk (0x1UL << AFIO_MAPR_ADC1_ETRGINJ_REMAP_Pos) /*!< 0x00020000 */
  2282. #define AFIO_MAPR_ADC1_ETRGINJ_REMAP AFIO_MAPR_ADC1_ETRGINJ_REMAP_Msk /*!< ADC 1 External Trigger Injected Conversion remapping */
  2283. #define AFIO_MAPR_ADC1_ETRGREG_REMAP_Pos (18U)
  2284. #define AFIO_MAPR_ADC1_ETRGREG_REMAP_Msk (0x1UL << AFIO_MAPR_ADC1_ETRGREG_REMAP_Pos) /*!< 0x00040000 */
  2285. #define AFIO_MAPR_ADC1_ETRGREG_REMAP AFIO_MAPR_ADC1_ETRGREG_REMAP_Msk /*!< ADC 1 External Trigger Regular Conversion remapping */
  2286. #define AFIO_MAPR_ADC2_ETRGINJ_REMAP_Pos (19U)
  2287. #define AFIO_MAPR_ADC2_ETRGINJ_REMAP_Msk (0x1UL << AFIO_MAPR_ADC2_ETRGINJ_REMAP_Pos) /*!< 0x00080000 */
  2288. #define AFIO_MAPR_ADC2_ETRGINJ_REMAP AFIO_MAPR_ADC2_ETRGINJ_REMAP_Msk /*!< ADC 2 External Trigger Injected Conversion remapping */
  2289. #define AFIO_MAPR_ADC2_ETRGREG_REMAP_Pos (20U)
  2290. #define AFIO_MAPR_ADC2_ETRGREG_REMAP_Msk (0x1UL << AFIO_MAPR_ADC2_ETRGREG_REMAP_Pos) /*!< 0x00100000 */
  2291. #define AFIO_MAPR_ADC2_ETRGREG_REMAP AFIO_MAPR_ADC2_ETRGREG_REMAP_Msk /*!< ADC 2 External Trigger Regular Conversion remapping */
  2292. /*!< SWJ_CFG configuration */
  2293. #define AFIO_MAPR_SWJ_CFG_Pos (24U)
  2294. #define AFIO_MAPR_SWJ_CFG_Msk (0x7UL << AFIO_MAPR_SWJ_CFG_Pos) /*!< 0x07000000 */
  2295. #define AFIO_MAPR_SWJ_CFG AFIO_MAPR_SWJ_CFG_Msk /*!< SWJ_CFG[2:0] bits (Serial Wire JTAG configuration) */
  2296. #define AFIO_MAPR_SWJ_CFG_0 (0x1UL << AFIO_MAPR_SWJ_CFG_Pos) /*!< 0x01000000 */
  2297. #define AFIO_MAPR_SWJ_CFG_1 (0x2UL << AFIO_MAPR_SWJ_CFG_Pos) /*!< 0x02000000 */
  2298. #define AFIO_MAPR_SWJ_CFG_2 (0x4UL << AFIO_MAPR_SWJ_CFG_Pos) /*!< 0x04000000 */
  2299. #define AFIO_MAPR_SWJ_CFG_RESET 0x00000000U /*!< Full SWJ (JTAG-DP + SW-DP) : Reset State */
  2300. #define AFIO_MAPR_SWJ_CFG_NOJNTRST_Pos (24U)
  2301. #define AFIO_MAPR_SWJ_CFG_NOJNTRST_Msk (0x1UL << AFIO_MAPR_SWJ_CFG_NOJNTRST_Pos) /*!< 0x01000000 */
  2302. #define AFIO_MAPR_SWJ_CFG_NOJNTRST AFIO_MAPR_SWJ_CFG_NOJNTRST_Msk /*!< Full SWJ (JTAG-DP + SW-DP) but without JNTRST */
  2303. #define AFIO_MAPR_SWJ_CFG_JTAGDISABLE_Pos (25U)
  2304. #define AFIO_MAPR_SWJ_CFG_JTAGDISABLE_Msk (0x1UL << AFIO_MAPR_SWJ_CFG_JTAGDISABLE_Pos) /*!< 0x02000000 */
  2305. #define AFIO_MAPR_SWJ_CFG_JTAGDISABLE AFIO_MAPR_SWJ_CFG_JTAGDISABLE_Msk /*!< JTAG-DP Disabled and SW-DP Enabled */
  2306. #define AFIO_MAPR_SWJ_CFG_DISABLE_Pos (26U)
  2307. #define AFIO_MAPR_SWJ_CFG_DISABLE_Msk (0x1UL << AFIO_MAPR_SWJ_CFG_DISABLE_Pos) /*!< 0x04000000 */
  2308. #define AFIO_MAPR_SWJ_CFG_DISABLE AFIO_MAPR_SWJ_CFG_DISABLE_Msk /*!< JTAG-DP Disabled and SW-DP Disabled */
  2309. /***************** Bit definition for AFIO_EXTICR1 register *****************/
  2310. #define AFIO_EXTICR1_EXTI0_Pos (0U)
  2311. #define AFIO_EXTICR1_EXTI0_Msk (0xFUL << AFIO_EXTICR1_EXTI0_Pos) /*!< 0x0000000F */
  2312. #define AFIO_EXTICR1_EXTI0 AFIO_EXTICR1_EXTI0_Msk /*!< EXTI 0 configuration */
  2313. #define AFIO_EXTICR1_EXTI1_Pos (4U)
  2314. #define AFIO_EXTICR1_EXTI1_Msk (0xFUL << AFIO_EXTICR1_EXTI1_Pos) /*!< 0x000000F0 */
  2315. #define AFIO_EXTICR1_EXTI1 AFIO_EXTICR1_EXTI1_Msk /*!< EXTI 1 configuration */
  2316. #define AFIO_EXTICR1_EXTI2_Pos (8U)
  2317. #define AFIO_EXTICR1_EXTI2_Msk (0xFUL << AFIO_EXTICR1_EXTI2_Pos) /*!< 0x00000F00 */
  2318. #define AFIO_EXTICR1_EXTI2 AFIO_EXTICR1_EXTI2_Msk /*!< EXTI 2 configuration */
  2319. #define AFIO_EXTICR1_EXTI3_Pos (12U)
  2320. #define AFIO_EXTICR1_EXTI3_Msk (0xFUL << AFIO_EXTICR1_EXTI3_Pos) /*!< 0x0000F000 */
  2321. #define AFIO_EXTICR1_EXTI3 AFIO_EXTICR1_EXTI3_Msk /*!< EXTI 3 configuration */
  2322. /*!< EXTI0 configuration */
  2323. #define AFIO_EXTICR1_EXTI0_PA 0x00000000U /*!< PA[0] pin */
  2324. #define AFIO_EXTICR1_EXTI0_PB_Pos (0U)
  2325. #define AFIO_EXTICR1_EXTI0_PB_Msk (0x1UL << AFIO_EXTICR1_EXTI0_PB_Pos) /*!< 0x00000001 */
  2326. #define AFIO_EXTICR1_EXTI0_PB AFIO_EXTICR1_EXTI0_PB_Msk /*!< PB[0] pin */
  2327. #define AFIO_EXTICR1_EXTI0_PC_Pos (1U)
  2328. #define AFIO_EXTICR1_EXTI0_PC_Msk (0x1UL << AFIO_EXTICR1_EXTI0_PC_Pos) /*!< 0x00000002 */
  2329. #define AFIO_EXTICR1_EXTI0_PC AFIO_EXTICR1_EXTI0_PC_Msk /*!< PC[0] pin */
  2330. #define AFIO_EXTICR1_EXTI0_PD_Pos (0U)
  2331. #define AFIO_EXTICR1_EXTI0_PD_Msk (0x3UL << AFIO_EXTICR1_EXTI0_PD_Pos) /*!< 0x00000003 */
  2332. #define AFIO_EXTICR1_EXTI0_PD AFIO_EXTICR1_EXTI0_PD_Msk /*!< PD[0] pin */
  2333. #define AFIO_EXTICR1_EXTI0_PE_Pos (2U)
  2334. #define AFIO_EXTICR1_EXTI0_PE_Msk (0x1UL << AFIO_EXTICR1_EXTI0_PE_Pos) /*!< 0x00000004 */
  2335. #define AFIO_EXTICR1_EXTI0_PE AFIO_EXTICR1_EXTI0_PE_Msk /*!< PE[0] pin */
  2336. #define AFIO_EXTICR1_EXTI0_PF_Pos (0U)
  2337. #define AFIO_EXTICR1_EXTI0_PF_Msk (0x5UL << AFIO_EXTICR1_EXTI0_PF_Pos) /*!< 0x00000005 */
  2338. #define AFIO_EXTICR1_EXTI0_PF AFIO_EXTICR1_EXTI0_PF_Msk /*!< PF[0] pin */
  2339. #define AFIO_EXTICR1_EXTI0_PG_Pos (1U)
  2340. #define AFIO_EXTICR1_EXTI0_PG_Msk (0x3UL << AFIO_EXTICR1_EXTI0_PG_Pos) /*!< 0x00000006 */
  2341. #define AFIO_EXTICR1_EXTI0_PG AFIO_EXTICR1_EXTI0_PG_Msk /*!< PG[0] pin */
  2342. /*!< EXTI1 configuration */
  2343. #define AFIO_EXTICR1_EXTI1_PA 0x00000000U /*!< PA[1] pin */
  2344. #define AFIO_EXTICR1_EXTI1_PB_Pos (4U)
  2345. #define AFIO_EXTICR1_EXTI1_PB_Msk (0x1UL << AFIO_EXTICR1_EXTI1_PB_Pos) /*!< 0x00000010 */
  2346. #define AFIO_EXTICR1_EXTI1_PB AFIO_EXTICR1_EXTI1_PB_Msk /*!< PB[1] pin */
  2347. #define AFIO_EXTICR1_EXTI1_PC_Pos (5U)
  2348. #define AFIO_EXTICR1_EXTI1_PC_Msk (0x1UL << AFIO_EXTICR1_EXTI1_PC_Pos) /*!< 0x00000020 */
  2349. #define AFIO_EXTICR1_EXTI1_PC AFIO_EXTICR1_EXTI1_PC_Msk /*!< PC[1] pin */
  2350. #define AFIO_EXTICR1_EXTI1_PD_Pos (4U)
  2351. #define AFIO_EXTICR1_EXTI1_PD_Msk (0x3UL << AFIO_EXTICR1_EXTI1_PD_Pos) /*!< 0x00000030 */
  2352. #define AFIO_EXTICR1_EXTI1_PD AFIO_EXTICR1_EXTI1_PD_Msk /*!< PD[1] pin */
  2353. #define AFIO_EXTICR1_EXTI1_PE_Pos (6U)
  2354. #define AFIO_EXTICR1_EXTI1_PE_Msk (0x1UL << AFIO_EXTICR1_EXTI1_PE_Pos) /*!< 0x00000040 */
  2355. #define AFIO_EXTICR1_EXTI1_PE AFIO_EXTICR1_EXTI1_PE_Msk /*!< PE[1] pin */
  2356. #define AFIO_EXTICR1_EXTI1_PF_Pos (4U)
  2357. #define AFIO_EXTICR1_EXTI1_PF_Msk (0x5UL << AFIO_EXTICR1_EXTI1_PF_Pos) /*!< 0x00000050 */
  2358. #define AFIO_EXTICR1_EXTI1_PF AFIO_EXTICR1_EXTI1_PF_Msk /*!< PF[1] pin */
  2359. #define AFIO_EXTICR1_EXTI1_PG_Pos (5U)
  2360. #define AFIO_EXTICR1_EXTI1_PG_Msk (0x3UL << AFIO_EXTICR1_EXTI1_PG_Pos) /*!< 0x00000060 */
  2361. #define AFIO_EXTICR1_EXTI1_PG AFIO_EXTICR1_EXTI1_PG_Msk /*!< PG[1] pin */
  2362. /*!< EXTI2 configuration */
  2363. #define AFIO_EXTICR1_EXTI2_PA 0x00000000U /*!< PA[2] pin */
  2364. #define AFIO_EXTICR1_EXTI2_PB_Pos (8U)
  2365. #define AFIO_EXTICR1_EXTI2_PB_Msk (0x1UL << AFIO_EXTICR1_EXTI2_PB_Pos) /*!< 0x00000100 */
  2366. #define AFIO_EXTICR1_EXTI2_PB AFIO_EXTICR1_EXTI2_PB_Msk /*!< PB[2] pin */
  2367. #define AFIO_EXTICR1_EXTI2_PC_Pos (9U)
  2368. #define AFIO_EXTICR1_EXTI2_PC_Msk (0x1UL << AFIO_EXTICR1_EXTI2_PC_Pos) /*!< 0x00000200 */
  2369. #define AFIO_EXTICR1_EXTI2_PC AFIO_EXTICR1_EXTI2_PC_Msk /*!< PC[2] pin */
  2370. #define AFIO_EXTICR1_EXTI2_PD_Pos (8U)
  2371. #define AFIO_EXTICR1_EXTI2_PD_Msk (0x3UL << AFIO_EXTICR1_EXTI2_PD_Pos) /*!< 0x00000300 */
  2372. #define AFIO_EXTICR1_EXTI2_PD AFIO_EXTICR1_EXTI2_PD_Msk /*!< PD[2] pin */
  2373. #define AFIO_EXTICR1_EXTI2_PE_Pos (10U)
  2374. #define AFIO_EXTICR1_EXTI2_PE_Msk (0x1UL << AFIO_EXTICR1_EXTI2_PE_Pos) /*!< 0x00000400 */
  2375. #define AFIO_EXTICR1_EXTI2_PE AFIO_EXTICR1_EXTI2_PE_Msk /*!< PE[2] pin */
  2376. #define AFIO_EXTICR1_EXTI2_PF_Pos (8U)
  2377. #define AFIO_EXTICR1_EXTI2_PF_Msk (0x5UL << AFIO_EXTICR1_EXTI2_PF_Pos) /*!< 0x00000500 */
  2378. #define AFIO_EXTICR1_EXTI2_PF AFIO_EXTICR1_EXTI2_PF_Msk /*!< PF[2] pin */
  2379. #define AFIO_EXTICR1_EXTI2_PG_Pos (9U)
  2380. #define AFIO_EXTICR1_EXTI2_PG_Msk (0x3UL << AFIO_EXTICR1_EXTI2_PG_Pos) /*!< 0x00000600 */
  2381. #define AFIO_EXTICR1_EXTI2_PG AFIO_EXTICR1_EXTI2_PG_Msk /*!< PG[2] pin */
  2382. /*!< EXTI3 configuration */
  2383. #define AFIO_EXTICR1_EXTI3_PA 0x00000000U /*!< PA[3] pin */
  2384. #define AFIO_EXTICR1_EXTI3_PB_Pos (12U)
  2385. #define AFIO_EXTICR1_EXTI3_PB_Msk (0x1UL << AFIO_EXTICR1_EXTI3_PB_Pos) /*!< 0x00001000 */
  2386. #define AFIO_EXTICR1_EXTI3_PB AFIO_EXTICR1_EXTI3_PB_Msk /*!< PB[3] pin */
  2387. #define AFIO_EXTICR1_EXTI3_PC_Pos (13U)
  2388. #define AFIO_EXTICR1_EXTI3_PC_Msk (0x1UL << AFIO_EXTICR1_EXTI3_PC_Pos) /*!< 0x00002000 */
  2389. #define AFIO_EXTICR1_EXTI3_PC AFIO_EXTICR1_EXTI3_PC_Msk /*!< PC[3] pin */
  2390. #define AFIO_EXTICR1_EXTI3_PD_Pos (12U)
  2391. #define AFIO_EXTICR1_EXTI3_PD_Msk (0x3UL << AFIO_EXTICR1_EXTI3_PD_Pos) /*!< 0x00003000 */
  2392. #define AFIO_EXTICR1_EXTI3_PD AFIO_EXTICR1_EXTI3_PD_Msk /*!< PD[3] pin */
  2393. #define AFIO_EXTICR1_EXTI3_PE_Pos (14U)
  2394. #define AFIO_EXTICR1_EXTI3_PE_Msk (0x1UL << AFIO_EXTICR1_EXTI3_PE_Pos) /*!< 0x00004000 */
  2395. #define AFIO_EXTICR1_EXTI3_PE AFIO_EXTICR1_EXTI3_PE_Msk /*!< PE[3] pin */
  2396. #define AFIO_EXTICR1_EXTI3_PF_Pos (12U)
  2397. #define AFIO_EXTICR1_EXTI3_PF_Msk (0x5UL << AFIO_EXTICR1_EXTI3_PF_Pos) /*!< 0x00005000 */
  2398. #define AFIO_EXTICR1_EXTI3_PF AFIO_EXTICR1_EXTI3_PF_Msk /*!< PF[3] pin */
  2399. #define AFIO_EXTICR1_EXTI3_PG_Pos (13U)
  2400. #define AFIO_EXTICR1_EXTI3_PG_Msk (0x3UL << AFIO_EXTICR1_EXTI3_PG_Pos) /*!< 0x00006000 */
  2401. #define AFIO_EXTICR1_EXTI3_PG AFIO_EXTICR1_EXTI3_PG_Msk /*!< PG[3] pin */
  2402. /***************** Bit definition for AFIO_EXTICR2 register *****************/
  2403. #define AFIO_EXTICR2_EXTI4_Pos (0U)
  2404. #define AFIO_EXTICR2_EXTI4_Msk (0xFUL << AFIO_EXTICR2_EXTI4_Pos) /*!< 0x0000000F */
  2405. #define AFIO_EXTICR2_EXTI4 AFIO_EXTICR2_EXTI4_Msk /*!< EXTI 4 configuration */
  2406. #define AFIO_EXTICR2_EXTI5_Pos (4U)
  2407. #define AFIO_EXTICR2_EXTI5_Msk (0xFUL << AFIO_EXTICR2_EXTI5_Pos) /*!< 0x000000F0 */
  2408. #define AFIO_EXTICR2_EXTI5 AFIO_EXTICR2_EXTI5_Msk /*!< EXTI 5 configuration */
  2409. #define AFIO_EXTICR2_EXTI6_Pos (8U)
  2410. #define AFIO_EXTICR2_EXTI6_Msk (0xFUL << AFIO_EXTICR2_EXTI6_Pos) /*!< 0x00000F00 */
  2411. #define AFIO_EXTICR2_EXTI6 AFIO_EXTICR2_EXTI6_Msk /*!< EXTI 6 configuration */
  2412. #define AFIO_EXTICR2_EXTI7_Pos (12U)
  2413. #define AFIO_EXTICR2_EXTI7_Msk (0xFUL << AFIO_EXTICR2_EXTI7_Pos) /*!< 0x0000F000 */
  2414. #define AFIO_EXTICR2_EXTI7 AFIO_EXTICR2_EXTI7_Msk /*!< EXTI 7 configuration */
  2415. /*!< EXTI4 configuration */
  2416. #define AFIO_EXTICR2_EXTI4_PA 0x00000000U /*!< PA[4] pin */
  2417. #define AFIO_EXTICR2_EXTI4_PB_Pos (0U)
  2418. #define AFIO_EXTICR2_EXTI4_PB_Msk (0x1UL << AFIO_EXTICR2_EXTI4_PB_Pos) /*!< 0x00000001 */
  2419. #define AFIO_EXTICR2_EXTI4_PB AFIO_EXTICR2_EXTI4_PB_Msk /*!< PB[4] pin */
  2420. #define AFIO_EXTICR2_EXTI4_PC_Pos (1U)
  2421. #define AFIO_EXTICR2_EXTI4_PC_Msk (0x1UL << AFIO_EXTICR2_EXTI4_PC_Pos) /*!< 0x00000002 */
  2422. #define AFIO_EXTICR2_EXTI4_PC AFIO_EXTICR2_EXTI4_PC_Msk /*!< PC[4] pin */
  2423. #define AFIO_EXTICR2_EXTI4_PD_Pos (0U)
  2424. #define AFIO_EXTICR2_EXTI4_PD_Msk (0x3UL << AFIO_EXTICR2_EXTI4_PD_Pos) /*!< 0x00000003 */
  2425. #define AFIO_EXTICR2_EXTI4_PD AFIO_EXTICR2_EXTI4_PD_Msk /*!< PD[4] pin */
  2426. #define AFIO_EXTICR2_EXTI4_PE_Pos (2U)
  2427. #define AFIO_EXTICR2_EXTI4_PE_Msk (0x1UL << AFIO_EXTICR2_EXTI4_PE_Pos) /*!< 0x00000004 */
  2428. #define AFIO_EXTICR2_EXTI4_PE AFIO_EXTICR2_EXTI4_PE_Msk /*!< PE[4] pin */
  2429. #define AFIO_EXTICR2_EXTI4_PF_Pos (0U)
  2430. #define AFIO_EXTICR2_EXTI4_PF_Msk (0x5UL << AFIO_EXTICR2_EXTI4_PF_Pos) /*!< 0x00000005 */
  2431. #define AFIO_EXTICR2_EXTI4_PF AFIO_EXTICR2_EXTI4_PF_Msk /*!< PF[4] pin */
  2432. #define AFIO_EXTICR2_EXTI4_PG_Pos (1U)
  2433. #define AFIO_EXTICR2_EXTI4_PG_Msk (0x3UL << AFIO_EXTICR2_EXTI4_PG_Pos) /*!< 0x00000006 */
  2434. #define AFIO_EXTICR2_EXTI4_PG AFIO_EXTICR2_EXTI4_PG_Msk /*!< PG[4] pin */
  2435. /* EXTI5 configuration */
  2436. #define AFIO_EXTICR2_EXTI5_PA 0x00000000U /*!< PA[5] pin */
  2437. #define AFIO_EXTICR2_EXTI5_PB_Pos (4U)
  2438. #define AFIO_EXTICR2_EXTI5_PB_Msk (0x1UL << AFIO_EXTICR2_EXTI5_PB_Pos) /*!< 0x00000010 */
  2439. #define AFIO_EXTICR2_EXTI5_PB AFIO_EXTICR2_EXTI5_PB_Msk /*!< PB[5] pin */
  2440. #define AFIO_EXTICR2_EXTI5_PC_Pos (5U)
  2441. #define AFIO_EXTICR2_EXTI5_PC_Msk (0x1UL << AFIO_EXTICR2_EXTI5_PC_Pos) /*!< 0x00000020 */
  2442. #define AFIO_EXTICR2_EXTI5_PC AFIO_EXTICR2_EXTI5_PC_Msk /*!< PC[5] pin */
  2443. #define AFIO_EXTICR2_EXTI5_PD_Pos (4U)
  2444. #define AFIO_EXTICR2_EXTI5_PD_Msk (0x3UL << AFIO_EXTICR2_EXTI5_PD_Pos) /*!< 0x00000030 */
  2445. #define AFIO_EXTICR2_EXTI5_PD AFIO_EXTICR2_EXTI5_PD_Msk /*!< PD[5] pin */
  2446. #define AFIO_EXTICR2_EXTI5_PE_Pos (6U)
  2447. #define AFIO_EXTICR2_EXTI5_PE_Msk (0x1UL << AFIO_EXTICR2_EXTI5_PE_Pos) /*!< 0x00000040 */
  2448. #define AFIO_EXTICR2_EXTI5_PE AFIO_EXTICR2_EXTI5_PE_Msk /*!< PE[5] pin */
  2449. #define AFIO_EXTICR2_EXTI5_PF_Pos (4U)
  2450. #define AFIO_EXTICR2_EXTI5_PF_Msk (0x5UL << AFIO_EXTICR2_EXTI5_PF_Pos) /*!< 0x00000050 */
  2451. #define AFIO_EXTICR2_EXTI5_PF AFIO_EXTICR2_EXTI5_PF_Msk /*!< PF[5] pin */
  2452. #define AFIO_EXTICR2_EXTI5_PG_Pos (5U)
  2453. #define AFIO_EXTICR2_EXTI5_PG_Msk (0x3UL << AFIO_EXTICR2_EXTI5_PG_Pos) /*!< 0x00000060 */
  2454. #define AFIO_EXTICR2_EXTI5_PG AFIO_EXTICR2_EXTI5_PG_Msk /*!< PG[5] pin */
  2455. /*!< EXTI6 configuration */
  2456. #define AFIO_EXTICR2_EXTI6_PA 0x00000000U /*!< PA[6] pin */
  2457. #define AFIO_EXTICR2_EXTI6_PB_Pos (8U)
  2458. #define AFIO_EXTICR2_EXTI6_PB_Msk (0x1UL << AFIO_EXTICR2_EXTI6_PB_Pos) /*!< 0x00000100 */
  2459. #define AFIO_EXTICR2_EXTI6_PB AFIO_EXTICR2_EXTI6_PB_Msk /*!< PB[6] pin */
  2460. #define AFIO_EXTICR2_EXTI6_PC_Pos (9U)
  2461. #define AFIO_EXTICR2_EXTI6_PC_Msk (0x1UL << AFIO_EXTICR2_EXTI6_PC_Pos) /*!< 0x00000200 */
  2462. #define AFIO_EXTICR2_EXTI6_PC AFIO_EXTICR2_EXTI6_PC_Msk /*!< PC[6] pin */
  2463. #define AFIO_EXTICR2_EXTI6_PD_Pos (8U)
  2464. #define AFIO_EXTICR2_EXTI6_PD_Msk (0x3UL << AFIO_EXTICR2_EXTI6_PD_Pos) /*!< 0x00000300 */
  2465. #define AFIO_EXTICR2_EXTI6_PD AFIO_EXTICR2_EXTI6_PD_Msk /*!< PD[6] pin */
  2466. #define AFIO_EXTICR2_EXTI6_PE_Pos (10U)
  2467. #define AFIO_EXTICR2_EXTI6_PE_Msk (0x1UL << AFIO_EXTICR2_EXTI6_PE_Pos) /*!< 0x00000400 */
  2468. #define AFIO_EXTICR2_EXTI6_PE AFIO_EXTICR2_EXTI6_PE_Msk /*!< PE[6] pin */
  2469. #define AFIO_EXTICR2_EXTI6_PF_Pos (8U)
  2470. #define AFIO_EXTICR2_EXTI6_PF_Msk (0x5UL << AFIO_EXTICR2_EXTI6_PF_Pos) /*!< 0x00000500 */
  2471. #define AFIO_EXTICR2_EXTI6_PF AFIO_EXTICR2_EXTI6_PF_Msk /*!< PF[6] pin */
  2472. #define AFIO_EXTICR2_EXTI6_PG_Pos (9U)
  2473. #define AFIO_EXTICR2_EXTI6_PG_Msk (0x3UL << AFIO_EXTICR2_EXTI6_PG_Pos) /*!< 0x00000600 */
  2474. #define AFIO_EXTICR2_EXTI6_PG AFIO_EXTICR2_EXTI6_PG_Msk /*!< PG[6] pin */
  2475. /*!< EXTI7 configuration */
  2476. #define AFIO_EXTICR2_EXTI7_PA 0x00000000U /*!< PA[7] pin */
  2477. #define AFIO_EXTICR2_EXTI7_PB_Pos (12U)
  2478. #define AFIO_EXTICR2_EXTI7_PB_Msk (0x1UL << AFIO_EXTICR2_EXTI7_PB_Pos) /*!< 0x00001000 */
  2479. #define AFIO_EXTICR2_EXTI7_PB AFIO_EXTICR2_EXTI7_PB_Msk /*!< PB[7] pin */
  2480. #define AFIO_EXTICR2_EXTI7_PC_Pos (13U)
  2481. #define AFIO_EXTICR2_EXTI7_PC_Msk (0x1UL << AFIO_EXTICR2_EXTI7_PC_Pos) /*!< 0x00002000 */
  2482. #define AFIO_EXTICR2_EXTI7_PC AFIO_EXTICR2_EXTI7_PC_Msk /*!< PC[7] pin */
  2483. #define AFIO_EXTICR2_EXTI7_PD_Pos (12U)
  2484. #define AFIO_EXTICR2_EXTI7_PD_Msk (0x3UL << AFIO_EXTICR2_EXTI7_PD_Pos) /*!< 0x00003000 */
  2485. #define AFIO_EXTICR2_EXTI7_PD AFIO_EXTICR2_EXTI7_PD_Msk /*!< PD[7] pin */
  2486. #define AFIO_EXTICR2_EXTI7_PE_Pos (14U)
  2487. #define AFIO_EXTICR2_EXTI7_PE_Msk (0x1UL << AFIO_EXTICR2_EXTI7_PE_Pos) /*!< 0x00004000 */
  2488. #define AFIO_EXTICR2_EXTI7_PE AFIO_EXTICR2_EXTI7_PE_Msk /*!< PE[7] pin */
  2489. #define AFIO_EXTICR2_EXTI7_PF_Pos (12U)
  2490. #define AFIO_EXTICR2_EXTI7_PF_Msk (0x5UL << AFIO_EXTICR2_EXTI7_PF_Pos) /*!< 0x00005000 */
  2491. #define AFIO_EXTICR2_EXTI7_PF AFIO_EXTICR2_EXTI7_PF_Msk /*!< PF[7] pin */
  2492. #define AFIO_EXTICR2_EXTI7_PG_Pos (13U)
  2493. #define AFIO_EXTICR2_EXTI7_PG_Msk (0x3UL << AFIO_EXTICR2_EXTI7_PG_Pos) /*!< 0x00006000 */
  2494. #define AFIO_EXTICR2_EXTI7_PG AFIO_EXTICR2_EXTI7_PG_Msk /*!< PG[7] pin */
  2495. /***************** Bit definition for AFIO_EXTICR3 register *****************/
  2496. #define AFIO_EXTICR3_EXTI8_Pos (0U)
  2497. #define AFIO_EXTICR3_EXTI8_Msk (0xFUL << AFIO_EXTICR3_EXTI8_Pos) /*!< 0x0000000F */
  2498. #define AFIO_EXTICR3_EXTI8 AFIO_EXTICR3_EXTI8_Msk /*!< EXTI 8 configuration */
  2499. #define AFIO_EXTICR3_EXTI9_Pos (4U)
  2500. #define AFIO_EXTICR3_EXTI9_Msk (0xFUL << AFIO_EXTICR3_EXTI9_Pos) /*!< 0x000000F0 */
  2501. #define AFIO_EXTICR3_EXTI9 AFIO_EXTICR3_EXTI9_Msk /*!< EXTI 9 configuration */
  2502. #define AFIO_EXTICR3_EXTI10_Pos (8U)
  2503. #define AFIO_EXTICR3_EXTI10_Msk (0xFUL << AFIO_EXTICR3_EXTI10_Pos) /*!< 0x00000F00 */
  2504. #define AFIO_EXTICR3_EXTI10 AFIO_EXTICR3_EXTI10_Msk /*!< EXTI 10 configuration */
  2505. #define AFIO_EXTICR3_EXTI11_Pos (12U)
  2506. #define AFIO_EXTICR3_EXTI11_Msk (0xFUL << AFIO_EXTICR3_EXTI11_Pos) /*!< 0x0000F000 */
  2507. #define AFIO_EXTICR3_EXTI11 AFIO_EXTICR3_EXTI11_Msk /*!< EXTI 11 configuration */
  2508. /*!< EXTI8 configuration */
  2509. #define AFIO_EXTICR3_EXTI8_PA 0x00000000U /*!< PA[8] pin */
  2510. #define AFIO_EXTICR3_EXTI8_PB_Pos (0U)
  2511. #define AFIO_EXTICR3_EXTI8_PB_Msk (0x1UL << AFIO_EXTICR3_EXTI8_PB_Pos) /*!< 0x00000001 */
  2512. #define AFIO_EXTICR3_EXTI8_PB AFIO_EXTICR3_EXTI8_PB_Msk /*!< PB[8] pin */
  2513. #define AFIO_EXTICR3_EXTI8_PC_Pos (1U)
  2514. #define AFIO_EXTICR3_EXTI8_PC_Msk (0x1UL << AFIO_EXTICR3_EXTI8_PC_Pos) /*!< 0x00000002 */
  2515. #define AFIO_EXTICR3_EXTI8_PC AFIO_EXTICR3_EXTI8_PC_Msk /*!< PC[8] pin */
  2516. #define AFIO_EXTICR3_EXTI8_PD_Pos (0U)
  2517. #define AFIO_EXTICR3_EXTI8_PD_Msk (0x3UL << AFIO_EXTICR3_EXTI8_PD_Pos) /*!< 0x00000003 */
  2518. #define AFIO_EXTICR3_EXTI8_PD AFIO_EXTICR3_EXTI8_PD_Msk /*!< PD[8] pin */
  2519. #define AFIO_EXTICR3_EXTI8_PE_Pos (2U)
  2520. #define AFIO_EXTICR3_EXTI8_PE_Msk (0x1UL << AFIO_EXTICR3_EXTI8_PE_Pos) /*!< 0x00000004 */
  2521. #define AFIO_EXTICR3_EXTI8_PE AFIO_EXTICR3_EXTI8_PE_Msk /*!< PE[8] pin */
  2522. #define AFIO_EXTICR3_EXTI8_PF_Pos (0U)
  2523. #define AFIO_EXTICR3_EXTI8_PF_Msk (0x5UL << AFIO_EXTICR3_EXTI8_PF_Pos) /*!< 0x00000005 */
  2524. #define AFIO_EXTICR3_EXTI8_PF AFIO_EXTICR3_EXTI8_PF_Msk /*!< PF[8] pin */
  2525. #define AFIO_EXTICR3_EXTI8_PG_Pos (1U)
  2526. #define AFIO_EXTICR3_EXTI8_PG_Msk (0x3UL << AFIO_EXTICR3_EXTI8_PG_Pos) /*!< 0x00000006 */
  2527. #define AFIO_EXTICR3_EXTI8_PG AFIO_EXTICR3_EXTI8_PG_Msk /*!< PG[8] pin */
  2528. /*!< EXTI9 configuration */
  2529. #define AFIO_EXTICR3_EXTI9_PA 0x00000000U /*!< PA[9] pin */
  2530. #define AFIO_EXTICR3_EXTI9_PB_Pos (4U)
  2531. #define AFIO_EXTICR3_EXTI9_PB_Msk (0x1UL << AFIO_EXTICR3_EXTI9_PB_Pos) /*!< 0x00000010 */
  2532. #define AFIO_EXTICR3_EXTI9_PB AFIO_EXTICR3_EXTI9_PB_Msk /*!< PB[9] pin */
  2533. #define AFIO_EXTICR3_EXTI9_PC_Pos (5U)
  2534. #define AFIO_EXTICR3_EXTI9_PC_Msk (0x1UL << AFIO_EXTICR3_EXTI9_PC_Pos) /*!< 0x00000020 */
  2535. #define AFIO_EXTICR3_EXTI9_PC AFIO_EXTICR3_EXTI9_PC_Msk /*!< PC[9] pin */
  2536. #define AFIO_EXTICR3_EXTI9_PD_Pos (4U)
  2537. #define AFIO_EXTICR3_EXTI9_PD_Msk (0x3UL << AFIO_EXTICR3_EXTI9_PD_Pos) /*!< 0x00000030 */
  2538. #define AFIO_EXTICR3_EXTI9_PD AFIO_EXTICR3_EXTI9_PD_Msk /*!< PD[9] pin */
  2539. #define AFIO_EXTICR3_EXTI9_PE_Pos (6U)
  2540. #define AFIO_EXTICR3_EXTI9_PE_Msk (0x1UL << AFIO_EXTICR3_EXTI9_PE_Pos) /*!< 0x00000040 */
  2541. #define AFIO_EXTICR3_EXTI9_PE AFIO_EXTICR3_EXTI9_PE_Msk /*!< PE[9] pin */
  2542. #define AFIO_EXTICR3_EXTI9_PF_Pos (4U)
  2543. #define AFIO_EXTICR3_EXTI9_PF_Msk (0x5UL << AFIO_EXTICR3_EXTI9_PF_Pos) /*!< 0x00000050 */
  2544. #define AFIO_EXTICR3_EXTI9_PF AFIO_EXTICR3_EXTI9_PF_Msk /*!< PF[9] pin */
  2545. #define AFIO_EXTICR3_EXTI9_PG_Pos (5U)
  2546. #define AFIO_EXTICR3_EXTI9_PG_Msk (0x3UL << AFIO_EXTICR3_EXTI9_PG_Pos) /*!< 0x00000060 */
  2547. #define AFIO_EXTICR3_EXTI9_PG AFIO_EXTICR3_EXTI9_PG_Msk /*!< PG[9] pin */
  2548. /*!< EXTI10 configuration */
  2549. #define AFIO_EXTICR3_EXTI10_PA 0x00000000U /*!< PA[10] pin */
  2550. #define AFIO_EXTICR3_EXTI10_PB_Pos (8U)
  2551. #define AFIO_EXTICR3_EXTI10_PB_Msk (0x1UL << AFIO_EXTICR3_EXTI10_PB_Pos) /*!< 0x00000100 */
  2552. #define AFIO_EXTICR3_EXTI10_PB AFIO_EXTICR3_EXTI10_PB_Msk /*!< PB[10] pin */
  2553. #define AFIO_EXTICR3_EXTI10_PC_Pos (9U)
  2554. #define AFIO_EXTICR3_EXTI10_PC_Msk (0x1UL << AFIO_EXTICR3_EXTI10_PC_Pos) /*!< 0x00000200 */
  2555. #define AFIO_EXTICR3_EXTI10_PC AFIO_EXTICR3_EXTI10_PC_Msk /*!< PC[10] pin */
  2556. #define AFIO_EXTICR3_EXTI10_PD_Pos (8U)
  2557. #define AFIO_EXTICR3_EXTI10_PD_Msk (0x3UL << AFIO_EXTICR3_EXTI10_PD_Pos) /*!< 0x00000300 */
  2558. #define AFIO_EXTICR3_EXTI10_PD AFIO_EXTICR3_EXTI10_PD_Msk /*!< PD[10] pin */
  2559. #define AFIO_EXTICR3_EXTI10_PE_Pos (10U)
  2560. #define AFIO_EXTICR3_EXTI10_PE_Msk (0x1UL << AFIO_EXTICR3_EXTI10_PE_Pos) /*!< 0x00000400 */
  2561. #define AFIO_EXTICR3_EXTI10_PE AFIO_EXTICR3_EXTI10_PE_Msk /*!< PE[10] pin */
  2562. #define AFIO_EXTICR3_EXTI10_PF_Pos (8U)
  2563. #define AFIO_EXTICR3_EXTI10_PF_Msk (0x5UL << AFIO_EXTICR3_EXTI10_PF_Pos) /*!< 0x00000500 */
  2564. #define AFIO_EXTICR3_EXTI10_PF AFIO_EXTICR3_EXTI10_PF_Msk /*!< PF[10] pin */
  2565. #define AFIO_EXTICR3_EXTI10_PG_Pos (9U)
  2566. #define AFIO_EXTICR3_EXTI10_PG_Msk (0x3UL << AFIO_EXTICR3_EXTI10_PG_Pos) /*!< 0x00000600 */
  2567. #define AFIO_EXTICR3_EXTI10_PG AFIO_EXTICR3_EXTI10_PG_Msk /*!< PG[10] pin */
  2568. /*!< EXTI11 configuration */
  2569. #define AFIO_EXTICR3_EXTI11_PA 0x00000000U /*!< PA[11] pin */
  2570. #define AFIO_EXTICR3_EXTI11_PB_Pos (12U)
  2571. #define AFIO_EXTICR3_EXTI11_PB_Msk (0x1UL << AFIO_EXTICR3_EXTI11_PB_Pos) /*!< 0x00001000 */
  2572. #define AFIO_EXTICR3_EXTI11_PB AFIO_EXTICR3_EXTI11_PB_Msk /*!< PB[11] pin */
  2573. #define AFIO_EXTICR3_EXTI11_PC_Pos (13U)
  2574. #define AFIO_EXTICR3_EXTI11_PC_Msk (0x1UL << AFIO_EXTICR3_EXTI11_PC_Pos) /*!< 0x00002000 */
  2575. #define AFIO_EXTICR3_EXTI11_PC AFIO_EXTICR3_EXTI11_PC_Msk /*!< PC[11] pin */
  2576. #define AFIO_EXTICR3_EXTI11_PD_Pos (12U)
  2577. #define AFIO_EXTICR3_EXTI11_PD_Msk (0x3UL << AFIO_EXTICR3_EXTI11_PD_Pos) /*!< 0x00003000 */
  2578. #define AFIO_EXTICR3_EXTI11_PD AFIO_EXTICR3_EXTI11_PD_Msk /*!< PD[11] pin */
  2579. #define AFIO_EXTICR3_EXTI11_PE_Pos (14U)
  2580. #define AFIO_EXTICR3_EXTI11_PE_Msk (0x1UL << AFIO_EXTICR3_EXTI11_PE_Pos) /*!< 0x00004000 */
  2581. #define AFIO_EXTICR3_EXTI11_PE AFIO_EXTICR3_EXTI11_PE_Msk /*!< PE[11] pin */
  2582. #define AFIO_EXTICR3_EXTI11_PF_Pos (12U)
  2583. #define AFIO_EXTICR3_EXTI11_PF_Msk (0x5UL << AFIO_EXTICR3_EXTI11_PF_Pos) /*!< 0x00005000 */
  2584. #define AFIO_EXTICR3_EXTI11_PF AFIO_EXTICR3_EXTI11_PF_Msk /*!< PF[11] pin */
  2585. #define AFIO_EXTICR3_EXTI11_PG_Pos (13U)
  2586. #define AFIO_EXTICR3_EXTI11_PG_Msk (0x3UL << AFIO_EXTICR3_EXTI11_PG_Pos) /*!< 0x00006000 */
  2587. #define AFIO_EXTICR3_EXTI11_PG AFIO_EXTICR3_EXTI11_PG_Msk /*!< PG[11] pin */
  2588. /***************** Bit definition for AFIO_EXTICR4 register *****************/
  2589. #define AFIO_EXTICR4_EXTI12_Pos (0U)
  2590. #define AFIO_EXTICR4_EXTI12_Msk (0xFUL << AFIO_EXTICR4_EXTI12_Pos) /*!< 0x0000000F */
  2591. #define AFIO_EXTICR4_EXTI12 AFIO_EXTICR4_EXTI12_Msk /*!< EXTI 12 configuration */
  2592. #define AFIO_EXTICR4_EXTI13_Pos (4U)
  2593. #define AFIO_EXTICR4_EXTI13_Msk (0xFUL << AFIO_EXTICR4_EXTI13_Pos) /*!< 0x000000F0 */
  2594. #define AFIO_EXTICR4_EXTI13 AFIO_EXTICR4_EXTI13_Msk /*!< EXTI 13 configuration */
  2595. #define AFIO_EXTICR4_EXTI14_Pos (8U)
  2596. #define AFIO_EXTICR4_EXTI14_Msk (0xFUL << AFIO_EXTICR4_EXTI14_Pos) /*!< 0x00000F00 */
  2597. #define AFIO_EXTICR4_EXTI14 AFIO_EXTICR4_EXTI14_Msk /*!< EXTI 14 configuration */
  2598. #define AFIO_EXTICR4_EXTI15_Pos (12U)
  2599. #define AFIO_EXTICR4_EXTI15_Msk (0xFUL << AFIO_EXTICR4_EXTI15_Pos) /*!< 0x0000F000 */
  2600. #define AFIO_EXTICR4_EXTI15 AFIO_EXTICR4_EXTI15_Msk /*!< EXTI 15 configuration */
  2601. /* EXTI12 configuration */
  2602. #define AFIO_EXTICR4_EXTI12_PA 0x00000000U /*!< PA[12] pin */
  2603. #define AFIO_EXTICR4_EXTI12_PB_Pos (0U)
  2604. #define AFIO_EXTICR4_EXTI12_PB_Msk (0x1UL << AFIO_EXTICR4_EXTI12_PB_Pos) /*!< 0x00000001 */
  2605. #define AFIO_EXTICR4_EXTI12_PB AFIO_EXTICR4_EXTI12_PB_Msk /*!< PB[12] pin */
  2606. #define AFIO_EXTICR4_EXTI12_PC_Pos (1U)
  2607. #define AFIO_EXTICR4_EXTI12_PC_Msk (0x1UL << AFIO_EXTICR4_EXTI12_PC_Pos) /*!< 0x00000002 */
  2608. #define AFIO_EXTICR4_EXTI12_PC AFIO_EXTICR4_EXTI12_PC_Msk /*!< PC[12] pin */
  2609. #define AFIO_EXTICR4_EXTI12_PD_Pos (0U)
  2610. #define AFIO_EXTICR4_EXTI12_PD_Msk (0x3UL << AFIO_EXTICR4_EXTI12_PD_Pos) /*!< 0x00000003 */
  2611. #define AFIO_EXTICR4_EXTI12_PD AFIO_EXTICR4_EXTI12_PD_Msk /*!< PD[12] pin */
  2612. #define AFIO_EXTICR4_EXTI12_PE_Pos (2U)
  2613. #define AFIO_EXTICR4_EXTI12_PE_Msk (0x1UL << AFIO_EXTICR4_EXTI12_PE_Pos) /*!< 0x00000004 */
  2614. #define AFIO_EXTICR4_EXTI12_PE AFIO_EXTICR4_EXTI12_PE_Msk /*!< PE[12] pin */
  2615. #define AFIO_EXTICR4_EXTI12_PF_Pos (0U)
  2616. #define AFIO_EXTICR4_EXTI12_PF_Msk (0x5UL << AFIO_EXTICR4_EXTI12_PF_Pos) /*!< 0x00000005 */
  2617. #define AFIO_EXTICR4_EXTI12_PF AFIO_EXTICR4_EXTI12_PF_Msk /*!< PF[12] pin */
  2618. #define AFIO_EXTICR4_EXTI12_PG_Pos (1U)
  2619. #define AFIO_EXTICR4_EXTI12_PG_Msk (0x3UL << AFIO_EXTICR4_EXTI12_PG_Pos) /*!< 0x00000006 */
  2620. #define AFIO_EXTICR4_EXTI12_PG AFIO_EXTICR4_EXTI12_PG_Msk /*!< PG[12] pin */
  2621. /* EXTI13 configuration */
  2622. #define AFIO_EXTICR4_EXTI13_PA 0x00000000U /*!< PA[13] pin */
  2623. #define AFIO_EXTICR4_EXTI13_PB_Pos (4U)
  2624. #define AFIO_EXTICR4_EXTI13_PB_Msk (0x1UL << AFIO_EXTICR4_EXTI13_PB_Pos) /*!< 0x00000010 */
  2625. #define AFIO_EXTICR4_EXTI13_PB AFIO_EXTICR4_EXTI13_PB_Msk /*!< PB[13] pin */
  2626. #define AFIO_EXTICR4_EXTI13_PC_Pos (5U)
  2627. #define AFIO_EXTICR4_EXTI13_PC_Msk (0x1UL << AFIO_EXTICR4_EXTI13_PC_Pos) /*!< 0x00000020 */
  2628. #define AFIO_EXTICR4_EXTI13_PC AFIO_EXTICR4_EXTI13_PC_Msk /*!< PC[13] pin */
  2629. #define AFIO_EXTICR4_EXTI13_PD_Pos (4U)
  2630. #define AFIO_EXTICR4_EXTI13_PD_Msk (0x3UL << AFIO_EXTICR4_EXTI13_PD_Pos) /*!< 0x00000030 */
  2631. #define AFIO_EXTICR4_EXTI13_PD AFIO_EXTICR4_EXTI13_PD_Msk /*!< PD[13] pin */
  2632. #define AFIO_EXTICR4_EXTI13_PE_Pos (6U)
  2633. #define AFIO_EXTICR4_EXTI13_PE_Msk (0x1UL << AFIO_EXTICR4_EXTI13_PE_Pos) /*!< 0x00000040 */
  2634. #define AFIO_EXTICR4_EXTI13_PE AFIO_EXTICR4_EXTI13_PE_Msk /*!< PE[13] pin */
  2635. #define AFIO_EXTICR4_EXTI13_PF_Pos (4U)
  2636. #define AFIO_EXTICR4_EXTI13_PF_Msk (0x5UL << AFIO_EXTICR4_EXTI13_PF_Pos) /*!< 0x00000050 */
  2637. #define AFIO_EXTICR4_EXTI13_PF AFIO_EXTICR4_EXTI13_PF_Msk /*!< PF[13] pin */
  2638. #define AFIO_EXTICR4_EXTI13_PG_Pos (5U)
  2639. #define AFIO_EXTICR4_EXTI13_PG_Msk (0x3UL << AFIO_EXTICR4_EXTI13_PG_Pos) /*!< 0x00000060 */
  2640. #define AFIO_EXTICR4_EXTI13_PG AFIO_EXTICR4_EXTI13_PG_Msk /*!< PG[13] pin */
  2641. /*!< EXTI14 configuration */
  2642. #define AFIO_EXTICR4_EXTI14_PA 0x00000000U /*!< PA[14] pin */
  2643. #define AFIO_EXTICR4_EXTI14_PB_Pos (8U)
  2644. #define AFIO_EXTICR4_EXTI14_PB_Msk (0x1UL << AFIO_EXTICR4_EXTI14_PB_Pos) /*!< 0x00000100 */
  2645. #define AFIO_EXTICR4_EXTI14_PB AFIO_EXTICR4_EXTI14_PB_Msk /*!< PB[14] pin */
  2646. #define AFIO_EXTICR4_EXTI14_PC_Pos (9U)
  2647. #define AFIO_EXTICR4_EXTI14_PC_Msk (0x1UL << AFIO_EXTICR4_EXTI14_PC_Pos) /*!< 0x00000200 */
  2648. #define AFIO_EXTICR4_EXTI14_PC AFIO_EXTICR4_EXTI14_PC_Msk /*!< PC[14] pin */
  2649. #define AFIO_EXTICR4_EXTI14_PD_Pos (8U)
  2650. #define AFIO_EXTICR4_EXTI14_PD_Msk (0x3UL << AFIO_EXTICR4_EXTI14_PD_Pos) /*!< 0x00000300 */
  2651. #define AFIO_EXTICR4_EXTI14_PD AFIO_EXTICR4_EXTI14_PD_Msk /*!< PD[14] pin */
  2652. #define AFIO_EXTICR4_EXTI14_PE_Pos (10U)
  2653. #define AFIO_EXTICR4_EXTI14_PE_Msk (0x1UL << AFIO_EXTICR4_EXTI14_PE_Pos) /*!< 0x00000400 */
  2654. #define AFIO_EXTICR4_EXTI14_PE AFIO_EXTICR4_EXTI14_PE_Msk /*!< PE[14] pin */
  2655. #define AFIO_EXTICR4_EXTI14_PF_Pos (8U)
  2656. #define AFIO_EXTICR4_EXTI14_PF_Msk (0x5UL << AFIO_EXTICR4_EXTI14_PF_Pos) /*!< 0x00000500 */
  2657. #define AFIO_EXTICR4_EXTI14_PF AFIO_EXTICR4_EXTI14_PF_Msk /*!< PF[14] pin */
  2658. #define AFIO_EXTICR4_EXTI14_PG_Pos (9U)
  2659. #define AFIO_EXTICR4_EXTI14_PG_Msk (0x3UL << AFIO_EXTICR4_EXTI14_PG_Pos) /*!< 0x00000600 */
  2660. #define AFIO_EXTICR4_EXTI14_PG AFIO_EXTICR4_EXTI14_PG_Msk /*!< PG[14] pin */
  2661. /*!< EXTI15 configuration */
  2662. #define AFIO_EXTICR4_EXTI15_PA 0x00000000U /*!< PA[15] pin */
  2663. #define AFIO_EXTICR4_EXTI15_PB_Pos (12U)
  2664. #define AFIO_EXTICR4_EXTI15_PB_Msk (0x1UL << AFIO_EXTICR4_EXTI15_PB_Pos) /*!< 0x00001000 */
  2665. #define AFIO_EXTICR4_EXTI15_PB AFIO_EXTICR4_EXTI15_PB_Msk /*!< PB[15] pin */
  2666. #define AFIO_EXTICR4_EXTI15_PC_Pos (13U)
  2667. #define AFIO_EXTICR4_EXTI15_PC_Msk (0x1UL << AFIO_EXTICR4_EXTI15_PC_Pos) /*!< 0x00002000 */
  2668. #define AFIO_EXTICR4_EXTI15_PC AFIO_EXTICR4_EXTI15_PC_Msk /*!< PC[15] pin */
  2669. #define AFIO_EXTICR4_EXTI15_PD_Pos (12U)
  2670. #define AFIO_EXTICR4_EXTI15_PD_Msk (0x3UL << AFIO_EXTICR4_EXTI15_PD_Pos) /*!< 0x00003000 */
  2671. #define AFIO_EXTICR4_EXTI15_PD AFIO_EXTICR4_EXTI15_PD_Msk /*!< PD[15] pin */
  2672. #define AFIO_EXTICR4_EXTI15_PE_Pos (14U)
  2673. #define AFIO_EXTICR4_EXTI15_PE_Msk (0x1UL << AFIO_EXTICR4_EXTI15_PE_Pos) /*!< 0x00004000 */
  2674. #define AFIO_EXTICR4_EXTI15_PE AFIO_EXTICR4_EXTI15_PE_Msk /*!< PE[15] pin */
  2675. #define AFIO_EXTICR4_EXTI15_PF_Pos (12U)
  2676. #define AFIO_EXTICR4_EXTI15_PF_Msk (0x5UL << AFIO_EXTICR4_EXTI15_PF_Pos) /*!< 0x00005000 */
  2677. #define AFIO_EXTICR4_EXTI15_PF AFIO_EXTICR4_EXTI15_PF_Msk /*!< PF[15] pin */
  2678. #define AFIO_EXTICR4_EXTI15_PG_Pos (13U)
  2679. #define AFIO_EXTICR4_EXTI15_PG_Msk (0x3UL << AFIO_EXTICR4_EXTI15_PG_Pos) /*!< 0x00006000 */
  2680. #define AFIO_EXTICR4_EXTI15_PG AFIO_EXTICR4_EXTI15_PG_Msk /*!< PG[15] pin */
  2681. /****************** Bit definition for AFIO_MAPR2 register ******************/
  2682. #define AFIO_MAPR2_FSMC_NADV_REMAP_Pos (10U)
  2683. #define AFIO_MAPR2_FSMC_NADV_REMAP_Msk (0x1UL << AFIO_MAPR2_FSMC_NADV_REMAP_Pos) /*!< 0x00000400 */
  2684. #define AFIO_MAPR2_FSMC_NADV_REMAP AFIO_MAPR2_FSMC_NADV_REMAP_Msk /*!< FSMC NADV remapping */
  2685. /******************************************************************************/
  2686. /* */
  2687. /* External Interrupt/Event Controller */
  2688. /* */
  2689. /******************************************************************************/
  2690. /******************* Bit definition for EXTI_IMR register *******************/
  2691. #define EXTI_IMR_MR0_Pos (0U)
  2692. #define EXTI_IMR_MR0_Msk (0x1UL << EXTI_IMR_MR0_Pos) /*!< 0x00000001 */
  2693. #define EXTI_IMR_MR0 EXTI_IMR_MR0_Msk /*!< Interrupt Mask on line 0 */
  2694. #define EXTI_IMR_MR1_Pos (1U)
  2695. #define EXTI_IMR_MR1_Msk (0x1UL << EXTI_IMR_MR1_Pos) /*!< 0x00000002 */
  2696. #define EXTI_IMR_MR1 EXTI_IMR_MR1_Msk /*!< Interrupt Mask on line 1 */
  2697. #define EXTI_IMR_MR2_Pos (2U)
  2698. #define EXTI_IMR_MR2_Msk (0x1UL << EXTI_IMR_MR2_Pos) /*!< 0x00000004 */
  2699. #define EXTI_IMR_MR2 EXTI_IMR_MR2_Msk /*!< Interrupt Mask on line 2 */
  2700. #define EXTI_IMR_MR3_Pos (3U)
  2701. #define EXTI_IMR_MR3_Msk (0x1UL << EXTI_IMR_MR3_Pos) /*!< 0x00000008 */
  2702. #define EXTI_IMR_MR3 EXTI_IMR_MR3_Msk /*!< Interrupt Mask on line 3 */
  2703. #define EXTI_IMR_MR4_Pos (4U)
  2704. #define EXTI_IMR_MR4_Msk (0x1UL << EXTI_IMR_MR4_Pos) /*!< 0x00000010 */
  2705. #define EXTI_IMR_MR4 EXTI_IMR_MR4_Msk /*!< Interrupt Mask on line 4 */
  2706. #define EXTI_IMR_MR5_Pos (5U)
  2707. #define EXTI_IMR_MR5_Msk (0x1UL << EXTI_IMR_MR5_Pos) /*!< 0x00000020 */
  2708. #define EXTI_IMR_MR5 EXTI_IMR_MR5_Msk /*!< Interrupt Mask on line 5 */
  2709. #define EXTI_IMR_MR6_Pos (6U)
  2710. #define EXTI_IMR_MR6_Msk (0x1UL << EXTI_IMR_MR6_Pos) /*!< 0x00000040 */
  2711. #define EXTI_IMR_MR6 EXTI_IMR_MR6_Msk /*!< Interrupt Mask on line 6 */
  2712. #define EXTI_IMR_MR7_Pos (7U)
  2713. #define EXTI_IMR_MR7_Msk (0x1UL << EXTI_IMR_MR7_Pos) /*!< 0x00000080 */
  2714. #define EXTI_IMR_MR7 EXTI_IMR_MR7_Msk /*!< Interrupt Mask on line 7 */
  2715. #define EXTI_IMR_MR8_Pos (8U)
  2716. #define EXTI_IMR_MR8_Msk (0x1UL << EXTI_IMR_MR8_Pos) /*!< 0x00000100 */
  2717. #define EXTI_IMR_MR8 EXTI_IMR_MR8_Msk /*!< Interrupt Mask on line 8 */
  2718. #define EXTI_IMR_MR9_Pos (9U)
  2719. #define EXTI_IMR_MR9_Msk (0x1UL << EXTI_IMR_MR9_Pos) /*!< 0x00000200 */
  2720. #define EXTI_IMR_MR9 EXTI_IMR_MR9_Msk /*!< Interrupt Mask on line 9 */
  2721. #define EXTI_IMR_MR10_Pos (10U)
  2722. #define EXTI_IMR_MR10_Msk (0x1UL << EXTI_IMR_MR10_Pos) /*!< 0x00000400 */
  2723. #define EXTI_IMR_MR10 EXTI_IMR_MR10_Msk /*!< Interrupt Mask on line 10 */
  2724. #define EXTI_IMR_MR11_Pos (11U)
  2725. #define EXTI_IMR_MR11_Msk (0x1UL << EXTI_IMR_MR11_Pos) /*!< 0x00000800 */
  2726. #define EXTI_IMR_MR11 EXTI_IMR_MR11_Msk /*!< Interrupt Mask on line 11 */
  2727. #define EXTI_IMR_MR12_Pos (12U)
  2728. #define EXTI_IMR_MR12_Msk (0x1UL << EXTI_IMR_MR12_Pos) /*!< 0x00001000 */
  2729. #define EXTI_IMR_MR12 EXTI_IMR_MR12_Msk /*!< Interrupt Mask on line 12 */
  2730. #define EXTI_IMR_MR13_Pos (13U)
  2731. #define EXTI_IMR_MR13_Msk (0x1UL << EXTI_IMR_MR13_Pos) /*!< 0x00002000 */
  2732. #define EXTI_IMR_MR13 EXTI_IMR_MR13_Msk /*!< Interrupt Mask on line 13 */
  2733. #define EXTI_IMR_MR14_Pos (14U)
  2734. #define EXTI_IMR_MR14_Msk (0x1UL << EXTI_IMR_MR14_Pos) /*!< 0x00004000 */
  2735. #define EXTI_IMR_MR14 EXTI_IMR_MR14_Msk /*!< Interrupt Mask on line 14 */
  2736. #define EXTI_IMR_MR15_Pos (15U)
  2737. #define EXTI_IMR_MR15_Msk (0x1UL << EXTI_IMR_MR15_Pos) /*!< 0x00008000 */
  2738. #define EXTI_IMR_MR15 EXTI_IMR_MR15_Msk /*!< Interrupt Mask on line 15 */
  2739. #define EXTI_IMR_MR16_Pos (16U)
  2740. #define EXTI_IMR_MR16_Msk (0x1UL << EXTI_IMR_MR16_Pos) /*!< 0x00010000 */
  2741. #define EXTI_IMR_MR16 EXTI_IMR_MR16_Msk /*!< Interrupt Mask on line 16 */
  2742. #define EXTI_IMR_MR17_Pos (17U)
  2743. #define EXTI_IMR_MR17_Msk (0x1UL << EXTI_IMR_MR17_Pos) /*!< 0x00020000 */
  2744. #define EXTI_IMR_MR17 EXTI_IMR_MR17_Msk /*!< Interrupt Mask on line 17 */
  2745. #define EXTI_IMR_MR18_Pos (18U)
  2746. #define EXTI_IMR_MR18_Msk (0x1UL << EXTI_IMR_MR18_Pos) /*!< 0x00040000 */
  2747. #define EXTI_IMR_MR18 EXTI_IMR_MR18_Msk /*!< Interrupt Mask on line 18 */
  2748. /* References Defines */
  2749. #define EXTI_IMR_IM0 EXTI_IMR_MR0
  2750. #define EXTI_IMR_IM1 EXTI_IMR_MR1
  2751. #define EXTI_IMR_IM2 EXTI_IMR_MR2
  2752. #define EXTI_IMR_IM3 EXTI_IMR_MR3
  2753. #define EXTI_IMR_IM4 EXTI_IMR_MR4
  2754. #define EXTI_IMR_IM5 EXTI_IMR_MR5
  2755. #define EXTI_IMR_IM6 EXTI_IMR_MR6
  2756. #define EXTI_IMR_IM7 EXTI_IMR_MR7
  2757. #define EXTI_IMR_IM8 EXTI_IMR_MR8
  2758. #define EXTI_IMR_IM9 EXTI_IMR_MR9
  2759. #define EXTI_IMR_IM10 EXTI_IMR_MR10
  2760. #define EXTI_IMR_IM11 EXTI_IMR_MR11
  2761. #define EXTI_IMR_IM12 EXTI_IMR_MR12
  2762. #define EXTI_IMR_IM13 EXTI_IMR_MR13
  2763. #define EXTI_IMR_IM14 EXTI_IMR_MR14
  2764. #define EXTI_IMR_IM15 EXTI_IMR_MR15
  2765. #define EXTI_IMR_IM16 EXTI_IMR_MR16
  2766. #define EXTI_IMR_IM17 EXTI_IMR_MR17
  2767. #define EXTI_IMR_IM18 EXTI_IMR_MR18
  2768. #define EXTI_IMR_IM 0x0007FFFFU /*!< Interrupt Mask All */
  2769. /******************* Bit definition for EXTI_EMR register *******************/
  2770. #define EXTI_EMR_MR0_Pos (0U)
  2771. #define EXTI_EMR_MR0_Msk (0x1UL << EXTI_EMR_MR0_Pos) /*!< 0x00000001 */
  2772. #define EXTI_EMR_MR0 EXTI_EMR_MR0_Msk /*!< Event Mask on line 0 */
  2773. #define EXTI_EMR_MR1_Pos (1U)
  2774. #define EXTI_EMR_MR1_Msk (0x1UL << EXTI_EMR_MR1_Pos) /*!< 0x00000002 */
  2775. #define EXTI_EMR_MR1 EXTI_EMR_MR1_Msk /*!< Event Mask on line 1 */
  2776. #define EXTI_EMR_MR2_Pos (2U)
  2777. #define EXTI_EMR_MR2_Msk (0x1UL << EXTI_EMR_MR2_Pos) /*!< 0x00000004 */
  2778. #define EXTI_EMR_MR2 EXTI_EMR_MR2_Msk /*!< Event Mask on line 2 */
  2779. #define EXTI_EMR_MR3_Pos (3U)
  2780. #define EXTI_EMR_MR3_Msk (0x1UL << EXTI_EMR_MR3_Pos) /*!< 0x00000008 */
  2781. #define EXTI_EMR_MR3 EXTI_EMR_MR3_Msk /*!< Event Mask on line 3 */
  2782. #define EXTI_EMR_MR4_Pos (4U)
  2783. #define EXTI_EMR_MR4_Msk (0x1UL << EXTI_EMR_MR4_Pos) /*!< 0x00000010 */
  2784. #define EXTI_EMR_MR4 EXTI_EMR_MR4_Msk /*!< Event Mask on line 4 */
  2785. #define EXTI_EMR_MR5_Pos (5U)
  2786. #define EXTI_EMR_MR5_Msk (0x1UL << EXTI_EMR_MR5_Pos) /*!< 0x00000020 */
  2787. #define EXTI_EMR_MR5 EXTI_EMR_MR5_Msk /*!< Event Mask on line 5 */
  2788. #define EXTI_EMR_MR6_Pos (6U)
  2789. #define EXTI_EMR_MR6_Msk (0x1UL << EXTI_EMR_MR6_Pos) /*!< 0x00000040 */
  2790. #define EXTI_EMR_MR6 EXTI_EMR_MR6_Msk /*!< Event Mask on line 6 */
  2791. #define EXTI_EMR_MR7_Pos (7U)
  2792. #define EXTI_EMR_MR7_Msk (0x1UL << EXTI_EMR_MR7_Pos) /*!< 0x00000080 */
  2793. #define EXTI_EMR_MR7 EXTI_EMR_MR7_Msk /*!< Event Mask on line 7 */
  2794. #define EXTI_EMR_MR8_Pos (8U)
  2795. #define EXTI_EMR_MR8_Msk (0x1UL << EXTI_EMR_MR8_Pos) /*!< 0x00000100 */
  2796. #define EXTI_EMR_MR8 EXTI_EMR_MR8_Msk /*!< Event Mask on line 8 */
  2797. #define EXTI_EMR_MR9_Pos (9U)
  2798. #define EXTI_EMR_MR9_Msk (0x1UL << EXTI_EMR_MR9_Pos) /*!< 0x00000200 */
  2799. #define EXTI_EMR_MR9 EXTI_EMR_MR9_Msk /*!< Event Mask on line 9 */
  2800. #define EXTI_EMR_MR10_Pos (10U)
  2801. #define EXTI_EMR_MR10_Msk (0x1UL << EXTI_EMR_MR10_Pos) /*!< 0x00000400 */
  2802. #define EXTI_EMR_MR10 EXTI_EMR_MR10_Msk /*!< Event Mask on line 10 */
  2803. #define EXTI_EMR_MR11_Pos (11U)
  2804. #define EXTI_EMR_MR11_Msk (0x1UL << EXTI_EMR_MR11_Pos) /*!< 0x00000800 */
  2805. #define EXTI_EMR_MR11 EXTI_EMR_MR11_Msk /*!< Event Mask on line 11 */
  2806. #define EXTI_EMR_MR12_Pos (12U)
  2807. #define EXTI_EMR_MR12_Msk (0x1UL << EXTI_EMR_MR12_Pos) /*!< 0x00001000 */
  2808. #define EXTI_EMR_MR12 EXTI_EMR_MR12_Msk /*!< Event Mask on line 12 */
  2809. #define EXTI_EMR_MR13_Pos (13U)
  2810. #define EXTI_EMR_MR13_Msk (0x1UL << EXTI_EMR_MR13_Pos) /*!< 0x00002000 */
  2811. #define EXTI_EMR_MR13 EXTI_EMR_MR13_Msk /*!< Event Mask on line 13 */
  2812. #define EXTI_EMR_MR14_Pos (14U)
  2813. #define EXTI_EMR_MR14_Msk (0x1UL << EXTI_EMR_MR14_Pos) /*!< 0x00004000 */
  2814. #define EXTI_EMR_MR14 EXTI_EMR_MR14_Msk /*!< Event Mask on line 14 */
  2815. #define EXTI_EMR_MR15_Pos (15U)
  2816. #define EXTI_EMR_MR15_Msk (0x1UL << EXTI_EMR_MR15_Pos) /*!< 0x00008000 */
  2817. #define EXTI_EMR_MR15 EXTI_EMR_MR15_Msk /*!< Event Mask on line 15 */
  2818. #define EXTI_EMR_MR16_Pos (16U)
  2819. #define EXTI_EMR_MR16_Msk (0x1UL << EXTI_EMR_MR16_Pos) /*!< 0x00010000 */
  2820. #define EXTI_EMR_MR16 EXTI_EMR_MR16_Msk /*!< Event Mask on line 16 */
  2821. #define EXTI_EMR_MR17_Pos (17U)
  2822. #define EXTI_EMR_MR17_Msk (0x1UL << EXTI_EMR_MR17_Pos) /*!< 0x00020000 */
  2823. #define EXTI_EMR_MR17 EXTI_EMR_MR17_Msk /*!< Event Mask on line 17 */
  2824. #define EXTI_EMR_MR18_Pos (18U)
  2825. #define EXTI_EMR_MR18_Msk (0x1UL << EXTI_EMR_MR18_Pos) /*!< 0x00040000 */
  2826. #define EXTI_EMR_MR18 EXTI_EMR_MR18_Msk /*!< Event Mask on line 18 */
  2827. /* References Defines */
  2828. #define EXTI_EMR_EM0 EXTI_EMR_MR0
  2829. #define EXTI_EMR_EM1 EXTI_EMR_MR1
  2830. #define EXTI_EMR_EM2 EXTI_EMR_MR2
  2831. #define EXTI_EMR_EM3 EXTI_EMR_MR3
  2832. #define EXTI_EMR_EM4 EXTI_EMR_MR4
  2833. #define EXTI_EMR_EM5 EXTI_EMR_MR5
  2834. #define EXTI_EMR_EM6 EXTI_EMR_MR6
  2835. #define EXTI_EMR_EM7 EXTI_EMR_MR7
  2836. #define EXTI_EMR_EM8 EXTI_EMR_MR8
  2837. #define EXTI_EMR_EM9 EXTI_EMR_MR9
  2838. #define EXTI_EMR_EM10 EXTI_EMR_MR10
  2839. #define EXTI_EMR_EM11 EXTI_EMR_MR11
  2840. #define EXTI_EMR_EM12 EXTI_EMR_MR12
  2841. #define EXTI_EMR_EM13 EXTI_EMR_MR13
  2842. #define EXTI_EMR_EM14 EXTI_EMR_MR14
  2843. #define EXTI_EMR_EM15 EXTI_EMR_MR15
  2844. #define EXTI_EMR_EM16 EXTI_EMR_MR16
  2845. #define EXTI_EMR_EM17 EXTI_EMR_MR17
  2846. #define EXTI_EMR_EM18 EXTI_EMR_MR18
  2847. /****************** Bit definition for EXTI_RTSR register *******************/
  2848. #define EXTI_RTSR_TR0_Pos (0U)
  2849. #define EXTI_RTSR_TR0_Msk (0x1UL << EXTI_RTSR_TR0_Pos) /*!< 0x00000001 */
  2850. #define EXTI_RTSR_TR0 EXTI_RTSR_TR0_Msk /*!< Rising trigger event configuration bit of line 0 */
  2851. #define EXTI_RTSR_TR1_Pos (1U)
  2852. #define EXTI_RTSR_TR1_Msk (0x1UL << EXTI_RTSR_TR1_Pos) /*!< 0x00000002 */
  2853. #define EXTI_RTSR_TR1 EXTI_RTSR_TR1_Msk /*!< Rising trigger event configuration bit of line 1 */
  2854. #define EXTI_RTSR_TR2_Pos (2U)
  2855. #define EXTI_RTSR_TR2_Msk (0x1UL << EXTI_RTSR_TR2_Pos) /*!< 0x00000004 */
  2856. #define EXTI_RTSR_TR2 EXTI_RTSR_TR2_Msk /*!< Rising trigger event configuration bit of line 2 */
  2857. #define EXTI_RTSR_TR3_Pos (3U)
  2858. #define EXTI_RTSR_TR3_Msk (0x1UL << EXTI_RTSR_TR3_Pos) /*!< 0x00000008 */
  2859. #define EXTI_RTSR_TR3 EXTI_RTSR_TR3_Msk /*!< Rising trigger event configuration bit of line 3 */
  2860. #define EXTI_RTSR_TR4_Pos (4U)
  2861. #define EXTI_RTSR_TR4_Msk (0x1UL << EXTI_RTSR_TR4_Pos) /*!< 0x00000010 */
  2862. #define EXTI_RTSR_TR4 EXTI_RTSR_TR4_Msk /*!< Rising trigger event configuration bit of line 4 */
  2863. #define EXTI_RTSR_TR5_Pos (5U)
  2864. #define EXTI_RTSR_TR5_Msk (0x1UL << EXTI_RTSR_TR5_Pos) /*!< 0x00000020 */
  2865. #define EXTI_RTSR_TR5 EXTI_RTSR_TR5_Msk /*!< Rising trigger event configuration bit of line 5 */
  2866. #define EXTI_RTSR_TR6_Pos (6U)
  2867. #define EXTI_RTSR_TR6_Msk (0x1UL << EXTI_RTSR_TR6_Pos) /*!< 0x00000040 */
  2868. #define EXTI_RTSR_TR6 EXTI_RTSR_TR6_Msk /*!< Rising trigger event configuration bit of line 6 */
  2869. #define EXTI_RTSR_TR7_Pos (7U)
  2870. #define EXTI_RTSR_TR7_Msk (0x1UL << EXTI_RTSR_TR7_Pos) /*!< 0x00000080 */
  2871. #define EXTI_RTSR_TR7 EXTI_RTSR_TR7_Msk /*!< Rising trigger event configuration bit of line 7 */
  2872. #define EXTI_RTSR_TR8_Pos (8U)
  2873. #define EXTI_RTSR_TR8_Msk (0x1UL << EXTI_RTSR_TR8_Pos) /*!< 0x00000100 */
  2874. #define EXTI_RTSR_TR8 EXTI_RTSR_TR8_Msk /*!< Rising trigger event configuration bit of line 8 */
  2875. #define EXTI_RTSR_TR9_Pos (9U)
  2876. #define EXTI_RTSR_TR9_Msk (0x1UL << EXTI_RTSR_TR9_Pos) /*!< 0x00000200 */
  2877. #define EXTI_RTSR_TR9 EXTI_RTSR_TR9_Msk /*!< Rising trigger event configuration bit of line 9 */
  2878. #define EXTI_RTSR_TR10_Pos (10U)
  2879. #define EXTI_RTSR_TR10_Msk (0x1UL << EXTI_RTSR_TR10_Pos) /*!< 0x00000400 */
  2880. #define EXTI_RTSR_TR10 EXTI_RTSR_TR10_Msk /*!< Rising trigger event configuration bit of line 10 */
  2881. #define EXTI_RTSR_TR11_Pos (11U)
  2882. #define EXTI_RTSR_TR11_Msk (0x1UL << EXTI_RTSR_TR11_Pos) /*!< 0x00000800 */
  2883. #define EXTI_RTSR_TR11 EXTI_RTSR_TR11_Msk /*!< Rising trigger event configuration bit of line 11 */
  2884. #define EXTI_RTSR_TR12_Pos (12U)
  2885. #define EXTI_RTSR_TR12_Msk (0x1UL << EXTI_RTSR_TR12_Pos) /*!< 0x00001000 */
  2886. #define EXTI_RTSR_TR12 EXTI_RTSR_TR12_Msk /*!< Rising trigger event configuration bit of line 12 */
  2887. #define EXTI_RTSR_TR13_Pos (13U)
  2888. #define EXTI_RTSR_TR13_Msk (0x1UL << EXTI_RTSR_TR13_Pos) /*!< 0x00002000 */
  2889. #define EXTI_RTSR_TR13 EXTI_RTSR_TR13_Msk /*!< Rising trigger event configuration bit of line 13 */
  2890. #define EXTI_RTSR_TR14_Pos (14U)
  2891. #define EXTI_RTSR_TR14_Msk (0x1UL << EXTI_RTSR_TR14_Pos) /*!< 0x00004000 */
  2892. #define EXTI_RTSR_TR14 EXTI_RTSR_TR14_Msk /*!< Rising trigger event configuration bit of line 14 */
  2893. #define EXTI_RTSR_TR15_Pos (15U)
  2894. #define EXTI_RTSR_TR15_Msk (0x1UL << EXTI_RTSR_TR15_Pos) /*!< 0x00008000 */
  2895. #define EXTI_RTSR_TR15 EXTI_RTSR_TR15_Msk /*!< Rising trigger event configuration bit of line 15 */
  2896. #define EXTI_RTSR_TR16_Pos (16U)
  2897. #define EXTI_RTSR_TR16_Msk (0x1UL << EXTI_RTSR_TR16_Pos) /*!< 0x00010000 */
  2898. #define EXTI_RTSR_TR16 EXTI_RTSR_TR16_Msk /*!< Rising trigger event configuration bit of line 16 */
  2899. #define EXTI_RTSR_TR17_Pos (17U)
  2900. #define EXTI_RTSR_TR17_Msk (0x1UL << EXTI_RTSR_TR17_Pos) /*!< 0x00020000 */
  2901. #define EXTI_RTSR_TR17 EXTI_RTSR_TR17_Msk /*!< Rising trigger event configuration bit of line 17 */
  2902. #define EXTI_RTSR_TR18_Pos (18U)
  2903. #define EXTI_RTSR_TR18_Msk (0x1UL << EXTI_RTSR_TR18_Pos) /*!< 0x00040000 */
  2904. #define EXTI_RTSR_TR18 EXTI_RTSR_TR18_Msk /*!< Rising trigger event configuration bit of line 18 */
  2905. /* References Defines */
  2906. #define EXTI_RTSR_RT0 EXTI_RTSR_TR0
  2907. #define EXTI_RTSR_RT1 EXTI_RTSR_TR1
  2908. #define EXTI_RTSR_RT2 EXTI_RTSR_TR2
  2909. #define EXTI_RTSR_RT3 EXTI_RTSR_TR3
  2910. #define EXTI_RTSR_RT4 EXTI_RTSR_TR4
  2911. #define EXTI_RTSR_RT5 EXTI_RTSR_TR5
  2912. #define EXTI_RTSR_RT6 EXTI_RTSR_TR6
  2913. #define EXTI_RTSR_RT7 EXTI_RTSR_TR7
  2914. #define EXTI_RTSR_RT8 EXTI_RTSR_TR8
  2915. #define EXTI_RTSR_RT9 EXTI_RTSR_TR9
  2916. #define EXTI_RTSR_RT10 EXTI_RTSR_TR10
  2917. #define EXTI_RTSR_RT11 EXTI_RTSR_TR11
  2918. #define EXTI_RTSR_RT12 EXTI_RTSR_TR12
  2919. #define EXTI_RTSR_RT13 EXTI_RTSR_TR13
  2920. #define EXTI_RTSR_RT14 EXTI_RTSR_TR14
  2921. #define EXTI_RTSR_RT15 EXTI_RTSR_TR15
  2922. #define EXTI_RTSR_RT16 EXTI_RTSR_TR16
  2923. #define EXTI_RTSR_RT17 EXTI_RTSR_TR17
  2924. #define EXTI_RTSR_RT18 EXTI_RTSR_TR18
  2925. /****************** Bit definition for EXTI_FTSR register *******************/
  2926. #define EXTI_FTSR_TR0_Pos (0U)
  2927. #define EXTI_FTSR_TR0_Msk (0x1UL << EXTI_FTSR_TR0_Pos) /*!< 0x00000001 */
  2928. #define EXTI_FTSR_TR0 EXTI_FTSR_TR0_Msk /*!< Falling trigger event configuration bit of line 0 */
  2929. #define EXTI_FTSR_TR1_Pos (1U)
  2930. #define EXTI_FTSR_TR1_Msk (0x1UL << EXTI_FTSR_TR1_Pos) /*!< 0x00000002 */
  2931. #define EXTI_FTSR_TR1 EXTI_FTSR_TR1_Msk /*!< Falling trigger event configuration bit of line 1 */
  2932. #define EXTI_FTSR_TR2_Pos (2U)
  2933. #define EXTI_FTSR_TR2_Msk (0x1UL << EXTI_FTSR_TR2_Pos) /*!< 0x00000004 */
  2934. #define EXTI_FTSR_TR2 EXTI_FTSR_TR2_Msk /*!< Falling trigger event configuration bit of line 2 */
  2935. #define EXTI_FTSR_TR3_Pos (3U)
  2936. #define EXTI_FTSR_TR3_Msk (0x1UL << EXTI_FTSR_TR3_Pos) /*!< 0x00000008 */
  2937. #define EXTI_FTSR_TR3 EXTI_FTSR_TR3_Msk /*!< Falling trigger event configuration bit of line 3 */
  2938. #define EXTI_FTSR_TR4_Pos (4U)
  2939. #define EXTI_FTSR_TR4_Msk (0x1UL << EXTI_FTSR_TR4_Pos) /*!< 0x00000010 */
  2940. #define EXTI_FTSR_TR4 EXTI_FTSR_TR4_Msk /*!< Falling trigger event configuration bit of line 4 */
  2941. #define EXTI_FTSR_TR5_Pos (5U)
  2942. #define EXTI_FTSR_TR5_Msk (0x1UL << EXTI_FTSR_TR5_Pos) /*!< 0x00000020 */
  2943. #define EXTI_FTSR_TR5 EXTI_FTSR_TR5_Msk /*!< Falling trigger event configuration bit of line 5 */
  2944. #define EXTI_FTSR_TR6_Pos (6U)
  2945. #define EXTI_FTSR_TR6_Msk (0x1UL << EXTI_FTSR_TR6_Pos) /*!< 0x00000040 */
  2946. #define EXTI_FTSR_TR6 EXTI_FTSR_TR6_Msk /*!< Falling trigger event configuration bit of line 6 */
  2947. #define EXTI_FTSR_TR7_Pos (7U)
  2948. #define EXTI_FTSR_TR7_Msk (0x1UL << EXTI_FTSR_TR7_Pos) /*!< 0x00000080 */
  2949. #define EXTI_FTSR_TR7 EXTI_FTSR_TR7_Msk /*!< Falling trigger event configuration bit of line 7 */
  2950. #define EXTI_FTSR_TR8_Pos (8U)
  2951. #define EXTI_FTSR_TR8_Msk (0x1UL << EXTI_FTSR_TR8_Pos) /*!< 0x00000100 */
  2952. #define EXTI_FTSR_TR8 EXTI_FTSR_TR8_Msk /*!< Falling trigger event configuration bit of line 8 */
  2953. #define EXTI_FTSR_TR9_Pos (9U)
  2954. #define EXTI_FTSR_TR9_Msk (0x1UL << EXTI_FTSR_TR9_Pos) /*!< 0x00000200 */
  2955. #define EXTI_FTSR_TR9 EXTI_FTSR_TR9_Msk /*!< Falling trigger event configuration bit of line 9 */
  2956. #define EXTI_FTSR_TR10_Pos (10U)
  2957. #define EXTI_FTSR_TR10_Msk (0x1UL << EXTI_FTSR_TR10_Pos) /*!< 0x00000400 */
  2958. #define EXTI_FTSR_TR10 EXTI_FTSR_TR10_Msk /*!< Falling trigger event configuration bit of line 10 */
  2959. #define EXTI_FTSR_TR11_Pos (11U)
  2960. #define EXTI_FTSR_TR11_Msk (0x1UL << EXTI_FTSR_TR11_Pos) /*!< 0x00000800 */
  2961. #define EXTI_FTSR_TR11 EXTI_FTSR_TR11_Msk /*!< Falling trigger event configuration bit of line 11 */
  2962. #define EXTI_FTSR_TR12_Pos (12U)
  2963. #define EXTI_FTSR_TR12_Msk (0x1UL << EXTI_FTSR_TR12_Pos) /*!< 0x00001000 */
  2964. #define EXTI_FTSR_TR12 EXTI_FTSR_TR12_Msk /*!< Falling trigger event configuration bit of line 12 */
  2965. #define EXTI_FTSR_TR13_Pos (13U)
  2966. #define EXTI_FTSR_TR13_Msk (0x1UL << EXTI_FTSR_TR13_Pos) /*!< 0x00002000 */
  2967. #define EXTI_FTSR_TR13 EXTI_FTSR_TR13_Msk /*!< Falling trigger event configuration bit of line 13 */
  2968. #define EXTI_FTSR_TR14_Pos (14U)
  2969. #define EXTI_FTSR_TR14_Msk (0x1UL << EXTI_FTSR_TR14_Pos) /*!< 0x00004000 */
  2970. #define EXTI_FTSR_TR14 EXTI_FTSR_TR14_Msk /*!< Falling trigger event configuration bit of line 14 */
  2971. #define EXTI_FTSR_TR15_Pos (15U)
  2972. #define EXTI_FTSR_TR15_Msk (0x1UL << EXTI_FTSR_TR15_Pos) /*!< 0x00008000 */
  2973. #define EXTI_FTSR_TR15 EXTI_FTSR_TR15_Msk /*!< Falling trigger event configuration bit of line 15 */
  2974. #define EXTI_FTSR_TR16_Pos (16U)
  2975. #define EXTI_FTSR_TR16_Msk (0x1UL << EXTI_FTSR_TR16_Pos) /*!< 0x00010000 */
  2976. #define EXTI_FTSR_TR16 EXTI_FTSR_TR16_Msk /*!< Falling trigger event configuration bit of line 16 */
  2977. #define EXTI_FTSR_TR17_Pos (17U)
  2978. #define EXTI_FTSR_TR17_Msk (0x1UL << EXTI_FTSR_TR17_Pos) /*!< 0x00020000 */
  2979. #define EXTI_FTSR_TR17 EXTI_FTSR_TR17_Msk /*!< Falling trigger event configuration bit of line 17 */
  2980. #define EXTI_FTSR_TR18_Pos (18U)
  2981. #define EXTI_FTSR_TR18_Msk (0x1UL << EXTI_FTSR_TR18_Pos) /*!< 0x00040000 */
  2982. #define EXTI_FTSR_TR18 EXTI_FTSR_TR18_Msk /*!< Falling trigger event configuration bit of line 18 */
  2983. /* References Defines */
  2984. #define EXTI_FTSR_FT0 EXTI_FTSR_TR0
  2985. #define EXTI_FTSR_FT1 EXTI_FTSR_TR1
  2986. #define EXTI_FTSR_FT2 EXTI_FTSR_TR2
  2987. #define EXTI_FTSR_FT3 EXTI_FTSR_TR3
  2988. #define EXTI_FTSR_FT4 EXTI_FTSR_TR4
  2989. #define EXTI_FTSR_FT5 EXTI_FTSR_TR5
  2990. #define EXTI_FTSR_FT6 EXTI_FTSR_TR6
  2991. #define EXTI_FTSR_FT7 EXTI_FTSR_TR7
  2992. #define EXTI_FTSR_FT8 EXTI_FTSR_TR8
  2993. #define EXTI_FTSR_FT9 EXTI_FTSR_TR9
  2994. #define EXTI_FTSR_FT10 EXTI_FTSR_TR10
  2995. #define EXTI_FTSR_FT11 EXTI_FTSR_TR11
  2996. #define EXTI_FTSR_FT12 EXTI_FTSR_TR12
  2997. #define EXTI_FTSR_FT13 EXTI_FTSR_TR13
  2998. #define EXTI_FTSR_FT14 EXTI_FTSR_TR14
  2999. #define EXTI_FTSR_FT15 EXTI_FTSR_TR15
  3000. #define EXTI_FTSR_FT16 EXTI_FTSR_TR16
  3001. #define EXTI_FTSR_FT17 EXTI_FTSR_TR17
  3002. #define EXTI_FTSR_FT18 EXTI_FTSR_TR18
  3003. /****************** Bit definition for EXTI_SWIER register ******************/
  3004. #define EXTI_SWIER_SWIER0_Pos (0U)
  3005. #define EXTI_SWIER_SWIER0_Msk (0x1UL << EXTI_SWIER_SWIER0_Pos) /*!< 0x00000001 */
  3006. #define EXTI_SWIER_SWIER0 EXTI_SWIER_SWIER0_Msk /*!< Software Interrupt on line 0 */
  3007. #define EXTI_SWIER_SWIER1_Pos (1U)
  3008. #define EXTI_SWIER_SWIER1_Msk (0x1UL << EXTI_SWIER_SWIER1_Pos) /*!< 0x00000002 */
  3009. #define EXTI_SWIER_SWIER1 EXTI_SWIER_SWIER1_Msk /*!< Software Interrupt on line 1 */
  3010. #define EXTI_SWIER_SWIER2_Pos (2U)
  3011. #define EXTI_SWIER_SWIER2_Msk (0x1UL << EXTI_SWIER_SWIER2_Pos) /*!< 0x00000004 */
  3012. #define EXTI_SWIER_SWIER2 EXTI_SWIER_SWIER2_Msk /*!< Software Interrupt on line 2 */
  3013. #define EXTI_SWIER_SWIER3_Pos (3U)
  3014. #define EXTI_SWIER_SWIER3_Msk (0x1UL << EXTI_SWIER_SWIER3_Pos) /*!< 0x00000008 */
  3015. #define EXTI_SWIER_SWIER3 EXTI_SWIER_SWIER3_Msk /*!< Software Interrupt on line 3 */
  3016. #define EXTI_SWIER_SWIER4_Pos (4U)
  3017. #define EXTI_SWIER_SWIER4_Msk (0x1UL << EXTI_SWIER_SWIER4_Pos) /*!< 0x00000010 */
  3018. #define EXTI_SWIER_SWIER4 EXTI_SWIER_SWIER4_Msk /*!< Software Interrupt on line 4 */
  3019. #define EXTI_SWIER_SWIER5_Pos (5U)
  3020. #define EXTI_SWIER_SWIER5_Msk (0x1UL << EXTI_SWIER_SWIER5_Pos) /*!< 0x00000020 */
  3021. #define EXTI_SWIER_SWIER5 EXTI_SWIER_SWIER5_Msk /*!< Software Interrupt on line 5 */
  3022. #define EXTI_SWIER_SWIER6_Pos (6U)
  3023. #define EXTI_SWIER_SWIER6_Msk (0x1UL << EXTI_SWIER_SWIER6_Pos) /*!< 0x00000040 */
  3024. #define EXTI_SWIER_SWIER6 EXTI_SWIER_SWIER6_Msk /*!< Software Interrupt on line 6 */
  3025. #define EXTI_SWIER_SWIER7_Pos (7U)
  3026. #define EXTI_SWIER_SWIER7_Msk (0x1UL << EXTI_SWIER_SWIER7_Pos) /*!< 0x00000080 */
  3027. #define EXTI_SWIER_SWIER7 EXTI_SWIER_SWIER7_Msk /*!< Software Interrupt on line 7 */
  3028. #define EXTI_SWIER_SWIER8_Pos (8U)
  3029. #define EXTI_SWIER_SWIER8_Msk (0x1UL << EXTI_SWIER_SWIER8_Pos) /*!< 0x00000100 */
  3030. #define EXTI_SWIER_SWIER8 EXTI_SWIER_SWIER8_Msk /*!< Software Interrupt on line 8 */
  3031. #define EXTI_SWIER_SWIER9_Pos (9U)
  3032. #define EXTI_SWIER_SWIER9_Msk (0x1UL << EXTI_SWIER_SWIER9_Pos) /*!< 0x00000200 */
  3033. #define EXTI_SWIER_SWIER9 EXTI_SWIER_SWIER9_Msk /*!< Software Interrupt on line 9 */
  3034. #define EXTI_SWIER_SWIER10_Pos (10U)
  3035. #define EXTI_SWIER_SWIER10_Msk (0x1UL << EXTI_SWIER_SWIER10_Pos) /*!< 0x00000400 */
  3036. #define EXTI_SWIER_SWIER10 EXTI_SWIER_SWIER10_Msk /*!< Software Interrupt on line 10 */
  3037. #define EXTI_SWIER_SWIER11_Pos (11U)
  3038. #define EXTI_SWIER_SWIER11_Msk (0x1UL << EXTI_SWIER_SWIER11_Pos) /*!< 0x00000800 */
  3039. #define EXTI_SWIER_SWIER11 EXTI_SWIER_SWIER11_Msk /*!< Software Interrupt on line 11 */
  3040. #define EXTI_SWIER_SWIER12_Pos (12U)
  3041. #define EXTI_SWIER_SWIER12_Msk (0x1UL << EXTI_SWIER_SWIER12_Pos) /*!< 0x00001000 */
  3042. #define EXTI_SWIER_SWIER12 EXTI_SWIER_SWIER12_Msk /*!< Software Interrupt on line 12 */
  3043. #define EXTI_SWIER_SWIER13_Pos (13U)
  3044. #define EXTI_SWIER_SWIER13_Msk (0x1UL << EXTI_SWIER_SWIER13_Pos) /*!< 0x00002000 */
  3045. #define EXTI_SWIER_SWIER13 EXTI_SWIER_SWIER13_Msk /*!< Software Interrupt on line 13 */
  3046. #define EXTI_SWIER_SWIER14_Pos (14U)
  3047. #define EXTI_SWIER_SWIER14_Msk (0x1UL << EXTI_SWIER_SWIER14_Pos) /*!< 0x00004000 */
  3048. #define EXTI_SWIER_SWIER14 EXTI_SWIER_SWIER14_Msk /*!< Software Interrupt on line 14 */
  3049. #define EXTI_SWIER_SWIER15_Pos (15U)
  3050. #define EXTI_SWIER_SWIER15_Msk (0x1UL << EXTI_SWIER_SWIER15_Pos) /*!< 0x00008000 */
  3051. #define EXTI_SWIER_SWIER15 EXTI_SWIER_SWIER15_Msk /*!< Software Interrupt on line 15 */
  3052. #define EXTI_SWIER_SWIER16_Pos (16U)
  3053. #define EXTI_SWIER_SWIER16_Msk (0x1UL << EXTI_SWIER_SWIER16_Pos) /*!< 0x00010000 */
  3054. #define EXTI_SWIER_SWIER16 EXTI_SWIER_SWIER16_Msk /*!< Software Interrupt on line 16 */
  3055. #define EXTI_SWIER_SWIER17_Pos (17U)
  3056. #define EXTI_SWIER_SWIER17_Msk (0x1UL << EXTI_SWIER_SWIER17_Pos) /*!< 0x00020000 */
  3057. #define EXTI_SWIER_SWIER17 EXTI_SWIER_SWIER17_Msk /*!< Software Interrupt on line 17 */
  3058. #define EXTI_SWIER_SWIER18_Pos (18U)
  3059. #define EXTI_SWIER_SWIER18_Msk (0x1UL << EXTI_SWIER_SWIER18_Pos) /*!< 0x00040000 */
  3060. #define EXTI_SWIER_SWIER18 EXTI_SWIER_SWIER18_Msk /*!< Software Interrupt on line 18 */
  3061. /* References Defines */
  3062. #define EXTI_SWIER_SWI0 EXTI_SWIER_SWIER0
  3063. #define EXTI_SWIER_SWI1 EXTI_SWIER_SWIER1
  3064. #define EXTI_SWIER_SWI2 EXTI_SWIER_SWIER2
  3065. #define EXTI_SWIER_SWI3 EXTI_SWIER_SWIER3
  3066. #define EXTI_SWIER_SWI4 EXTI_SWIER_SWIER4
  3067. #define EXTI_SWIER_SWI5 EXTI_SWIER_SWIER5
  3068. #define EXTI_SWIER_SWI6 EXTI_SWIER_SWIER6
  3069. #define EXTI_SWIER_SWI7 EXTI_SWIER_SWIER7
  3070. #define EXTI_SWIER_SWI8 EXTI_SWIER_SWIER8
  3071. #define EXTI_SWIER_SWI9 EXTI_SWIER_SWIER9
  3072. #define EXTI_SWIER_SWI10 EXTI_SWIER_SWIER10
  3073. #define EXTI_SWIER_SWI11 EXTI_SWIER_SWIER11
  3074. #define EXTI_SWIER_SWI12 EXTI_SWIER_SWIER12
  3075. #define EXTI_SWIER_SWI13 EXTI_SWIER_SWIER13
  3076. #define EXTI_SWIER_SWI14 EXTI_SWIER_SWIER14
  3077. #define EXTI_SWIER_SWI15 EXTI_SWIER_SWIER15
  3078. #define EXTI_SWIER_SWI16 EXTI_SWIER_SWIER16
  3079. #define EXTI_SWIER_SWI17 EXTI_SWIER_SWIER17
  3080. #define EXTI_SWIER_SWI18 EXTI_SWIER_SWIER18
  3081. /******************* Bit definition for EXTI_PR register ********************/
  3082. #define EXTI_PR_PR0_Pos (0U)
  3083. #define EXTI_PR_PR0_Msk (0x1UL << EXTI_PR_PR0_Pos) /*!< 0x00000001 */
  3084. #define EXTI_PR_PR0 EXTI_PR_PR0_Msk /*!< Pending bit for line 0 */
  3085. #define EXTI_PR_PR1_Pos (1U)
  3086. #define EXTI_PR_PR1_Msk (0x1UL << EXTI_PR_PR1_Pos) /*!< 0x00000002 */
  3087. #define EXTI_PR_PR1 EXTI_PR_PR1_Msk /*!< Pending bit for line 1 */
  3088. #define EXTI_PR_PR2_Pos (2U)
  3089. #define EXTI_PR_PR2_Msk (0x1UL << EXTI_PR_PR2_Pos) /*!< 0x00000004 */
  3090. #define EXTI_PR_PR2 EXTI_PR_PR2_Msk /*!< Pending bit for line 2 */
  3091. #define EXTI_PR_PR3_Pos (3U)
  3092. #define EXTI_PR_PR3_Msk (0x1UL << EXTI_PR_PR3_Pos) /*!< 0x00000008 */
  3093. #define EXTI_PR_PR3 EXTI_PR_PR3_Msk /*!< Pending bit for line 3 */
  3094. #define EXTI_PR_PR4_Pos (4U)
  3095. #define EXTI_PR_PR4_Msk (0x1UL << EXTI_PR_PR4_Pos) /*!< 0x00000010 */
  3096. #define EXTI_PR_PR4 EXTI_PR_PR4_Msk /*!< Pending bit for line 4 */
  3097. #define EXTI_PR_PR5_Pos (5U)
  3098. #define EXTI_PR_PR5_Msk (0x1UL << EXTI_PR_PR5_Pos) /*!< 0x00000020 */
  3099. #define EXTI_PR_PR5 EXTI_PR_PR5_Msk /*!< Pending bit for line 5 */
  3100. #define EXTI_PR_PR6_Pos (6U)
  3101. #define EXTI_PR_PR6_Msk (0x1UL << EXTI_PR_PR6_Pos) /*!< 0x00000040 */
  3102. #define EXTI_PR_PR6 EXTI_PR_PR6_Msk /*!< Pending bit for line 6 */
  3103. #define EXTI_PR_PR7_Pos (7U)
  3104. #define EXTI_PR_PR7_Msk (0x1UL << EXTI_PR_PR7_Pos) /*!< 0x00000080 */
  3105. #define EXTI_PR_PR7 EXTI_PR_PR7_Msk /*!< Pending bit for line 7 */
  3106. #define EXTI_PR_PR8_Pos (8U)
  3107. #define EXTI_PR_PR8_Msk (0x1UL << EXTI_PR_PR8_Pos) /*!< 0x00000100 */
  3108. #define EXTI_PR_PR8 EXTI_PR_PR8_Msk /*!< Pending bit for line 8 */
  3109. #define EXTI_PR_PR9_Pos (9U)
  3110. #define EXTI_PR_PR9_Msk (0x1UL << EXTI_PR_PR9_Pos) /*!< 0x00000200 */
  3111. #define EXTI_PR_PR9 EXTI_PR_PR9_Msk /*!< Pending bit for line 9 */
  3112. #define EXTI_PR_PR10_Pos (10U)
  3113. #define EXTI_PR_PR10_Msk (0x1UL << EXTI_PR_PR10_Pos) /*!< 0x00000400 */
  3114. #define EXTI_PR_PR10 EXTI_PR_PR10_Msk /*!< Pending bit for line 10 */
  3115. #define EXTI_PR_PR11_Pos (11U)
  3116. #define EXTI_PR_PR11_Msk (0x1UL << EXTI_PR_PR11_Pos) /*!< 0x00000800 */
  3117. #define EXTI_PR_PR11 EXTI_PR_PR11_Msk /*!< Pending bit for line 11 */
  3118. #define EXTI_PR_PR12_Pos (12U)
  3119. #define EXTI_PR_PR12_Msk (0x1UL << EXTI_PR_PR12_Pos) /*!< 0x00001000 */
  3120. #define EXTI_PR_PR12 EXTI_PR_PR12_Msk /*!< Pending bit for line 12 */
  3121. #define EXTI_PR_PR13_Pos (13U)
  3122. #define EXTI_PR_PR13_Msk (0x1UL << EXTI_PR_PR13_Pos) /*!< 0x00002000 */
  3123. #define EXTI_PR_PR13 EXTI_PR_PR13_Msk /*!< Pending bit for line 13 */
  3124. #define EXTI_PR_PR14_Pos (14U)
  3125. #define EXTI_PR_PR14_Msk (0x1UL << EXTI_PR_PR14_Pos) /*!< 0x00004000 */
  3126. #define EXTI_PR_PR14 EXTI_PR_PR14_Msk /*!< Pending bit for line 14 */
  3127. #define EXTI_PR_PR15_Pos (15U)
  3128. #define EXTI_PR_PR15_Msk (0x1UL << EXTI_PR_PR15_Pos) /*!< 0x00008000 */
  3129. #define EXTI_PR_PR15 EXTI_PR_PR15_Msk /*!< Pending bit for line 15 */
  3130. #define EXTI_PR_PR16_Pos (16U)
  3131. #define EXTI_PR_PR16_Msk (0x1UL << EXTI_PR_PR16_Pos) /*!< 0x00010000 */
  3132. #define EXTI_PR_PR16 EXTI_PR_PR16_Msk /*!< Pending bit for line 16 */
  3133. #define EXTI_PR_PR17_Pos (17U)
  3134. #define EXTI_PR_PR17_Msk (0x1UL << EXTI_PR_PR17_Pos) /*!< 0x00020000 */
  3135. #define EXTI_PR_PR17 EXTI_PR_PR17_Msk /*!< Pending bit for line 17 */
  3136. #define EXTI_PR_PR18_Pos (18U)
  3137. #define EXTI_PR_PR18_Msk (0x1UL << EXTI_PR_PR18_Pos) /*!< 0x00040000 */
  3138. #define EXTI_PR_PR18 EXTI_PR_PR18_Msk /*!< Pending bit for line 18 */
  3139. /* References Defines */
  3140. #define EXTI_PR_PIF0 EXTI_PR_PR0
  3141. #define EXTI_PR_PIF1 EXTI_PR_PR1
  3142. #define EXTI_PR_PIF2 EXTI_PR_PR2
  3143. #define EXTI_PR_PIF3 EXTI_PR_PR3
  3144. #define EXTI_PR_PIF4 EXTI_PR_PR4
  3145. #define EXTI_PR_PIF5 EXTI_PR_PR5
  3146. #define EXTI_PR_PIF6 EXTI_PR_PR6
  3147. #define EXTI_PR_PIF7 EXTI_PR_PR7
  3148. #define EXTI_PR_PIF8 EXTI_PR_PR8
  3149. #define EXTI_PR_PIF9 EXTI_PR_PR9
  3150. #define EXTI_PR_PIF10 EXTI_PR_PR10
  3151. #define EXTI_PR_PIF11 EXTI_PR_PR11
  3152. #define EXTI_PR_PIF12 EXTI_PR_PR12
  3153. #define EXTI_PR_PIF13 EXTI_PR_PR13
  3154. #define EXTI_PR_PIF14 EXTI_PR_PR14
  3155. #define EXTI_PR_PIF15 EXTI_PR_PR15
  3156. #define EXTI_PR_PIF16 EXTI_PR_PR16
  3157. #define EXTI_PR_PIF17 EXTI_PR_PR17
  3158. #define EXTI_PR_PIF18 EXTI_PR_PR18
  3159. /******************************************************************************/
  3160. /* */
  3161. /* DMA Controller */
  3162. /* */
  3163. /******************************************************************************/
  3164. /******************* Bit definition for DMA_ISR register ********************/
  3165. #define DMA_ISR_GIF1_Pos (0U)
  3166. #define DMA_ISR_GIF1_Msk (0x1UL << DMA_ISR_GIF1_Pos) /*!< 0x00000001 */
  3167. #define DMA_ISR_GIF1 DMA_ISR_GIF1_Msk /*!< Channel 1 Global interrupt flag */
  3168. #define DMA_ISR_TCIF1_Pos (1U)
  3169. #define DMA_ISR_TCIF1_Msk (0x1UL << DMA_ISR_TCIF1_Pos) /*!< 0x00000002 */
  3170. #define DMA_ISR_TCIF1 DMA_ISR_TCIF1_Msk /*!< Channel 1 Transfer Complete flag */
  3171. #define DMA_ISR_HTIF1_Pos (2U)
  3172. #define DMA_ISR_HTIF1_Msk (0x1UL << DMA_ISR_HTIF1_Pos) /*!< 0x00000004 */
  3173. #define DMA_ISR_HTIF1 DMA_ISR_HTIF1_Msk /*!< Channel 1 Half Transfer flag */
  3174. #define DMA_ISR_TEIF1_Pos (3U)
  3175. #define DMA_ISR_TEIF1_Msk (0x1UL << DMA_ISR_TEIF1_Pos) /*!< 0x00000008 */
  3176. #define DMA_ISR_TEIF1 DMA_ISR_TEIF1_Msk /*!< Channel 1 Transfer Error flag */
  3177. #define DMA_ISR_GIF2_Pos (4U)
  3178. #define DMA_ISR_GIF2_Msk (0x1UL << DMA_ISR_GIF2_Pos) /*!< 0x00000010 */
  3179. #define DMA_ISR_GIF2 DMA_ISR_GIF2_Msk /*!< Channel 2 Global interrupt flag */
  3180. #define DMA_ISR_TCIF2_Pos (5U)
  3181. #define DMA_ISR_TCIF2_Msk (0x1UL << DMA_ISR_TCIF2_Pos) /*!< 0x00000020 */
  3182. #define DMA_ISR_TCIF2 DMA_ISR_TCIF2_Msk /*!< Channel 2 Transfer Complete flag */
  3183. #define DMA_ISR_HTIF2_Pos (6U)
  3184. #define DMA_ISR_HTIF2_Msk (0x1UL << DMA_ISR_HTIF2_Pos) /*!< 0x00000040 */
  3185. #define DMA_ISR_HTIF2 DMA_ISR_HTIF2_Msk /*!< Channel 2 Half Transfer flag */
  3186. #define DMA_ISR_TEIF2_Pos (7U)
  3187. #define DMA_ISR_TEIF2_Msk (0x1UL << DMA_ISR_TEIF2_Pos) /*!< 0x00000080 */
  3188. #define DMA_ISR_TEIF2 DMA_ISR_TEIF2_Msk /*!< Channel 2 Transfer Error flag */
  3189. #define DMA_ISR_GIF3_Pos (8U)
  3190. #define DMA_ISR_GIF3_Msk (0x1UL << DMA_ISR_GIF3_Pos) /*!< 0x00000100 */
  3191. #define DMA_ISR_GIF3 DMA_ISR_GIF3_Msk /*!< Channel 3 Global interrupt flag */
  3192. #define DMA_ISR_TCIF3_Pos (9U)
  3193. #define DMA_ISR_TCIF3_Msk (0x1UL << DMA_ISR_TCIF3_Pos) /*!< 0x00000200 */
  3194. #define DMA_ISR_TCIF3 DMA_ISR_TCIF3_Msk /*!< Channel 3 Transfer Complete flag */
  3195. #define DMA_ISR_HTIF3_Pos (10U)
  3196. #define DMA_ISR_HTIF3_Msk (0x1UL << DMA_ISR_HTIF3_Pos) /*!< 0x00000400 */
  3197. #define DMA_ISR_HTIF3 DMA_ISR_HTIF3_Msk /*!< Channel 3 Half Transfer flag */
  3198. #define DMA_ISR_TEIF3_Pos (11U)
  3199. #define DMA_ISR_TEIF3_Msk (0x1UL << DMA_ISR_TEIF3_Pos) /*!< 0x00000800 */
  3200. #define DMA_ISR_TEIF3 DMA_ISR_TEIF3_Msk /*!< Channel 3 Transfer Error flag */
  3201. #define DMA_ISR_GIF4_Pos (12U)
  3202. #define DMA_ISR_GIF4_Msk (0x1UL << DMA_ISR_GIF4_Pos) /*!< 0x00001000 */
  3203. #define DMA_ISR_GIF4 DMA_ISR_GIF4_Msk /*!< Channel 4 Global interrupt flag */
  3204. #define DMA_ISR_TCIF4_Pos (13U)
  3205. #define DMA_ISR_TCIF4_Msk (0x1UL << DMA_ISR_TCIF4_Pos) /*!< 0x00002000 */
  3206. #define DMA_ISR_TCIF4 DMA_ISR_TCIF4_Msk /*!< Channel 4 Transfer Complete flag */
  3207. #define DMA_ISR_HTIF4_Pos (14U)
  3208. #define DMA_ISR_HTIF4_Msk (0x1UL << DMA_ISR_HTIF4_Pos) /*!< 0x00004000 */
  3209. #define DMA_ISR_HTIF4 DMA_ISR_HTIF4_Msk /*!< Channel 4 Half Transfer flag */
  3210. #define DMA_ISR_TEIF4_Pos (15U)
  3211. #define DMA_ISR_TEIF4_Msk (0x1UL << DMA_ISR_TEIF4_Pos) /*!< 0x00008000 */
  3212. #define DMA_ISR_TEIF4 DMA_ISR_TEIF4_Msk /*!< Channel 4 Transfer Error flag */
  3213. #define DMA_ISR_GIF5_Pos (16U)
  3214. #define DMA_ISR_GIF5_Msk (0x1UL << DMA_ISR_GIF5_Pos) /*!< 0x00010000 */
  3215. #define DMA_ISR_GIF5 DMA_ISR_GIF5_Msk /*!< Channel 5 Global interrupt flag */
  3216. #define DMA_ISR_TCIF5_Pos (17U)
  3217. #define DMA_ISR_TCIF5_Msk (0x1UL << DMA_ISR_TCIF5_Pos) /*!< 0x00020000 */
  3218. #define DMA_ISR_TCIF5 DMA_ISR_TCIF5_Msk /*!< Channel 5 Transfer Complete flag */
  3219. #define DMA_ISR_HTIF5_Pos (18U)
  3220. #define DMA_ISR_HTIF5_Msk (0x1UL << DMA_ISR_HTIF5_Pos) /*!< 0x00040000 */
  3221. #define DMA_ISR_HTIF5 DMA_ISR_HTIF5_Msk /*!< Channel 5 Half Transfer flag */
  3222. #define DMA_ISR_TEIF5_Pos (19U)
  3223. #define DMA_ISR_TEIF5_Msk (0x1UL << DMA_ISR_TEIF5_Pos) /*!< 0x00080000 */
  3224. #define DMA_ISR_TEIF5 DMA_ISR_TEIF5_Msk /*!< Channel 5 Transfer Error flag */
  3225. #define DMA_ISR_GIF6_Pos (20U)
  3226. #define DMA_ISR_GIF6_Msk (0x1UL << DMA_ISR_GIF6_Pos) /*!< 0x00100000 */
  3227. #define DMA_ISR_GIF6 DMA_ISR_GIF6_Msk /*!< Channel 6 Global interrupt flag */
  3228. #define DMA_ISR_TCIF6_Pos (21U)
  3229. #define DMA_ISR_TCIF6_Msk (0x1UL << DMA_ISR_TCIF6_Pos) /*!< 0x00200000 */
  3230. #define DMA_ISR_TCIF6 DMA_ISR_TCIF6_Msk /*!< Channel 6 Transfer Complete flag */
  3231. #define DMA_ISR_HTIF6_Pos (22U)
  3232. #define DMA_ISR_HTIF6_Msk (0x1UL << DMA_ISR_HTIF6_Pos) /*!< 0x00400000 */
  3233. #define DMA_ISR_HTIF6 DMA_ISR_HTIF6_Msk /*!< Channel 6 Half Transfer flag */
  3234. #define DMA_ISR_TEIF6_Pos (23U)
  3235. #define DMA_ISR_TEIF6_Msk (0x1UL << DMA_ISR_TEIF6_Pos) /*!< 0x00800000 */
  3236. #define DMA_ISR_TEIF6 DMA_ISR_TEIF6_Msk /*!< Channel 6 Transfer Error flag */
  3237. #define DMA_ISR_GIF7_Pos (24U)
  3238. #define DMA_ISR_GIF7_Msk (0x1UL << DMA_ISR_GIF7_Pos) /*!< 0x01000000 */
  3239. #define DMA_ISR_GIF7 DMA_ISR_GIF7_Msk /*!< Channel 7 Global interrupt flag */
  3240. #define DMA_ISR_TCIF7_Pos (25U)
  3241. #define DMA_ISR_TCIF7_Msk (0x1UL << DMA_ISR_TCIF7_Pos) /*!< 0x02000000 */
  3242. #define DMA_ISR_TCIF7 DMA_ISR_TCIF7_Msk /*!< Channel 7 Transfer Complete flag */
  3243. #define DMA_ISR_HTIF7_Pos (26U)
  3244. #define DMA_ISR_HTIF7_Msk (0x1UL << DMA_ISR_HTIF7_Pos) /*!< 0x04000000 */
  3245. #define DMA_ISR_HTIF7 DMA_ISR_HTIF7_Msk /*!< Channel 7 Half Transfer flag */
  3246. #define DMA_ISR_TEIF7_Pos (27U)
  3247. #define DMA_ISR_TEIF7_Msk (0x1UL << DMA_ISR_TEIF7_Pos) /*!< 0x08000000 */
  3248. #define DMA_ISR_TEIF7 DMA_ISR_TEIF7_Msk /*!< Channel 7 Transfer Error flag */
  3249. /******************* Bit definition for DMA_IFCR register *******************/
  3250. #define DMA_IFCR_CGIF1_Pos (0U)
  3251. #define DMA_IFCR_CGIF1_Msk (0x1UL << DMA_IFCR_CGIF1_Pos) /*!< 0x00000001 */
  3252. #define DMA_IFCR_CGIF1 DMA_IFCR_CGIF1_Msk /*!< Channel 1 Global interrupt clear */
  3253. #define DMA_IFCR_CTCIF1_Pos (1U)
  3254. #define DMA_IFCR_CTCIF1_Msk (0x1UL << DMA_IFCR_CTCIF1_Pos) /*!< 0x00000002 */
  3255. #define DMA_IFCR_CTCIF1 DMA_IFCR_CTCIF1_Msk /*!< Channel 1 Transfer Complete clear */
  3256. #define DMA_IFCR_CHTIF1_Pos (2U)
  3257. #define DMA_IFCR_CHTIF1_Msk (0x1UL << DMA_IFCR_CHTIF1_Pos) /*!< 0x00000004 */
  3258. #define DMA_IFCR_CHTIF1 DMA_IFCR_CHTIF1_Msk /*!< Channel 1 Half Transfer clear */
  3259. #define DMA_IFCR_CTEIF1_Pos (3U)
  3260. #define DMA_IFCR_CTEIF1_Msk (0x1UL << DMA_IFCR_CTEIF1_Pos) /*!< 0x00000008 */
  3261. #define DMA_IFCR_CTEIF1 DMA_IFCR_CTEIF1_Msk /*!< Channel 1 Transfer Error clear */
  3262. #define DMA_IFCR_CGIF2_Pos (4U)
  3263. #define DMA_IFCR_CGIF2_Msk (0x1UL << DMA_IFCR_CGIF2_Pos) /*!< 0x00000010 */
  3264. #define DMA_IFCR_CGIF2 DMA_IFCR_CGIF2_Msk /*!< Channel 2 Global interrupt clear */
  3265. #define DMA_IFCR_CTCIF2_Pos (5U)
  3266. #define DMA_IFCR_CTCIF2_Msk (0x1UL << DMA_IFCR_CTCIF2_Pos) /*!< 0x00000020 */
  3267. #define DMA_IFCR_CTCIF2 DMA_IFCR_CTCIF2_Msk /*!< Channel 2 Transfer Complete clear */
  3268. #define DMA_IFCR_CHTIF2_Pos (6U)
  3269. #define DMA_IFCR_CHTIF2_Msk (0x1UL << DMA_IFCR_CHTIF2_Pos) /*!< 0x00000040 */
  3270. #define DMA_IFCR_CHTIF2 DMA_IFCR_CHTIF2_Msk /*!< Channel 2 Half Transfer clear */
  3271. #define DMA_IFCR_CTEIF2_Pos (7U)
  3272. #define DMA_IFCR_CTEIF2_Msk (0x1UL << DMA_IFCR_CTEIF2_Pos) /*!< 0x00000080 */
  3273. #define DMA_IFCR_CTEIF2 DMA_IFCR_CTEIF2_Msk /*!< Channel 2 Transfer Error clear */
  3274. #define DMA_IFCR_CGIF3_Pos (8U)
  3275. #define DMA_IFCR_CGIF3_Msk (0x1UL << DMA_IFCR_CGIF3_Pos) /*!< 0x00000100 */
  3276. #define DMA_IFCR_CGIF3 DMA_IFCR_CGIF3_Msk /*!< Channel 3 Global interrupt clear */
  3277. #define DMA_IFCR_CTCIF3_Pos (9U)
  3278. #define DMA_IFCR_CTCIF3_Msk (0x1UL << DMA_IFCR_CTCIF3_Pos) /*!< 0x00000200 */
  3279. #define DMA_IFCR_CTCIF3 DMA_IFCR_CTCIF3_Msk /*!< Channel 3 Transfer Complete clear */
  3280. #define DMA_IFCR_CHTIF3_Pos (10U)
  3281. #define DMA_IFCR_CHTIF3_Msk (0x1UL << DMA_IFCR_CHTIF3_Pos) /*!< 0x00000400 */
  3282. #define DMA_IFCR_CHTIF3 DMA_IFCR_CHTIF3_Msk /*!< Channel 3 Half Transfer clear */
  3283. #define DMA_IFCR_CTEIF3_Pos (11U)
  3284. #define DMA_IFCR_CTEIF3_Msk (0x1UL << DMA_IFCR_CTEIF3_Pos) /*!< 0x00000800 */
  3285. #define DMA_IFCR_CTEIF3 DMA_IFCR_CTEIF3_Msk /*!< Channel 3 Transfer Error clear */
  3286. #define DMA_IFCR_CGIF4_Pos (12U)
  3287. #define DMA_IFCR_CGIF4_Msk (0x1UL << DMA_IFCR_CGIF4_Pos) /*!< 0x00001000 */
  3288. #define DMA_IFCR_CGIF4 DMA_IFCR_CGIF4_Msk /*!< Channel 4 Global interrupt clear */
  3289. #define DMA_IFCR_CTCIF4_Pos (13U)
  3290. #define DMA_IFCR_CTCIF4_Msk (0x1UL << DMA_IFCR_CTCIF4_Pos) /*!< 0x00002000 */
  3291. #define DMA_IFCR_CTCIF4 DMA_IFCR_CTCIF4_Msk /*!< Channel 4 Transfer Complete clear */
  3292. #define DMA_IFCR_CHTIF4_Pos (14U)
  3293. #define DMA_IFCR_CHTIF4_Msk (0x1UL << DMA_IFCR_CHTIF4_Pos) /*!< 0x00004000 */
  3294. #define DMA_IFCR_CHTIF4 DMA_IFCR_CHTIF4_Msk /*!< Channel 4 Half Transfer clear */
  3295. #define DMA_IFCR_CTEIF4_Pos (15U)
  3296. #define DMA_IFCR_CTEIF4_Msk (0x1UL << DMA_IFCR_CTEIF4_Pos) /*!< 0x00008000 */
  3297. #define DMA_IFCR_CTEIF4 DMA_IFCR_CTEIF4_Msk /*!< Channel 4 Transfer Error clear */
  3298. #define DMA_IFCR_CGIF5_Pos (16U)
  3299. #define DMA_IFCR_CGIF5_Msk (0x1UL << DMA_IFCR_CGIF5_Pos) /*!< 0x00010000 */
  3300. #define DMA_IFCR_CGIF5 DMA_IFCR_CGIF5_Msk /*!< Channel 5 Global interrupt clear */
  3301. #define DMA_IFCR_CTCIF5_Pos (17U)
  3302. #define DMA_IFCR_CTCIF5_Msk (0x1UL << DMA_IFCR_CTCIF5_Pos) /*!< 0x00020000 */
  3303. #define DMA_IFCR_CTCIF5 DMA_IFCR_CTCIF5_Msk /*!< Channel 5 Transfer Complete clear */
  3304. #define DMA_IFCR_CHTIF5_Pos (18U)
  3305. #define DMA_IFCR_CHTIF5_Msk (0x1UL << DMA_IFCR_CHTIF5_Pos) /*!< 0x00040000 */
  3306. #define DMA_IFCR_CHTIF5 DMA_IFCR_CHTIF5_Msk /*!< Channel 5 Half Transfer clear */
  3307. #define DMA_IFCR_CTEIF5_Pos (19U)
  3308. #define DMA_IFCR_CTEIF5_Msk (0x1UL << DMA_IFCR_CTEIF5_Pos) /*!< 0x00080000 */
  3309. #define DMA_IFCR_CTEIF5 DMA_IFCR_CTEIF5_Msk /*!< Channel 5 Transfer Error clear */
  3310. #define DMA_IFCR_CGIF6_Pos (20U)
  3311. #define DMA_IFCR_CGIF6_Msk (0x1UL << DMA_IFCR_CGIF6_Pos) /*!< 0x00100000 */
  3312. #define DMA_IFCR_CGIF6 DMA_IFCR_CGIF6_Msk /*!< Channel 6 Global interrupt clear */
  3313. #define DMA_IFCR_CTCIF6_Pos (21U)
  3314. #define DMA_IFCR_CTCIF6_Msk (0x1UL << DMA_IFCR_CTCIF6_Pos) /*!< 0x00200000 */
  3315. #define DMA_IFCR_CTCIF6 DMA_IFCR_CTCIF6_Msk /*!< Channel 6 Transfer Complete clear */
  3316. #define DMA_IFCR_CHTIF6_Pos (22U)
  3317. #define DMA_IFCR_CHTIF6_Msk (0x1UL << DMA_IFCR_CHTIF6_Pos) /*!< 0x00400000 */
  3318. #define DMA_IFCR_CHTIF6 DMA_IFCR_CHTIF6_Msk /*!< Channel 6 Half Transfer clear */
  3319. #define DMA_IFCR_CTEIF6_Pos (23U)
  3320. #define DMA_IFCR_CTEIF6_Msk (0x1UL << DMA_IFCR_CTEIF6_Pos) /*!< 0x00800000 */
  3321. #define DMA_IFCR_CTEIF6 DMA_IFCR_CTEIF6_Msk /*!< Channel 6 Transfer Error clear */
  3322. #define DMA_IFCR_CGIF7_Pos (24U)
  3323. #define DMA_IFCR_CGIF7_Msk (0x1UL << DMA_IFCR_CGIF7_Pos) /*!< 0x01000000 */
  3324. #define DMA_IFCR_CGIF7 DMA_IFCR_CGIF7_Msk /*!< Channel 7 Global interrupt clear */
  3325. #define DMA_IFCR_CTCIF7_Pos (25U)
  3326. #define DMA_IFCR_CTCIF7_Msk (0x1UL << DMA_IFCR_CTCIF7_Pos) /*!< 0x02000000 */
  3327. #define DMA_IFCR_CTCIF7 DMA_IFCR_CTCIF7_Msk /*!< Channel 7 Transfer Complete clear */
  3328. #define DMA_IFCR_CHTIF7_Pos (26U)
  3329. #define DMA_IFCR_CHTIF7_Msk (0x1UL << DMA_IFCR_CHTIF7_Pos) /*!< 0x04000000 */
  3330. #define DMA_IFCR_CHTIF7 DMA_IFCR_CHTIF7_Msk /*!< Channel 7 Half Transfer clear */
  3331. #define DMA_IFCR_CTEIF7_Pos (27U)
  3332. #define DMA_IFCR_CTEIF7_Msk (0x1UL << DMA_IFCR_CTEIF7_Pos) /*!< 0x08000000 */
  3333. #define DMA_IFCR_CTEIF7 DMA_IFCR_CTEIF7_Msk /*!< Channel 7 Transfer Error clear */
  3334. /******************* Bit definition for DMA_CCR register *******************/
  3335. #define DMA_CCR_EN_Pos (0U)
  3336. #define DMA_CCR_EN_Msk (0x1UL << DMA_CCR_EN_Pos) /*!< 0x00000001 */
  3337. #define DMA_CCR_EN DMA_CCR_EN_Msk /*!< Channel enable */
  3338. #define DMA_CCR_TCIE_Pos (1U)
  3339. #define DMA_CCR_TCIE_Msk (0x1UL << DMA_CCR_TCIE_Pos) /*!< 0x00000002 */
  3340. #define DMA_CCR_TCIE DMA_CCR_TCIE_Msk /*!< Transfer complete interrupt enable */
  3341. #define DMA_CCR_HTIE_Pos (2U)
  3342. #define DMA_CCR_HTIE_Msk (0x1UL << DMA_CCR_HTIE_Pos) /*!< 0x00000004 */
  3343. #define DMA_CCR_HTIE DMA_CCR_HTIE_Msk /*!< Half Transfer interrupt enable */
  3344. #define DMA_CCR_TEIE_Pos (3U)
  3345. #define DMA_CCR_TEIE_Msk (0x1UL << DMA_CCR_TEIE_Pos) /*!< 0x00000008 */
  3346. #define DMA_CCR_TEIE DMA_CCR_TEIE_Msk /*!< Transfer error interrupt enable */
  3347. #define DMA_CCR_DIR_Pos (4U)
  3348. #define DMA_CCR_DIR_Msk (0x1UL << DMA_CCR_DIR_Pos) /*!< 0x00000010 */
  3349. #define DMA_CCR_DIR DMA_CCR_DIR_Msk /*!< Data transfer direction */
  3350. #define DMA_CCR_CIRC_Pos (5U)
  3351. #define DMA_CCR_CIRC_Msk (0x1UL << DMA_CCR_CIRC_Pos) /*!< 0x00000020 */
  3352. #define DMA_CCR_CIRC DMA_CCR_CIRC_Msk /*!< Circular mode */
  3353. #define DMA_CCR_PINC_Pos (6U)
  3354. #define DMA_CCR_PINC_Msk (0x1UL << DMA_CCR_PINC_Pos) /*!< 0x00000040 */
  3355. #define DMA_CCR_PINC DMA_CCR_PINC_Msk /*!< Peripheral increment mode */
  3356. #define DMA_CCR_MINC_Pos (7U)
  3357. #define DMA_CCR_MINC_Msk (0x1UL << DMA_CCR_MINC_Pos) /*!< 0x00000080 */
  3358. #define DMA_CCR_MINC DMA_CCR_MINC_Msk /*!< Memory increment mode */
  3359. #define DMA_CCR_PSIZE_Pos (8U)
  3360. #define DMA_CCR_PSIZE_Msk (0x3UL << DMA_CCR_PSIZE_Pos) /*!< 0x00000300 */
  3361. #define DMA_CCR_PSIZE DMA_CCR_PSIZE_Msk /*!< PSIZE[1:0] bits (Peripheral size) */
  3362. #define DMA_CCR_PSIZE_0 (0x1UL << DMA_CCR_PSIZE_Pos) /*!< 0x00000100 */
  3363. #define DMA_CCR_PSIZE_1 (0x2UL << DMA_CCR_PSIZE_Pos) /*!< 0x00000200 */
  3364. #define DMA_CCR_MSIZE_Pos (10U)
  3365. #define DMA_CCR_MSIZE_Msk (0x3UL << DMA_CCR_MSIZE_Pos) /*!< 0x00000C00 */
  3366. #define DMA_CCR_MSIZE DMA_CCR_MSIZE_Msk /*!< MSIZE[1:0] bits (Memory size) */
  3367. #define DMA_CCR_MSIZE_0 (0x1UL << DMA_CCR_MSIZE_Pos) /*!< 0x00000400 */
  3368. #define DMA_CCR_MSIZE_1 (0x2UL << DMA_CCR_MSIZE_Pos) /*!< 0x00000800 */
  3369. #define DMA_CCR_PL_Pos (12U)
  3370. #define DMA_CCR_PL_Msk (0x3UL << DMA_CCR_PL_Pos) /*!< 0x00003000 */
  3371. #define DMA_CCR_PL DMA_CCR_PL_Msk /*!< PL[1:0] bits(Channel Priority level) */
  3372. #define DMA_CCR_PL_0 (0x1UL << DMA_CCR_PL_Pos) /*!< 0x00001000 */
  3373. #define DMA_CCR_PL_1 (0x2UL << DMA_CCR_PL_Pos) /*!< 0x00002000 */
  3374. #define DMA_CCR_MEM2MEM_Pos (14U)
  3375. #define DMA_CCR_MEM2MEM_Msk (0x1UL << DMA_CCR_MEM2MEM_Pos) /*!< 0x00004000 */
  3376. #define DMA_CCR_MEM2MEM DMA_CCR_MEM2MEM_Msk /*!< Memory to memory mode */
  3377. /****************** Bit definition for DMA_CNDTR register ******************/
  3378. #define DMA_CNDTR_NDT_Pos (0U)
  3379. #define DMA_CNDTR_NDT_Msk (0xFFFFUL << DMA_CNDTR_NDT_Pos) /*!< 0x0000FFFF */
  3380. #define DMA_CNDTR_NDT DMA_CNDTR_NDT_Msk /*!< Number of data to Transfer */
  3381. /****************** Bit definition for DMA_CPAR register *******************/
  3382. #define DMA_CPAR_PA_Pos (0U)
  3383. #define DMA_CPAR_PA_Msk (0xFFFFFFFFUL << DMA_CPAR_PA_Pos) /*!< 0xFFFFFFFF */
  3384. #define DMA_CPAR_PA DMA_CPAR_PA_Msk /*!< Peripheral Address */
  3385. /****************** Bit definition for DMA_CMAR register *******************/
  3386. #define DMA_CMAR_MA_Pos (0U)
  3387. #define DMA_CMAR_MA_Msk (0xFFFFFFFFUL << DMA_CMAR_MA_Pos) /*!< 0xFFFFFFFF */
  3388. #define DMA_CMAR_MA DMA_CMAR_MA_Msk /*!< Memory Address */
  3389. /******************************************************************************/
  3390. /* */
  3391. /* Analog to Digital Converter (ADC) */
  3392. /* */
  3393. /******************************************************************************/
  3394. /*
  3395. * @brief Specific device feature definitions (not present on all devices in the STM32F1 family)
  3396. */
  3397. #define ADC_MULTIMODE_SUPPORT /*!< ADC feature available only on specific devices: multimode available on devices with several ADC instances */
  3398. /******************** Bit definition for ADC_SR register ********************/
  3399. #define ADC_SR_AWD_Pos (0U)
  3400. #define ADC_SR_AWD_Msk (0x1UL << ADC_SR_AWD_Pos) /*!< 0x00000001 */
  3401. #define ADC_SR_AWD ADC_SR_AWD_Msk /*!< ADC analog watchdog 1 flag */
  3402. #define ADC_SR_EOS_Pos (1U)
  3403. #define ADC_SR_EOS_Msk (0x1UL << ADC_SR_EOS_Pos) /*!< 0x00000002 */
  3404. #define ADC_SR_EOS ADC_SR_EOS_Msk /*!< ADC group regular end of sequence conversions flag */
  3405. #define ADC_SR_JEOS_Pos (2U)
  3406. #define ADC_SR_JEOS_Msk (0x1UL << ADC_SR_JEOS_Pos) /*!< 0x00000004 */
  3407. #define ADC_SR_JEOS ADC_SR_JEOS_Msk /*!< ADC group injected end of sequence conversions flag */
  3408. #define ADC_SR_JSTRT_Pos (3U)
  3409. #define ADC_SR_JSTRT_Msk (0x1UL << ADC_SR_JSTRT_Pos) /*!< 0x00000008 */
  3410. #define ADC_SR_JSTRT ADC_SR_JSTRT_Msk /*!< ADC group injected conversion start flag */
  3411. #define ADC_SR_STRT_Pos (4U)
  3412. #define ADC_SR_STRT_Msk (0x1UL << ADC_SR_STRT_Pos) /*!< 0x00000010 */
  3413. #define ADC_SR_STRT ADC_SR_STRT_Msk /*!< ADC group regular conversion start flag */
  3414. /* Legacy defines */
  3415. #define ADC_SR_EOC (ADC_SR_EOS)
  3416. #define ADC_SR_JEOC (ADC_SR_JEOS)
  3417. /******************* Bit definition for ADC_CR1 register ********************/
  3418. #define ADC_CR1_AWDCH_Pos (0U)
  3419. #define ADC_CR1_AWDCH_Msk (0x1FUL << ADC_CR1_AWDCH_Pos) /*!< 0x0000001F */
  3420. #define ADC_CR1_AWDCH ADC_CR1_AWDCH_Msk /*!< ADC analog watchdog 1 monitored channel selection */
  3421. #define ADC_CR1_AWDCH_0 (0x01UL << ADC_CR1_AWDCH_Pos) /*!< 0x00000001 */
  3422. #define ADC_CR1_AWDCH_1 (0x02UL << ADC_CR1_AWDCH_Pos) /*!< 0x00000002 */
  3423. #define ADC_CR1_AWDCH_2 (0x04UL << ADC_CR1_AWDCH_Pos) /*!< 0x00000004 */
  3424. #define ADC_CR1_AWDCH_3 (0x08UL << ADC_CR1_AWDCH_Pos) /*!< 0x00000008 */
  3425. #define ADC_CR1_AWDCH_4 (0x10UL << ADC_CR1_AWDCH_Pos) /*!< 0x00000010 */
  3426. #define ADC_CR1_EOSIE_Pos (5U)
  3427. #define ADC_CR1_EOSIE_Msk (0x1UL << ADC_CR1_EOSIE_Pos) /*!< 0x00000020 */
  3428. #define ADC_CR1_EOSIE ADC_CR1_EOSIE_Msk /*!< ADC group regular end of sequence conversions interrupt */
  3429. #define ADC_CR1_AWDIE_Pos (6U)
  3430. #define ADC_CR1_AWDIE_Msk (0x1UL << ADC_CR1_AWDIE_Pos) /*!< 0x00000040 */
  3431. #define ADC_CR1_AWDIE ADC_CR1_AWDIE_Msk /*!< ADC analog watchdog 1 interrupt */
  3432. #define ADC_CR1_JEOSIE_Pos (7U)
  3433. #define ADC_CR1_JEOSIE_Msk (0x1UL << ADC_CR1_JEOSIE_Pos) /*!< 0x00000080 */
  3434. #define ADC_CR1_JEOSIE ADC_CR1_JEOSIE_Msk /*!< ADC group injected end of sequence conversions interrupt */
  3435. #define ADC_CR1_SCAN_Pos (8U)
  3436. #define ADC_CR1_SCAN_Msk (0x1UL << ADC_CR1_SCAN_Pos) /*!< 0x00000100 */
  3437. #define ADC_CR1_SCAN ADC_CR1_SCAN_Msk /*!< ADC scan mode */
  3438. #define ADC_CR1_AWDSGL_Pos (9U)
  3439. #define ADC_CR1_AWDSGL_Msk (0x1UL << ADC_CR1_AWDSGL_Pos) /*!< 0x00000200 */
  3440. #define ADC_CR1_AWDSGL ADC_CR1_AWDSGL_Msk /*!< ADC analog watchdog 1 monitoring a single channel or all channels */
  3441. #define ADC_CR1_JAUTO_Pos (10U)
  3442. #define ADC_CR1_JAUTO_Msk (0x1UL << ADC_CR1_JAUTO_Pos) /*!< 0x00000400 */
  3443. #define ADC_CR1_JAUTO ADC_CR1_JAUTO_Msk /*!< ADC group injected automatic trigger mode */
  3444. #define ADC_CR1_DISCEN_Pos (11U)
  3445. #define ADC_CR1_DISCEN_Msk (0x1UL << ADC_CR1_DISCEN_Pos) /*!< 0x00000800 */
  3446. #define ADC_CR1_DISCEN ADC_CR1_DISCEN_Msk /*!< ADC group regular sequencer discontinuous mode */
  3447. #define ADC_CR1_JDISCEN_Pos (12U)
  3448. #define ADC_CR1_JDISCEN_Msk (0x1UL << ADC_CR1_JDISCEN_Pos) /*!< 0x00001000 */
  3449. #define ADC_CR1_JDISCEN ADC_CR1_JDISCEN_Msk /*!< ADC group injected sequencer discontinuous mode */
  3450. #define ADC_CR1_DISCNUM_Pos (13U)
  3451. #define ADC_CR1_DISCNUM_Msk (0x7UL << ADC_CR1_DISCNUM_Pos) /*!< 0x0000E000 */
  3452. #define ADC_CR1_DISCNUM ADC_CR1_DISCNUM_Msk /*!< ADC group regular sequencer discontinuous number of ranks */
  3453. #define ADC_CR1_DISCNUM_0 (0x1UL << ADC_CR1_DISCNUM_Pos) /*!< 0x00002000 */
  3454. #define ADC_CR1_DISCNUM_1 (0x2UL << ADC_CR1_DISCNUM_Pos) /*!< 0x00004000 */
  3455. #define ADC_CR1_DISCNUM_2 (0x4UL << ADC_CR1_DISCNUM_Pos) /*!< 0x00008000 */
  3456. #define ADC_CR1_DUALMOD_Pos (16U)
  3457. #define ADC_CR1_DUALMOD_Msk (0xFUL << ADC_CR1_DUALMOD_Pos) /*!< 0x000F0000 */
  3458. #define ADC_CR1_DUALMOD ADC_CR1_DUALMOD_Msk /*!< ADC multimode mode selection */
  3459. #define ADC_CR1_DUALMOD_0 (0x1UL << ADC_CR1_DUALMOD_Pos) /*!< 0x00010000 */
  3460. #define ADC_CR1_DUALMOD_1 (0x2UL << ADC_CR1_DUALMOD_Pos) /*!< 0x00020000 */
  3461. #define ADC_CR1_DUALMOD_2 (0x4UL << ADC_CR1_DUALMOD_Pos) /*!< 0x00040000 */
  3462. #define ADC_CR1_DUALMOD_3 (0x8UL << ADC_CR1_DUALMOD_Pos) /*!< 0x00080000 */
  3463. #define ADC_CR1_JAWDEN_Pos (22U)
  3464. #define ADC_CR1_JAWDEN_Msk (0x1UL << ADC_CR1_JAWDEN_Pos) /*!< 0x00400000 */
  3465. #define ADC_CR1_JAWDEN ADC_CR1_JAWDEN_Msk /*!< ADC analog watchdog 1 enable on scope ADC group injected */
  3466. #define ADC_CR1_AWDEN_Pos (23U)
  3467. #define ADC_CR1_AWDEN_Msk (0x1UL << ADC_CR1_AWDEN_Pos) /*!< 0x00800000 */
  3468. #define ADC_CR1_AWDEN ADC_CR1_AWDEN_Msk /*!< ADC analog watchdog 1 enable on scope ADC group regular */
  3469. /* Legacy defines */
  3470. #define ADC_CR1_EOCIE (ADC_CR1_EOSIE)
  3471. #define ADC_CR1_JEOCIE (ADC_CR1_JEOSIE)
  3472. /******************* Bit definition for ADC_CR2 register ********************/
  3473. #define ADC_CR2_ADON_Pos (0U)
  3474. #define ADC_CR2_ADON_Msk (0x1UL << ADC_CR2_ADON_Pos) /*!< 0x00000001 */
  3475. #define ADC_CR2_ADON ADC_CR2_ADON_Msk /*!< ADC enable */
  3476. #define ADC_CR2_CONT_Pos (1U)
  3477. #define ADC_CR2_CONT_Msk (0x1UL << ADC_CR2_CONT_Pos) /*!< 0x00000002 */
  3478. #define ADC_CR2_CONT ADC_CR2_CONT_Msk /*!< ADC group regular continuous conversion mode */
  3479. #define ADC_CR2_CAL_Pos (2U)
  3480. #define ADC_CR2_CAL_Msk (0x1UL << ADC_CR2_CAL_Pos) /*!< 0x00000004 */
  3481. #define ADC_CR2_CAL ADC_CR2_CAL_Msk /*!< ADC calibration start */
  3482. #define ADC_CR2_RSTCAL_Pos (3U)
  3483. #define ADC_CR2_RSTCAL_Msk (0x1UL << ADC_CR2_RSTCAL_Pos) /*!< 0x00000008 */
  3484. #define ADC_CR2_RSTCAL ADC_CR2_RSTCAL_Msk /*!< ADC calibration reset */
  3485. #define ADC_CR2_DMA_Pos (8U)
  3486. #define ADC_CR2_DMA_Msk (0x1UL << ADC_CR2_DMA_Pos) /*!< 0x00000100 */
  3487. #define ADC_CR2_DMA ADC_CR2_DMA_Msk /*!< ADC DMA transfer enable */
  3488. #define ADC_CR2_ALIGN_Pos (11U)
  3489. #define ADC_CR2_ALIGN_Msk (0x1UL << ADC_CR2_ALIGN_Pos) /*!< 0x00000800 */
  3490. #define ADC_CR2_ALIGN ADC_CR2_ALIGN_Msk /*!< ADC data alignement */
  3491. #define ADC_CR2_JEXTSEL_Pos (12U)
  3492. #define ADC_CR2_JEXTSEL_Msk (0x7UL << ADC_CR2_JEXTSEL_Pos) /*!< 0x00007000 */
  3493. #define ADC_CR2_JEXTSEL ADC_CR2_JEXTSEL_Msk /*!< ADC group injected external trigger source */
  3494. #define ADC_CR2_JEXTSEL_0 (0x1UL << ADC_CR2_JEXTSEL_Pos) /*!< 0x00001000 */
  3495. #define ADC_CR2_JEXTSEL_1 (0x2UL << ADC_CR2_JEXTSEL_Pos) /*!< 0x00002000 */
  3496. #define ADC_CR2_JEXTSEL_2 (0x4UL << ADC_CR2_JEXTSEL_Pos) /*!< 0x00004000 */
  3497. #define ADC_CR2_JEXTTRIG_Pos (15U)
  3498. #define ADC_CR2_JEXTTRIG_Msk (0x1UL << ADC_CR2_JEXTTRIG_Pos) /*!< 0x00008000 */
  3499. #define ADC_CR2_JEXTTRIG ADC_CR2_JEXTTRIG_Msk /*!< ADC group injected external trigger enable */
  3500. #define ADC_CR2_EXTSEL_Pos (17U)
  3501. #define ADC_CR2_EXTSEL_Msk (0x7UL << ADC_CR2_EXTSEL_Pos) /*!< 0x000E0000 */
  3502. #define ADC_CR2_EXTSEL ADC_CR2_EXTSEL_Msk /*!< ADC group regular external trigger source */
  3503. #define ADC_CR2_EXTSEL_0 (0x1UL << ADC_CR2_EXTSEL_Pos) /*!< 0x00020000 */
  3504. #define ADC_CR2_EXTSEL_1 (0x2UL << ADC_CR2_EXTSEL_Pos) /*!< 0x00040000 */
  3505. #define ADC_CR2_EXTSEL_2 (0x4UL << ADC_CR2_EXTSEL_Pos) /*!< 0x00080000 */
  3506. #define ADC_CR2_EXTTRIG_Pos (20U)
  3507. #define ADC_CR2_EXTTRIG_Msk (0x1UL << ADC_CR2_EXTTRIG_Pos) /*!< 0x00100000 */
  3508. #define ADC_CR2_EXTTRIG ADC_CR2_EXTTRIG_Msk /*!< ADC group regular external trigger enable */
  3509. #define ADC_CR2_JSWSTART_Pos (21U)
  3510. #define ADC_CR2_JSWSTART_Msk (0x1UL << ADC_CR2_JSWSTART_Pos) /*!< 0x00200000 */
  3511. #define ADC_CR2_JSWSTART ADC_CR2_JSWSTART_Msk /*!< ADC group injected conversion start */
  3512. #define ADC_CR2_SWSTART_Pos (22U)
  3513. #define ADC_CR2_SWSTART_Msk (0x1UL << ADC_CR2_SWSTART_Pos) /*!< 0x00400000 */
  3514. #define ADC_CR2_SWSTART ADC_CR2_SWSTART_Msk /*!< ADC group regular conversion start */
  3515. #define ADC_CR2_TSVREFE_Pos (23U)
  3516. #define ADC_CR2_TSVREFE_Msk (0x1UL << ADC_CR2_TSVREFE_Pos) /*!< 0x00800000 */
  3517. #define ADC_CR2_TSVREFE ADC_CR2_TSVREFE_Msk /*!< ADC internal path to VrefInt and temperature sensor enable */
  3518. /****************** Bit definition for ADC_SMPR1 register *******************/
  3519. #define ADC_SMPR1_SMP10_Pos (0U)
  3520. #define ADC_SMPR1_SMP10_Msk (0x7UL << ADC_SMPR1_SMP10_Pos) /*!< 0x00000007 */
  3521. #define ADC_SMPR1_SMP10 ADC_SMPR1_SMP10_Msk /*!< ADC channel 10 sampling time selection */
  3522. #define ADC_SMPR1_SMP10_0 (0x1UL << ADC_SMPR1_SMP10_Pos) /*!< 0x00000001 */
  3523. #define ADC_SMPR1_SMP10_1 (0x2UL << ADC_SMPR1_SMP10_Pos) /*!< 0x00000002 */
  3524. #define ADC_SMPR1_SMP10_2 (0x4UL << ADC_SMPR1_SMP10_Pos) /*!< 0x00000004 */
  3525. #define ADC_SMPR1_SMP11_Pos (3U)
  3526. #define ADC_SMPR1_SMP11_Msk (0x7UL << ADC_SMPR1_SMP11_Pos) /*!< 0x00000038 */
  3527. #define ADC_SMPR1_SMP11 ADC_SMPR1_SMP11_Msk /*!< ADC channel 11 sampling time selection */
  3528. #define ADC_SMPR1_SMP11_0 (0x1UL << ADC_SMPR1_SMP11_Pos) /*!< 0x00000008 */
  3529. #define ADC_SMPR1_SMP11_1 (0x2UL << ADC_SMPR1_SMP11_Pos) /*!< 0x00000010 */
  3530. #define ADC_SMPR1_SMP11_2 (0x4UL << ADC_SMPR1_SMP11_Pos) /*!< 0x00000020 */
  3531. #define ADC_SMPR1_SMP12_Pos (6U)
  3532. #define ADC_SMPR1_SMP12_Msk (0x7UL << ADC_SMPR1_SMP12_Pos) /*!< 0x000001C0 */
  3533. #define ADC_SMPR1_SMP12 ADC_SMPR1_SMP12_Msk /*!< ADC channel 12 sampling time selection */
  3534. #define ADC_SMPR1_SMP12_0 (0x1UL << ADC_SMPR1_SMP12_Pos) /*!< 0x00000040 */
  3535. #define ADC_SMPR1_SMP12_1 (0x2UL << ADC_SMPR1_SMP12_Pos) /*!< 0x00000080 */
  3536. #define ADC_SMPR1_SMP12_2 (0x4UL << ADC_SMPR1_SMP12_Pos) /*!< 0x00000100 */
  3537. #define ADC_SMPR1_SMP13_Pos (9U)
  3538. #define ADC_SMPR1_SMP13_Msk (0x7UL << ADC_SMPR1_SMP13_Pos) /*!< 0x00000E00 */
  3539. #define ADC_SMPR1_SMP13 ADC_SMPR1_SMP13_Msk /*!< ADC channel 13 sampling time selection */
  3540. #define ADC_SMPR1_SMP13_0 (0x1UL << ADC_SMPR1_SMP13_Pos) /*!< 0x00000200 */
  3541. #define ADC_SMPR1_SMP13_1 (0x2UL << ADC_SMPR1_SMP13_Pos) /*!< 0x00000400 */
  3542. #define ADC_SMPR1_SMP13_2 (0x4UL << ADC_SMPR1_SMP13_Pos) /*!< 0x00000800 */
  3543. #define ADC_SMPR1_SMP14_Pos (12U)
  3544. #define ADC_SMPR1_SMP14_Msk (0x7UL << ADC_SMPR1_SMP14_Pos) /*!< 0x00007000 */
  3545. #define ADC_SMPR1_SMP14 ADC_SMPR1_SMP14_Msk /*!< ADC channel 14 sampling time selection */
  3546. #define ADC_SMPR1_SMP14_0 (0x1UL << ADC_SMPR1_SMP14_Pos) /*!< 0x00001000 */
  3547. #define ADC_SMPR1_SMP14_1 (0x2UL << ADC_SMPR1_SMP14_Pos) /*!< 0x00002000 */
  3548. #define ADC_SMPR1_SMP14_2 (0x4UL << ADC_SMPR1_SMP14_Pos) /*!< 0x00004000 */
  3549. #define ADC_SMPR1_SMP15_Pos (15U)
  3550. #define ADC_SMPR1_SMP15_Msk (0x7UL << ADC_SMPR1_SMP15_Pos) /*!< 0x00038000 */
  3551. #define ADC_SMPR1_SMP15 ADC_SMPR1_SMP15_Msk /*!< ADC channel 15 sampling time selection */
  3552. #define ADC_SMPR1_SMP15_0 (0x1UL << ADC_SMPR1_SMP15_Pos) /*!< 0x00008000 */
  3553. #define ADC_SMPR1_SMP15_1 (0x2UL << ADC_SMPR1_SMP15_Pos) /*!< 0x00010000 */
  3554. #define ADC_SMPR1_SMP15_2 (0x4UL << ADC_SMPR1_SMP15_Pos) /*!< 0x00020000 */
  3555. #define ADC_SMPR1_SMP16_Pos (18U)
  3556. #define ADC_SMPR1_SMP16_Msk (0x7UL << ADC_SMPR1_SMP16_Pos) /*!< 0x001C0000 */
  3557. #define ADC_SMPR1_SMP16 ADC_SMPR1_SMP16_Msk /*!< ADC channel 16 sampling time selection */
  3558. #define ADC_SMPR1_SMP16_0 (0x1UL << ADC_SMPR1_SMP16_Pos) /*!< 0x00040000 */
  3559. #define ADC_SMPR1_SMP16_1 (0x2UL << ADC_SMPR1_SMP16_Pos) /*!< 0x00080000 */
  3560. #define ADC_SMPR1_SMP16_2 (0x4UL << ADC_SMPR1_SMP16_Pos) /*!< 0x00100000 */
  3561. #define ADC_SMPR1_SMP17_Pos (21U)
  3562. #define ADC_SMPR1_SMP17_Msk (0x7UL << ADC_SMPR1_SMP17_Pos) /*!< 0x00E00000 */
  3563. #define ADC_SMPR1_SMP17 ADC_SMPR1_SMP17_Msk /*!< ADC channel 17 sampling time selection */
  3564. #define ADC_SMPR1_SMP17_0 (0x1UL << ADC_SMPR1_SMP17_Pos) /*!< 0x00200000 */
  3565. #define ADC_SMPR1_SMP17_1 (0x2UL << ADC_SMPR1_SMP17_Pos) /*!< 0x00400000 */
  3566. #define ADC_SMPR1_SMP17_2 (0x4UL << ADC_SMPR1_SMP17_Pos) /*!< 0x00800000 */
  3567. /****************** Bit definition for ADC_SMPR2 register *******************/
  3568. #define ADC_SMPR2_SMP0_Pos (0U)
  3569. #define ADC_SMPR2_SMP0_Msk (0x7UL << ADC_SMPR2_SMP0_Pos) /*!< 0x00000007 */
  3570. #define ADC_SMPR2_SMP0 ADC_SMPR2_SMP0_Msk /*!< ADC channel 0 sampling time selection */
  3571. #define ADC_SMPR2_SMP0_0 (0x1UL << ADC_SMPR2_SMP0_Pos) /*!< 0x00000001 */
  3572. #define ADC_SMPR2_SMP0_1 (0x2UL << ADC_SMPR2_SMP0_Pos) /*!< 0x00000002 */
  3573. #define ADC_SMPR2_SMP0_2 (0x4UL << ADC_SMPR2_SMP0_Pos) /*!< 0x00000004 */
  3574. #define ADC_SMPR2_SMP1_Pos (3U)
  3575. #define ADC_SMPR2_SMP1_Msk (0x7UL << ADC_SMPR2_SMP1_Pos) /*!< 0x00000038 */
  3576. #define ADC_SMPR2_SMP1 ADC_SMPR2_SMP1_Msk /*!< ADC channel 1 sampling time selection */
  3577. #define ADC_SMPR2_SMP1_0 (0x1UL << ADC_SMPR2_SMP1_Pos) /*!< 0x00000008 */
  3578. #define ADC_SMPR2_SMP1_1 (0x2UL << ADC_SMPR2_SMP1_Pos) /*!< 0x00000010 */
  3579. #define ADC_SMPR2_SMP1_2 (0x4UL << ADC_SMPR2_SMP1_Pos) /*!< 0x00000020 */
  3580. #define ADC_SMPR2_SMP2_Pos (6U)
  3581. #define ADC_SMPR2_SMP2_Msk (0x7UL << ADC_SMPR2_SMP2_Pos) /*!< 0x000001C0 */
  3582. #define ADC_SMPR2_SMP2 ADC_SMPR2_SMP2_Msk /*!< ADC channel 2 sampling time selection */
  3583. #define ADC_SMPR2_SMP2_0 (0x1UL << ADC_SMPR2_SMP2_Pos) /*!< 0x00000040 */
  3584. #define ADC_SMPR2_SMP2_1 (0x2UL << ADC_SMPR2_SMP2_Pos) /*!< 0x00000080 */
  3585. #define ADC_SMPR2_SMP2_2 (0x4UL << ADC_SMPR2_SMP2_Pos) /*!< 0x00000100 */
  3586. #define ADC_SMPR2_SMP3_Pos (9U)
  3587. #define ADC_SMPR2_SMP3_Msk (0x7UL << ADC_SMPR2_SMP3_Pos) /*!< 0x00000E00 */
  3588. #define ADC_SMPR2_SMP3 ADC_SMPR2_SMP3_Msk /*!< ADC channel 3 sampling time selection */
  3589. #define ADC_SMPR2_SMP3_0 (0x1UL << ADC_SMPR2_SMP3_Pos) /*!< 0x00000200 */
  3590. #define ADC_SMPR2_SMP3_1 (0x2UL << ADC_SMPR2_SMP3_Pos) /*!< 0x00000400 */
  3591. #define ADC_SMPR2_SMP3_2 (0x4UL << ADC_SMPR2_SMP3_Pos) /*!< 0x00000800 */
  3592. #define ADC_SMPR2_SMP4_Pos (12U)
  3593. #define ADC_SMPR2_SMP4_Msk (0x7UL << ADC_SMPR2_SMP4_Pos) /*!< 0x00007000 */
  3594. #define ADC_SMPR2_SMP4 ADC_SMPR2_SMP4_Msk /*!< ADC channel 4 sampling time selection */
  3595. #define ADC_SMPR2_SMP4_0 (0x1UL << ADC_SMPR2_SMP4_Pos) /*!< 0x00001000 */
  3596. #define ADC_SMPR2_SMP4_1 (0x2UL << ADC_SMPR2_SMP4_Pos) /*!< 0x00002000 */
  3597. #define ADC_SMPR2_SMP4_2 (0x4UL << ADC_SMPR2_SMP4_Pos) /*!< 0x00004000 */
  3598. #define ADC_SMPR2_SMP5_Pos (15U)
  3599. #define ADC_SMPR2_SMP5_Msk (0x7UL << ADC_SMPR2_SMP5_Pos) /*!< 0x00038000 */
  3600. #define ADC_SMPR2_SMP5 ADC_SMPR2_SMP5_Msk /*!< ADC channel 5 sampling time selection */
  3601. #define ADC_SMPR2_SMP5_0 (0x1UL << ADC_SMPR2_SMP5_Pos) /*!< 0x00008000 */
  3602. #define ADC_SMPR2_SMP5_1 (0x2UL << ADC_SMPR2_SMP5_Pos) /*!< 0x00010000 */
  3603. #define ADC_SMPR2_SMP5_2 (0x4UL << ADC_SMPR2_SMP5_Pos) /*!< 0x00020000 */
  3604. #define ADC_SMPR2_SMP6_Pos (18U)
  3605. #define ADC_SMPR2_SMP6_Msk (0x7UL << ADC_SMPR2_SMP6_Pos) /*!< 0x001C0000 */
  3606. #define ADC_SMPR2_SMP6 ADC_SMPR2_SMP6_Msk /*!< ADC channel 6 sampling time selection */
  3607. #define ADC_SMPR2_SMP6_0 (0x1UL << ADC_SMPR2_SMP6_Pos) /*!< 0x00040000 */
  3608. #define ADC_SMPR2_SMP6_1 (0x2UL << ADC_SMPR2_SMP6_Pos) /*!< 0x00080000 */
  3609. #define ADC_SMPR2_SMP6_2 (0x4UL << ADC_SMPR2_SMP6_Pos) /*!< 0x00100000 */
  3610. #define ADC_SMPR2_SMP7_Pos (21U)
  3611. #define ADC_SMPR2_SMP7_Msk (0x7UL << ADC_SMPR2_SMP7_Pos) /*!< 0x00E00000 */
  3612. #define ADC_SMPR2_SMP7 ADC_SMPR2_SMP7_Msk /*!< ADC channel 7 sampling time selection */
  3613. #define ADC_SMPR2_SMP7_0 (0x1UL << ADC_SMPR2_SMP7_Pos) /*!< 0x00200000 */
  3614. #define ADC_SMPR2_SMP7_1 (0x2UL << ADC_SMPR2_SMP7_Pos) /*!< 0x00400000 */
  3615. #define ADC_SMPR2_SMP7_2 (0x4UL << ADC_SMPR2_SMP7_Pos) /*!< 0x00800000 */
  3616. #define ADC_SMPR2_SMP8_Pos (24U)
  3617. #define ADC_SMPR2_SMP8_Msk (0x7UL << ADC_SMPR2_SMP8_Pos) /*!< 0x07000000 */
  3618. #define ADC_SMPR2_SMP8 ADC_SMPR2_SMP8_Msk /*!< ADC channel 8 sampling time selection */
  3619. #define ADC_SMPR2_SMP8_0 (0x1UL << ADC_SMPR2_SMP8_Pos) /*!< 0x01000000 */
  3620. #define ADC_SMPR2_SMP8_1 (0x2UL << ADC_SMPR2_SMP8_Pos) /*!< 0x02000000 */
  3621. #define ADC_SMPR2_SMP8_2 (0x4UL << ADC_SMPR2_SMP8_Pos) /*!< 0x04000000 */
  3622. #define ADC_SMPR2_SMP9_Pos (27U)
  3623. #define ADC_SMPR2_SMP9_Msk (0x7UL << ADC_SMPR2_SMP9_Pos) /*!< 0x38000000 */
  3624. #define ADC_SMPR2_SMP9 ADC_SMPR2_SMP9_Msk /*!< ADC channel 9 sampling time selection */
  3625. #define ADC_SMPR2_SMP9_0 (0x1UL << ADC_SMPR2_SMP9_Pos) /*!< 0x08000000 */
  3626. #define ADC_SMPR2_SMP9_1 (0x2UL << ADC_SMPR2_SMP9_Pos) /*!< 0x10000000 */
  3627. #define ADC_SMPR2_SMP9_2 (0x4UL << ADC_SMPR2_SMP9_Pos) /*!< 0x20000000 */
  3628. /****************** Bit definition for ADC_JOFR1 register *******************/
  3629. #define ADC_JOFR1_JOFFSET1_Pos (0U)
  3630. #define ADC_JOFR1_JOFFSET1_Msk (0xFFFUL << ADC_JOFR1_JOFFSET1_Pos) /*!< 0x00000FFF */
  3631. #define ADC_JOFR1_JOFFSET1 ADC_JOFR1_JOFFSET1_Msk /*!< ADC group injected sequencer rank 1 offset value */
  3632. /****************** Bit definition for ADC_JOFR2 register *******************/
  3633. #define ADC_JOFR2_JOFFSET2_Pos (0U)
  3634. #define ADC_JOFR2_JOFFSET2_Msk (0xFFFUL << ADC_JOFR2_JOFFSET2_Pos) /*!< 0x00000FFF */
  3635. #define ADC_JOFR2_JOFFSET2 ADC_JOFR2_JOFFSET2_Msk /*!< ADC group injected sequencer rank 2 offset value */
  3636. /****************** Bit definition for ADC_JOFR3 register *******************/
  3637. #define ADC_JOFR3_JOFFSET3_Pos (0U)
  3638. #define ADC_JOFR3_JOFFSET3_Msk (0xFFFUL << ADC_JOFR3_JOFFSET3_Pos) /*!< 0x00000FFF */
  3639. #define ADC_JOFR3_JOFFSET3 ADC_JOFR3_JOFFSET3_Msk /*!< ADC group injected sequencer rank 3 offset value */
  3640. /****************** Bit definition for ADC_JOFR4 register *******************/
  3641. #define ADC_JOFR4_JOFFSET4_Pos (0U)
  3642. #define ADC_JOFR4_JOFFSET4_Msk (0xFFFUL << ADC_JOFR4_JOFFSET4_Pos) /*!< 0x00000FFF */
  3643. #define ADC_JOFR4_JOFFSET4 ADC_JOFR4_JOFFSET4_Msk /*!< ADC group injected sequencer rank 4 offset value */
  3644. /******************* Bit definition for ADC_HTR register ********************/
  3645. #define ADC_HTR_HT_Pos (0U)
  3646. #define ADC_HTR_HT_Msk (0xFFFUL << ADC_HTR_HT_Pos) /*!< 0x00000FFF */
  3647. #define ADC_HTR_HT ADC_HTR_HT_Msk /*!< ADC analog watchdog 1 threshold high */
  3648. /******************* Bit definition for ADC_LTR register ********************/
  3649. #define ADC_LTR_LT_Pos (0U)
  3650. #define ADC_LTR_LT_Msk (0xFFFUL << ADC_LTR_LT_Pos) /*!< 0x00000FFF */
  3651. #define ADC_LTR_LT ADC_LTR_LT_Msk /*!< ADC analog watchdog 1 threshold low */
  3652. /******************* Bit definition for ADC_SQR1 register *******************/
  3653. #define ADC_SQR1_SQ13_Pos (0U)
  3654. #define ADC_SQR1_SQ13_Msk (0x1FUL << ADC_SQR1_SQ13_Pos) /*!< 0x0000001F */
  3655. #define ADC_SQR1_SQ13 ADC_SQR1_SQ13_Msk /*!< ADC group regular sequencer rank 13 */
  3656. #define ADC_SQR1_SQ13_0 (0x01UL << ADC_SQR1_SQ13_Pos) /*!< 0x00000001 */
  3657. #define ADC_SQR1_SQ13_1 (0x02UL << ADC_SQR1_SQ13_Pos) /*!< 0x00000002 */
  3658. #define ADC_SQR1_SQ13_2 (0x04UL << ADC_SQR1_SQ13_Pos) /*!< 0x00000004 */
  3659. #define ADC_SQR1_SQ13_3 (0x08UL << ADC_SQR1_SQ13_Pos) /*!< 0x00000008 */
  3660. #define ADC_SQR1_SQ13_4 (0x10UL << ADC_SQR1_SQ13_Pos) /*!< 0x00000010 */
  3661. #define ADC_SQR1_SQ14_Pos (5U)
  3662. #define ADC_SQR1_SQ14_Msk (0x1FUL << ADC_SQR1_SQ14_Pos) /*!< 0x000003E0 */
  3663. #define ADC_SQR1_SQ14 ADC_SQR1_SQ14_Msk /*!< ADC group regular sequencer rank 14 */
  3664. #define ADC_SQR1_SQ14_0 (0x01UL << ADC_SQR1_SQ14_Pos) /*!< 0x00000020 */
  3665. #define ADC_SQR1_SQ14_1 (0x02UL << ADC_SQR1_SQ14_Pos) /*!< 0x00000040 */
  3666. #define ADC_SQR1_SQ14_2 (0x04UL << ADC_SQR1_SQ14_Pos) /*!< 0x00000080 */
  3667. #define ADC_SQR1_SQ14_3 (0x08UL << ADC_SQR1_SQ14_Pos) /*!< 0x00000100 */
  3668. #define ADC_SQR1_SQ14_4 (0x10UL << ADC_SQR1_SQ14_Pos) /*!< 0x00000200 */
  3669. #define ADC_SQR1_SQ15_Pos (10U)
  3670. #define ADC_SQR1_SQ15_Msk (0x1FUL << ADC_SQR1_SQ15_Pos) /*!< 0x00007C00 */
  3671. #define ADC_SQR1_SQ15 ADC_SQR1_SQ15_Msk /*!< ADC group regular sequencer rank 15 */
  3672. #define ADC_SQR1_SQ15_0 (0x01UL << ADC_SQR1_SQ15_Pos) /*!< 0x00000400 */
  3673. #define ADC_SQR1_SQ15_1 (0x02UL << ADC_SQR1_SQ15_Pos) /*!< 0x00000800 */
  3674. #define ADC_SQR1_SQ15_2 (0x04UL << ADC_SQR1_SQ15_Pos) /*!< 0x00001000 */
  3675. #define ADC_SQR1_SQ15_3 (0x08UL << ADC_SQR1_SQ15_Pos) /*!< 0x00002000 */
  3676. #define ADC_SQR1_SQ15_4 (0x10UL << ADC_SQR1_SQ15_Pos) /*!< 0x00004000 */
  3677. #define ADC_SQR1_SQ16_Pos (15U)
  3678. #define ADC_SQR1_SQ16_Msk (0x1FUL << ADC_SQR1_SQ16_Pos) /*!< 0x000F8000 */
  3679. #define ADC_SQR1_SQ16 ADC_SQR1_SQ16_Msk /*!< ADC group regular sequencer rank 16 */
  3680. #define ADC_SQR1_SQ16_0 (0x01UL << ADC_SQR1_SQ16_Pos) /*!< 0x00008000 */
  3681. #define ADC_SQR1_SQ16_1 (0x02UL << ADC_SQR1_SQ16_Pos) /*!< 0x00010000 */
  3682. #define ADC_SQR1_SQ16_2 (0x04UL << ADC_SQR1_SQ16_Pos) /*!< 0x00020000 */
  3683. #define ADC_SQR1_SQ16_3 (0x08UL << ADC_SQR1_SQ16_Pos) /*!< 0x00040000 */
  3684. #define ADC_SQR1_SQ16_4 (0x10UL << ADC_SQR1_SQ16_Pos) /*!< 0x00080000 */
  3685. #define ADC_SQR1_L_Pos (20U)
  3686. #define ADC_SQR1_L_Msk (0xFUL << ADC_SQR1_L_Pos) /*!< 0x00F00000 */
  3687. #define ADC_SQR1_L ADC_SQR1_L_Msk /*!< ADC group regular sequencer scan length */
  3688. #define ADC_SQR1_L_0 (0x1UL << ADC_SQR1_L_Pos) /*!< 0x00100000 */
  3689. #define ADC_SQR1_L_1 (0x2UL << ADC_SQR1_L_Pos) /*!< 0x00200000 */
  3690. #define ADC_SQR1_L_2 (0x4UL << ADC_SQR1_L_Pos) /*!< 0x00400000 */
  3691. #define ADC_SQR1_L_3 (0x8UL << ADC_SQR1_L_Pos) /*!< 0x00800000 */
  3692. /******************* Bit definition for ADC_SQR2 register *******************/
  3693. #define ADC_SQR2_SQ7_Pos (0U)
  3694. #define ADC_SQR2_SQ7_Msk (0x1FUL << ADC_SQR2_SQ7_Pos) /*!< 0x0000001F */
  3695. #define ADC_SQR2_SQ7 ADC_SQR2_SQ7_Msk /*!< ADC group regular sequencer rank 7 */
  3696. #define ADC_SQR2_SQ7_0 (0x01UL << ADC_SQR2_SQ7_Pos) /*!< 0x00000001 */
  3697. #define ADC_SQR2_SQ7_1 (0x02UL << ADC_SQR2_SQ7_Pos) /*!< 0x00000002 */
  3698. #define ADC_SQR2_SQ7_2 (0x04UL << ADC_SQR2_SQ7_Pos) /*!< 0x00000004 */
  3699. #define ADC_SQR2_SQ7_3 (0x08UL << ADC_SQR2_SQ7_Pos) /*!< 0x00000008 */
  3700. #define ADC_SQR2_SQ7_4 (0x10UL << ADC_SQR2_SQ7_Pos) /*!< 0x00000010 */
  3701. #define ADC_SQR2_SQ8_Pos (5U)
  3702. #define ADC_SQR2_SQ8_Msk (0x1FUL << ADC_SQR2_SQ8_Pos) /*!< 0x000003E0 */
  3703. #define ADC_SQR2_SQ8 ADC_SQR2_SQ8_Msk /*!< ADC group regular sequencer rank 8 */
  3704. #define ADC_SQR2_SQ8_0 (0x01UL << ADC_SQR2_SQ8_Pos) /*!< 0x00000020 */
  3705. #define ADC_SQR2_SQ8_1 (0x02UL << ADC_SQR2_SQ8_Pos) /*!< 0x00000040 */
  3706. #define ADC_SQR2_SQ8_2 (0x04UL << ADC_SQR2_SQ8_Pos) /*!< 0x00000080 */
  3707. #define ADC_SQR2_SQ8_3 (0x08UL << ADC_SQR2_SQ8_Pos) /*!< 0x00000100 */
  3708. #define ADC_SQR2_SQ8_4 (0x10UL << ADC_SQR2_SQ8_Pos) /*!< 0x00000200 */
  3709. #define ADC_SQR2_SQ9_Pos (10U)
  3710. #define ADC_SQR2_SQ9_Msk (0x1FUL << ADC_SQR2_SQ9_Pos) /*!< 0x00007C00 */
  3711. #define ADC_SQR2_SQ9 ADC_SQR2_SQ9_Msk /*!< ADC group regular sequencer rank 9 */
  3712. #define ADC_SQR2_SQ9_0 (0x01UL << ADC_SQR2_SQ9_Pos) /*!< 0x00000400 */
  3713. #define ADC_SQR2_SQ9_1 (0x02UL << ADC_SQR2_SQ9_Pos) /*!< 0x00000800 */
  3714. #define ADC_SQR2_SQ9_2 (0x04UL << ADC_SQR2_SQ9_Pos) /*!< 0x00001000 */
  3715. #define ADC_SQR2_SQ9_3 (0x08UL << ADC_SQR2_SQ9_Pos) /*!< 0x00002000 */
  3716. #define ADC_SQR2_SQ9_4 (0x10UL << ADC_SQR2_SQ9_Pos) /*!< 0x00004000 */
  3717. #define ADC_SQR2_SQ10_Pos (15U)
  3718. #define ADC_SQR2_SQ10_Msk (0x1FUL << ADC_SQR2_SQ10_Pos) /*!< 0x000F8000 */
  3719. #define ADC_SQR2_SQ10 ADC_SQR2_SQ10_Msk /*!< ADC group regular sequencer rank 10 */
  3720. #define ADC_SQR2_SQ10_0 (0x01UL << ADC_SQR2_SQ10_Pos) /*!< 0x00008000 */
  3721. #define ADC_SQR2_SQ10_1 (0x02UL << ADC_SQR2_SQ10_Pos) /*!< 0x00010000 */
  3722. #define ADC_SQR2_SQ10_2 (0x04UL << ADC_SQR2_SQ10_Pos) /*!< 0x00020000 */
  3723. #define ADC_SQR2_SQ10_3 (0x08UL << ADC_SQR2_SQ10_Pos) /*!< 0x00040000 */
  3724. #define ADC_SQR2_SQ10_4 (0x10UL << ADC_SQR2_SQ10_Pos) /*!< 0x00080000 */
  3725. #define ADC_SQR2_SQ11_Pos (20U)
  3726. #define ADC_SQR2_SQ11_Msk (0x1FUL << ADC_SQR2_SQ11_Pos) /*!< 0x01F00000 */
  3727. #define ADC_SQR2_SQ11 ADC_SQR2_SQ11_Msk /*!< ADC group regular sequencer rank 1 */
  3728. #define ADC_SQR2_SQ11_0 (0x01UL << ADC_SQR2_SQ11_Pos) /*!< 0x00100000 */
  3729. #define ADC_SQR2_SQ11_1 (0x02UL << ADC_SQR2_SQ11_Pos) /*!< 0x00200000 */
  3730. #define ADC_SQR2_SQ11_2 (0x04UL << ADC_SQR2_SQ11_Pos) /*!< 0x00400000 */
  3731. #define ADC_SQR2_SQ11_3 (0x08UL << ADC_SQR2_SQ11_Pos) /*!< 0x00800000 */
  3732. #define ADC_SQR2_SQ11_4 (0x10UL << ADC_SQR2_SQ11_Pos) /*!< 0x01000000 */
  3733. #define ADC_SQR2_SQ12_Pos (25U)
  3734. #define ADC_SQR2_SQ12_Msk (0x1FUL << ADC_SQR2_SQ12_Pos) /*!< 0x3E000000 */
  3735. #define ADC_SQR2_SQ12 ADC_SQR2_SQ12_Msk /*!< ADC group regular sequencer rank 12 */
  3736. #define ADC_SQR2_SQ12_0 (0x01UL << ADC_SQR2_SQ12_Pos) /*!< 0x02000000 */
  3737. #define ADC_SQR2_SQ12_1 (0x02UL << ADC_SQR2_SQ12_Pos) /*!< 0x04000000 */
  3738. #define ADC_SQR2_SQ12_2 (0x04UL << ADC_SQR2_SQ12_Pos) /*!< 0x08000000 */
  3739. #define ADC_SQR2_SQ12_3 (0x08UL << ADC_SQR2_SQ12_Pos) /*!< 0x10000000 */
  3740. #define ADC_SQR2_SQ12_4 (0x10UL << ADC_SQR2_SQ12_Pos) /*!< 0x20000000 */
  3741. /******************* Bit definition for ADC_SQR3 register *******************/
  3742. #define ADC_SQR3_SQ1_Pos (0U)
  3743. #define ADC_SQR3_SQ1_Msk (0x1FUL << ADC_SQR3_SQ1_Pos) /*!< 0x0000001F */
  3744. #define ADC_SQR3_SQ1 ADC_SQR3_SQ1_Msk /*!< ADC group regular sequencer rank 1 */
  3745. #define ADC_SQR3_SQ1_0 (0x01UL << ADC_SQR3_SQ1_Pos) /*!< 0x00000001 */
  3746. #define ADC_SQR3_SQ1_1 (0x02UL << ADC_SQR3_SQ1_Pos) /*!< 0x00000002 */
  3747. #define ADC_SQR3_SQ1_2 (0x04UL << ADC_SQR3_SQ1_Pos) /*!< 0x00000004 */
  3748. #define ADC_SQR3_SQ1_3 (0x08UL << ADC_SQR3_SQ1_Pos) /*!< 0x00000008 */
  3749. #define ADC_SQR3_SQ1_4 (0x10UL << ADC_SQR3_SQ1_Pos) /*!< 0x00000010 */
  3750. #define ADC_SQR3_SQ2_Pos (5U)
  3751. #define ADC_SQR3_SQ2_Msk (0x1FUL << ADC_SQR3_SQ2_Pos) /*!< 0x000003E0 */
  3752. #define ADC_SQR3_SQ2 ADC_SQR3_SQ2_Msk /*!< ADC group regular sequencer rank 2 */
  3753. #define ADC_SQR3_SQ2_0 (0x01UL << ADC_SQR3_SQ2_Pos) /*!< 0x00000020 */
  3754. #define ADC_SQR3_SQ2_1 (0x02UL << ADC_SQR3_SQ2_Pos) /*!< 0x00000040 */
  3755. #define ADC_SQR3_SQ2_2 (0x04UL << ADC_SQR3_SQ2_Pos) /*!< 0x00000080 */
  3756. #define ADC_SQR3_SQ2_3 (0x08UL << ADC_SQR3_SQ2_Pos) /*!< 0x00000100 */
  3757. #define ADC_SQR3_SQ2_4 (0x10UL << ADC_SQR3_SQ2_Pos) /*!< 0x00000200 */
  3758. #define ADC_SQR3_SQ3_Pos (10U)
  3759. #define ADC_SQR3_SQ3_Msk (0x1FUL << ADC_SQR3_SQ3_Pos) /*!< 0x00007C00 */
  3760. #define ADC_SQR3_SQ3 ADC_SQR3_SQ3_Msk /*!< ADC group regular sequencer rank 3 */
  3761. #define ADC_SQR3_SQ3_0 (0x01UL << ADC_SQR3_SQ3_Pos) /*!< 0x00000400 */
  3762. #define ADC_SQR3_SQ3_1 (0x02UL << ADC_SQR3_SQ3_Pos) /*!< 0x00000800 */
  3763. #define ADC_SQR3_SQ3_2 (0x04UL << ADC_SQR3_SQ3_Pos) /*!< 0x00001000 */
  3764. #define ADC_SQR3_SQ3_3 (0x08UL << ADC_SQR3_SQ3_Pos) /*!< 0x00002000 */
  3765. #define ADC_SQR3_SQ3_4 (0x10UL << ADC_SQR3_SQ3_Pos) /*!< 0x00004000 */
  3766. #define ADC_SQR3_SQ4_Pos (15U)
  3767. #define ADC_SQR3_SQ4_Msk (0x1FUL << ADC_SQR3_SQ4_Pos) /*!< 0x000F8000 */
  3768. #define ADC_SQR3_SQ4 ADC_SQR3_SQ4_Msk /*!< ADC group regular sequencer rank 4 */
  3769. #define ADC_SQR3_SQ4_0 (0x01UL << ADC_SQR3_SQ4_Pos) /*!< 0x00008000 */
  3770. #define ADC_SQR3_SQ4_1 (0x02UL << ADC_SQR3_SQ4_Pos) /*!< 0x00010000 */
  3771. #define ADC_SQR3_SQ4_2 (0x04UL << ADC_SQR3_SQ4_Pos) /*!< 0x00020000 */
  3772. #define ADC_SQR3_SQ4_3 (0x08UL << ADC_SQR3_SQ4_Pos) /*!< 0x00040000 */
  3773. #define ADC_SQR3_SQ4_4 (0x10UL << ADC_SQR3_SQ4_Pos) /*!< 0x00080000 */
  3774. #define ADC_SQR3_SQ5_Pos (20U)
  3775. #define ADC_SQR3_SQ5_Msk (0x1FUL << ADC_SQR3_SQ5_Pos) /*!< 0x01F00000 */
  3776. #define ADC_SQR3_SQ5 ADC_SQR3_SQ5_Msk /*!< ADC group regular sequencer rank 5 */
  3777. #define ADC_SQR3_SQ5_0 (0x01UL << ADC_SQR3_SQ5_Pos) /*!< 0x00100000 */
  3778. #define ADC_SQR3_SQ5_1 (0x02UL << ADC_SQR3_SQ5_Pos) /*!< 0x00200000 */
  3779. #define ADC_SQR3_SQ5_2 (0x04UL << ADC_SQR3_SQ5_Pos) /*!< 0x00400000 */
  3780. #define ADC_SQR3_SQ5_3 (0x08UL << ADC_SQR3_SQ5_Pos) /*!< 0x00800000 */
  3781. #define ADC_SQR3_SQ5_4 (0x10UL << ADC_SQR3_SQ5_Pos) /*!< 0x01000000 */
  3782. #define ADC_SQR3_SQ6_Pos (25U)
  3783. #define ADC_SQR3_SQ6_Msk (0x1FUL << ADC_SQR3_SQ6_Pos) /*!< 0x3E000000 */
  3784. #define ADC_SQR3_SQ6 ADC_SQR3_SQ6_Msk /*!< ADC group regular sequencer rank 6 */
  3785. #define ADC_SQR3_SQ6_0 (0x01UL << ADC_SQR3_SQ6_Pos) /*!< 0x02000000 */
  3786. #define ADC_SQR3_SQ6_1 (0x02UL << ADC_SQR3_SQ6_Pos) /*!< 0x04000000 */
  3787. #define ADC_SQR3_SQ6_2 (0x04UL << ADC_SQR3_SQ6_Pos) /*!< 0x08000000 */
  3788. #define ADC_SQR3_SQ6_3 (0x08UL << ADC_SQR3_SQ6_Pos) /*!< 0x10000000 */
  3789. #define ADC_SQR3_SQ6_4 (0x10UL << ADC_SQR3_SQ6_Pos) /*!< 0x20000000 */
  3790. /******************* Bit definition for ADC_JSQR register *******************/
  3791. #define ADC_JSQR_JSQ1_Pos (0U)
  3792. #define ADC_JSQR_JSQ1_Msk (0x1FUL << ADC_JSQR_JSQ1_Pos) /*!< 0x0000001F */
  3793. #define ADC_JSQR_JSQ1 ADC_JSQR_JSQ1_Msk /*!< ADC group injected sequencer rank 1 */
  3794. #define ADC_JSQR_JSQ1_0 (0x01UL << ADC_JSQR_JSQ1_Pos) /*!< 0x00000001 */
  3795. #define ADC_JSQR_JSQ1_1 (0x02UL << ADC_JSQR_JSQ1_Pos) /*!< 0x00000002 */
  3796. #define ADC_JSQR_JSQ1_2 (0x04UL << ADC_JSQR_JSQ1_Pos) /*!< 0x00000004 */
  3797. #define ADC_JSQR_JSQ1_3 (0x08UL << ADC_JSQR_JSQ1_Pos) /*!< 0x00000008 */
  3798. #define ADC_JSQR_JSQ1_4 (0x10UL << ADC_JSQR_JSQ1_Pos) /*!< 0x00000010 */
  3799. #define ADC_JSQR_JSQ2_Pos (5U)
  3800. #define ADC_JSQR_JSQ2_Msk (0x1FUL << ADC_JSQR_JSQ2_Pos) /*!< 0x000003E0 */
  3801. #define ADC_JSQR_JSQ2 ADC_JSQR_JSQ2_Msk /*!< ADC group injected sequencer rank 2 */
  3802. #define ADC_JSQR_JSQ2_0 (0x01UL << ADC_JSQR_JSQ2_Pos) /*!< 0x00000020 */
  3803. #define ADC_JSQR_JSQ2_1 (0x02UL << ADC_JSQR_JSQ2_Pos) /*!< 0x00000040 */
  3804. #define ADC_JSQR_JSQ2_2 (0x04UL << ADC_JSQR_JSQ2_Pos) /*!< 0x00000080 */
  3805. #define ADC_JSQR_JSQ2_3 (0x08UL << ADC_JSQR_JSQ2_Pos) /*!< 0x00000100 */
  3806. #define ADC_JSQR_JSQ2_4 (0x10UL << ADC_JSQR_JSQ2_Pos) /*!< 0x00000200 */
  3807. #define ADC_JSQR_JSQ3_Pos (10U)
  3808. #define ADC_JSQR_JSQ3_Msk (0x1FUL << ADC_JSQR_JSQ3_Pos) /*!< 0x00007C00 */
  3809. #define ADC_JSQR_JSQ3 ADC_JSQR_JSQ3_Msk /*!< ADC group injected sequencer rank 3 */
  3810. #define ADC_JSQR_JSQ3_0 (0x01UL << ADC_JSQR_JSQ3_Pos) /*!< 0x00000400 */
  3811. #define ADC_JSQR_JSQ3_1 (0x02UL << ADC_JSQR_JSQ3_Pos) /*!< 0x00000800 */
  3812. #define ADC_JSQR_JSQ3_2 (0x04UL << ADC_JSQR_JSQ3_Pos) /*!< 0x00001000 */
  3813. #define ADC_JSQR_JSQ3_3 (0x08UL << ADC_JSQR_JSQ3_Pos) /*!< 0x00002000 */
  3814. #define ADC_JSQR_JSQ3_4 (0x10UL << ADC_JSQR_JSQ3_Pos) /*!< 0x00004000 */
  3815. #define ADC_JSQR_JSQ4_Pos (15U)
  3816. #define ADC_JSQR_JSQ4_Msk (0x1FUL << ADC_JSQR_JSQ4_Pos) /*!< 0x000F8000 */
  3817. #define ADC_JSQR_JSQ4 ADC_JSQR_JSQ4_Msk /*!< ADC group injected sequencer rank 4 */
  3818. #define ADC_JSQR_JSQ4_0 (0x01UL << ADC_JSQR_JSQ4_Pos) /*!< 0x00008000 */
  3819. #define ADC_JSQR_JSQ4_1 (0x02UL << ADC_JSQR_JSQ4_Pos) /*!< 0x00010000 */
  3820. #define ADC_JSQR_JSQ4_2 (0x04UL << ADC_JSQR_JSQ4_Pos) /*!< 0x00020000 */
  3821. #define ADC_JSQR_JSQ4_3 (0x08UL << ADC_JSQR_JSQ4_Pos) /*!< 0x00040000 */
  3822. #define ADC_JSQR_JSQ4_4 (0x10UL << ADC_JSQR_JSQ4_Pos) /*!< 0x00080000 */
  3823. #define ADC_JSQR_JL_Pos (20U)
  3824. #define ADC_JSQR_JL_Msk (0x3UL << ADC_JSQR_JL_Pos) /*!< 0x00300000 */
  3825. #define ADC_JSQR_JL ADC_JSQR_JL_Msk /*!< ADC group injected sequencer scan length */
  3826. #define ADC_JSQR_JL_0 (0x1UL << ADC_JSQR_JL_Pos) /*!< 0x00100000 */
  3827. #define ADC_JSQR_JL_1 (0x2UL << ADC_JSQR_JL_Pos) /*!< 0x00200000 */
  3828. /******************* Bit definition for ADC_JDR1 register *******************/
  3829. #define ADC_JDR1_JDATA_Pos (0U)
  3830. #define ADC_JDR1_JDATA_Msk (0xFFFFUL << ADC_JDR1_JDATA_Pos) /*!< 0x0000FFFF */
  3831. #define ADC_JDR1_JDATA ADC_JDR1_JDATA_Msk /*!< ADC group injected sequencer rank 1 conversion data */
  3832. /******************* Bit definition for ADC_JDR2 register *******************/
  3833. #define ADC_JDR2_JDATA_Pos (0U)
  3834. #define ADC_JDR2_JDATA_Msk (0xFFFFUL << ADC_JDR2_JDATA_Pos) /*!< 0x0000FFFF */
  3835. #define ADC_JDR2_JDATA ADC_JDR2_JDATA_Msk /*!< ADC group injected sequencer rank 2 conversion data */
  3836. /******************* Bit definition for ADC_JDR3 register *******************/
  3837. #define ADC_JDR3_JDATA_Pos (0U)
  3838. #define ADC_JDR3_JDATA_Msk (0xFFFFUL << ADC_JDR3_JDATA_Pos) /*!< 0x0000FFFF */
  3839. #define ADC_JDR3_JDATA ADC_JDR3_JDATA_Msk /*!< ADC group injected sequencer rank 3 conversion data */
  3840. /******************* Bit definition for ADC_JDR4 register *******************/
  3841. #define ADC_JDR4_JDATA_Pos (0U)
  3842. #define ADC_JDR4_JDATA_Msk (0xFFFFUL << ADC_JDR4_JDATA_Pos) /*!< 0x0000FFFF */
  3843. #define ADC_JDR4_JDATA ADC_JDR4_JDATA_Msk /*!< ADC group injected sequencer rank 4 conversion data */
  3844. /******************** Bit definition for ADC_DR register ********************/
  3845. #define ADC_DR_DATA_Pos (0U)
  3846. #define ADC_DR_DATA_Msk (0xFFFFUL << ADC_DR_DATA_Pos) /*!< 0x0000FFFF */
  3847. #define ADC_DR_DATA ADC_DR_DATA_Msk /*!< ADC group regular conversion data */
  3848. #define ADC_DR_ADC2DATA_Pos (16U)
  3849. #define ADC_DR_ADC2DATA_Msk (0xFFFFUL << ADC_DR_ADC2DATA_Pos) /*!< 0xFFFF0000 */
  3850. #define ADC_DR_ADC2DATA ADC_DR_ADC2DATA_Msk /*!< ADC group regular conversion data for ADC slave, in multimode */
  3851. /******************************************************************************/
  3852. /* */
  3853. /* Digital to Analog Converter */
  3854. /* */
  3855. /******************************************************************************/
  3856. /******************** Bit definition for DAC_CR register ********************/
  3857. #define DAC_CR_EN1_Pos (0U)
  3858. #define DAC_CR_EN1_Msk (0x1UL << DAC_CR_EN1_Pos) /*!< 0x00000001 */
  3859. #define DAC_CR_EN1 DAC_CR_EN1_Msk /*!< DAC channel1 enable */
  3860. #define DAC_CR_BOFF1_Pos (1U)
  3861. #define DAC_CR_BOFF1_Msk (0x1UL << DAC_CR_BOFF1_Pos) /*!< 0x00000002 */
  3862. #define DAC_CR_BOFF1 DAC_CR_BOFF1_Msk /*!< DAC channel1 output buffer disable */
  3863. #define DAC_CR_TEN1_Pos (2U)
  3864. #define DAC_CR_TEN1_Msk (0x1UL << DAC_CR_TEN1_Pos) /*!< 0x00000004 */
  3865. #define DAC_CR_TEN1 DAC_CR_TEN1_Msk /*!< DAC channel1 Trigger enable */
  3866. #define DAC_CR_TSEL1_Pos (3U)
  3867. #define DAC_CR_TSEL1_Msk (0x7UL << DAC_CR_TSEL1_Pos) /*!< 0x00000038 */
  3868. #define DAC_CR_TSEL1 DAC_CR_TSEL1_Msk /*!< TSEL1[2:0] (DAC channel1 Trigger selection) */
  3869. #define DAC_CR_TSEL1_0 (0x1UL << DAC_CR_TSEL1_Pos) /*!< 0x00000008 */
  3870. #define DAC_CR_TSEL1_1 (0x2UL << DAC_CR_TSEL1_Pos) /*!< 0x00000010 */
  3871. #define DAC_CR_TSEL1_2 (0x4UL << DAC_CR_TSEL1_Pos) /*!< 0x00000020 */
  3872. #define DAC_CR_WAVE1_Pos (6U)
  3873. #define DAC_CR_WAVE1_Msk (0x3UL << DAC_CR_WAVE1_Pos) /*!< 0x000000C0 */
  3874. #define DAC_CR_WAVE1 DAC_CR_WAVE1_Msk /*!< WAVE1[1:0] (DAC channel1 noise/triangle wave generation enable) */
  3875. #define DAC_CR_WAVE1_0 (0x1UL << DAC_CR_WAVE1_Pos) /*!< 0x00000040 */
  3876. #define DAC_CR_WAVE1_1 (0x2UL << DAC_CR_WAVE1_Pos) /*!< 0x00000080 */
  3877. #define DAC_CR_MAMP1_Pos (8U)
  3878. #define DAC_CR_MAMP1_Msk (0xFUL << DAC_CR_MAMP1_Pos) /*!< 0x00000F00 */
  3879. #define DAC_CR_MAMP1 DAC_CR_MAMP1_Msk /*!< MAMP1[3:0] (DAC channel1 Mask/Amplitude selector) */
  3880. #define DAC_CR_MAMP1_0 (0x1UL << DAC_CR_MAMP1_Pos) /*!< 0x00000100 */
  3881. #define DAC_CR_MAMP1_1 (0x2UL << DAC_CR_MAMP1_Pos) /*!< 0x00000200 */
  3882. #define DAC_CR_MAMP1_2 (0x4UL << DAC_CR_MAMP1_Pos) /*!< 0x00000400 */
  3883. #define DAC_CR_MAMP1_3 (0x8UL << DAC_CR_MAMP1_Pos) /*!< 0x00000800 */
  3884. #define DAC_CR_DMAEN1_Pos (12U)
  3885. #define DAC_CR_DMAEN1_Msk (0x1UL << DAC_CR_DMAEN1_Pos) /*!< 0x00001000 */
  3886. #define DAC_CR_DMAEN1 DAC_CR_DMAEN1_Msk /*!< DAC channel1 DMA enable */
  3887. #define DAC_CR_EN2_Pos (16U)
  3888. #define DAC_CR_EN2_Msk (0x1UL << DAC_CR_EN2_Pos) /*!< 0x00010000 */
  3889. #define DAC_CR_EN2 DAC_CR_EN2_Msk /*!< DAC channel2 enable */
  3890. #define DAC_CR_BOFF2_Pos (17U)
  3891. #define DAC_CR_BOFF2_Msk (0x1UL << DAC_CR_BOFF2_Pos) /*!< 0x00020000 */
  3892. #define DAC_CR_BOFF2 DAC_CR_BOFF2_Msk /*!< DAC channel2 output buffer disable */
  3893. #define DAC_CR_TEN2_Pos (18U)
  3894. #define DAC_CR_TEN2_Msk (0x1UL << DAC_CR_TEN2_Pos) /*!< 0x00040000 */
  3895. #define DAC_CR_TEN2 DAC_CR_TEN2_Msk /*!< DAC channel2 Trigger enable */
  3896. #define DAC_CR_TSEL2_Pos (19U)
  3897. #define DAC_CR_TSEL2_Msk (0x7UL << DAC_CR_TSEL2_Pos) /*!< 0x00380000 */
  3898. #define DAC_CR_TSEL2 DAC_CR_TSEL2_Msk /*!< TSEL2[2:0] (DAC channel2 Trigger selection) */
  3899. #define DAC_CR_TSEL2_0 (0x1UL << DAC_CR_TSEL2_Pos) /*!< 0x00080000 */
  3900. #define DAC_CR_TSEL2_1 (0x2UL << DAC_CR_TSEL2_Pos) /*!< 0x00100000 */
  3901. #define DAC_CR_TSEL2_2 (0x4UL << DAC_CR_TSEL2_Pos) /*!< 0x00200000 */
  3902. #define DAC_CR_WAVE2_Pos (22U)
  3903. #define DAC_CR_WAVE2_Msk (0x3UL << DAC_CR_WAVE2_Pos) /*!< 0x00C00000 */
  3904. #define DAC_CR_WAVE2 DAC_CR_WAVE2_Msk /*!< WAVE2[1:0] (DAC channel2 noise/triangle wave generation enable) */
  3905. #define DAC_CR_WAVE2_0 (0x1UL << DAC_CR_WAVE2_Pos) /*!< 0x00400000 */
  3906. #define DAC_CR_WAVE2_1 (0x2UL << DAC_CR_WAVE2_Pos) /*!< 0x00800000 */
  3907. #define DAC_CR_MAMP2_Pos (24U)
  3908. #define DAC_CR_MAMP2_Msk (0xFUL << DAC_CR_MAMP2_Pos) /*!< 0x0F000000 */
  3909. #define DAC_CR_MAMP2 DAC_CR_MAMP2_Msk /*!< MAMP2[3:0] (DAC channel2 Mask/Amplitude selector) */
  3910. #define DAC_CR_MAMP2_0 (0x1UL << DAC_CR_MAMP2_Pos) /*!< 0x01000000 */
  3911. #define DAC_CR_MAMP2_1 (0x2UL << DAC_CR_MAMP2_Pos) /*!< 0x02000000 */
  3912. #define DAC_CR_MAMP2_2 (0x4UL << DAC_CR_MAMP2_Pos) /*!< 0x04000000 */
  3913. #define DAC_CR_MAMP2_3 (0x8UL << DAC_CR_MAMP2_Pos) /*!< 0x08000000 */
  3914. #define DAC_CR_DMAEN2_Pos (28U)
  3915. #define DAC_CR_DMAEN2_Msk (0x1UL << DAC_CR_DMAEN2_Pos) /*!< 0x10000000 */
  3916. #define DAC_CR_DMAEN2 DAC_CR_DMAEN2_Msk /*!< DAC channel2 DMA enabled */
  3917. /***************** Bit definition for DAC_SWTRIGR register ******************/
  3918. #define DAC_SWTRIGR_SWTRIG1_Pos (0U)
  3919. #define DAC_SWTRIGR_SWTRIG1_Msk (0x1UL << DAC_SWTRIGR_SWTRIG1_Pos) /*!< 0x00000001 */
  3920. #define DAC_SWTRIGR_SWTRIG1 DAC_SWTRIGR_SWTRIG1_Msk /*!< DAC channel1 software trigger */
  3921. #define DAC_SWTRIGR_SWTRIG2_Pos (1U)
  3922. #define DAC_SWTRIGR_SWTRIG2_Msk (0x1UL << DAC_SWTRIGR_SWTRIG2_Pos) /*!< 0x00000002 */
  3923. #define DAC_SWTRIGR_SWTRIG2 DAC_SWTRIGR_SWTRIG2_Msk /*!< DAC channel2 software trigger */
  3924. /***************** Bit definition for DAC_DHR12R1 register ******************/
  3925. #define DAC_DHR12R1_DACC1DHR_Pos (0U)
  3926. #define DAC_DHR12R1_DACC1DHR_Msk (0xFFFUL << DAC_DHR12R1_DACC1DHR_Pos) /*!< 0x00000FFF */
  3927. #define DAC_DHR12R1_DACC1DHR DAC_DHR12R1_DACC1DHR_Msk /*!< DAC channel1 12-bit Right aligned data */
  3928. /***************** Bit definition for DAC_DHR12L1 register ******************/
  3929. #define DAC_DHR12L1_DACC1DHR_Pos (4U)
  3930. #define DAC_DHR12L1_DACC1DHR_Msk (0xFFFUL << DAC_DHR12L1_DACC1DHR_Pos) /*!< 0x0000FFF0 */
  3931. #define DAC_DHR12L1_DACC1DHR DAC_DHR12L1_DACC1DHR_Msk /*!< DAC channel1 12-bit Left aligned data */
  3932. /****************** Bit definition for DAC_DHR8R1 register ******************/
  3933. #define DAC_DHR8R1_DACC1DHR_Pos (0U)
  3934. #define DAC_DHR8R1_DACC1DHR_Msk (0xFFUL << DAC_DHR8R1_DACC1DHR_Pos) /*!< 0x000000FF */
  3935. #define DAC_DHR8R1_DACC1DHR DAC_DHR8R1_DACC1DHR_Msk /*!< DAC channel1 8-bit Right aligned data */
  3936. /***************** Bit definition for DAC_DHR12R2 register ******************/
  3937. #define DAC_DHR12R2_DACC2DHR_Pos (0U)
  3938. #define DAC_DHR12R2_DACC2DHR_Msk (0xFFFUL << DAC_DHR12R2_DACC2DHR_Pos) /*!< 0x00000FFF */
  3939. #define DAC_DHR12R2_DACC2DHR DAC_DHR12R2_DACC2DHR_Msk /*!< DAC channel2 12-bit Right aligned data */
  3940. /***************** Bit definition for DAC_DHR12L2 register ******************/
  3941. #define DAC_DHR12L2_DACC2DHR_Pos (4U)
  3942. #define DAC_DHR12L2_DACC2DHR_Msk (0xFFFUL << DAC_DHR12L2_DACC2DHR_Pos) /*!< 0x0000FFF0 */
  3943. #define DAC_DHR12L2_DACC2DHR DAC_DHR12L2_DACC2DHR_Msk /*!< DAC channel2 12-bit Left aligned data */
  3944. /****************** Bit definition for DAC_DHR8R2 register ******************/
  3945. #define DAC_DHR8R2_DACC2DHR_Pos (0U)
  3946. #define DAC_DHR8R2_DACC2DHR_Msk (0xFFUL << DAC_DHR8R2_DACC2DHR_Pos) /*!< 0x000000FF */
  3947. #define DAC_DHR8R2_DACC2DHR DAC_DHR8R2_DACC2DHR_Msk /*!< DAC channel2 8-bit Right aligned data */
  3948. /***************** Bit definition for DAC_DHR12RD register ******************/
  3949. #define DAC_DHR12RD_DACC1DHR_Pos (0U)
  3950. #define DAC_DHR12RD_DACC1DHR_Msk (0xFFFUL << DAC_DHR12RD_DACC1DHR_Pos) /*!< 0x00000FFF */
  3951. #define DAC_DHR12RD_DACC1DHR DAC_DHR12RD_DACC1DHR_Msk /*!< DAC channel1 12-bit Right aligned data */
  3952. #define DAC_DHR12RD_DACC2DHR_Pos (16U)
  3953. #define DAC_DHR12RD_DACC2DHR_Msk (0xFFFUL << DAC_DHR12RD_DACC2DHR_Pos) /*!< 0x0FFF0000 */
  3954. #define DAC_DHR12RD_DACC2DHR DAC_DHR12RD_DACC2DHR_Msk /*!< DAC channel2 12-bit Right aligned data */
  3955. /***************** Bit definition for DAC_DHR12LD register ******************/
  3956. #define DAC_DHR12LD_DACC1DHR_Pos (4U)
  3957. #define DAC_DHR12LD_DACC1DHR_Msk (0xFFFUL << DAC_DHR12LD_DACC1DHR_Pos) /*!< 0x0000FFF0 */
  3958. #define DAC_DHR12LD_DACC1DHR DAC_DHR12LD_DACC1DHR_Msk /*!< DAC channel1 12-bit Left aligned data */
  3959. #define DAC_DHR12LD_DACC2DHR_Pos (20U)
  3960. #define DAC_DHR12LD_DACC2DHR_Msk (0xFFFUL << DAC_DHR12LD_DACC2DHR_Pos) /*!< 0xFFF00000 */
  3961. #define DAC_DHR12LD_DACC2DHR DAC_DHR12LD_DACC2DHR_Msk /*!< DAC channel2 12-bit Left aligned data */
  3962. /****************** Bit definition for DAC_DHR8RD register ******************/
  3963. #define DAC_DHR8RD_DACC1DHR_Pos (0U)
  3964. #define DAC_DHR8RD_DACC1DHR_Msk (0xFFUL << DAC_DHR8RD_DACC1DHR_Pos) /*!< 0x000000FF */
  3965. #define DAC_DHR8RD_DACC1DHR DAC_DHR8RD_DACC1DHR_Msk /*!< DAC channel1 8-bit Right aligned data */
  3966. #define DAC_DHR8RD_DACC2DHR_Pos (8U)
  3967. #define DAC_DHR8RD_DACC2DHR_Msk (0xFFUL << DAC_DHR8RD_DACC2DHR_Pos) /*!< 0x0000FF00 */
  3968. #define DAC_DHR8RD_DACC2DHR DAC_DHR8RD_DACC2DHR_Msk /*!< DAC channel2 8-bit Right aligned data */
  3969. /******************* Bit definition for DAC_DOR1 register *******************/
  3970. #define DAC_DOR1_DACC1DOR_Pos (0U)
  3971. #define DAC_DOR1_DACC1DOR_Msk (0xFFFUL << DAC_DOR1_DACC1DOR_Pos) /*!< 0x00000FFF */
  3972. #define DAC_DOR1_DACC1DOR DAC_DOR1_DACC1DOR_Msk /*!< DAC channel1 data output */
  3973. /******************* Bit definition for DAC_DOR2 register *******************/
  3974. #define DAC_DOR2_DACC2DOR_Pos (0U)
  3975. #define DAC_DOR2_DACC2DOR_Msk (0xFFFUL << DAC_DOR2_DACC2DOR_Pos) /*!< 0x00000FFF */
  3976. #define DAC_DOR2_DACC2DOR DAC_DOR2_DACC2DOR_Msk /*!< DAC channel2 data output */
  3977. /*****************************************************************************/
  3978. /* */
  3979. /* Timers (TIM) */
  3980. /* */
  3981. /*****************************************************************************/
  3982. /******************* Bit definition for TIM_CR1 register *******************/
  3983. #define TIM_CR1_CEN_Pos (0U)
  3984. #define TIM_CR1_CEN_Msk (0x1UL << TIM_CR1_CEN_Pos) /*!< 0x00000001 */
  3985. #define TIM_CR1_CEN TIM_CR1_CEN_Msk /*!<Counter enable */
  3986. #define TIM_CR1_UDIS_Pos (1U)
  3987. #define TIM_CR1_UDIS_Msk (0x1UL << TIM_CR1_UDIS_Pos) /*!< 0x00000002 */
  3988. #define TIM_CR1_UDIS TIM_CR1_UDIS_Msk /*!<Update disable */
  3989. #define TIM_CR1_URS_Pos (2U)
  3990. #define TIM_CR1_URS_Msk (0x1UL << TIM_CR1_URS_Pos) /*!< 0x00000004 */
  3991. #define TIM_CR1_URS TIM_CR1_URS_Msk /*!<Update request source */
  3992. #define TIM_CR1_OPM_Pos (3U)
  3993. #define TIM_CR1_OPM_Msk (0x1UL << TIM_CR1_OPM_Pos) /*!< 0x00000008 */
  3994. #define TIM_CR1_OPM TIM_CR1_OPM_Msk /*!<One pulse mode */
  3995. #define TIM_CR1_DIR_Pos (4U)
  3996. #define TIM_CR1_DIR_Msk (0x1UL << TIM_CR1_DIR_Pos) /*!< 0x00000010 */
  3997. #define TIM_CR1_DIR TIM_CR1_DIR_Msk /*!<Direction */
  3998. #define TIM_CR1_CMS_Pos (5U)
  3999. #define TIM_CR1_CMS_Msk (0x3UL << TIM_CR1_CMS_Pos) /*!< 0x00000060 */
  4000. #define TIM_CR1_CMS TIM_CR1_CMS_Msk /*!<CMS[1:0] bits (Center-aligned mode selection) */
  4001. #define TIM_CR1_CMS_0 (0x1UL << TIM_CR1_CMS_Pos) /*!< 0x00000020 */
  4002. #define TIM_CR1_CMS_1 (0x2UL << TIM_CR1_CMS_Pos) /*!< 0x00000040 */
  4003. #define TIM_CR1_ARPE_Pos (7U)
  4004. #define TIM_CR1_ARPE_Msk (0x1UL << TIM_CR1_ARPE_Pos) /*!< 0x00000080 */
  4005. #define TIM_CR1_ARPE TIM_CR1_ARPE_Msk /*!<Auto-reload preload enable */
  4006. #define TIM_CR1_CKD_Pos (8U)
  4007. #define TIM_CR1_CKD_Msk (0x3UL << TIM_CR1_CKD_Pos) /*!< 0x00000300 */
  4008. #define TIM_CR1_CKD TIM_CR1_CKD_Msk /*!<CKD[1:0] bits (clock division) */
  4009. #define TIM_CR1_CKD_0 (0x1UL << TIM_CR1_CKD_Pos) /*!< 0x00000100 */
  4010. #define TIM_CR1_CKD_1 (0x2UL << TIM_CR1_CKD_Pos) /*!< 0x00000200 */
  4011. /******************* Bit definition for TIM_CR2 register *******************/
  4012. #define TIM_CR2_CCPC_Pos (0U)
  4013. #define TIM_CR2_CCPC_Msk (0x1UL << TIM_CR2_CCPC_Pos) /*!< 0x00000001 */
  4014. #define TIM_CR2_CCPC TIM_CR2_CCPC_Msk /*!<Capture/Compare Preloaded Control */
  4015. #define TIM_CR2_CCUS_Pos (2U)
  4016. #define TIM_CR2_CCUS_Msk (0x1UL << TIM_CR2_CCUS_Pos) /*!< 0x00000004 */
  4017. #define TIM_CR2_CCUS TIM_CR2_CCUS_Msk /*!<Capture/Compare Control Update Selection */
  4018. #define TIM_CR2_CCDS_Pos (3U)
  4019. #define TIM_CR2_CCDS_Msk (0x1UL << TIM_CR2_CCDS_Pos) /*!< 0x00000008 */
  4020. #define TIM_CR2_CCDS TIM_CR2_CCDS_Msk /*!<Capture/Compare DMA Selection */
  4021. #define TIM_CR2_MMS_Pos (4U)
  4022. #define TIM_CR2_MMS_Msk (0x7UL << TIM_CR2_MMS_Pos) /*!< 0x00000070 */
  4023. #define TIM_CR2_MMS TIM_CR2_MMS_Msk /*!<MMS[2:0] bits (Master Mode Selection) */
  4024. #define TIM_CR2_MMS_0 (0x1UL << TIM_CR2_MMS_Pos) /*!< 0x00000010 */
  4025. #define TIM_CR2_MMS_1 (0x2UL << TIM_CR2_MMS_Pos) /*!< 0x00000020 */
  4026. #define TIM_CR2_MMS_2 (0x4UL << TIM_CR2_MMS_Pos) /*!< 0x00000040 */
  4027. #define TIM_CR2_TI1S_Pos (7U)
  4028. #define TIM_CR2_TI1S_Msk (0x1UL << TIM_CR2_TI1S_Pos) /*!< 0x00000080 */
  4029. #define TIM_CR2_TI1S TIM_CR2_TI1S_Msk /*!<TI1 Selection */
  4030. #define TIM_CR2_OIS1_Pos (8U)
  4031. #define TIM_CR2_OIS1_Msk (0x1UL << TIM_CR2_OIS1_Pos) /*!< 0x00000100 */
  4032. #define TIM_CR2_OIS1 TIM_CR2_OIS1_Msk /*!<Output Idle state 1 (OC1 output) */
  4033. #define TIM_CR2_OIS1N_Pos (9U)
  4034. #define TIM_CR2_OIS1N_Msk (0x1UL << TIM_CR2_OIS1N_Pos) /*!< 0x00000200 */
  4035. #define TIM_CR2_OIS1N TIM_CR2_OIS1N_Msk /*!<Output Idle state 1 (OC1N output) */
  4036. #define TIM_CR2_OIS2_Pos (10U)
  4037. #define TIM_CR2_OIS2_Msk (0x1UL << TIM_CR2_OIS2_Pos) /*!< 0x00000400 */
  4038. #define TIM_CR2_OIS2 TIM_CR2_OIS2_Msk /*!<Output Idle state 2 (OC2 output) */
  4039. #define TIM_CR2_OIS2N_Pos (11U)
  4040. #define TIM_CR2_OIS2N_Msk (0x1UL << TIM_CR2_OIS2N_Pos) /*!< 0x00000800 */
  4041. #define TIM_CR2_OIS2N TIM_CR2_OIS2N_Msk /*!<Output Idle state 2 (OC2N output) */
  4042. #define TIM_CR2_OIS3_Pos (12U)
  4043. #define TIM_CR2_OIS3_Msk (0x1UL << TIM_CR2_OIS3_Pos) /*!< 0x00001000 */
  4044. #define TIM_CR2_OIS3 TIM_CR2_OIS3_Msk /*!<Output Idle state 3 (OC3 output) */
  4045. #define TIM_CR2_OIS3N_Pos (13U)
  4046. #define TIM_CR2_OIS3N_Msk (0x1UL << TIM_CR2_OIS3N_Pos) /*!< 0x00002000 */
  4047. #define TIM_CR2_OIS3N TIM_CR2_OIS3N_Msk /*!<Output Idle state 3 (OC3N output) */
  4048. #define TIM_CR2_OIS4_Pos (14U)
  4049. #define TIM_CR2_OIS4_Msk (0x1UL << TIM_CR2_OIS4_Pos) /*!< 0x00004000 */
  4050. #define TIM_CR2_OIS4 TIM_CR2_OIS4_Msk /*!<Output Idle state 4 (OC4 output) */
  4051. /******************* Bit definition for TIM_SMCR register ******************/
  4052. #define TIM_SMCR_SMS_Pos (0U)
  4053. #define TIM_SMCR_SMS_Msk (0x7UL << TIM_SMCR_SMS_Pos) /*!< 0x00000007 */
  4054. #define TIM_SMCR_SMS TIM_SMCR_SMS_Msk /*!<SMS[2:0] bits (Slave mode selection) */
  4055. #define TIM_SMCR_SMS_0 (0x1UL << TIM_SMCR_SMS_Pos) /*!< 0x00000001 */
  4056. #define TIM_SMCR_SMS_1 (0x2UL << TIM_SMCR_SMS_Pos) /*!< 0x00000002 */
  4057. #define TIM_SMCR_SMS_2 (0x4UL << TIM_SMCR_SMS_Pos) /*!< 0x00000004 */
  4058. #define TIM_SMCR_TS_Pos (4U)
  4059. #define TIM_SMCR_TS_Msk (0x7UL << TIM_SMCR_TS_Pos) /*!< 0x00000070 */
  4060. #define TIM_SMCR_TS TIM_SMCR_TS_Msk /*!<TS[2:0] bits (Trigger selection) */
  4061. #define TIM_SMCR_TS_0 (0x1UL << TIM_SMCR_TS_Pos) /*!< 0x00000010 */
  4062. #define TIM_SMCR_TS_1 (0x2UL << TIM_SMCR_TS_Pos) /*!< 0x00000020 */
  4063. #define TIM_SMCR_TS_2 (0x4UL << TIM_SMCR_TS_Pos) /*!< 0x00000040 */
  4064. #define TIM_SMCR_MSM_Pos (7U)
  4065. #define TIM_SMCR_MSM_Msk (0x1UL << TIM_SMCR_MSM_Pos) /*!< 0x00000080 */
  4066. #define TIM_SMCR_MSM TIM_SMCR_MSM_Msk /*!<Master/slave mode */
  4067. #define TIM_SMCR_ETF_Pos (8U)
  4068. #define TIM_SMCR_ETF_Msk (0xFUL << TIM_SMCR_ETF_Pos) /*!< 0x00000F00 */
  4069. #define TIM_SMCR_ETF TIM_SMCR_ETF_Msk /*!<ETF[3:0] bits (External trigger filter) */
  4070. #define TIM_SMCR_ETF_0 (0x1UL << TIM_SMCR_ETF_Pos) /*!< 0x00000100 */
  4071. #define TIM_SMCR_ETF_1 (0x2UL << TIM_SMCR_ETF_Pos) /*!< 0x00000200 */
  4072. #define TIM_SMCR_ETF_2 (0x4UL << TIM_SMCR_ETF_Pos) /*!< 0x00000400 */
  4073. #define TIM_SMCR_ETF_3 (0x8UL << TIM_SMCR_ETF_Pos) /*!< 0x00000800 */
  4074. #define TIM_SMCR_ETPS_Pos (12U)
  4075. #define TIM_SMCR_ETPS_Msk (0x3UL << TIM_SMCR_ETPS_Pos) /*!< 0x00003000 */
  4076. #define TIM_SMCR_ETPS TIM_SMCR_ETPS_Msk /*!<ETPS[1:0] bits (External trigger prescaler) */
  4077. #define TIM_SMCR_ETPS_0 (0x1UL << TIM_SMCR_ETPS_Pos) /*!< 0x00001000 */
  4078. #define TIM_SMCR_ETPS_1 (0x2UL << TIM_SMCR_ETPS_Pos) /*!< 0x00002000 */
  4079. #define TIM_SMCR_ECE_Pos (14U)
  4080. #define TIM_SMCR_ECE_Msk (0x1UL << TIM_SMCR_ECE_Pos) /*!< 0x00004000 */
  4081. #define TIM_SMCR_ECE TIM_SMCR_ECE_Msk /*!<External clock enable */
  4082. #define TIM_SMCR_ETP_Pos (15U)
  4083. #define TIM_SMCR_ETP_Msk (0x1UL << TIM_SMCR_ETP_Pos) /*!< 0x00008000 */
  4084. #define TIM_SMCR_ETP TIM_SMCR_ETP_Msk /*!<External trigger polarity */
  4085. /******************* Bit definition for TIM_DIER register ******************/
  4086. #define TIM_DIER_UIE_Pos (0U)
  4087. #define TIM_DIER_UIE_Msk (0x1UL << TIM_DIER_UIE_Pos) /*!< 0x00000001 */
  4088. #define TIM_DIER_UIE TIM_DIER_UIE_Msk /*!<Update interrupt enable */
  4089. #define TIM_DIER_CC1IE_Pos (1U)
  4090. #define TIM_DIER_CC1IE_Msk (0x1UL << TIM_DIER_CC1IE_Pos) /*!< 0x00000002 */
  4091. #define TIM_DIER_CC1IE TIM_DIER_CC1IE_Msk /*!<Capture/Compare 1 interrupt enable */
  4092. #define TIM_DIER_CC2IE_Pos (2U)
  4093. #define TIM_DIER_CC2IE_Msk (0x1UL << TIM_DIER_CC2IE_Pos) /*!< 0x00000004 */
  4094. #define TIM_DIER_CC2IE TIM_DIER_CC2IE_Msk /*!<Capture/Compare 2 interrupt enable */
  4095. #define TIM_DIER_CC3IE_Pos (3U)
  4096. #define TIM_DIER_CC3IE_Msk (0x1UL << TIM_DIER_CC3IE_Pos) /*!< 0x00000008 */
  4097. #define TIM_DIER_CC3IE TIM_DIER_CC3IE_Msk /*!<Capture/Compare 3 interrupt enable */
  4098. #define TIM_DIER_CC4IE_Pos (4U)
  4099. #define TIM_DIER_CC4IE_Msk (0x1UL << TIM_DIER_CC4IE_Pos) /*!< 0x00000010 */
  4100. #define TIM_DIER_CC4IE TIM_DIER_CC4IE_Msk /*!<Capture/Compare 4 interrupt enable */
  4101. #define TIM_DIER_COMIE_Pos (5U)
  4102. #define TIM_DIER_COMIE_Msk (0x1UL << TIM_DIER_COMIE_Pos) /*!< 0x00000020 */
  4103. #define TIM_DIER_COMIE TIM_DIER_COMIE_Msk /*!<COM interrupt enable */
  4104. #define TIM_DIER_TIE_Pos (6U)
  4105. #define TIM_DIER_TIE_Msk (0x1UL << TIM_DIER_TIE_Pos) /*!< 0x00000040 */
  4106. #define TIM_DIER_TIE TIM_DIER_TIE_Msk /*!<Trigger interrupt enable */
  4107. #define TIM_DIER_BIE_Pos (7U)
  4108. #define TIM_DIER_BIE_Msk (0x1UL << TIM_DIER_BIE_Pos) /*!< 0x00000080 */
  4109. #define TIM_DIER_BIE TIM_DIER_BIE_Msk /*!<Break interrupt enable */
  4110. #define TIM_DIER_UDE_Pos (8U)
  4111. #define TIM_DIER_UDE_Msk (0x1UL << TIM_DIER_UDE_Pos) /*!< 0x00000100 */
  4112. #define TIM_DIER_UDE TIM_DIER_UDE_Msk /*!<Update DMA request enable */
  4113. #define TIM_DIER_CC1DE_Pos (9U)
  4114. #define TIM_DIER_CC1DE_Msk (0x1UL << TIM_DIER_CC1DE_Pos) /*!< 0x00000200 */
  4115. #define TIM_DIER_CC1DE TIM_DIER_CC1DE_Msk /*!<Capture/Compare 1 DMA request enable */
  4116. #define TIM_DIER_CC2DE_Pos (10U)
  4117. #define TIM_DIER_CC2DE_Msk (0x1UL << TIM_DIER_CC2DE_Pos) /*!< 0x00000400 */
  4118. #define TIM_DIER_CC2DE TIM_DIER_CC2DE_Msk /*!<Capture/Compare 2 DMA request enable */
  4119. #define TIM_DIER_CC3DE_Pos (11U)
  4120. #define TIM_DIER_CC3DE_Msk (0x1UL << TIM_DIER_CC3DE_Pos) /*!< 0x00000800 */
  4121. #define TIM_DIER_CC3DE TIM_DIER_CC3DE_Msk /*!<Capture/Compare 3 DMA request enable */
  4122. #define TIM_DIER_CC4DE_Pos (12U)
  4123. #define TIM_DIER_CC4DE_Msk (0x1UL << TIM_DIER_CC4DE_Pos) /*!< 0x00001000 */
  4124. #define TIM_DIER_CC4DE TIM_DIER_CC4DE_Msk /*!<Capture/Compare 4 DMA request enable */
  4125. #define TIM_DIER_COMDE_Pos (13U)
  4126. #define TIM_DIER_COMDE_Msk (0x1UL << TIM_DIER_COMDE_Pos) /*!< 0x00002000 */
  4127. #define TIM_DIER_COMDE TIM_DIER_COMDE_Msk /*!<COM DMA request enable */
  4128. #define TIM_DIER_TDE_Pos (14U)
  4129. #define TIM_DIER_TDE_Msk (0x1UL << TIM_DIER_TDE_Pos) /*!< 0x00004000 */
  4130. #define TIM_DIER_TDE TIM_DIER_TDE_Msk /*!<Trigger DMA request enable */
  4131. /******************** Bit definition for TIM_SR register *******************/
  4132. #define TIM_SR_UIF_Pos (0U)
  4133. #define TIM_SR_UIF_Msk (0x1UL << TIM_SR_UIF_Pos) /*!< 0x00000001 */
  4134. #define TIM_SR_UIF TIM_SR_UIF_Msk /*!<Update interrupt Flag */
  4135. #define TIM_SR_CC1IF_Pos (1U)
  4136. #define TIM_SR_CC1IF_Msk (0x1UL << TIM_SR_CC1IF_Pos) /*!< 0x00000002 */
  4137. #define TIM_SR_CC1IF TIM_SR_CC1IF_Msk /*!<Capture/Compare 1 interrupt Flag */
  4138. #define TIM_SR_CC2IF_Pos (2U)
  4139. #define TIM_SR_CC2IF_Msk (0x1UL << TIM_SR_CC2IF_Pos) /*!< 0x00000004 */
  4140. #define TIM_SR_CC2IF TIM_SR_CC2IF_Msk /*!<Capture/Compare 2 interrupt Flag */
  4141. #define TIM_SR_CC3IF_Pos (3U)
  4142. #define TIM_SR_CC3IF_Msk (0x1UL << TIM_SR_CC3IF_Pos) /*!< 0x00000008 */
  4143. #define TIM_SR_CC3IF TIM_SR_CC3IF_Msk /*!<Capture/Compare 3 interrupt Flag */
  4144. #define TIM_SR_CC4IF_Pos (4U)
  4145. #define TIM_SR_CC4IF_Msk (0x1UL << TIM_SR_CC4IF_Pos) /*!< 0x00000010 */
  4146. #define TIM_SR_CC4IF TIM_SR_CC4IF_Msk /*!<Capture/Compare 4 interrupt Flag */
  4147. #define TIM_SR_COMIF_Pos (5U)
  4148. #define TIM_SR_COMIF_Msk (0x1UL << TIM_SR_COMIF_Pos) /*!< 0x00000020 */
  4149. #define TIM_SR_COMIF TIM_SR_COMIF_Msk /*!<COM interrupt Flag */
  4150. #define TIM_SR_TIF_Pos (6U)
  4151. #define TIM_SR_TIF_Msk (0x1UL << TIM_SR_TIF_Pos) /*!< 0x00000040 */
  4152. #define TIM_SR_TIF TIM_SR_TIF_Msk /*!<Trigger interrupt Flag */
  4153. #define TIM_SR_BIF_Pos (7U)
  4154. #define TIM_SR_BIF_Msk (0x1UL << TIM_SR_BIF_Pos) /*!< 0x00000080 */
  4155. #define TIM_SR_BIF TIM_SR_BIF_Msk /*!<Break interrupt Flag */
  4156. #define TIM_SR_CC1OF_Pos (9U)
  4157. #define TIM_SR_CC1OF_Msk (0x1UL << TIM_SR_CC1OF_Pos) /*!< 0x00000200 */
  4158. #define TIM_SR_CC1OF TIM_SR_CC1OF_Msk /*!<Capture/Compare 1 Overcapture Flag */
  4159. #define TIM_SR_CC2OF_Pos (10U)
  4160. #define TIM_SR_CC2OF_Msk (0x1UL << TIM_SR_CC2OF_Pos) /*!< 0x00000400 */
  4161. #define TIM_SR_CC2OF TIM_SR_CC2OF_Msk /*!<Capture/Compare 2 Overcapture Flag */
  4162. #define TIM_SR_CC3OF_Pos (11U)
  4163. #define TIM_SR_CC3OF_Msk (0x1UL << TIM_SR_CC3OF_Pos) /*!< 0x00000800 */
  4164. #define TIM_SR_CC3OF TIM_SR_CC3OF_Msk /*!<Capture/Compare 3 Overcapture Flag */
  4165. #define TIM_SR_CC4OF_Pos (12U)
  4166. #define TIM_SR_CC4OF_Msk (0x1UL << TIM_SR_CC4OF_Pos) /*!< 0x00001000 */
  4167. #define TIM_SR_CC4OF TIM_SR_CC4OF_Msk /*!<Capture/Compare 4 Overcapture Flag */
  4168. /******************* Bit definition for TIM_EGR register *******************/
  4169. #define TIM_EGR_UG_Pos (0U)
  4170. #define TIM_EGR_UG_Msk (0x1UL << TIM_EGR_UG_Pos) /*!< 0x00000001 */
  4171. #define TIM_EGR_UG TIM_EGR_UG_Msk /*!<Update Generation */
  4172. #define TIM_EGR_CC1G_Pos (1U)
  4173. #define TIM_EGR_CC1G_Msk (0x1UL << TIM_EGR_CC1G_Pos) /*!< 0x00000002 */
  4174. #define TIM_EGR_CC1G TIM_EGR_CC1G_Msk /*!<Capture/Compare 1 Generation */
  4175. #define TIM_EGR_CC2G_Pos (2U)
  4176. #define TIM_EGR_CC2G_Msk (0x1UL << TIM_EGR_CC2G_Pos) /*!< 0x00000004 */
  4177. #define TIM_EGR_CC2G TIM_EGR_CC2G_Msk /*!<Capture/Compare 2 Generation */
  4178. #define TIM_EGR_CC3G_Pos (3U)
  4179. #define TIM_EGR_CC3G_Msk (0x1UL << TIM_EGR_CC3G_Pos) /*!< 0x00000008 */
  4180. #define TIM_EGR_CC3G TIM_EGR_CC3G_Msk /*!<Capture/Compare 3 Generation */
  4181. #define TIM_EGR_CC4G_Pos (4U)
  4182. #define TIM_EGR_CC4G_Msk (0x1UL << TIM_EGR_CC4G_Pos) /*!< 0x00000010 */
  4183. #define TIM_EGR_CC4G TIM_EGR_CC4G_Msk /*!<Capture/Compare 4 Generation */
  4184. #define TIM_EGR_COMG_Pos (5U)
  4185. #define TIM_EGR_COMG_Msk (0x1UL << TIM_EGR_COMG_Pos) /*!< 0x00000020 */
  4186. #define TIM_EGR_COMG TIM_EGR_COMG_Msk /*!<Capture/Compare Control Update Generation */
  4187. #define TIM_EGR_TG_Pos (6U)
  4188. #define TIM_EGR_TG_Msk (0x1UL << TIM_EGR_TG_Pos) /*!< 0x00000040 */
  4189. #define TIM_EGR_TG TIM_EGR_TG_Msk /*!<Trigger Generation */
  4190. #define TIM_EGR_BG_Pos (7U)
  4191. #define TIM_EGR_BG_Msk (0x1UL << TIM_EGR_BG_Pos) /*!< 0x00000080 */
  4192. #define TIM_EGR_BG TIM_EGR_BG_Msk /*!<Break Generation */
  4193. /****************** Bit definition for TIM_CCMR1 register ******************/
  4194. #define TIM_CCMR1_CC1S_Pos (0U)
  4195. #define TIM_CCMR1_CC1S_Msk (0x3UL << TIM_CCMR1_CC1S_Pos) /*!< 0x00000003 */
  4196. #define TIM_CCMR1_CC1S TIM_CCMR1_CC1S_Msk /*!<CC1S[1:0] bits (Capture/Compare 1 Selection) */
  4197. #define TIM_CCMR1_CC1S_0 (0x1UL << TIM_CCMR1_CC1S_Pos) /*!< 0x00000001 */
  4198. #define TIM_CCMR1_CC1S_1 (0x2UL << TIM_CCMR1_CC1S_Pos) /*!< 0x00000002 */
  4199. #define TIM_CCMR1_OC1FE_Pos (2U)
  4200. #define TIM_CCMR1_OC1FE_Msk (0x1UL << TIM_CCMR1_OC1FE_Pos) /*!< 0x00000004 */
  4201. #define TIM_CCMR1_OC1FE TIM_CCMR1_OC1FE_Msk /*!<Output Compare 1 Fast enable */
  4202. #define TIM_CCMR1_OC1PE_Pos (3U)
  4203. #define TIM_CCMR1_OC1PE_Msk (0x1UL << TIM_CCMR1_OC1PE_Pos) /*!< 0x00000008 */
  4204. #define TIM_CCMR1_OC1PE TIM_CCMR1_OC1PE_Msk /*!<Output Compare 1 Preload enable */
  4205. #define TIM_CCMR1_OC1M_Pos (4U)
  4206. #define TIM_CCMR1_OC1M_Msk (0x7UL << TIM_CCMR1_OC1M_Pos) /*!< 0x00000070 */
  4207. #define TIM_CCMR1_OC1M TIM_CCMR1_OC1M_Msk /*!<OC1M[2:0] bits (Output Compare 1 Mode) */
  4208. #define TIM_CCMR1_OC1M_0 (0x1UL << TIM_CCMR1_OC1M_Pos) /*!< 0x00000010 */
  4209. #define TIM_CCMR1_OC1M_1 (0x2UL << TIM_CCMR1_OC1M_Pos) /*!< 0x00000020 */
  4210. #define TIM_CCMR1_OC1M_2 (0x4UL << TIM_CCMR1_OC1M_Pos) /*!< 0x00000040 */
  4211. #define TIM_CCMR1_OC1CE_Pos (7U)
  4212. #define TIM_CCMR1_OC1CE_Msk (0x1UL << TIM_CCMR1_OC1CE_Pos) /*!< 0x00000080 */
  4213. #define TIM_CCMR1_OC1CE TIM_CCMR1_OC1CE_Msk /*!<Output Compare 1Clear Enable */
  4214. #define TIM_CCMR1_CC2S_Pos (8U)
  4215. #define TIM_CCMR1_CC2S_Msk (0x3UL << TIM_CCMR1_CC2S_Pos) /*!< 0x00000300 */
  4216. #define TIM_CCMR1_CC2S TIM_CCMR1_CC2S_Msk /*!<CC2S[1:0] bits (Capture/Compare 2 Selection) */
  4217. #define TIM_CCMR1_CC2S_0 (0x1UL << TIM_CCMR1_CC2S_Pos) /*!< 0x00000100 */
  4218. #define TIM_CCMR1_CC2S_1 (0x2UL << TIM_CCMR1_CC2S_Pos) /*!< 0x00000200 */
  4219. #define TIM_CCMR1_OC2FE_Pos (10U)
  4220. #define TIM_CCMR1_OC2FE_Msk (0x1UL << TIM_CCMR1_OC2FE_Pos) /*!< 0x00000400 */
  4221. #define TIM_CCMR1_OC2FE TIM_CCMR1_OC2FE_Msk /*!<Output Compare 2 Fast enable */
  4222. #define TIM_CCMR1_OC2PE_Pos (11U)
  4223. #define TIM_CCMR1_OC2PE_Msk (0x1UL << TIM_CCMR1_OC2PE_Pos) /*!< 0x00000800 */
  4224. #define TIM_CCMR1_OC2PE TIM_CCMR1_OC2PE_Msk /*!<Output Compare 2 Preload enable */
  4225. #define TIM_CCMR1_OC2M_Pos (12U)
  4226. #define TIM_CCMR1_OC2M_Msk (0x7UL << TIM_CCMR1_OC2M_Pos) /*!< 0x00007000 */
  4227. #define TIM_CCMR1_OC2M TIM_CCMR1_OC2M_Msk /*!<OC2M[2:0] bits (Output Compare 2 Mode) */
  4228. #define TIM_CCMR1_OC2M_0 (0x1UL << TIM_CCMR1_OC2M_Pos) /*!< 0x00001000 */
  4229. #define TIM_CCMR1_OC2M_1 (0x2UL << TIM_CCMR1_OC2M_Pos) /*!< 0x00002000 */
  4230. #define TIM_CCMR1_OC2M_2 (0x4UL << TIM_CCMR1_OC2M_Pos) /*!< 0x00004000 */
  4231. #define TIM_CCMR1_OC2CE_Pos (15U)
  4232. #define TIM_CCMR1_OC2CE_Msk (0x1UL << TIM_CCMR1_OC2CE_Pos) /*!< 0x00008000 */
  4233. #define TIM_CCMR1_OC2CE TIM_CCMR1_OC2CE_Msk /*!<Output Compare 2 Clear Enable */
  4234. /*---------------------------------------------------------------------------*/
  4235. #define TIM_CCMR1_IC1PSC_Pos (2U)
  4236. #define TIM_CCMR1_IC1PSC_Msk (0x3UL << TIM_CCMR1_IC1PSC_Pos) /*!< 0x0000000C */
  4237. #define TIM_CCMR1_IC1PSC TIM_CCMR1_IC1PSC_Msk /*!<IC1PSC[1:0] bits (Input Capture 1 Prescaler) */
  4238. #define TIM_CCMR1_IC1PSC_0 (0x1UL << TIM_CCMR1_IC1PSC_Pos) /*!< 0x00000004 */
  4239. #define TIM_CCMR1_IC1PSC_1 (0x2UL << TIM_CCMR1_IC1PSC_Pos) /*!< 0x00000008 */
  4240. #define TIM_CCMR1_IC1F_Pos (4U)
  4241. #define TIM_CCMR1_IC1F_Msk (0xFUL << TIM_CCMR1_IC1F_Pos) /*!< 0x000000F0 */
  4242. #define TIM_CCMR1_IC1F TIM_CCMR1_IC1F_Msk /*!<IC1F[3:0] bits (Input Capture 1 Filter) */
  4243. #define TIM_CCMR1_IC1F_0 (0x1UL << TIM_CCMR1_IC1F_Pos) /*!< 0x00000010 */
  4244. #define TIM_CCMR1_IC1F_1 (0x2UL << TIM_CCMR1_IC1F_Pos) /*!< 0x00000020 */
  4245. #define TIM_CCMR1_IC1F_2 (0x4UL << TIM_CCMR1_IC1F_Pos) /*!< 0x00000040 */
  4246. #define TIM_CCMR1_IC1F_3 (0x8UL << TIM_CCMR1_IC1F_Pos) /*!< 0x00000080 */
  4247. #define TIM_CCMR1_IC2PSC_Pos (10U)
  4248. #define TIM_CCMR1_IC2PSC_Msk (0x3UL << TIM_CCMR1_IC2PSC_Pos) /*!< 0x00000C00 */
  4249. #define TIM_CCMR1_IC2PSC TIM_CCMR1_IC2PSC_Msk /*!<IC2PSC[1:0] bits (Input Capture 2 Prescaler) */
  4250. #define TIM_CCMR1_IC2PSC_0 (0x1UL << TIM_CCMR1_IC2PSC_Pos) /*!< 0x00000400 */
  4251. #define TIM_CCMR1_IC2PSC_1 (0x2UL << TIM_CCMR1_IC2PSC_Pos) /*!< 0x00000800 */
  4252. #define TIM_CCMR1_IC2F_Pos (12U)
  4253. #define TIM_CCMR1_IC2F_Msk (0xFUL << TIM_CCMR1_IC2F_Pos) /*!< 0x0000F000 */
  4254. #define TIM_CCMR1_IC2F TIM_CCMR1_IC2F_Msk /*!<IC2F[3:0] bits (Input Capture 2 Filter) */
  4255. #define TIM_CCMR1_IC2F_0 (0x1UL << TIM_CCMR1_IC2F_Pos) /*!< 0x00001000 */
  4256. #define TIM_CCMR1_IC2F_1 (0x2UL << TIM_CCMR1_IC2F_Pos) /*!< 0x00002000 */
  4257. #define TIM_CCMR1_IC2F_2 (0x4UL << TIM_CCMR1_IC2F_Pos) /*!< 0x00004000 */
  4258. #define TIM_CCMR1_IC2F_3 (0x8UL << TIM_CCMR1_IC2F_Pos) /*!< 0x00008000 */
  4259. /****************** Bit definition for TIM_CCMR2 register ******************/
  4260. #define TIM_CCMR2_CC3S_Pos (0U)
  4261. #define TIM_CCMR2_CC3S_Msk (0x3UL << TIM_CCMR2_CC3S_Pos) /*!< 0x00000003 */
  4262. #define TIM_CCMR2_CC3S TIM_CCMR2_CC3S_Msk /*!<CC3S[1:0] bits (Capture/Compare 3 Selection) */
  4263. #define TIM_CCMR2_CC3S_0 (0x1UL << TIM_CCMR2_CC3S_Pos) /*!< 0x00000001 */
  4264. #define TIM_CCMR2_CC3S_1 (0x2UL << TIM_CCMR2_CC3S_Pos) /*!< 0x00000002 */
  4265. #define TIM_CCMR2_OC3FE_Pos (2U)
  4266. #define TIM_CCMR2_OC3FE_Msk (0x1UL << TIM_CCMR2_OC3FE_Pos) /*!< 0x00000004 */
  4267. #define TIM_CCMR2_OC3FE TIM_CCMR2_OC3FE_Msk /*!<Output Compare 3 Fast enable */
  4268. #define TIM_CCMR2_OC3PE_Pos (3U)
  4269. #define TIM_CCMR2_OC3PE_Msk (0x1UL << TIM_CCMR2_OC3PE_Pos) /*!< 0x00000008 */
  4270. #define TIM_CCMR2_OC3PE TIM_CCMR2_OC3PE_Msk /*!<Output Compare 3 Preload enable */
  4271. #define TIM_CCMR2_OC3M_Pos (4U)
  4272. #define TIM_CCMR2_OC3M_Msk (0x7UL << TIM_CCMR2_OC3M_Pos) /*!< 0x00000070 */
  4273. #define TIM_CCMR2_OC3M TIM_CCMR2_OC3M_Msk /*!<OC3M[2:0] bits (Output Compare 3 Mode) */
  4274. #define TIM_CCMR2_OC3M_0 (0x1UL << TIM_CCMR2_OC3M_Pos) /*!< 0x00000010 */
  4275. #define TIM_CCMR2_OC3M_1 (0x2UL << TIM_CCMR2_OC3M_Pos) /*!< 0x00000020 */
  4276. #define TIM_CCMR2_OC3M_2 (0x4UL << TIM_CCMR2_OC3M_Pos) /*!< 0x00000040 */
  4277. #define TIM_CCMR2_OC3CE_Pos (7U)
  4278. #define TIM_CCMR2_OC3CE_Msk (0x1UL << TIM_CCMR2_OC3CE_Pos) /*!< 0x00000080 */
  4279. #define TIM_CCMR2_OC3CE TIM_CCMR2_OC3CE_Msk /*!<Output Compare 3 Clear Enable */
  4280. #define TIM_CCMR2_CC4S_Pos (8U)
  4281. #define TIM_CCMR2_CC4S_Msk (0x3UL << TIM_CCMR2_CC4S_Pos) /*!< 0x00000300 */
  4282. #define TIM_CCMR2_CC4S TIM_CCMR2_CC4S_Msk /*!<CC4S[1:0] bits (Capture/Compare 4 Selection) */
  4283. #define TIM_CCMR2_CC4S_0 (0x1UL << TIM_CCMR2_CC4S_Pos) /*!< 0x00000100 */
  4284. #define TIM_CCMR2_CC4S_1 (0x2UL << TIM_CCMR2_CC4S_Pos) /*!< 0x00000200 */
  4285. #define TIM_CCMR2_OC4FE_Pos (10U)
  4286. #define TIM_CCMR2_OC4FE_Msk (0x1UL << TIM_CCMR2_OC4FE_Pos) /*!< 0x00000400 */
  4287. #define TIM_CCMR2_OC4FE TIM_CCMR2_OC4FE_Msk /*!<Output Compare 4 Fast enable */
  4288. #define TIM_CCMR2_OC4PE_Pos (11U)
  4289. #define TIM_CCMR2_OC4PE_Msk (0x1UL << TIM_CCMR2_OC4PE_Pos) /*!< 0x00000800 */
  4290. #define TIM_CCMR2_OC4PE TIM_CCMR2_OC4PE_Msk /*!<Output Compare 4 Preload enable */
  4291. #define TIM_CCMR2_OC4M_Pos (12U)
  4292. #define TIM_CCMR2_OC4M_Msk (0x7UL << TIM_CCMR2_OC4M_Pos) /*!< 0x00007000 */
  4293. #define TIM_CCMR2_OC4M TIM_CCMR2_OC4M_Msk /*!<OC4M[2:0] bits (Output Compare 4 Mode) */
  4294. #define TIM_CCMR2_OC4M_0 (0x1UL << TIM_CCMR2_OC4M_Pos) /*!< 0x00001000 */
  4295. #define TIM_CCMR2_OC4M_1 (0x2UL << TIM_CCMR2_OC4M_Pos) /*!< 0x00002000 */
  4296. #define TIM_CCMR2_OC4M_2 (0x4UL << TIM_CCMR2_OC4M_Pos) /*!< 0x00004000 */
  4297. #define TIM_CCMR2_OC4CE_Pos (15U)
  4298. #define TIM_CCMR2_OC4CE_Msk (0x1UL << TIM_CCMR2_OC4CE_Pos) /*!< 0x00008000 */
  4299. #define TIM_CCMR2_OC4CE TIM_CCMR2_OC4CE_Msk /*!<Output Compare 4 Clear Enable */
  4300. /*---------------------------------------------------------------------------*/
  4301. #define TIM_CCMR2_IC3PSC_Pos (2U)
  4302. #define TIM_CCMR2_IC3PSC_Msk (0x3UL << TIM_CCMR2_IC3PSC_Pos) /*!< 0x0000000C */
  4303. #define TIM_CCMR2_IC3PSC TIM_CCMR2_IC3PSC_Msk /*!<IC3PSC[1:0] bits (Input Capture 3 Prescaler) */
  4304. #define TIM_CCMR2_IC3PSC_0 (0x1UL << TIM_CCMR2_IC3PSC_Pos) /*!< 0x00000004 */
  4305. #define TIM_CCMR2_IC3PSC_1 (0x2UL << TIM_CCMR2_IC3PSC_Pos) /*!< 0x00000008 */
  4306. #define TIM_CCMR2_IC3F_Pos (4U)
  4307. #define TIM_CCMR2_IC3F_Msk (0xFUL << TIM_CCMR2_IC3F_Pos) /*!< 0x000000F0 */
  4308. #define TIM_CCMR2_IC3F TIM_CCMR2_IC3F_Msk /*!<IC3F[3:0] bits (Input Capture 3 Filter) */
  4309. #define TIM_CCMR2_IC3F_0 (0x1UL << TIM_CCMR2_IC3F_Pos) /*!< 0x00000010 */
  4310. #define TIM_CCMR2_IC3F_1 (0x2UL << TIM_CCMR2_IC3F_Pos) /*!< 0x00000020 */
  4311. #define TIM_CCMR2_IC3F_2 (0x4UL << TIM_CCMR2_IC3F_Pos) /*!< 0x00000040 */
  4312. #define TIM_CCMR2_IC3F_3 (0x8UL << TIM_CCMR2_IC3F_Pos) /*!< 0x00000080 */
  4313. #define TIM_CCMR2_IC4PSC_Pos (10U)
  4314. #define TIM_CCMR2_IC4PSC_Msk (0x3UL << TIM_CCMR2_IC4PSC_Pos) /*!< 0x00000C00 */
  4315. #define TIM_CCMR2_IC4PSC TIM_CCMR2_IC4PSC_Msk /*!<IC4PSC[1:0] bits (Input Capture 4 Prescaler) */
  4316. #define TIM_CCMR2_IC4PSC_0 (0x1UL << TIM_CCMR2_IC4PSC_Pos) /*!< 0x00000400 */
  4317. #define TIM_CCMR2_IC4PSC_1 (0x2UL << TIM_CCMR2_IC4PSC_Pos) /*!< 0x00000800 */
  4318. #define TIM_CCMR2_IC4F_Pos (12U)
  4319. #define TIM_CCMR2_IC4F_Msk (0xFUL << TIM_CCMR2_IC4F_Pos) /*!< 0x0000F000 */
  4320. #define TIM_CCMR2_IC4F TIM_CCMR2_IC4F_Msk /*!<IC4F[3:0] bits (Input Capture 4 Filter) */
  4321. #define TIM_CCMR2_IC4F_0 (0x1UL << TIM_CCMR2_IC4F_Pos) /*!< 0x00001000 */
  4322. #define TIM_CCMR2_IC4F_1 (0x2UL << TIM_CCMR2_IC4F_Pos) /*!< 0x00002000 */
  4323. #define TIM_CCMR2_IC4F_2 (0x4UL << TIM_CCMR2_IC4F_Pos) /*!< 0x00004000 */
  4324. #define TIM_CCMR2_IC4F_3 (0x8UL << TIM_CCMR2_IC4F_Pos) /*!< 0x00008000 */
  4325. /******************* Bit definition for TIM_CCER register ******************/
  4326. #define TIM_CCER_CC1E_Pos (0U)
  4327. #define TIM_CCER_CC1E_Msk (0x1UL << TIM_CCER_CC1E_Pos) /*!< 0x00000001 */
  4328. #define TIM_CCER_CC1E TIM_CCER_CC1E_Msk /*!<Capture/Compare 1 output enable */
  4329. #define TIM_CCER_CC1P_Pos (1U)
  4330. #define TIM_CCER_CC1P_Msk (0x1UL << TIM_CCER_CC1P_Pos) /*!< 0x00000002 */
  4331. #define TIM_CCER_CC1P TIM_CCER_CC1P_Msk /*!<Capture/Compare 1 output Polarity */
  4332. #define TIM_CCER_CC1NE_Pos (2U)
  4333. #define TIM_CCER_CC1NE_Msk (0x1UL << TIM_CCER_CC1NE_Pos) /*!< 0x00000004 */
  4334. #define TIM_CCER_CC1NE TIM_CCER_CC1NE_Msk /*!<Capture/Compare 1 Complementary output enable */
  4335. #define TIM_CCER_CC1NP_Pos (3U)
  4336. #define TIM_CCER_CC1NP_Msk (0x1UL << TIM_CCER_CC1NP_Pos) /*!< 0x00000008 */
  4337. #define TIM_CCER_CC1NP TIM_CCER_CC1NP_Msk /*!<Capture/Compare 1 Complementary output Polarity */
  4338. #define TIM_CCER_CC2E_Pos (4U)
  4339. #define TIM_CCER_CC2E_Msk (0x1UL << TIM_CCER_CC2E_Pos) /*!< 0x00000010 */
  4340. #define TIM_CCER_CC2E TIM_CCER_CC2E_Msk /*!<Capture/Compare 2 output enable */
  4341. #define TIM_CCER_CC2P_Pos (5U)
  4342. #define TIM_CCER_CC2P_Msk (0x1UL << TIM_CCER_CC2P_Pos) /*!< 0x00000020 */
  4343. #define TIM_CCER_CC2P TIM_CCER_CC2P_Msk /*!<Capture/Compare 2 output Polarity */
  4344. #define TIM_CCER_CC2NE_Pos (6U)
  4345. #define TIM_CCER_CC2NE_Msk (0x1UL << TIM_CCER_CC2NE_Pos) /*!< 0x00000040 */
  4346. #define TIM_CCER_CC2NE TIM_CCER_CC2NE_Msk /*!<Capture/Compare 2 Complementary output enable */
  4347. #define TIM_CCER_CC2NP_Pos (7U)
  4348. #define TIM_CCER_CC2NP_Msk (0x1UL << TIM_CCER_CC2NP_Pos) /*!< 0x00000080 */
  4349. #define TIM_CCER_CC2NP TIM_CCER_CC2NP_Msk /*!<Capture/Compare 2 Complementary output Polarity */
  4350. #define TIM_CCER_CC3E_Pos (8U)
  4351. #define TIM_CCER_CC3E_Msk (0x1UL << TIM_CCER_CC3E_Pos) /*!< 0x00000100 */
  4352. #define TIM_CCER_CC3E TIM_CCER_CC3E_Msk /*!<Capture/Compare 3 output enable */
  4353. #define TIM_CCER_CC3P_Pos (9U)
  4354. #define TIM_CCER_CC3P_Msk (0x1UL << TIM_CCER_CC3P_Pos) /*!< 0x00000200 */
  4355. #define TIM_CCER_CC3P TIM_CCER_CC3P_Msk /*!<Capture/Compare 3 output Polarity */
  4356. #define TIM_CCER_CC3NE_Pos (10U)
  4357. #define TIM_CCER_CC3NE_Msk (0x1UL << TIM_CCER_CC3NE_Pos) /*!< 0x00000400 */
  4358. #define TIM_CCER_CC3NE TIM_CCER_CC3NE_Msk /*!<Capture/Compare 3 Complementary output enable */
  4359. #define TIM_CCER_CC3NP_Pos (11U)
  4360. #define TIM_CCER_CC3NP_Msk (0x1UL << TIM_CCER_CC3NP_Pos) /*!< 0x00000800 */
  4361. #define TIM_CCER_CC3NP TIM_CCER_CC3NP_Msk /*!<Capture/Compare 3 Complementary output Polarity */
  4362. #define TIM_CCER_CC4E_Pos (12U)
  4363. #define TIM_CCER_CC4E_Msk (0x1UL << TIM_CCER_CC4E_Pos) /*!< 0x00001000 */
  4364. #define TIM_CCER_CC4E TIM_CCER_CC4E_Msk /*!<Capture/Compare 4 output enable */
  4365. #define TIM_CCER_CC4P_Pos (13U)
  4366. #define TIM_CCER_CC4P_Msk (0x1UL << TIM_CCER_CC4P_Pos) /*!< 0x00002000 */
  4367. #define TIM_CCER_CC4P TIM_CCER_CC4P_Msk /*!<Capture/Compare 4 output Polarity */
  4368. /******************* Bit definition for TIM_CNT register *******************/
  4369. #define TIM_CNT_CNT_Pos (0U)
  4370. #define TIM_CNT_CNT_Msk (0xFFFFFFFFUL << TIM_CNT_CNT_Pos) /*!< 0xFFFFFFFF */
  4371. #define TIM_CNT_CNT TIM_CNT_CNT_Msk /*!<Counter Value */
  4372. /******************* Bit definition for TIM_PSC register *******************/
  4373. #define TIM_PSC_PSC_Pos (0U)
  4374. #define TIM_PSC_PSC_Msk (0xFFFFUL << TIM_PSC_PSC_Pos) /*!< 0x0000FFFF */
  4375. #define TIM_PSC_PSC TIM_PSC_PSC_Msk /*!<Prescaler Value */
  4376. /******************* Bit definition for TIM_ARR register *******************/
  4377. #define TIM_ARR_ARR_Pos (0U)
  4378. #define TIM_ARR_ARR_Msk (0xFFFFFFFFUL << TIM_ARR_ARR_Pos) /*!< 0xFFFFFFFF */
  4379. #define TIM_ARR_ARR TIM_ARR_ARR_Msk /*!<actual auto-reload Value */
  4380. /******************* Bit definition for TIM_RCR register *******************/
  4381. #define TIM_RCR_REP_Pos (0U)
  4382. #define TIM_RCR_REP_Msk (0xFFUL << TIM_RCR_REP_Pos) /*!< 0x000000FF */
  4383. #define TIM_RCR_REP TIM_RCR_REP_Msk /*!<Repetition Counter Value */
  4384. /******************* Bit definition for TIM_CCR1 register ******************/
  4385. #define TIM_CCR1_CCR1_Pos (0U)
  4386. #define TIM_CCR1_CCR1_Msk (0xFFFFUL << TIM_CCR1_CCR1_Pos) /*!< 0x0000FFFF */
  4387. #define TIM_CCR1_CCR1 TIM_CCR1_CCR1_Msk /*!<Capture/Compare 1 Value */
  4388. /******************* Bit definition for TIM_CCR2 register ******************/
  4389. #define TIM_CCR2_CCR2_Pos (0U)
  4390. #define TIM_CCR2_CCR2_Msk (0xFFFFUL << TIM_CCR2_CCR2_Pos) /*!< 0x0000FFFF */
  4391. #define TIM_CCR2_CCR2 TIM_CCR2_CCR2_Msk /*!<Capture/Compare 2 Value */
  4392. /******************* Bit definition for TIM_CCR3 register ******************/
  4393. #define TIM_CCR3_CCR3_Pos (0U)
  4394. #define TIM_CCR3_CCR3_Msk (0xFFFFUL << TIM_CCR3_CCR3_Pos) /*!< 0x0000FFFF */
  4395. #define TIM_CCR3_CCR3 TIM_CCR3_CCR3_Msk /*!<Capture/Compare 3 Value */
  4396. /******************* Bit definition for TIM_CCR4 register ******************/
  4397. #define TIM_CCR4_CCR4_Pos (0U)
  4398. #define TIM_CCR4_CCR4_Msk (0xFFFFUL << TIM_CCR4_CCR4_Pos) /*!< 0x0000FFFF */
  4399. #define TIM_CCR4_CCR4 TIM_CCR4_CCR4_Msk /*!<Capture/Compare 4 Value */
  4400. /******************* Bit definition for TIM_BDTR register ******************/
  4401. #define TIM_BDTR_DTG_Pos (0U)
  4402. #define TIM_BDTR_DTG_Msk (0xFFUL << TIM_BDTR_DTG_Pos) /*!< 0x000000FF */
  4403. #define TIM_BDTR_DTG TIM_BDTR_DTG_Msk /*!<DTG[0:7] bits (Dead-Time Generator set-up) */
  4404. #define TIM_BDTR_DTG_0 (0x01UL << TIM_BDTR_DTG_Pos) /*!< 0x00000001 */
  4405. #define TIM_BDTR_DTG_1 (0x02UL << TIM_BDTR_DTG_Pos) /*!< 0x00000002 */
  4406. #define TIM_BDTR_DTG_2 (0x04UL << TIM_BDTR_DTG_Pos) /*!< 0x00000004 */
  4407. #define TIM_BDTR_DTG_3 (0x08UL << TIM_BDTR_DTG_Pos) /*!< 0x00000008 */
  4408. #define TIM_BDTR_DTG_4 (0x10UL << TIM_BDTR_DTG_Pos) /*!< 0x00000010 */
  4409. #define TIM_BDTR_DTG_5 (0x20UL << TIM_BDTR_DTG_Pos) /*!< 0x00000020 */
  4410. #define TIM_BDTR_DTG_6 (0x40UL << TIM_BDTR_DTG_Pos) /*!< 0x00000040 */
  4411. #define TIM_BDTR_DTG_7 (0x80UL << TIM_BDTR_DTG_Pos) /*!< 0x00000080 */
  4412. #define TIM_BDTR_LOCK_Pos (8U)
  4413. #define TIM_BDTR_LOCK_Msk (0x3UL << TIM_BDTR_LOCK_Pos) /*!< 0x00000300 */
  4414. #define TIM_BDTR_LOCK TIM_BDTR_LOCK_Msk /*!<LOCK[1:0] bits (Lock Configuration) */
  4415. #define TIM_BDTR_LOCK_0 (0x1UL << TIM_BDTR_LOCK_Pos) /*!< 0x00000100 */
  4416. #define TIM_BDTR_LOCK_1 (0x2UL << TIM_BDTR_LOCK_Pos) /*!< 0x00000200 */
  4417. #define TIM_BDTR_OSSI_Pos (10U)
  4418. #define TIM_BDTR_OSSI_Msk (0x1UL << TIM_BDTR_OSSI_Pos) /*!< 0x00000400 */
  4419. #define TIM_BDTR_OSSI TIM_BDTR_OSSI_Msk /*!<Off-State Selection for Idle mode */
  4420. #define TIM_BDTR_OSSR_Pos (11U)
  4421. #define TIM_BDTR_OSSR_Msk (0x1UL << TIM_BDTR_OSSR_Pos) /*!< 0x00000800 */
  4422. #define TIM_BDTR_OSSR TIM_BDTR_OSSR_Msk /*!<Off-State Selection for Run mode */
  4423. #define TIM_BDTR_BKE_Pos (12U)
  4424. #define TIM_BDTR_BKE_Msk (0x1UL << TIM_BDTR_BKE_Pos) /*!< 0x00001000 */
  4425. #define TIM_BDTR_BKE TIM_BDTR_BKE_Msk /*!<Break enable */
  4426. #define TIM_BDTR_BKP_Pos (13U)
  4427. #define TIM_BDTR_BKP_Msk (0x1UL << TIM_BDTR_BKP_Pos) /*!< 0x00002000 */
  4428. #define TIM_BDTR_BKP TIM_BDTR_BKP_Msk /*!<Break Polarity */
  4429. #define TIM_BDTR_AOE_Pos (14U)
  4430. #define TIM_BDTR_AOE_Msk (0x1UL << TIM_BDTR_AOE_Pos) /*!< 0x00004000 */
  4431. #define TIM_BDTR_AOE TIM_BDTR_AOE_Msk /*!<Automatic Output enable */
  4432. #define TIM_BDTR_MOE_Pos (15U)
  4433. #define TIM_BDTR_MOE_Msk (0x1UL << TIM_BDTR_MOE_Pos) /*!< 0x00008000 */
  4434. #define TIM_BDTR_MOE TIM_BDTR_MOE_Msk /*!<Main Output enable */
  4435. /******************* Bit definition for TIM_DCR register *******************/
  4436. #define TIM_DCR_DBA_Pos (0U)
  4437. #define TIM_DCR_DBA_Msk (0x1FUL << TIM_DCR_DBA_Pos) /*!< 0x0000001F */
  4438. #define TIM_DCR_DBA TIM_DCR_DBA_Msk /*!<DBA[4:0] bits (DMA Base Address) */
  4439. #define TIM_DCR_DBA_0 (0x01UL << TIM_DCR_DBA_Pos) /*!< 0x00000001 */
  4440. #define TIM_DCR_DBA_1 (0x02UL << TIM_DCR_DBA_Pos) /*!< 0x00000002 */
  4441. #define TIM_DCR_DBA_2 (0x04UL << TIM_DCR_DBA_Pos) /*!< 0x00000004 */
  4442. #define TIM_DCR_DBA_3 (0x08UL << TIM_DCR_DBA_Pos) /*!< 0x00000008 */
  4443. #define TIM_DCR_DBA_4 (0x10UL << TIM_DCR_DBA_Pos) /*!< 0x00000010 */
  4444. #define TIM_DCR_DBL_Pos (8U)
  4445. #define TIM_DCR_DBL_Msk (0x1FUL << TIM_DCR_DBL_Pos) /*!< 0x00001F00 */
  4446. #define TIM_DCR_DBL TIM_DCR_DBL_Msk /*!<DBL[4:0] bits (DMA Burst Length) */
  4447. #define TIM_DCR_DBL_0 (0x01UL << TIM_DCR_DBL_Pos) /*!< 0x00000100 */
  4448. #define TIM_DCR_DBL_1 (0x02UL << TIM_DCR_DBL_Pos) /*!< 0x00000200 */
  4449. #define TIM_DCR_DBL_2 (0x04UL << TIM_DCR_DBL_Pos) /*!< 0x00000400 */
  4450. #define TIM_DCR_DBL_3 (0x08UL << TIM_DCR_DBL_Pos) /*!< 0x00000800 */
  4451. #define TIM_DCR_DBL_4 (0x10UL << TIM_DCR_DBL_Pos) /*!< 0x00001000 */
  4452. /******************* Bit definition for TIM_DMAR register ******************/
  4453. #define TIM_DMAR_DMAB_Pos (0U)
  4454. #define TIM_DMAR_DMAB_Msk (0xFFFFUL << TIM_DMAR_DMAB_Pos) /*!< 0x0000FFFF */
  4455. #define TIM_DMAR_DMAB TIM_DMAR_DMAB_Msk /*!<DMA register for burst accesses */
  4456. /******************************************************************************/
  4457. /* */
  4458. /* Real-Time Clock */
  4459. /* */
  4460. /******************************************************************************/
  4461. /******************* Bit definition for RTC_CRH register ********************/
  4462. #define RTC_CRH_SECIE_Pos (0U)
  4463. #define RTC_CRH_SECIE_Msk (0x1UL << RTC_CRH_SECIE_Pos) /*!< 0x00000001 */
  4464. #define RTC_CRH_SECIE RTC_CRH_SECIE_Msk /*!< Second Interrupt Enable */
  4465. #define RTC_CRH_ALRIE_Pos (1U)
  4466. #define RTC_CRH_ALRIE_Msk (0x1UL << RTC_CRH_ALRIE_Pos) /*!< 0x00000002 */
  4467. #define RTC_CRH_ALRIE RTC_CRH_ALRIE_Msk /*!< Alarm Interrupt Enable */
  4468. #define RTC_CRH_OWIE_Pos (2U)
  4469. #define RTC_CRH_OWIE_Msk (0x1UL << RTC_CRH_OWIE_Pos) /*!< 0x00000004 */
  4470. #define RTC_CRH_OWIE RTC_CRH_OWIE_Msk /*!< OverfloW Interrupt Enable */
  4471. /******************* Bit definition for RTC_CRL register ********************/
  4472. #define RTC_CRL_SECF_Pos (0U)
  4473. #define RTC_CRL_SECF_Msk (0x1UL << RTC_CRL_SECF_Pos) /*!< 0x00000001 */
  4474. #define RTC_CRL_SECF RTC_CRL_SECF_Msk /*!< Second Flag */
  4475. #define RTC_CRL_ALRF_Pos (1U)
  4476. #define RTC_CRL_ALRF_Msk (0x1UL << RTC_CRL_ALRF_Pos) /*!< 0x00000002 */
  4477. #define RTC_CRL_ALRF RTC_CRL_ALRF_Msk /*!< Alarm Flag */
  4478. #define RTC_CRL_OWF_Pos (2U)
  4479. #define RTC_CRL_OWF_Msk (0x1UL << RTC_CRL_OWF_Pos) /*!< 0x00000004 */
  4480. #define RTC_CRL_OWF RTC_CRL_OWF_Msk /*!< OverfloW Flag */
  4481. #define RTC_CRL_RSF_Pos (3U)
  4482. #define RTC_CRL_RSF_Msk (0x1UL << RTC_CRL_RSF_Pos) /*!< 0x00000008 */
  4483. #define RTC_CRL_RSF RTC_CRL_RSF_Msk /*!< Registers Synchronized Flag */
  4484. #define RTC_CRL_CNF_Pos (4U)
  4485. #define RTC_CRL_CNF_Msk (0x1UL << RTC_CRL_CNF_Pos) /*!< 0x00000010 */
  4486. #define RTC_CRL_CNF RTC_CRL_CNF_Msk /*!< Configuration Flag */
  4487. #define RTC_CRL_RTOFF_Pos (5U)
  4488. #define RTC_CRL_RTOFF_Msk (0x1UL << RTC_CRL_RTOFF_Pos) /*!< 0x00000020 */
  4489. #define RTC_CRL_RTOFF RTC_CRL_RTOFF_Msk /*!< RTC operation OFF */
  4490. /******************* Bit definition for RTC_PRLH register *******************/
  4491. #define RTC_PRLH_PRL_Pos (0U)
  4492. #define RTC_PRLH_PRL_Msk (0xFUL << RTC_PRLH_PRL_Pos) /*!< 0x0000000F */
  4493. #define RTC_PRLH_PRL RTC_PRLH_PRL_Msk /*!< RTC Prescaler Reload Value High */
  4494. /******************* Bit definition for RTC_PRLL register *******************/
  4495. #define RTC_PRLL_PRL_Pos (0U)
  4496. #define RTC_PRLL_PRL_Msk (0xFFFFUL << RTC_PRLL_PRL_Pos) /*!< 0x0000FFFF */
  4497. #define RTC_PRLL_PRL RTC_PRLL_PRL_Msk /*!< RTC Prescaler Reload Value Low */
  4498. /******************* Bit definition for RTC_DIVH register *******************/
  4499. #define RTC_DIVH_RTC_DIV_Pos (0U)
  4500. #define RTC_DIVH_RTC_DIV_Msk (0xFUL << RTC_DIVH_RTC_DIV_Pos) /*!< 0x0000000F */
  4501. #define RTC_DIVH_RTC_DIV RTC_DIVH_RTC_DIV_Msk /*!< RTC Clock Divider High */
  4502. /******************* Bit definition for RTC_DIVL register *******************/
  4503. #define RTC_DIVL_RTC_DIV_Pos (0U)
  4504. #define RTC_DIVL_RTC_DIV_Msk (0xFFFFUL << RTC_DIVL_RTC_DIV_Pos) /*!< 0x0000FFFF */
  4505. #define RTC_DIVL_RTC_DIV RTC_DIVL_RTC_DIV_Msk /*!< RTC Clock Divider Low */
  4506. /******************* Bit definition for RTC_CNTH register *******************/
  4507. #define RTC_CNTH_RTC_CNT_Pos (0U)
  4508. #define RTC_CNTH_RTC_CNT_Msk (0xFFFFUL << RTC_CNTH_RTC_CNT_Pos) /*!< 0x0000FFFF */
  4509. #define RTC_CNTH_RTC_CNT RTC_CNTH_RTC_CNT_Msk /*!< RTC Counter High */
  4510. /******************* Bit definition for RTC_CNTL register *******************/
  4511. #define RTC_CNTL_RTC_CNT_Pos (0U)
  4512. #define RTC_CNTL_RTC_CNT_Msk (0xFFFFUL << RTC_CNTL_RTC_CNT_Pos) /*!< 0x0000FFFF */
  4513. #define RTC_CNTL_RTC_CNT RTC_CNTL_RTC_CNT_Msk /*!< RTC Counter Low */
  4514. /******************* Bit definition for RTC_ALRH register *******************/
  4515. #define RTC_ALRH_RTC_ALR_Pos (0U)
  4516. #define RTC_ALRH_RTC_ALR_Msk (0xFFFFUL << RTC_ALRH_RTC_ALR_Pos) /*!< 0x0000FFFF */
  4517. #define RTC_ALRH_RTC_ALR RTC_ALRH_RTC_ALR_Msk /*!< RTC Alarm High */
  4518. /******************* Bit definition for RTC_ALRL register *******************/
  4519. #define RTC_ALRL_RTC_ALR_Pos (0U)
  4520. #define RTC_ALRL_RTC_ALR_Msk (0xFFFFUL << RTC_ALRL_RTC_ALR_Pos) /*!< 0x0000FFFF */
  4521. #define RTC_ALRL_RTC_ALR RTC_ALRL_RTC_ALR_Msk /*!< RTC Alarm Low */
  4522. /******************************************************************************/
  4523. /* */
  4524. /* Independent WATCHDOG (IWDG) */
  4525. /* */
  4526. /******************************************************************************/
  4527. /******************* Bit definition for IWDG_KR register ********************/
  4528. #define IWDG_KR_KEY_Pos (0U)
  4529. #define IWDG_KR_KEY_Msk (0xFFFFUL << IWDG_KR_KEY_Pos) /*!< 0x0000FFFF */
  4530. #define IWDG_KR_KEY IWDG_KR_KEY_Msk /*!< Key value (write only, read 0000h) */
  4531. /******************* Bit definition for IWDG_PR register ********************/
  4532. #define IWDG_PR_PR_Pos (0U)
  4533. #define IWDG_PR_PR_Msk (0x7UL << IWDG_PR_PR_Pos) /*!< 0x00000007 */
  4534. #define IWDG_PR_PR IWDG_PR_PR_Msk /*!< PR[2:0] (Prescaler divider) */
  4535. #define IWDG_PR_PR_0 (0x1UL << IWDG_PR_PR_Pos) /*!< 0x00000001 */
  4536. #define IWDG_PR_PR_1 (0x2UL << IWDG_PR_PR_Pos) /*!< 0x00000002 */
  4537. #define IWDG_PR_PR_2 (0x4UL << IWDG_PR_PR_Pos) /*!< 0x00000004 */
  4538. /******************* Bit definition for IWDG_RLR register *******************/
  4539. #define IWDG_RLR_RL_Pos (0U)
  4540. #define IWDG_RLR_RL_Msk (0xFFFUL << IWDG_RLR_RL_Pos) /*!< 0x00000FFF */
  4541. #define IWDG_RLR_RL IWDG_RLR_RL_Msk /*!< Watchdog counter reload value */
  4542. /******************* Bit definition for IWDG_SR register ********************/
  4543. #define IWDG_SR_PVU_Pos (0U)
  4544. #define IWDG_SR_PVU_Msk (0x1UL << IWDG_SR_PVU_Pos) /*!< 0x00000001 */
  4545. #define IWDG_SR_PVU IWDG_SR_PVU_Msk /*!< Watchdog prescaler value update */
  4546. #define IWDG_SR_RVU_Pos (1U)
  4547. #define IWDG_SR_RVU_Msk (0x1UL << IWDG_SR_RVU_Pos) /*!< 0x00000002 */
  4548. #define IWDG_SR_RVU IWDG_SR_RVU_Msk /*!< Watchdog counter reload value update */
  4549. /******************************************************************************/
  4550. /* */
  4551. /* Window WATCHDOG (WWDG) */
  4552. /* */
  4553. /******************************************************************************/
  4554. /******************* Bit definition for WWDG_CR register ********************/
  4555. #define WWDG_CR_T_Pos (0U)
  4556. #define WWDG_CR_T_Msk (0x7FUL << WWDG_CR_T_Pos) /*!< 0x0000007F */
  4557. #define WWDG_CR_T WWDG_CR_T_Msk /*!< T[6:0] bits (7-Bit counter (MSB to LSB)) */
  4558. #define WWDG_CR_T_0 (0x01UL << WWDG_CR_T_Pos) /*!< 0x00000001 */
  4559. #define WWDG_CR_T_1 (0x02UL << WWDG_CR_T_Pos) /*!< 0x00000002 */
  4560. #define WWDG_CR_T_2 (0x04UL << WWDG_CR_T_Pos) /*!< 0x00000004 */
  4561. #define WWDG_CR_T_3 (0x08UL << WWDG_CR_T_Pos) /*!< 0x00000008 */
  4562. #define WWDG_CR_T_4 (0x10UL << WWDG_CR_T_Pos) /*!< 0x00000010 */
  4563. #define WWDG_CR_T_5 (0x20UL << WWDG_CR_T_Pos) /*!< 0x00000020 */
  4564. #define WWDG_CR_T_6 (0x40UL << WWDG_CR_T_Pos) /*!< 0x00000040 */
  4565. /* Legacy defines */
  4566. #define WWDG_CR_T0 WWDG_CR_T_0
  4567. #define WWDG_CR_T1 WWDG_CR_T_1
  4568. #define WWDG_CR_T2 WWDG_CR_T_2
  4569. #define WWDG_CR_T3 WWDG_CR_T_3
  4570. #define WWDG_CR_T4 WWDG_CR_T_4
  4571. #define WWDG_CR_T5 WWDG_CR_T_5
  4572. #define WWDG_CR_T6 WWDG_CR_T_6
  4573. #define WWDG_CR_WDGA_Pos (7U)
  4574. #define WWDG_CR_WDGA_Msk (0x1UL << WWDG_CR_WDGA_Pos) /*!< 0x00000080 */
  4575. #define WWDG_CR_WDGA WWDG_CR_WDGA_Msk /*!< Activation bit */
  4576. /******************* Bit definition for WWDG_CFR register *******************/
  4577. #define WWDG_CFR_W_Pos (0U)
  4578. #define WWDG_CFR_W_Msk (0x7FUL << WWDG_CFR_W_Pos) /*!< 0x0000007F */
  4579. #define WWDG_CFR_W WWDG_CFR_W_Msk /*!< W[6:0] bits (7-bit window value) */
  4580. #define WWDG_CFR_W_0 (0x01UL << WWDG_CFR_W_Pos) /*!< 0x00000001 */
  4581. #define WWDG_CFR_W_1 (0x02UL << WWDG_CFR_W_Pos) /*!< 0x00000002 */
  4582. #define WWDG_CFR_W_2 (0x04UL << WWDG_CFR_W_Pos) /*!< 0x00000004 */
  4583. #define WWDG_CFR_W_3 (0x08UL << WWDG_CFR_W_Pos) /*!< 0x00000008 */
  4584. #define WWDG_CFR_W_4 (0x10UL << WWDG_CFR_W_Pos) /*!< 0x00000010 */
  4585. #define WWDG_CFR_W_5 (0x20UL << WWDG_CFR_W_Pos) /*!< 0x00000020 */
  4586. #define WWDG_CFR_W_6 (0x40UL << WWDG_CFR_W_Pos) /*!< 0x00000040 */
  4587. /* Legacy defines */
  4588. #define WWDG_CFR_W0 WWDG_CFR_W_0
  4589. #define WWDG_CFR_W1 WWDG_CFR_W_1
  4590. #define WWDG_CFR_W2 WWDG_CFR_W_2
  4591. #define WWDG_CFR_W3 WWDG_CFR_W_3
  4592. #define WWDG_CFR_W4 WWDG_CFR_W_4
  4593. #define WWDG_CFR_W5 WWDG_CFR_W_5
  4594. #define WWDG_CFR_W6 WWDG_CFR_W_6
  4595. #define WWDG_CFR_WDGTB_Pos (7U)
  4596. #define WWDG_CFR_WDGTB_Msk (0x3UL << WWDG_CFR_WDGTB_Pos) /*!< 0x00000180 */
  4597. #define WWDG_CFR_WDGTB WWDG_CFR_WDGTB_Msk /*!< WDGTB[1:0] bits (Timer Base) */
  4598. #define WWDG_CFR_WDGTB_0 (0x1UL << WWDG_CFR_WDGTB_Pos) /*!< 0x00000080 */
  4599. #define WWDG_CFR_WDGTB_1 (0x2UL << WWDG_CFR_WDGTB_Pos) /*!< 0x00000100 */
  4600. /* Legacy defines */
  4601. #define WWDG_CFR_WDGTB0 WWDG_CFR_WDGTB_0
  4602. #define WWDG_CFR_WDGTB1 WWDG_CFR_WDGTB_1
  4603. #define WWDG_CFR_EWI_Pos (9U)
  4604. #define WWDG_CFR_EWI_Msk (0x1UL << WWDG_CFR_EWI_Pos) /*!< 0x00000200 */
  4605. #define WWDG_CFR_EWI WWDG_CFR_EWI_Msk /*!< Early Wakeup Interrupt */
  4606. /******************* Bit definition for WWDG_SR register ********************/
  4607. #define WWDG_SR_EWIF_Pos (0U)
  4608. #define WWDG_SR_EWIF_Msk (0x1UL << WWDG_SR_EWIF_Pos) /*!< 0x00000001 */
  4609. #define WWDG_SR_EWIF WWDG_SR_EWIF_Msk /*!< Early Wakeup Interrupt Flag */
  4610. /******************************************************************************/
  4611. /* */
  4612. /* Flexible Static Memory Controller */
  4613. /* */
  4614. /******************************************************************************/
  4615. /****************** Bit definition for FSMC_BCRx (x=1..4) register **********/
  4616. #define FSMC_BCRx_MBKEN_Pos (0U)
  4617. #define FSMC_BCRx_MBKEN_Msk (0x1UL << FSMC_BCRx_MBKEN_Pos) /*!< 0x00000001 */
  4618. #define FSMC_BCRx_MBKEN FSMC_BCRx_MBKEN_Msk /*!< Memory bank enable bit */
  4619. #define FSMC_BCRx_MUXEN_Pos (1U)
  4620. #define FSMC_BCRx_MUXEN_Msk (0x1UL << FSMC_BCRx_MUXEN_Pos) /*!< 0x00000002 */
  4621. #define FSMC_BCRx_MUXEN FSMC_BCRx_MUXEN_Msk /*!< Address/data multiplexing enable bit */
  4622. #define FSMC_BCRx_MTYP_Pos (2U)
  4623. #define FSMC_BCRx_MTYP_Msk (0x3UL << FSMC_BCRx_MTYP_Pos) /*!< 0x0000000C */
  4624. #define FSMC_BCRx_MTYP FSMC_BCRx_MTYP_Msk /*!< MTYP[1:0] bits (Memory type) */
  4625. #define FSMC_BCRx_MTYP_0 (0x1UL << FSMC_BCRx_MTYP_Pos) /*!< 0x00000004 */
  4626. #define FSMC_BCRx_MTYP_1 (0x2UL << FSMC_BCRx_MTYP_Pos) /*!< 0x00000008 */
  4627. #define FSMC_BCRx_MWID_Pos (4U)
  4628. #define FSMC_BCRx_MWID_Msk (0x3UL << FSMC_BCRx_MWID_Pos) /*!< 0x00000030 */
  4629. #define FSMC_BCRx_MWID FSMC_BCRx_MWID_Msk /*!< MWID[1:0] bits (Memory data bus width) */
  4630. #define FSMC_BCRx_MWID_0 (0x1UL << FSMC_BCRx_MWID_Pos) /*!< 0x00000010 */
  4631. #define FSMC_BCRx_MWID_1 (0x2UL << FSMC_BCRx_MWID_Pos) /*!< 0x00000020 */
  4632. #define FSMC_BCRx_FACCEN_Pos (6U)
  4633. #define FSMC_BCRx_FACCEN_Msk (0x1UL << FSMC_BCRx_FACCEN_Pos) /*!< 0x00000040 */
  4634. #define FSMC_BCRx_FACCEN FSMC_BCRx_FACCEN_Msk /*!< Flash access enable */
  4635. #define FSMC_BCRx_BURSTEN_Pos (8U)
  4636. #define FSMC_BCRx_BURSTEN_Msk (0x1UL << FSMC_BCRx_BURSTEN_Pos) /*!< 0x00000100 */
  4637. #define FSMC_BCRx_BURSTEN FSMC_BCRx_BURSTEN_Msk /*!< Burst enable bit */
  4638. #define FSMC_BCRx_WAITPOL_Pos (9U)
  4639. #define FSMC_BCRx_WAITPOL_Msk (0x1UL << FSMC_BCRx_WAITPOL_Pos) /*!< 0x00000200 */
  4640. #define FSMC_BCRx_WAITPOL FSMC_BCRx_WAITPOL_Msk /*!< Wait signal polarity bit */
  4641. #define FSMC_BCRx_WRAPMOD_Pos (10U)
  4642. #define FSMC_BCRx_WRAPMOD_Msk (0x1UL << FSMC_BCRx_WRAPMOD_Pos) /*!< 0x00000400 */
  4643. #define FSMC_BCRx_WRAPMOD FSMC_BCRx_WRAPMOD_Msk /*!< Wrapped burst mode support */
  4644. #define FSMC_BCRx_WAITCFG_Pos (11U)
  4645. #define FSMC_BCRx_WAITCFG_Msk (0x1UL << FSMC_BCRx_WAITCFG_Pos) /*!< 0x00000800 */
  4646. #define FSMC_BCRx_WAITCFG FSMC_BCRx_WAITCFG_Msk /*!< Wait timing configuration */
  4647. #define FSMC_BCRx_WREN_Pos (12U)
  4648. #define FSMC_BCRx_WREN_Msk (0x1UL << FSMC_BCRx_WREN_Pos) /*!< 0x00001000 */
  4649. #define FSMC_BCRx_WREN FSMC_BCRx_WREN_Msk /*!< Write enable bit */
  4650. #define FSMC_BCRx_WAITEN_Pos (13U)
  4651. #define FSMC_BCRx_WAITEN_Msk (0x1UL << FSMC_BCRx_WAITEN_Pos) /*!< 0x00002000 */
  4652. #define FSMC_BCRx_WAITEN FSMC_BCRx_WAITEN_Msk /*!< Wait enable bit */
  4653. #define FSMC_BCRx_EXTMOD_Pos (14U)
  4654. #define FSMC_BCRx_EXTMOD_Msk (0x1UL << FSMC_BCRx_EXTMOD_Pos) /*!< 0x00004000 */
  4655. #define FSMC_BCRx_EXTMOD FSMC_BCRx_EXTMOD_Msk /*!< Extended mode enable */
  4656. #define FSMC_BCRx_ASYNCWAIT_Pos (15U)
  4657. #define FSMC_BCRx_ASYNCWAIT_Msk (0x1UL << FSMC_BCRx_ASYNCWAIT_Pos) /*!< 0x00008000 */
  4658. #define FSMC_BCRx_ASYNCWAIT FSMC_BCRx_ASYNCWAIT_Msk /*!< Asynchronous wait */
  4659. #define FSMC_BCRx_CBURSTRW_Pos (19U)
  4660. #define FSMC_BCRx_CBURSTRW_Msk (0x1UL << FSMC_BCRx_CBURSTRW_Pos) /*!< 0x00080000 */
  4661. #define FSMC_BCRx_CBURSTRW FSMC_BCRx_CBURSTRW_Msk /*!< Write burst enable */
  4662. /****************** Bit definition for FSMC_BTRx (x=1..4) register ******/
  4663. #define FSMC_BTRx_ADDSET_Pos (0U)
  4664. #define FSMC_BTRx_ADDSET_Msk (0xFUL << FSMC_BTRx_ADDSET_Pos) /*!< 0x0000000F */
  4665. #define FSMC_BTRx_ADDSET FSMC_BTRx_ADDSET_Msk /*!< ADDSET[3:0] bits (Address setup phase duration) */
  4666. #define FSMC_BTRx_ADDSET_0 (0x1UL << FSMC_BTRx_ADDSET_Pos) /*!< 0x00000001 */
  4667. #define FSMC_BTRx_ADDSET_1 (0x2UL << FSMC_BTRx_ADDSET_Pos) /*!< 0x00000002 */
  4668. #define FSMC_BTRx_ADDSET_2 (0x4UL << FSMC_BTRx_ADDSET_Pos) /*!< 0x00000004 */
  4669. #define FSMC_BTRx_ADDSET_3 (0x8UL << FSMC_BTRx_ADDSET_Pos) /*!< 0x00000008 */
  4670. #define FSMC_BTRx_ADDHLD_Pos (4U)
  4671. #define FSMC_BTRx_ADDHLD_Msk (0xFUL << FSMC_BTRx_ADDHLD_Pos) /*!< 0x000000F0 */
  4672. #define FSMC_BTRx_ADDHLD FSMC_BTRx_ADDHLD_Msk /*!< ADDHLD[3:0] bits (Address-hold phase duration) */
  4673. #define FSMC_BTRx_ADDHLD_0 (0x1UL << FSMC_BTRx_ADDHLD_Pos) /*!< 0x00000010 */
  4674. #define FSMC_BTRx_ADDHLD_1 (0x2UL << FSMC_BTRx_ADDHLD_Pos) /*!< 0x00000020 */
  4675. #define FSMC_BTRx_ADDHLD_2 (0x4UL << FSMC_BTRx_ADDHLD_Pos) /*!< 0x00000040 */
  4676. #define FSMC_BTRx_ADDHLD_3 (0x8UL << FSMC_BTRx_ADDHLD_Pos) /*!< 0x00000080 */
  4677. #define FSMC_BTRx_DATAST_Pos (8U)
  4678. #define FSMC_BTRx_DATAST_Msk (0xFFUL << FSMC_BTRx_DATAST_Pos) /*!< 0x0000FF00 */
  4679. #define FSMC_BTRx_DATAST FSMC_BTRx_DATAST_Msk /*!< DATAST [3:0] bits (Data-phase duration) */
  4680. #define FSMC_BTRx_DATAST_0 (0x01UL << FSMC_BTRx_DATAST_Pos) /*!< 0x00000100 */
  4681. #define FSMC_BTRx_DATAST_1 (0x02UL << FSMC_BTRx_DATAST_Pos) /*!< 0x00000200 */
  4682. #define FSMC_BTRx_DATAST_2 (0x04UL << FSMC_BTRx_DATAST_Pos) /*!< 0x00000400 */
  4683. #define FSMC_BTRx_DATAST_3 (0x08UL << FSMC_BTRx_DATAST_Pos) /*!< 0x00000800 */
  4684. #define FSMC_BTRx_DATAST_4 (0x10UL << FSMC_BTRx_DATAST_Pos) /*!< 0x00001000 */
  4685. #define FSMC_BTRx_DATAST_5 (0x20UL << FSMC_BTRx_DATAST_Pos) /*!< 0x00002000 */
  4686. #define FSMC_BTRx_DATAST_6 (0x40UL << FSMC_BTRx_DATAST_Pos) /*!< 0x00004000 */
  4687. #define FSMC_BTRx_DATAST_7 (0x80UL << FSMC_BTRx_DATAST_Pos) /*!< 0x00008000 */
  4688. #define FSMC_BTRx_BUSTURN_Pos (16U)
  4689. #define FSMC_BTRx_BUSTURN_Msk (0xFUL << FSMC_BTRx_BUSTURN_Pos) /*!< 0x000F0000 */
  4690. #define FSMC_BTRx_BUSTURN FSMC_BTRx_BUSTURN_Msk /*!< BUSTURN[3:0] bits (Bus turnaround phase duration) */
  4691. #define FSMC_BTRx_BUSTURN_0 (0x1UL << FSMC_BTRx_BUSTURN_Pos) /*!< 0x00010000 */
  4692. #define FSMC_BTRx_BUSTURN_1 (0x2UL << FSMC_BTRx_BUSTURN_Pos) /*!< 0x00020000 */
  4693. #define FSMC_BTRx_BUSTURN_2 (0x4UL << FSMC_BTRx_BUSTURN_Pos) /*!< 0x00040000 */
  4694. #define FSMC_BTRx_BUSTURN_3 (0x8UL << FSMC_BTRx_BUSTURN_Pos) /*!< 0x00080000 */
  4695. #define FSMC_BTRx_CLKDIV_Pos (20U)
  4696. #define FSMC_BTRx_CLKDIV_Msk (0xFUL << FSMC_BTRx_CLKDIV_Pos) /*!< 0x00F00000 */
  4697. #define FSMC_BTRx_CLKDIV FSMC_BTRx_CLKDIV_Msk /*!< CLKDIV[3:0] bits (Clock divide ratio) */
  4698. #define FSMC_BTRx_CLKDIV_0 (0x1UL << FSMC_BTRx_CLKDIV_Pos) /*!< 0x00100000 */
  4699. #define FSMC_BTRx_CLKDIV_1 (0x2UL << FSMC_BTRx_CLKDIV_Pos) /*!< 0x00200000 */
  4700. #define FSMC_BTRx_CLKDIV_2 (0x4UL << FSMC_BTRx_CLKDIV_Pos) /*!< 0x00400000 */
  4701. #define FSMC_BTRx_CLKDIV_3 (0x8UL << FSMC_BTRx_CLKDIV_Pos) /*!< 0x00800000 */
  4702. #define FSMC_BTRx_DATLAT_Pos (24U)
  4703. #define FSMC_BTRx_DATLAT_Msk (0xFUL << FSMC_BTRx_DATLAT_Pos) /*!< 0x0F000000 */
  4704. #define FSMC_BTRx_DATLAT FSMC_BTRx_DATLAT_Msk /*!< DATLA[3:0] bits (Data latency) */
  4705. #define FSMC_BTRx_DATLAT_0 (0x1UL << FSMC_BTRx_DATLAT_Pos) /*!< 0x01000000 */
  4706. #define FSMC_BTRx_DATLAT_1 (0x2UL << FSMC_BTRx_DATLAT_Pos) /*!< 0x02000000 */
  4707. #define FSMC_BTRx_DATLAT_2 (0x4UL << FSMC_BTRx_DATLAT_Pos) /*!< 0x04000000 */
  4708. #define FSMC_BTRx_DATLAT_3 (0x8UL << FSMC_BTRx_DATLAT_Pos) /*!< 0x08000000 */
  4709. #define FSMC_BTRx_ACCMOD_Pos (28U)
  4710. #define FSMC_BTRx_ACCMOD_Msk (0x3UL << FSMC_BTRx_ACCMOD_Pos) /*!< 0x30000000 */
  4711. #define FSMC_BTRx_ACCMOD FSMC_BTRx_ACCMOD_Msk /*!< ACCMOD[1:0] bits (Access mode) */
  4712. #define FSMC_BTRx_ACCMOD_0 (0x1UL << FSMC_BTRx_ACCMOD_Pos) /*!< 0x10000000 */
  4713. #define FSMC_BTRx_ACCMOD_1 (0x2UL << FSMC_BTRx_ACCMOD_Pos) /*!< 0x20000000 */
  4714. /****************** Bit definition for FSMC_BWTRx (x=1..4) register ******/
  4715. #define FSMC_BWTRx_ADDSET_Pos (0U)
  4716. #define FSMC_BWTRx_ADDSET_Msk (0xFUL << FSMC_BWTRx_ADDSET_Pos) /*!< 0x0000000F */
  4717. #define FSMC_BWTRx_ADDSET FSMC_BWTRx_ADDSET_Msk /*!< ADDSET[3:0] bits (Address setup phase duration) */
  4718. #define FSMC_BWTRx_ADDSET_0 (0x1UL << FSMC_BWTRx_ADDSET_Pos) /*!< 0x00000001 */
  4719. #define FSMC_BWTRx_ADDSET_1 (0x2UL << FSMC_BWTRx_ADDSET_Pos) /*!< 0x00000002 */
  4720. #define FSMC_BWTRx_ADDSET_2 (0x4UL << FSMC_BWTRx_ADDSET_Pos) /*!< 0x00000004 */
  4721. #define FSMC_BWTRx_ADDSET_3 (0x8UL << FSMC_BWTRx_ADDSET_Pos) /*!< 0x00000008 */
  4722. #define FSMC_BWTRx_ADDHLD_Pos (4U)
  4723. #define FSMC_BWTRx_ADDHLD_Msk (0xFUL << FSMC_BWTRx_ADDHLD_Pos) /*!< 0x000000F0 */
  4724. #define FSMC_BWTRx_ADDHLD FSMC_BWTRx_ADDHLD_Msk /*!< ADDHLD[3:0] bits (Address-hold phase duration) */
  4725. #define FSMC_BWTRx_ADDHLD_0 (0x1UL << FSMC_BWTRx_ADDHLD_Pos) /*!< 0x00000010 */
  4726. #define FSMC_BWTRx_ADDHLD_1 (0x2UL << FSMC_BWTRx_ADDHLD_Pos) /*!< 0x00000020 */
  4727. #define FSMC_BWTRx_ADDHLD_2 (0x4UL << FSMC_BWTRx_ADDHLD_Pos) /*!< 0x00000040 */
  4728. #define FSMC_BWTRx_ADDHLD_3 (0x8UL << FSMC_BWTRx_ADDHLD_Pos) /*!< 0x00000080 */
  4729. #define FSMC_BWTRx_DATAST_Pos (8U)
  4730. #define FSMC_BWTRx_DATAST_Msk (0xFFUL << FSMC_BWTRx_DATAST_Pos) /*!< 0x0000FF00 */
  4731. #define FSMC_BWTRx_DATAST FSMC_BWTRx_DATAST_Msk /*!< DATAST [3:0] bits (Data-phase duration) */
  4732. #define FSMC_BWTRx_DATAST_0 (0x01UL << FSMC_BWTRx_DATAST_Pos) /*!< 0x00000100 */
  4733. #define FSMC_BWTRx_DATAST_1 (0x02UL << FSMC_BWTRx_DATAST_Pos) /*!< 0x00000200 */
  4734. #define FSMC_BWTRx_DATAST_2 (0x04UL << FSMC_BWTRx_DATAST_Pos) /*!< 0x00000400 */
  4735. #define FSMC_BWTRx_DATAST_3 (0x08UL << FSMC_BWTRx_DATAST_Pos) /*!< 0x00000800 */
  4736. #define FSMC_BWTRx_DATAST_4 (0x10UL << FSMC_BWTRx_DATAST_Pos) /*!< 0x00001000 */
  4737. #define FSMC_BWTRx_DATAST_5 (0x20UL << FSMC_BWTRx_DATAST_Pos) /*!< 0x00002000 */
  4738. #define FSMC_BWTRx_DATAST_6 (0x40UL << FSMC_BWTRx_DATAST_Pos) /*!< 0x00004000 */
  4739. #define FSMC_BWTRx_DATAST_7 (0x80UL << FSMC_BWTRx_DATAST_Pos) /*!< 0x00008000 */
  4740. #define FSMC_BWTRx_BUSTURN_Pos (16U)
  4741. #define FSMC_BWTRx_BUSTURN_Msk (0xFUL << FSMC_BWTRx_BUSTURN_Pos) /*!< 0x000F0000 */
  4742. #define FSMC_BWTRx_BUSTURN FSMC_BWTRx_BUSTURN_Msk /*!< BUSTURN[3:0] bits (Bus turnaround phase duration) */
  4743. #define FSMC_BWTRx_BUSTURN_0 (0x1UL << FSMC_BWTRx_BUSTURN_Pos) /*!< 0x00010000 */
  4744. #define FSMC_BWTRx_BUSTURN_1 (0x2UL << FSMC_BWTRx_BUSTURN_Pos) /*!< 0x00020000 */
  4745. #define FSMC_BWTRx_BUSTURN_2 (0x4UL << FSMC_BWTRx_BUSTURN_Pos) /*!< 0x00040000 */
  4746. #define FSMC_BWTRx_BUSTURN_3 (0x8UL << FSMC_BWTRx_BUSTURN_Pos) /*!< 0x00080000 */
  4747. #define FSMC_BWTRx_ACCMOD_Pos (28U)
  4748. #define FSMC_BWTRx_ACCMOD_Msk (0x3UL << FSMC_BWTRx_ACCMOD_Pos) /*!< 0x30000000 */
  4749. #define FSMC_BWTRx_ACCMOD FSMC_BWTRx_ACCMOD_Msk /*!< ACCMOD[1:0] bits (Access mode) */
  4750. #define FSMC_BWTRx_ACCMOD_0 (0x1UL << FSMC_BWTRx_ACCMOD_Pos) /*!< 0x10000000 */
  4751. #define FSMC_BWTRx_ACCMOD_1 (0x2UL << FSMC_BWTRx_ACCMOD_Pos) /*!< 0x20000000 */
  4752. /****************** Bit definition for FSMC_PCRx (x = 2 to 4) register *******************/
  4753. #define FSMC_PCRx_PWAITEN_Pos (1U)
  4754. #define FSMC_PCRx_PWAITEN_Msk (0x1UL << FSMC_PCRx_PWAITEN_Pos) /*!< 0x00000002 */
  4755. #define FSMC_PCRx_PWAITEN FSMC_PCRx_PWAITEN_Msk /*!< Wait feature enable bit */
  4756. #define FSMC_PCRx_PBKEN_Pos (2U)
  4757. #define FSMC_PCRx_PBKEN_Msk (0x1UL << FSMC_PCRx_PBKEN_Pos) /*!< 0x00000004 */
  4758. #define FSMC_PCRx_PBKEN FSMC_PCRx_PBKEN_Msk /*!< PC Card/NAND Flash memory bank enable bit */
  4759. #define FSMC_PCRx_PTYP_Pos (3U)
  4760. #define FSMC_PCRx_PTYP_Msk (0x1UL << FSMC_PCRx_PTYP_Pos) /*!< 0x00000008 */
  4761. #define FSMC_PCRx_PTYP FSMC_PCRx_PTYP_Msk /*!< Memory type */
  4762. #define FSMC_PCRx_PWID_Pos (4U)
  4763. #define FSMC_PCRx_PWID_Msk (0x3UL << FSMC_PCRx_PWID_Pos) /*!< 0x00000030 */
  4764. #define FSMC_PCRx_PWID FSMC_PCRx_PWID_Msk /*!< PWID[1:0] bits (NAND Flash databus width) */
  4765. #define FSMC_PCRx_PWID_0 (0x1UL << FSMC_PCRx_PWID_Pos) /*!< 0x00000010 */
  4766. #define FSMC_PCRx_PWID_1 (0x2UL << FSMC_PCRx_PWID_Pos) /*!< 0x00000020 */
  4767. #define FSMC_PCRx_ECCEN_Pos (6U)
  4768. #define FSMC_PCRx_ECCEN_Msk (0x1UL << FSMC_PCRx_ECCEN_Pos) /*!< 0x00000040 */
  4769. #define FSMC_PCRx_ECCEN FSMC_PCRx_ECCEN_Msk /*!< ECC computation logic enable bit */
  4770. #define FSMC_PCRx_TCLR_Pos (9U)
  4771. #define FSMC_PCRx_TCLR_Msk (0xFUL << FSMC_PCRx_TCLR_Pos) /*!< 0x00001E00 */
  4772. #define FSMC_PCRx_TCLR FSMC_PCRx_TCLR_Msk /*!< TCLR[3:0] bits (CLE to RE delay) */
  4773. #define FSMC_PCRx_TCLR_0 (0x1UL << FSMC_PCRx_TCLR_Pos) /*!< 0x00000200 */
  4774. #define FSMC_PCRx_TCLR_1 (0x2UL << FSMC_PCRx_TCLR_Pos) /*!< 0x00000400 */
  4775. #define FSMC_PCRx_TCLR_2 (0x4UL << FSMC_PCRx_TCLR_Pos) /*!< 0x00000800 */
  4776. #define FSMC_PCRx_TCLR_3 (0x8UL << FSMC_PCRx_TCLR_Pos) /*!< 0x00001000 */
  4777. #define FSMC_PCRx_TAR_Pos (13U)
  4778. #define FSMC_PCRx_TAR_Msk (0xFUL << FSMC_PCRx_TAR_Pos) /*!< 0x0001E000 */
  4779. #define FSMC_PCRx_TAR FSMC_PCRx_TAR_Msk /*!< TAR[3:0] bits (ALE to RE delay) */
  4780. #define FSMC_PCRx_TAR_0 (0x1UL << FSMC_PCRx_TAR_Pos) /*!< 0x00002000 */
  4781. #define FSMC_PCRx_TAR_1 (0x2UL << FSMC_PCRx_TAR_Pos) /*!< 0x00004000 */
  4782. #define FSMC_PCRx_TAR_2 (0x4UL << FSMC_PCRx_TAR_Pos) /*!< 0x00008000 */
  4783. #define FSMC_PCRx_TAR_3 (0x8UL << FSMC_PCRx_TAR_Pos) /*!< 0x00010000 */
  4784. #define FSMC_PCRx_ECCPS_Pos (17U)
  4785. #define FSMC_PCRx_ECCPS_Msk (0x7UL << FSMC_PCRx_ECCPS_Pos) /*!< 0x000E0000 */
  4786. #define FSMC_PCRx_ECCPS FSMC_PCRx_ECCPS_Msk /*!< ECCPS[1:0] bits (ECC page size) */
  4787. #define FSMC_PCRx_ECCPS_0 (0x1UL << FSMC_PCRx_ECCPS_Pos) /*!< 0x00020000 */
  4788. #define FSMC_PCRx_ECCPS_1 (0x2UL << FSMC_PCRx_ECCPS_Pos) /*!< 0x00040000 */
  4789. #define FSMC_PCRx_ECCPS_2 (0x4UL << FSMC_PCRx_ECCPS_Pos) /*!< 0x00080000 */
  4790. /******************* Bit definition for FSMC_SRx (x = 2 to 4) register *******************/
  4791. #define FSMC_SRx_IRS_Pos (0U)
  4792. #define FSMC_SRx_IRS_Msk (0x1UL << FSMC_SRx_IRS_Pos) /*!< 0x00000001 */
  4793. #define FSMC_SRx_IRS FSMC_SRx_IRS_Msk /*!< Interrupt Rising Edge status */
  4794. #define FSMC_SRx_ILS_Pos (1U)
  4795. #define FSMC_SRx_ILS_Msk (0x1UL << FSMC_SRx_ILS_Pos) /*!< 0x00000002 */
  4796. #define FSMC_SRx_ILS FSMC_SRx_ILS_Msk /*!< Interrupt Level status */
  4797. #define FSMC_SRx_IFS_Pos (2U)
  4798. #define FSMC_SRx_IFS_Msk (0x1UL << FSMC_SRx_IFS_Pos) /*!< 0x00000004 */
  4799. #define FSMC_SRx_IFS FSMC_SRx_IFS_Msk /*!< Interrupt Falling Edge status */
  4800. #define FSMC_SRx_IREN_Pos (3U)
  4801. #define FSMC_SRx_IREN_Msk (0x1UL << FSMC_SRx_IREN_Pos) /*!< 0x00000008 */
  4802. #define FSMC_SRx_IREN FSMC_SRx_IREN_Msk /*!< Interrupt Rising Edge detection Enable bit */
  4803. #define FSMC_SRx_ILEN_Pos (4U)
  4804. #define FSMC_SRx_ILEN_Msk (0x1UL << FSMC_SRx_ILEN_Pos) /*!< 0x00000010 */
  4805. #define FSMC_SRx_ILEN FSMC_SRx_ILEN_Msk /*!< Interrupt Level detection Enable bit */
  4806. #define FSMC_SRx_IFEN_Pos (5U)
  4807. #define FSMC_SRx_IFEN_Msk (0x1UL << FSMC_SRx_IFEN_Pos) /*!< 0x00000020 */
  4808. #define FSMC_SRx_IFEN FSMC_SRx_IFEN_Msk /*!< Interrupt Falling Edge detection Enable bit */
  4809. #define FSMC_SRx_FEMPT_Pos (6U)
  4810. #define FSMC_SRx_FEMPT_Msk (0x1UL << FSMC_SRx_FEMPT_Pos) /*!< 0x00000040 */
  4811. #define FSMC_SRx_FEMPT FSMC_SRx_FEMPT_Msk /*!< FIFO empty */
  4812. /****************** Bit definition for FSMC_PMEMx (x = 2 to 4) register ******************/
  4813. #define FSMC_PMEMx_MEMSETx_Pos (0U)
  4814. #define FSMC_PMEMx_MEMSETx_Msk (0xFFUL << FSMC_PMEMx_MEMSETx_Pos) /*!< 0x000000FF */
  4815. #define FSMC_PMEMx_MEMSETx FSMC_PMEMx_MEMSETx_Msk /*!< MEMSETx[7:0] bits (Common memory x setup time) */
  4816. #define FSMC_PMEMx_MEMSETx_0 (0x01UL << FSMC_PMEMx_MEMSETx_Pos) /*!< 0x00000001 */
  4817. #define FSMC_PMEMx_MEMSETx_1 (0x02UL << FSMC_PMEMx_MEMSETx_Pos) /*!< 0x00000002 */
  4818. #define FSMC_PMEMx_MEMSETx_2 (0x04UL << FSMC_PMEMx_MEMSETx_Pos) /*!< 0x00000004 */
  4819. #define FSMC_PMEMx_MEMSETx_3 (0x08UL << FSMC_PMEMx_MEMSETx_Pos) /*!< 0x00000008 */
  4820. #define FSMC_PMEMx_MEMSETx_4 (0x10UL << FSMC_PMEMx_MEMSETx_Pos) /*!< 0x00000010 */
  4821. #define FSMC_PMEMx_MEMSETx_5 (0x20UL << FSMC_PMEMx_MEMSETx_Pos) /*!< 0x00000020 */
  4822. #define FSMC_PMEMx_MEMSETx_6 (0x40UL << FSMC_PMEMx_MEMSETx_Pos) /*!< 0x00000040 */
  4823. #define FSMC_PMEMx_MEMSETx_7 (0x80UL << FSMC_PMEMx_MEMSETx_Pos) /*!< 0x00000080 */
  4824. #define FSMC_PMEMx_MEMWAITx_Pos (8U)
  4825. #define FSMC_PMEMx_MEMWAITx_Msk (0xFFUL << FSMC_PMEMx_MEMWAITx_Pos) /*!< 0x0000FF00 */
  4826. #define FSMC_PMEMx_MEMWAITx FSMC_PMEMx_MEMWAITx_Msk /*!< MEMWAITx[7:0] bits (Common memory x wait time) */
  4827. #define FSMC_PMEMx_MEMWAIT2_0 0x00000100U /*!< Bit 0 */
  4828. #define FSMC_PMEMx_MEMWAITx_1 0x00000200U /*!< Bit 1 */
  4829. #define FSMC_PMEMx_MEMWAITx_2 0x00000400U /*!< Bit 2 */
  4830. #define FSMC_PMEMx_MEMWAITx_3 0x00000800U /*!< Bit 3 */
  4831. #define FSMC_PMEMx_MEMWAITx_4 0x00001000U /*!< Bit 4 */
  4832. #define FSMC_PMEMx_MEMWAITx_5 0x00002000U /*!< Bit 5 */
  4833. #define FSMC_PMEMx_MEMWAITx_6 0x00004000U /*!< Bit 6 */
  4834. #define FSMC_PMEMx_MEMWAITx_7 0x00008000U /*!< Bit 7 */
  4835. #define FSMC_PMEMx_MEMHOLDx_Pos (16U)
  4836. #define FSMC_PMEMx_MEMHOLDx_Msk (0xFFUL << FSMC_PMEMx_MEMHOLDx_Pos) /*!< 0x00FF0000 */
  4837. #define FSMC_PMEMx_MEMHOLDx FSMC_PMEMx_MEMHOLDx_Msk /*!< MEMHOLDx[7:0] bits (Common memory x hold time) */
  4838. #define FSMC_PMEMx_MEMHOLDx_0 (0x01UL << FSMC_PMEMx_MEMHOLDx_Pos) /*!< 0x00010000 */
  4839. #define FSMC_PMEMx_MEMHOLDx_1 (0x02UL << FSMC_PMEMx_MEMHOLDx_Pos) /*!< 0x00020000 */
  4840. #define FSMC_PMEMx_MEMHOLDx_2 (0x04UL << FSMC_PMEMx_MEMHOLDx_Pos) /*!< 0x00040000 */
  4841. #define FSMC_PMEMx_MEMHOLDx_3 (0x08UL << FSMC_PMEMx_MEMHOLDx_Pos) /*!< 0x00080000 */
  4842. #define FSMC_PMEMx_MEMHOLDx_4 (0x10UL << FSMC_PMEMx_MEMHOLDx_Pos) /*!< 0x00100000 */
  4843. #define FSMC_PMEMx_MEMHOLDx_5 (0x20UL << FSMC_PMEMx_MEMHOLDx_Pos) /*!< 0x00200000 */
  4844. #define FSMC_PMEMx_MEMHOLDx_6 (0x40UL << FSMC_PMEMx_MEMHOLDx_Pos) /*!< 0x00400000 */
  4845. #define FSMC_PMEMx_MEMHOLDx_7 (0x80UL << FSMC_PMEMx_MEMHOLDx_Pos) /*!< 0x00800000 */
  4846. #define FSMC_PMEMx_MEMHIZx_Pos (24U)
  4847. #define FSMC_PMEMx_MEMHIZx_Msk (0xFFUL << FSMC_PMEMx_MEMHIZx_Pos) /*!< 0xFF000000 */
  4848. #define FSMC_PMEMx_MEMHIZx FSMC_PMEMx_MEMHIZx_Msk /*!< MEMHIZx[7:0] bits (Common memory x databus HiZ time) */
  4849. #define FSMC_PMEMx_MEMHIZx_0 (0x01UL << FSMC_PMEMx_MEMHIZx_Pos) /*!< 0x01000000 */
  4850. #define FSMC_PMEMx_MEMHIZx_1 (0x02UL << FSMC_PMEMx_MEMHIZx_Pos) /*!< 0x02000000 */
  4851. #define FSMC_PMEMx_MEMHIZx_2 (0x04UL << FSMC_PMEMx_MEMHIZx_Pos) /*!< 0x04000000 */
  4852. #define FSMC_PMEMx_MEMHIZx_3 (0x08UL << FSMC_PMEMx_MEMHIZx_Pos) /*!< 0x08000000 */
  4853. #define FSMC_PMEMx_MEMHIZx_4 (0x10UL << FSMC_PMEMx_MEMHIZx_Pos) /*!< 0x10000000 */
  4854. #define FSMC_PMEMx_MEMHIZx_5 (0x20UL << FSMC_PMEMx_MEMHIZx_Pos) /*!< 0x20000000 */
  4855. #define FSMC_PMEMx_MEMHIZx_6 (0x40UL << FSMC_PMEMx_MEMHIZx_Pos) /*!< 0x40000000 */
  4856. #define FSMC_PMEMx_MEMHIZx_7 (0x80UL << FSMC_PMEMx_MEMHIZx_Pos) /*!< 0x80000000 */
  4857. /****************** Bit definition for FSMC_PATTx (x = 2 to 4) register ******************/
  4858. #define FSMC_PATTx_ATTSETx_Pos (0U)
  4859. #define FSMC_PATTx_ATTSETx_Msk (0xFFUL << FSMC_PATTx_ATTSETx_Pos) /*!< 0x000000FF */
  4860. #define FSMC_PATTx_ATTSETx FSMC_PATTx_ATTSETx_Msk /*!< ATTSETx[7:0] bits (Attribute memory x setup time) */
  4861. #define FSMC_PATTx_ATTSETx_0 (0x01UL << FSMC_PATTx_ATTSETx_Pos) /*!< 0x00000001 */
  4862. #define FSMC_PATTx_ATTSETx_1 (0x02UL << FSMC_PATTx_ATTSETx_Pos) /*!< 0x00000002 */
  4863. #define FSMC_PATTx_ATTSETx_2 (0x04UL << FSMC_PATTx_ATTSETx_Pos) /*!< 0x00000004 */
  4864. #define FSMC_PATTx_ATTSETx_3 (0x08UL << FSMC_PATTx_ATTSETx_Pos) /*!< 0x00000008 */
  4865. #define FSMC_PATTx_ATTSETx_4 (0x10UL << FSMC_PATTx_ATTSETx_Pos) /*!< 0x00000010 */
  4866. #define FSMC_PATTx_ATTSETx_5 (0x20UL << FSMC_PATTx_ATTSETx_Pos) /*!< 0x00000020 */
  4867. #define FSMC_PATTx_ATTSETx_6 (0x40UL << FSMC_PATTx_ATTSETx_Pos) /*!< 0x00000040 */
  4868. #define FSMC_PATTx_ATTSETx_7 (0x80UL << FSMC_PATTx_ATTSETx_Pos) /*!< 0x00000080 */
  4869. #define FSMC_PATTx_ATTWAITx_Pos (8U)
  4870. #define FSMC_PATTx_ATTWAITx_Msk (0xFFUL << FSMC_PATTx_ATTWAITx_Pos) /*!< 0x0000FF00 */
  4871. #define FSMC_PATTx_ATTWAITx FSMC_PATTx_ATTWAITx_Msk /*!< ATTWAITx[7:0] bits (Attribute memory x wait time) */
  4872. #define FSMC_PATTx_ATTWAITx_0 (0x01UL << FSMC_PATTx_ATTWAITx_Pos) /*!< 0x00000100 */
  4873. #define FSMC_PATTx_ATTWAITx_1 (0x02UL << FSMC_PATTx_ATTWAITx_Pos) /*!< 0x00000200 */
  4874. #define FSMC_PATTx_ATTWAITx_2 (0x04UL << FSMC_PATTx_ATTWAITx_Pos) /*!< 0x00000400 */
  4875. #define FSMC_PATTx_ATTWAITx_3 (0x08UL << FSMC_PATTx_ATTWAITx_Pos) /*!< 0x00000800 */
  4876. #define FSMC_PATTx_ATTWAITx_4 (0x10UL << FSMC_PATTx_ATTWAITx_Pos) /*!< 0x00001000 */
  4877. #define FSMC_PATTx_ATTWAITx_5 (0x20UL << FSMC_PATTx_ATTWAITx_Pos) /*!< 0x00002000 */
  4878. #define FSMC_PATTx_ATTWAITx_6 (0x40UL << FSMC_PATTx_ATTWAITx_Pos) /*!< 0x00004000 */
  4879. #define FSMC_PATTx_ATTWAITx_7 (0x80UL << FSMC_PATTx_ATTWAITx_Pos) /*!< 0x00008000 */
  4880. #define FSMC_PATTx_ATTHOLDx_Pos (16U)
  4881. #define FSMC_PATTx_ATTHOLDx_Msk (0xFFUL << FSMC_PATTx_ATTHOLDx_Pos) /*!< 0x00FF0000 */
  4882. #define FSMC_PATTx_ATTHOLDx FSMC_PATTx_ATTHOLDx_Msk /*!< ATTHOLDx[7:0] bits (Attribute memory x hold time) */
  4883. #define FSMC_PATTx_ATTHOLDx_0 (0x01UL << FSMC_PATTx_ATTHOLDx_Pos) /*!< 0x00010000 */
  4884. #define FSMC_PATTx_ATTHOLDx_1 (0x02UL << FSMC_PATTx_ATTHOLDx_Pos) /*!< 0x00020000 */
  4885. #define FSMC_PATTx_ATTHOLDx_2 (0x04UL << FSMC_PATTx_ATTHOLDx_Pos) /*!< 0x00040000 */
  4886. #define FSMC_PATTx_ATTHOLDx_3 (0x08UL << FSMC_PATTx_ATTHOLDx_Pos) /*!< 0x00080000 */
  4887. #define FSMC_PATTx_ATTHOLDx_4 (0x10UL << FSMC_PATTx_ATTHOLDx_Pos) /*!< 0x00100000 */
  4888. #define FSMC_PATTx_ATTHOLDx_5 (0x20UL << FSMC_PATTx_ATTHOLDx_Pos) /*!< 0x00200000 */
  4889. #define FSMC_PATTx_ATTHOLDx_6 (0x40UL << FSMC_PATTx_ATTHOLDx_Pos) /*!< 0x00400000 */
  4890. #define FSMC_PATTx_ATTHOLDx_7 (0x80UL << FSMC_PATTx_ATTHOLDx_Pos) /*!< 0x00800000 */
  4891. #define FSMC_PATTx_ATTHIZx_Pos (24U)
  4892. #define FSMC_PATTx_ATTHIZx_Msk (0xFFUL << FSMC_PATTx_ATTHIZx_Pos) /*!< 0xFF000000 */
  4893. #define FSMC_PATTx_ATTHIZx FSMC_PATTx_ATTHIZx_Msk /*!< ATTHIZx[7:0] bits (Attribute memory x databus HiZ time) */
  4894. #define FSMC_PATTx_ATTHIZx_0 (0x01UL << FSMC_PATTx_ATTHIZx_Pos) /*!< 0x01000000 */
  4895. #define FSMC_PATTx_ATTHIZx_1 (0x02UL << FSMC_PATTx_ATTHIZx_Pos) /*!< 0x02000000 */
  4896. #define FSMC_PATTx_ATTHIZx_2 (0x04UL << FSMC_PATTx_ATTHIZx_Pos) /*!< 0x04000000 */
  4897. #define FSMC_PATTx_ATTHIZx_3 (0x08UL << FSMC_PATTx_ATTHIZx_Pos) /*!< 0x08000000 */
  4898. #define FSMC_PATTx_ATTHIZx_4 (0x10UL << FSMC_PATTx_ATTHIZx_Pos) /*!< 0x10000000 */
  4899. #define FSMC_PATTx_ATTHIZx_5 (0x20UL << FSMC_PATTx_ATTHIZx_Pos) /*!< 0x20000000 */
  4900. #define FSMC_PATTx_ATTHIZx_6 (0x40UL << FSMC_PATTx_ATTHIZx_Pos) /*!< 0x40000000 */
  4901. #define FSMC_PATTx_ATTHIZx_7 (0x80UL << FSMC_PATTx_ATTHIZx_Pos) /*!< 0x80000000 */
  4902. /****************** Bit definition for FSMC_PIO4 register *******************/
  4903. #define FSMC_PIO4_IOSET4_Pos (0U)
  4904. #define FSMC_PIO4_IOSET4_Msk (0xFFUL << FSMC_PIO4_IOSET4_Pos) /*!< 0x000000FF */
  4905. #define FSMC_PIO4_IOSET4 FSMC_PIO4_IOSET4_Msk /*!< IOSET4[7:0] bits (I/O 4 setup time) */
  4906. #define FSMC_PIO4_IOSET4_0 (0x01UL << FSMC_PIO4_IOSET4_Pos) /*!< 0x00000001 */
  4907. #define FSMC_PIO4_IOSET4_1 (0x02UL << FSMC_PIO4_IOSET4_Pos) /*!< 0x00000002 */
  4908. #define FSMC_PIO4_IOSET4_2 (0x04UL << FSMC_PIO4_IOSET4_Pos) /*!< 0x00000004 */
  4909. #define FSMC_PIO4_IOSET4_3 (0x08UL << FSMC_PIO4_IOSET4_Pos) /*!< 0x00000008 */
  4910. #define FSMC_PIO4_IOSET4_4 (0x10UL << FSMC_PIO4_IOSET4_Pos) /*!< 0x00000010 */
  4911. #define FSMC_PIO4_IOSET4_5 (0x20UL << FSMC_PIO4_IOSET4_Pos) /*!< 0x00000020 */
  4912. #define FSMC_PIO4_IOSET4_6 (0x40UL << FSMC_PIO4_IOSET4_Pos) /*!< 0x00000040 */
  4913. #define FSMC_PIO4_IOSET4_7 (0x80UL << FSMC_PIO4_IOSET4_Pos) /*!< 0x00000080 */
  4914. #define FSMC_PIO4_IOWAIT4_Pos (8U)
  4915. #define FSMC_PIO4_IOWAIT4_Msk (0xFFUL << FSMC_PIO4_IOWAIT4_Pos) /*!< 0x0000FF00 */
  4916. #define FSMC_PIO4_IOWAIT4 FSMC_PIO4_IOWAIT4_Msk /*!< IOWAIT4[7:0] bits (I/O 4 wait time) */
  4917. #define FSMC_PIO4_IOWAIT4_0 (0x01UL << FSMC_PIO4_IOWAIT4_Pos) /*!< 0x00000100 */
  4918. #define FSMC_PIO4_IOWAIT4_1 (0x02UL << FSMC_PIO4_IOWAIT4_Pos) /*!< 0x00000200 */
  4919. #define FSMC_PIO4_IOWAIT4_2 (0x04UL << FSMC_PIO4_IOWAIT4_Pos) /*!< 0x00000400 */
  4920. #define FSMC_PIO4_IOWAIT4_3 (0x08UL << FSMC_PIO4_IOWAIT4_Pos) /*!< 0x00000800 */
  4921. #define FSMC_PIO4_IOWAIT4_4 (0x10UL << FSMC_PIO4_IOWAIT4_Pos) /*!< 0x00001000 */
  4922. #define FSMC_PIO4_IOWAIT4_5 (0x20UL << FSMC_PIO4_IOWAIT4_Pos) /*!< 0x00002000 */
  4923. #define FSMC_PIO4_IOWAIT4_6 (0x40UL << FSMC_PIO4_IOWAIT4_Pos) /*!< 0x00004000 */
  4924. #define FSMC_PIO4_IOWAIT4_7 (0x80UL << FSMC_PIO4_IOWAIT4_Pos) /*!< 0x00008000 */
  4925. #define FSMC_PIO4_IOHOLD4_Pos (16U)
  4926. #define FSMC_PIO4_IOHOLD4_Msk (0xFFUL << FSMC_PIO4_IOHOLD4_Pos) /*!< 0x00FF0000 */
  4927. #define FSMC_PIO4_IOHOLD4 FSMC_PIO4_IOHOLD4_Msk /*!< IOHOLD4[7:0] bits (I/O 4 hold time) */
  4928. #define FSMC_PIO4_IOHOLD4_0 (0x01UL << FSMC_PIO4_IOHOLD4_Pos) /*!< 0x00010000 */
  4929. #define FSMC_PIO4_IOHOLD4_1 (0x02UL << FSMC_PIO4_IOHOLD4_Pos) /*!< 0x00020000 */
  4930. #define FSMC_PIO4_IOHOLD4_2 (0x04UL << FSMC_PIO4_IOHOLD4_Pos) /*!< 0x00040000 */
  4931. #define FSMC_PIO4_IOHOLD4_3 (0x08UL << FSMC_PIO4_IOHOLD4_Pos) /*!< 0x00080000 */
  4932. #define FSMC_PIO4_IOHOLD4_4 (0x10UL << FSMC_PIO4_IOHOLD4_Pos) /*!< 0x00100000 */
  4933. #define FSMC_PIO4_IOHOLD4_5 (0x20UL << FSMC_PIO4_IOHOLD4_Pos) /*!< 0x00200000 */
  4934. #define FSMC_PIO4_IOHOLD4_6 (0x40UL << FSMC_PIO4_IOHOLD4_Pos) /*!< 0x00400000 */
  4935. #define FSMC_PIO4_IOHOLD4_7 (0x80UL << FSMC_PIO4_IOHOLD4_Pos) /*!< 0x00800000 */
  4936. #define FSMC_PIO4_IOHIZ4_Pos (24U)
  4937. #define FSMC_PIO4_IOHIZ4_Msk (0xFFUL << FSMC_PIO4_IOHIZ4_Pos) /*!< 0xFF000000 */
  4938. #define FSMC_PIO4_IOHIZ4 FSMC_PIO4_IOHIZ4_Msk /*!< IOHIZ4[7:0] bits (I/O 4 databus HiZ time) */
  4939. #define FSMC_PIO4_IOHIZ4_0 (0x01UL << FSMC_PIO4_IOHIZ4_Pos) /*!< 0x01000000 */
  4940. #define FSMC_PIO4_IOHIZ4_1 (0x02UL << FSMC_PIO4_IOHIZ4_Pos) /*!< 0x02000000 */
  4941. #define FSMC_PIO4_IOHIZ4_2 (0x04UL << FSMC_PIO4_IOHIZ4_Pos) /*!< 0x04000000 */
  4942. #define FSMC_PIO4_IOHIZ4_3 (0x08UL << FSMC_PIO4_IOHIZ4_Pos) /*!< 0x08000000 */
  4943. #define FSMC_PIO4_IOHIZ4_4 (0x10UL << FSMC_PIO4_IOHIZ4_Pos) /*!< 0x10000000 */
  4944. #define FSMC_PIO4_IOHIZ4_5 (0x20UL << FSMC_PIO4_IOHIZ4_Pos) /*!< 0x20000000 */
  4945. #define FSMC_PIO4_IOHIZ4_6 (0x40UL << FSMC_PIO4_IOHIZ4_Pos) /*!< 0x40000000 */
  4946. #define FSMC_PIO4_IOHIZ4_7 (0x80UL << FSMC_PIO4_IOHIZ4_Pos) /*!< 0x80000000 */
  4947. /****************** Bit definition for FSMC_ECCR2 register ******************/
  4948. #define FSMC_ECCR2_ECC2_Pos (0U)
  4949. #define FSMC_ECCR2_ECC2_Msk (0xFFFFFFFFUL << FSMC_ECCR2_ECC2_Pos) /*!< 0xFFFFFFFF */
  4950. #define FSMC_ECCR2_ECC2 FSMC_ECCR2_ECC2_Msk /*!< ECC result */
  4951. /****************** Bit definition for FSMC_ECCR3 register ******************/
  4952. #define FSMC_ECCR3_ECC3_Pos (0U)
  4953. #define FSMC_ECCR3_ECC3_Msk (0xFFFFFFFFUL << FSMC_ECCR3_ECC3_Pos) /*!< 0xFFFFFFFF */
  4954. #define FSMC_ECCR3_ECC3 FSMC_ECCR3_ECC3_Msk /*!< ECC result */
  4955. /******************************************************************************/
  4956. /* */
  4957. /* SD host Interface */
  4958. /* */
  4959. /******************************************************************************/
  4960. /****************** Bit definition for SDIO_POWER register ******************/
  4961. #define SDIO_POWER_PWRCTRL_Pos (0U)
  4962. #define SDIO_POWER_PWRCTRL_Msk (0x3UL << SDIO_POWER_PWRCTRL_Pos) /*!< 0x00000003 */
  4963. #define SDIO_POWER_PWRCTRL SDIO_POWER_PWRCTRL_Msk /*!< PWRCTRL[1:0] bits (Power supply control bits) */
  4964. #define SDIO_POWER_PWRCTRL_0 (0x1UL << SDIO_POWER_PWRCTRL_Pos) /*!< 0x01 */
  4965. #define SDIO_POWER_PWRCTRL_1 (0x2UL << SDIO_POWER_PWRCTRL_Pos) /*!< 0x02 */
  4966. /****************** Bit definition for SDIO_CLKCR register ******************/
  4967. #define SDIO_CLKCR_CLKDIV_Pos (0U)
  4968. #define SDIO_CLKCR_CLKDIV_Msk (0xFFUL << SDIO_CLKCR_CLKDIV_Pos) /*!< 0x000000FF */
  4969. #define SDIO_CLKCR_CLKDIV SDIO_CLKCR_CLKDIV_Msk /*!< Clock divide factor */
  4970. #define SDIO_CLKCR_CLKEN_Pos (8U)
  4971. #define SDIO_CLKCR_CLKEN_Msk (0x1UL << SDIO_CLKCR_CLKEN_Pos) /*!< 0x00000100 */
  4972. #define SDIO_CLKCR_CLKEN SDIO_CLKCR_CLKEN_Msk /*!< Clock enable bit */
  4973. #define SDIO_CLKCR_PWRSAV_Pos (9U)
  4974. #define SDIO_CLKCR_PWRSAV_Msk (0x1UL << SDIO_CLKCR_PWRSAV_Pos) /*!< 0x00000200 */
  4975. #define SDIO_CLKCR_PWRSAV SDIO_CLKCR_PWRSAV_Msk /*!< Power saving configuration bit */
  4976. #define SDIO_CLKCR_BYPASS_Pos (10U)
  4977. #define SDIO_CLKCR_BYPASS_Msk (0x1UL << SDIO_CLKCR_BYPASS_Pos) /*!< 0x00000400 */
  4978. #define SDIO_CLKCR_BYPASS SDIO_CLKCR_BYPASS_Msk /*!< Clock divider bypass enable bit */
  4979. #define SDIO_CLKCR_WIDBUS_Pos (11U)
  4980. #define SDIO_CLKCR_WIDBUS_Msk (0x3UL << SDIO_CLKCR_WIDBUS_Pos) /*!< 0x00001800 */
  4981. #define SDIO_CLKCR_WIDBUS SDIO_CLKCR_WIDBUS_Msk /*!< WIDBUS[1:0] bits (Wide bus mode enable bit) */
  4982. #define SDIO_CLKCR_WIDBUS_0 (0x1UL << SDIO_CLKCR_WIDBUS_Pos) /*!< 0x0800 */
  4983. #define SDIO_CLKCR_WIDBUS_1 (0x2UL << SDIO_CLKCR_WIDBUS_Pos) /*!< 0x1000 */
  4984. #define SDIO_CLKCR_NEGEDGE_Pos (13U)
  4985. #define SDIO_CLKCR_NEGEDGE_Msk (0x1UL << SDIO_CLKCR_NEGEDGE_Pos) /*!< 0x00002000 */
  4986. #define SDIO_CLKCR_NEGEDGE SDIO_CLKCR_NEGEDGE_Msk /*!< SDIO_CK dephasing selection bit */
  4987. #define SDIO_CLKCR_HWFC_EN_Pos (14U)
  4988. #define SDIO_CLKCR_HWFC_EN_Msk (0x1UL << SDIO_CLKCR_HWFC_EN_Pos) /*!< 0x00004000 */
  4989. #define SDIO_CLKCR_HWFC_EN SDIO_CLKCR_HWFC_EN_Msk /*!< HW Flow Control enable */
  4990. /******************* Bit definition for SDIO_ARG register *******************/
  4991. #define SDIO_ARG_CMDARG_Pos (0U)
  4992. #define SDIO_ARG_CMDARG_Msk (0xFFFFFFFFUL << SDIO_ARG_CMDARG_Pos) /*!< 0xFFFFFFFF */
  4993. #define SDIO_ARG_CMDARG SDIO_ARG_CMDARG_Msk /*!< Command argument */
  4994. /******************* Bit definition for SDIO_CMD register *******************/
  4995. #define SDIO_CMD_CMDINDEX_Pos (0U)
  4996. #define SDIO_CMD_CMDINDEX_Msk (0x3FUL << SDIO_CMD_CMDINDEX_Pos) /*!< 0x0000003F */
  4997. #define SDIO_CMD_CMDINDEX SDIO_CMD_CMDINDEX_Msk /*!< Command Index */
  4998. #define SDIO_CMD_WAITRESP_Pos (6U)
  4999. #define SDIO_CMD_WAITRESP_Msk (0x3UL << SDIO_CMD_WAITRESP_Pos) /*!< 0x000000C0 */
  5000. #define SDIO_CMD_WAITRESP SDIO_CMD_WAITRESP_Msk /*!< WAITRESP[1:0] bits (Wait for response bits) */
  5001. #define SDIO_CMD_WAITRESP_0 (0x1UL << SDIO_CMD_WAITRESP_Pos) /*!< 0x0040 */
  5002. #define SDIO_CMD_WAITRESP_1 (0x2UL << SDIO_CMD_WAITRESP_Pos) /*!< 0x0080 */
  5003. #define SDIO_CMD_WAITINT_Pos (8U)
  5004. #define SDIO_CMD_WAITINT_Msk (0x1UL << SDIO_CMD_WAITINT_Pos) /*!< 0x00000100 */
  5005. #define SDIO_CMD_WAITINT SDIO_CMD_WAITINT_Msk /*!< CPSM Waits for Interrupt Request */
  5006. #define SDIO_CMD_WAITPEND_Pos (9U)
  5007. #define SDIO_CMD_WAITPEND_Msk (0x1UL << SDIO_CMD_WAITPEND_Pos) /*!< 0x00000200 */
  5008. #define SDIO_CMD_WAITPEND SDIO_CMD_WAITPEND_Msk /*!< CPSM Waits for ends of data transfer (CmdPend internal signal) */
  5009. #define SDIO_CMD_CPSMEN_Pos (10U)
  5010. #define SDIO_CMD_CPSMEN_Msk (0x1UL << SDIO_CMD_CPSMEN_Pos) /*!< 0x00000400 */
  5011. #define SDIO_CMD_CPSMEN SDIO_CMD_CPSMEN_Msk /*!< Command path state machine (CPSM) Enable bit */
  5012. #define SDIO_CMD_SDIOSUSPEND_Pos (11U)
  5013. #define SDIO_CMD_SDIOSUSPEND_Msk (0x1UL << SDIO_CMD_SDIOSUSPEND_Pos) /*!< 0x00000800 */
  5014. #define SDIO_CMD_SDIOSUSPEND SDIO_CMD_SDIOSUSPEND_Msk /*!< SD I/O suspend command */
  5015. #define SDIO_CMD_ENCMDCOMPL_Pos (12U)
  5016. #define SDIO_CMD_ENCMDCOMPL_Msk (0x1UL << SDIO_CMD_ENCMDCOMPL_Pos) /*!< 0x00001000 */
  5017. #define SDIO_CMD_ENCMDCOMPL SDIO_CMD_ENCMDCOMPL_Msk /*!< Enable CMD completion */
  5018. #define SDIO_CMD_NIEN_Pos (13U)
  5019. #define SDIO_CMD_NIEN_Msk (0x1UL << SDIO_CMD_NIEN_Pos) /*!< 0x00002000 */
  5020. #define SDIO_CMD_NIEN SDIO_CMD_NIEN_Msk /*!< Not Interrupt Enable */
  5021. #define SDIO_CMD_CEATACMD_Pos (14U)
  5022. #define SDIO_CMD_CEATACMD_Msk (0x1UL << SDIO_CMD_CEATACMD_Pos) /*!< 0x00004000 */
  5023. #define SDIO_CMD_CEATACMD SDIO_CMD_CEATACMD_Msk /*!< CE-ATA command */
  5024. /***************** Bit definition for SDIO_RESPCMD register *****************/
  5025. #define SDIO_RESPCMD_RESPCMD_Pos (0U)
  5026. #define SDIO_RESPCMD_RESPCMD_Msk (0x3FUL << SDIO_RESPCMD_RESPCMD_Pos) /*!< 0x0000003F */
  5027. #define SDIO_RESPCMD_RESPCMD SDIO_RESPCMD_RESPCMD_Msk /*!< Response command index */
  5028. /****************** Bit definition for SDIO_RESP0 register ******************/
  5029. #define SDIO_RESP0_CARDSTATUS0_Pos (0U)
  5030. #define SDIO_RESP0_CARDSTATUS0_Msk (0xFFFFFFFFUL << SDIO_RESP0_CARDSTATUS0_Pos) /*!< 0xFFFFFFFF */
  5031. #define SDIO_RESP0_CARDSTATUS0 SDIO_RESP0_CARDSTATUS0_Msk /*!< Card Status */
  5032. /****************** Bit definition for SDIO_RESP1 register ******************/
  5033. #define SDIO_RESP1_CARDSTATUS1_Pos (0U)
  5034. #define SDIO_RESP1_CARDSTATUS1_Msk (0xFFFFFFFFUL << SDIO_RESP1_CARDSTATUS1_Pos) /*!< 0xFFFFFFFF */
  5035. #define SDIO_RESP1_CARDSTATUS1 SDIO_RESP1_CARDSTATUS1_Msk /*!< Card Status */
  5036. /****************** Bit definition for SDIO_RESP2 register ******************/
  5037. #define SDIO_RESP2_CARDSTATUS2_Pos (0U)
  5038. #define SDIO_RESP2_CARDSTATUS2_Msk (0xFFFFFFFFUL << SDIO_RESP2_CARDSTATUS2_Pos) /*!< 0xFFFFFFFF */
  5039. #define SDIO_RESP2_CARDSTATUS2 SDIO_RESP2_CARDSTATUS2_Msk /*!< Card Status */
  5040. /****************** Bit definition for SDIO_RESP3 register ******************/
  5041. #define SDIO_RESP3_CARDSTATUS3_Pos (0U)
  5042. #define SDIO_RESP3_CARDSTATUS3_Msk (0xFFFFFFFFUL << SDIO_RESP3_CARDSTATUS3_Pos) /*!< 0xFFFFFFFF */
  5043. #define SDIO_RESP3_CARDSTATUS3 SDIO_RESP3_CARDSTATUS3_Msk /*!< Card Status */
  5044. /****************** Bit definition for SDIO_RESP4 register ******************/
  5045. #define SDIO_RESP4_CARDSTATUS4_Pos (0U)
  5046. #define SDIO_RESP4_CARDSTATUS4_Msk (0xFFFFFFFFUL << SDIO_RESP4_CARDSTATUS4_Pos) /*!< 0xFFFFFFFF */
  5047. #define SDIO_RESP4_CARDSTATUS4 SDIO_RESP4_CARDSTATUS4_Msk /*!< Card Status */
  5048. /****************** Bit definition for SDIO_DTIMER register *****************/
  5049. #define SDIO_DTIMER_DATATIME_Pos (0U)
  5050. #define SDIO_DTIMER_DATATIME_Msk (0xFFFFFFFFUL << SDIO_DTIMER_DATATIME_Pos) /*!< 0xFFFFFFFF */
  5051. #define SDIO_DTIMER_DATATIME SDIO_DTIMER_DATATIME_Msk /*!< Data timeout period. */
  5052. /****************** Bit definition for SDIO_DLEN register *******************/
  5053. #define SDIO_DLEN_DATALENGTH_Pos (0U)
  5054. #define SDIO_DLEN_DATALENGTH_Msk (0x1FFFFFFUL << SDIO_DLEN_DATALENGTH_Pos) /*!< 0x01FFFFFF */
  5055. #define SDIO_DLEN_DATALENGTH SDIO_DLEN_DATALENGTH_Msk /*!< Data length value */
  5056. /****************** Bit definition for SDIO_DCTRL register ******************/
  5057. #define SDIO_DCTRL_DTEN_Pos (0U)
  5058. #define SDIO_DCTRL_DTEN_Msk (0x1UL << SDIO_DCTRL_DTEN_Pos) /*!< 0x00000001 */
  5059. #define SDIO_DCTRL_DTEN SDIO_DCTRL_DTEN_Msk /*!< Data transfer enabled bit */
  5060. #define SDIO_DCTRL_DTDIR_Pos (1U)
  5061. #define SDIO_DCTRL_DTDIR_Msk (0x1UL << SDIO_DCTRL_DTDIR_Pos) /*!< 0x00000002 */
  5062. #define SDIO_DCTRL_DTDIR SDIO_DCTRL_DTDIR_Msk /*!< Data transfer direction selection */
  5063. #define SDIO_DCTRL_DTMODE_Pos (2U)
  5064. #define SDIO_DCTRL_DTMODE_Msk (0x1UL << SDIO_DCTRL_DTMODE_Pos) /*!< 0x00000004 */
  5065. #define SDIO_DCTRL_DTMODE SDIO_DCTRL_DTMODE_Msk /*!< Data transfer mode selection */
  5066. #define SDIO_DCTRL_DMAEN_Pos (3U)
  5067. #define SDIO_DCTRL_DMAEN_Msk (0x1UL << SDIO_DCTRL_DMAEN_Pos) /*!< 0x00000008 */
  5068. #define SDIO_DCTRL_DMAEN SDIO_DCTRL_DMAEN_Msk /*!< DMA enabled bit */
  5069. #define SDIO_DCTRL_DBLOCKSIZE_Pos (4U)
  5070. #define SDIO_DCTRL_DBLOCKSIZE_Msk (0xFUL << SDIO_DCTRL_DBLOCKSIZE_Pos) /*!< 0x000000F0 */
  5071. #define SDIO_DCTRL_DBLOCKSIZE SDIO_DCTRL_DBLOCKSIZE_Msk /*!< DBLOCKSIZE[3:0] bits (Data block size) */
  5072. #define SDIO_DCTRL_DBLOCKSIZE_0 (0x1UL << SDIO_DCTRL_DBLOCKSIZE_Pos) /*!< 0x0010 */
  5073. #define SDIO_DCTRL_DBLOCKSIZE_1 (0x2UL << SDIO_DCTRL_DBLOCKSIZE_Pos) /*!< 0x0020 */
  5074. #define SDIO_DCTRL_DBLOCKSIZE_2 (0x4UL << SDIO_DCTRL_DBLOCKSIZE_Pos) /*!< 0x0040 */
  5075. #define SDIO_DCTRL_DBLOCKSIZE_3 (0x8UL << SDIO_DCTRL_DBLOCKSIZE_Pos) /*!< 0x0080 */
  5076. #define SDIO_DCTRL_RWSTART_Pos (8U)
  5077. #define SDIO_DCTRL_RWSTART_Msk (0x1UL << SDIO_DCTRL_RWSTART_Pos) /*!< 0x00000100 */
  5078. #define SDIO_DCTRL_RWSTART SDIO_DCTRL_RWSTART_Msk /*!< Read wait start */
  5079. #define SDIO_DCTRL_RWSTOP_Pos (9U)
  5080. #define SDIO_DCTRL_RWSTOP_Msk (0x1UL << SDIO_DCTRL_RWSTOP_Pos) /*!< 0x00000200 */
  5081. #define SDIO_DCTRL_RWSTOP SDIO_DCTRL_RWSTOP_Msk /*!< Read wait stop */
  5082. #define SDIO_DCTRL_RWMOD_Pos (10U)
  5083. #define SDIO_DCTRL_RWMOD_Msk (0x1UL << SDIO_DCTRL_RWMOD_Pos) /*!< 0x00000400 */
  5084. #define SDIO_DCTRL_RWMOD SDIO_DCTRL_RWMOD_Msk /*!< Read wait mode */
  5085. #define SDIO_DCTRL_SDIOEN_Pos (11U)
  5086. #define SDIO_DCTRL_SDIOEN_Msk (0x1UL << SDIO_DCTRL_SDIOEN_Pos) /*!< 0x00000800 */
  5087. #define SDIO_DCTRL_SDIOEN SDIO_DCTRL_SDIOEN_Msk /*!< SD I/O enable functions */
  5088. /****************** Bit definition for SDIO_DCOUNT register *****************/
  5089. #define SDIO_DCOUNT_DATACOUNT_Pos (0U)
  5090. #define SDIO_DCOUNT_DATACOUNT_Msk (0x1FFFFFFUL << SDIO_DCOUNT_DATACOUNT_Pos) /*!< 0x01FFFFFF */
  5091. #define SDIO_DCOUNT_DATACOUNT SDIO_DCOUNT_DATACOUNT_Msk /*!< Data count value */
  5092. /****************** Bit definition for SDIO_STA register ********************/
  5093. #define SDIO_STA_CCRCFAIL_Pos (0U)
  5094. #define SDIO_STA_CCRCFAIL_Msk (0x1UL << SDIO_STA_CCRCFAIL_Pos) /*!< 0x00000001 */
  5095. #define SDIO_STA_CCRCFAIL SDIO_STA_CCRCFAIL_Msk /*!< Command response received (CRC check failed) */
  5096. #define SDIO_STA_DCRCFAIL_Pos (1U)
  5097. #define SDIO_STA_DCRCFAIL_Msk (0x1UL << SDIO_STA_DCRCFAIL_Pos) /*!< 0x00000002 */
  5098. #define SDIO_STA_DCRCFAIL SDIO_STA_DCRCFAIL_Msk /*!< Data block sent/received (CRC check failed) */
  5099. #define SDIO_STA_CTIMEOUT_Pos (2U)
  5100. #define SDIO_STA_CTIMEOUT_Msk (0x1UL << SDIO_STA_CTIMEOUT_Pos) /*!< 0x00000004 */
  5101. #define SDIO_STA_CTIMEOUT SDIO_STA_CTIMEOUT_Msk /*!< Command response timeout */
  5102. #define SDIO_STA_DTIMEOUT_Pos (3U)
  5103. #define SDIO_STA_DTIMEOUT_Msk (0x1UL << SDIO_STA_DTIMEOUT_Pos) /*!< 0x00000008 */
  5104. #define SDIO_STA_DTIMEOUT SDIO_STA_DTIMEOUT_Msk /*!< Data timeout */
  5105. #define SDIO_STA_TXUNDERR_Pos (4U)
  5106. #define SDIO_STA_TXUNDERR_Msk (0x1UL << SDIO_STA_TXUNDERR_Pos) /*!< 0x00000010 */
  5107. #define SDIO_STA_TXUNDERR SDIO_STA_TXUNDERR_Msk /*!< Transmit FIFO underrun error */
  5108. #define SDIO_STA_RXOVERR_Pos (5U)
  5109. #define SDIO_STA_RXOVERR_Msk (0x1UL << SDIO_STA_RXOVERR_Pos) /*!< 0x00000020 */
  5110. #define SDIO_STA_RXOVERR SDIO_STA_RXOVERR_Msk /*!< Received FIFO overrun error */
  5111. #define SDIO_STA_CMDREND_Pos (6U)
  5112. #define SDIO_STA_CMDREND_Msk (0x1UL << SDIO_STA_CMDREND_Pos) /*!< 0x00000040 */
  5113. #define SDIO_STA_CMDREND SDIO_STA_CMDREND_Msk /*!< Command response received (CRC check passed) */
  5114. #define SDIO_STA_CMDSENT_Pos (7U)
  5115. #define SDIO_STA_CMDSENT_Msk (0x1UL << SDIO_STA_CMDSENT_Pos) /*!< 0x00000080 */
  5116. #define SDIO_STA_CMDSENT SDIO_STA_CMDSENT_Msk /*!< Command sent (no response required) */
  5117. #define SDIO_STA_DATAEND_Pos (8U)
  5118. #define SDIO_STA_DATAEND_Msk (0x1UL << SDIO_STA_DATAEND_Pos) /*!< 0x00000100 */
  5119. #define SDIO_STA_DATAEND SDIO_STA_DATAEND_Msk /*!< Data end (data counter, SDIDCOUNT, is zero) */
  5120. #define SDIO_STA_STBITERR_Pos (9U)
  5121. #define SDIO_STA_STBITERR_Msk (0x1UL << SDIO_STA_STBITERR_Pos) /*!< 0x00000200 */
  5122. #define SDIO_STA_STBITERR SDIO_STA_STBITERR_Msk /*!< Start bit not detected on all data signals in wide bus mode */
  5123. #define SDIO_STA_DBCKEND_Pos (10U)
  5124. #define SDIO_STA_DBCKEND_Msk (0x1UL << SDIO_STA_DBCKEND_Pos) /*!< 0x00000400 */
  5125. #define SDIO_STA_DBCKEND SDIO_STA_DBCKEND_Msk /*!< Data block sent/received (CRC check passed) */
  5126. #define SDIO_STA_CMDACT_Pos (11U)
  5127. #define SDIO_STA_CMDACT_Msk (0x1UL << SDIO_STA_CMDACT_Pos) /*!< 0x00000800 */
  5128. #define SDIO_STA_CMDACT SDIO_STA_CMDACT_Msk /*!< Command transfer in progress */
  5129. #define SDIO_STA_TXACT_Pos (12U)
  5130. #define SDIO_STA_TXACT_Msk (0x1UL << SDIO_STA_TXACT_Pos) /*!< 0x00001000 */
  5131. #define SDIO_STA_TXACT SDIO_STA_TXACT_Msk /*!< Data transmit in progress */
  5132. #define SDIO_STA_RXACT_Pos (13U)
  5133. #define SDIO_STA_RXACT_Msk (0x1UL << SDIO_STA_RXACT_Pos) /*!< 0x00002000 */
  5134. #define SDIO_STA_RXACT SDIO_STA_RXACT_Msk /*!< Data receive in progress */
  5135. #define SDIO_STA_TXFIFOHE_Pos (14U)
  5136. #define SDIO_STA_TXFIFOHE_Msk (0x1UL << SDIO_STA_TXFIFOHE_Pos) /*!< 0x00004000 */
  5137. #define SDIO_STA_TXFIFOHE SDIO_STA_TXFIFOHE_Msk /*!< Transmit FIFO Half Empty: at least 8 words can be written into the FIFO */
  5138. #define SDIO_STA_RXFIFOHF_Pos (15U)
  5139. #define SDIO_STA_RXFIFOHF_Msk (0x1UL << SDIO_STA_RXFIFOHF_Pos) /*!< 0x00008000 */
  5140. #define SDIO_STA_RXFIFOHF SDIO_STA_RXFIFOHF_Msk /*!< Receive FIFO Half Full: there are at least 8 words in the FIFO */
  5141. #define SDIO_STA_TXFIFOF_Pos (16U)
  5142. #define SDIO_STA_TXFIFOF_Msk (0x1UL << SDIO_STA_TXFIFOF_Pos) /*!< 0x00010000 */
  5143. #define SDIO_STA_TXFIFOF SDIO_STA_TXFIFOF_Msk /*!< Transmit FIFO full */
  5144. #define SDIO_STA_RXFIFOF_Pos (17U)
  5145. #define SDIO_STA_RXFIFOF_Msk (0x1UL << SDIO_STA_RXFIFOF_Pos) /*!< 0x00020000 */
  5146. #define SDIO_STA_RXFIFOF SDIO_STA_RXFIFOF_Msk /*!< Receive FIFO full */
  5147. #define SDIO_STA_TXFIFOE_Pos (18U)
  5148. #define SDIO_STA_TXFIFOE_Msk (0x1UL << SDIO_STA_TXFIFOE_Pos) /*!< 0x00040000 */
  5149. #define SDIO_STA_TXFIFOE SDIO_STA_TXFIFOE_Msk /*!< Transmit FIFO empty */
  5150. #define SDIO_STA_RXFIFOE_Pos (19U)
  5151. #define SDIO_STA_RXFIFOE_Msk (0x1UL << SDIO_STA_RXFIFOE_Pos) /*!< 0x00080000 */
  5152. #define SDIO_STA_RXFIFOE SDIO_STA_RXFIFOE_Msk /*!< Receive FIFO empty */
  5153. #define SDIO_STA_TXDAVL_Pos (20U)
  5154. #define SDIO_STA_TXDAVL_Msk (0x1UL << SDIO_STA_TXDAVL_Pos) /*!< 0x00100000 */
  5155. #define SDIO_STA_TXDAVL SDIO_STA_TXDAVL_Msk /*!< Data available in transmit FIFO */
  5156. #define SDIO_STA_RXDAVL_Pos (21U)
  5157. #define SDIO_STA_RXDAVL_Msk (0x1UL << SDIO_STA_RXDAVL_Pos) /*!< 0x00200000 */
  5158. #define SDIO_STA_RXDAVL SDIO_STA_RXDAVL_Msk /*!< Data available in receive FIFO */
  5159. #define SDIO_STA_SDIOIT_Pos (22U)
  5160. #define SDIO_STA_SDIOIT_Msk (0x1UL << SDIO_STA_SDIOIT_Pos) /*!< 0x00400000 */
  5161. #define SDIO_STA_SDIOIT SDIO_STA_SDIOIT_Msk /*!< SDIO interrupt received */
  5162. #define SDIO_STA_CEATAEND_Pos (23U)
  5163. #define SDIO_STA_CEATAEND_Msk (0x1UL << SDIO_STA_CEATAEND_Pos) /*!< 0x00800000 */
  5164. #define SDIO_STA_CEATAEND SDIO_STA_CEATAEND_Msk /*!< CE-ATA command completion signal received for CMD61 */
  5165. /******************* Bit definition for SDIO_ICR register *******************/
  5166. #define SDIO_ICR_CCRCFAILC_Pos (0U)
  5167. #define SDIO_ICR_CCRCFAILC_Msk (0x1UL << SDIO_ICR_CCRCFAILC_Pos) /*!< 0x00000001 */
  5168. #define SDIO_ICR_CCRCFAILC SDIO_ICR_CCRCFAILC_Msk /*!< CCRCFAIL flag clear bit */
  5169. #define SDIO_ICR_DCRCFAILC_Pos (1U)
  5170. #define SDIO_ICR_DCRCFAILC_Msk (0x1UL << SDIO_ICR_DCRCFAILC_Pos) /*!< 0x00000002 */
  5171. #define SDIO_ICR_DCRCFAILC SDIO_ICR_DCRCFAILC_Msk /*!< DCRCFAIL flag clear bit */
  5172. #define SDIO_ICR_CTIMEOUTC_Pos (2U)
  5173. #define SDIO_ICR_CTIMEOUTC_Msk (0x1UL << SDIO_ICR_CTIMEOUTC_Pos) /*!< 0x00000004 */
  5174. #define SDIO_ICR_CTIMEOUTC SDIO_ICR_CTIMEOUTC_Msk /*!< CTIMEOUT flag clear bit */
  5175. #define SDIO_ICR_DTIMEOUTC_Pos (3U)
  5176. #define SDIO_ICR_DTIMEOUTC_Msk (0x1UL << SDIO_ICR_DTIMEOUTC_Pos) /*!< 0x00000008 */
  5177. #define SDIO_ICR_DTIMEOUTC SDIO_ICR_DTIMEOUTC_Msk /*!< DTIMEOUT flag clear bit */
  5178. #define SDIO_ICR_TXUNDERRC_Pos (4U)
  5179. #define SDIO_ICR_TXUNDERRC_Msk (0x1UL << SDIO_ICR_TXUNDERRC_Pos) /*!< 0x00000010 */
  5180. #define SDIO_ICR_TXUNDERRC SDIO_ICR_TXUNDERRC_Msk /*!< TXUNDERR flag clear bit */
  5181. #define SDIO_ICR_RXOVERRC_Pos (5U)
  5182. #define SDIO_ICR_RXOVERRC_Msk (0x1UL << SDIO_ICR_RXOVERRC_Pos) /*!< 0x00000020 */
  5183. #define SDIO_ICR_RXOVERRC SDIO_ICR_RXOVERRC_Msk /*!< RXOVERR flag clear bit */
  5184. #define SDIO_ICR_CMDRENDC_Pos (6U)
  5185. #define SDIO_ICR_CMDRENDC_Msk (0x1UL << SDIO_ICR_CMDRENDC_Pos) /*!< 0x00000040 */
  5186. #define SDIO_ICR_CMDRENDC SDIO_ICR_CMDRENDC_Msk /*!< CMDREND flag clear bit */
  5187. #define SDIO_ICR_CMDSENTC_Pos (7U)
  5188. #define SDIO_ICR_CMDSENTC_Msk (0x1UL << SDIO_ICR_CMDSENTC_Pos) /*!< 0x00000080 */
  5189. #define SDIO_ICR_CMDSENTC SDIO_ICR_CMDSENTC_Msk /*!< CMDSENT flag clear bit */
  5190. #define SDIO_ICR_DATAENDC_Pos (8U)
  5191. #define SDIO_ICR_DATAENDC_Msk (0x1UL << SDIO_ICR_DATAENDC_Pos) /*!< 0x00000100 */
  5192. #define SDIO_ICR_DATAENDC SDIO_ICR_DATAENDC_Msk /*!< DATAEND flag clear bit */
  5193. #define SDIO_ICR_STBITERRC_Pos (9U)
  5194. #define SDIO_ICR_STBITERRC_Msk (0x1UL << SDIO_ICR_STBITERRC_Pos) /*!< 0x00000200 */
  5195. #define SDIO_ICR_STBITERRC SDIO_ICR_STBITERRC_Msk /*!< STBITERR flag clear bit */
  5196. #define SDIO_ICR_DBCKENDC_Pos (10U)
  5197. #define SDIO_ICR_DBCKENDC_Msk (0x1UL << SDIO_ICR_DBCKENDC_Pos) /*!< 0x00000400 */
  5198. #define SDIO_ICR_DBCKENDC SDIO_ICR_DBCKENDC_Msk /*!< DBCKEND flag clear bit */
  5199. #define SDIO_ICR_SDIOITC_Pos (22U)
  5200. #define SDIO_ICR_SDIOITC_Msk (0x1UL << SDIO_ICR_SDIOITC_Pos) /*!< 0x00400000 */
  5201. #define SDIO_ICR_SDIOITC SDIO_ICR_SDIOITC_Msk /*!< SDIOIT flag clear bit */
  5202. #define SDIO_ICR_CEATAENDC_Pos (23U)
  5203. #define SDIO_ICR_CEATAENDC_Msk (0x1UL << SDIO_ICR_CEATAENDC_Pos) /*!< 0x00800000 */
  5204. #define SDIO_ICR_CEATAENDC SDIO_ICR_CEATAENDC_Msk /*!< CEATAEND flag clear bit */
  5205. /****************** Bit definition for SDIO_MASK register *******************/
  5206. #define SDIO_MASK_CCRCFAILIE_Pos (0U)
  5207. #define SDIO_MASK_CCRCFAILIE_Msk (0x1UL << SDIO_MASK_CCRCFAILIE_Pos) /*!< 0x00000001 */
  5208. #define SDIO_MASK_CCRCFAILIE SDIO_MASK_CCRCFAILIE_Msk /*!< Command CRC Fail Interrupt Enable */
  5209. #define SDIO_MASK_DCRCFAILIE_Pos (1U)
  5210. #define SDIO_MASK_DCRCFAILIE_Msk (0x1UL << SDIO_MASK_DCRCFAILIE_Pos) /*!< 0x00000002 */
  5211. #define SDIO_MASK_DCRCFAILIE SDIO_MASK_DCRCFAILIE_Msk /*!< Data CRC Fail Interrupt Enable */
  5212. #define SDIO_MASK_CTIMEOUTIE_Pos (2U)
  5213. #define SDIO_MASK_CTIMEOUTIE_Msk (0x1UL << SDIO_MASK_CTIMEOUTIE_Pos) /*!< 0x00000004 */
  5214. #define SDIO_MASK_CTIMEOUTIE SDIO_MASK_CTIMEOUTIE_Msk /*!< Command TimeOut Interrupt Enable */
  5215. #define SDIO_MASK_DTIMEOUTIE_Pos (3U)
  5216. #define SDIO_MASK_DTIMEOUTIE_Msk (0x1UL << SDIO_MASK_DTIMEOUTIE_Pos) /*!< 0x00000008 */
  5217. #define SDIO_MASK_DTIMEOUTIE SDIO_MASK_DTIMEOUTIE_Msk /*!< Data TimeOut Interrupt Enable */
  5218. #define SDIO_MASK_TXUNDERRIE_Pos (4U)
  5219. #define SDIO_MASK_TXUNDERRIE_Msk (0x1UL << SDIO_MASK_TXUNDERRIE_Pos) /*!< 0x00000010 */
  5220. #define SDIO_MASK_TXUNDERRIE SDIO_MASK_TXUNDERRIE_Msk /*!< Tx FIFO UnderRun Error Interrupt Enable */
  5221. #define SDIO_MASK_RXOVERRIE_Pos (5U)
  5222. #define SDIO_MASK_RXOVERRIE_Msk (0x1UL << SDIO_MASK_RXOVERRIE_Pos) /*!< 0x00000020 */
  5223. #define SDIO_MASK_RXOVERRIE SDIO_MASK_RXOVERRIE_Msk /*!< Rx FIFO OverRun Error Interrupt Enable */
  5224. #define SDIO_MASK_CMDRENDIE_Pos (6U)
  5225. #define SDIO_MASK_CMDRENDIE_Msk (0x1UL << SDIO_MASK_CMDRENDIE_Pos) /*!< 0x00000040 */
  5226. #define SDIO_MASK_CMDRENDIE SDIO_MASK_CMDRENDIE_Msk /*!< Command Response Received Interrupt Enable */
  5227. #define SDIO_MASK_CMDSENTIE_Pos (7U)
  5228. #define SDIO_MASK_CMDSENTIE_Msk (0x1UL << SDIO_MASK_CMDSENTIE_Pos) /*!< 0x00000080 */
  5229. #define SDIO_MASK_CMDSENTIE SDIO_MASK_CMDSENTIE_Msk /*!< Command Sent Interrupt Enable */
  5230. #define SDIO_MASK_DATAENDIE_Pos (8U)
  5231. #define SDIO_MASK_DATAENDIE_Msk (0x1UL << SDIO_MASK_DATAENDIE_Pos) /*!< 0x00000100 */
  5232. #define SDIO_MASK_DATAENDIE SDIO_MASK_DATAENDIE_Msk /*!< Data End Interrupt Enable */
  5233. #define SDIO_MASK_STBITERRIE_Pos (9U)
  5234. #define SDIO_MASK_STBITERRIE_Msk (0x1UL << SDIO_MASK_STBITERRIE_Pos) /*!< 0x00000200 */
  5235. #define SDIO_MASK_STBITERRIE SDIO_MASK_STBITERRIE_Msk /*!< Start Bit Error Interrupt Enable */
  5236. #define SDIO_MASK_DBCKENDIE_Pos (10U)
  5237. #define SDIO_MASK_DBCKENDIE_Msk (0x1UL << SDIO_MASK_DBCKENDIE_Pos) /*!< 0x00000400 */
  5238. #define SDIO_MASK_DBCKENDIE SDIO_MASK_DBCKENDIE_Msk /*!< Data Block End Interrupt Enable */
  5239. #define SDIO_MASK_CMDACTIE_Pos (11U)
  5240. #define SDIO_MASK_CMDACTIE_Msk (0x1UL << SDIO_MASK_CMDACTIE_Pos) /*!< 0x00000800 */
  5241. #define SDIO_MASK_CMDACTIE SDIO_MASK_CMDACTIE_Msk /*!< Command Acting Interrupt Enable */
  5242. #define SDIO_MASK_TXACTIE_Pos (12U)
  5243. #define SDIO_MASK_TXACTIE_Msk (0x1UL << SDIO_MASK_TXACTIE_Pos) /*!< 0x00001000 */
  5244. #define SDIO_MASK_TXACTIE SDIO_MASK_TXACTIE_Msk /*!< Data Transmit Acting Interrupt Enable */
  5245. #define SDIO_MASK_RXACTIE_Pos (13U)
  5246. #define SDIO_MASK_RXACTIE_Msk (0x1UL << SDIO_MASK_RXACTIE_Pos) /*!< 0x00002000 */
  5247. #define SDIO_MASK_RXACTIE SDIO_MASK_RXACTIE_Msk /*!< Data receive acting interrupt enabled */
  5248. #define SDIO_MASK_TXFIFOHEIE_Pos (14U)
  5249. #define SDIO_MASK_TXFIFOHEIE_Msk (0x1UL << SDIO_MASK_TXFIFOHEIE_Pos) /*!< 0x00004000 */
  5250. #define SDIO_MASK_TXFIFOHEIE SDIO_MASK_TXFIFOHEIE_Msk /*!< Tx FIFO Half Empty interrupt Enable */
  5251. #define SDIO_MASK_RXFIFOHFIE_Pos (15U)
  5252. #define SDIO_MASK_RXFIFOHFIE_Msk (0x1UL << SDIO_MASK_RXFIFOHFIE_Pos) /*!< 0x00008000 */
  5253. #define SDIO_MASK_RXFIFOHFIE SDIO_MASK_RXFIFOHFIE_Msk /*!< Rx FIFO Half Full interrupt Enable */
  5254. #define SDIO_MASK_TXFIFOFIE_Pos (16U)
  5255. #define SDIO_MASK_TXFIFOFIE_Msk (0x1UL << SDIO_MASK_TXFIFOFIE_Pos) /*!< 0x00010000 */
  5256. #define SDIO_MASK_TXFIFOFIE SDIO_MASK_TXFIFOFIE_Msk /*!< Tx FIFO Full interrupt Enable */
  5257. #define SDIO_MASK_RXFIFOFIE_Pos (17U)
  5258. #define SDIO_MASK_RXFIFOFIE_Msk (0x1UL << SDIO_MASK_RXFIFOFIE_Pos) /*!< 0x00020000 */
  5259. #define SDIO_MASK_RXFIFOFIE SDIO_MASK_RXFIFOFIE_Msk /*!< Rx FIFO Full interrupt Enable */
  5260. #define SDIO_MASK_TXFIFOEIE_Pos (18U)
  5261. #define SDIO_MASK_TXFIFOEIE_Msk (0x1UL << SDIO_MASK_TXFIFOEIE_Pos) /*!< 0x00040000 */
  5262. #define SDIO_MASK_TXFIFOEIE SDIO_MASK_TXFIFOEIE_Msk /*!< Tx FIFO Empty interrupt Enable */
  5263. #define SDIO_MASK_RXFIFOEIE_Pos (19U)
  5264. #define SDIO_MASK_RXFIFOEIE_Msk (0x1UL << SDIO_MASK_RXFIFOEIE_Pos) /*!< 0x00080000 */
  5265. #define SDIO_MASK_RXFIFOEIE SDIO_MASK_RXFIFOEIE_Msk /*!< Rx FIFO Empty interrupt Enable */
  5266. #define SDIO_MASK_TXDAVLIE_Pos (20U)
  5267. #define SDIO_MASK_TXDAVLIE_Msk (0x1UL << SDIO_MASK_TXDAVLIE_Pos) /*!< 0x00100000 */
  5268. #define SDIO_MASK_TXDAVLIE SDIO_MASK_TXDAVLIE_Msk /*!< Data available in Tx FIFO interrupt Enable */
  5269. #define SDIO_MASK_RXDAVLIE_Pos (21U)
  5270. #define SDIO_MASK_RXDAVLIE_Msk (0x1UL << SDIO_MASK_RXDAVLIE_Pos) /*!< 0x00200000 */
  5271. #define SDIO_MASK_RXDAVLIE SDIO_MASK_RXDAVLIE_Msk /*!< Data available in Rx FIFO interrupt Enable */
  5272. #define SDIO_MASK_SDIOITIE_Pos (22U)
  5273. #define SDIO_MASK_SDIOITIE_Msk (0x1UL << SDIO_MASK_SDIOITIE_Pos) /*!< 0x00400000 */
  5274. #define SDIO_MASK_SDIOITIE SDIO_MASK_SDIOITIE_Msk /*!< SDIO Mode Interrupt Received interrupt Enable */
  5275. #define SDIO_MASK_CEATAENDIE_Pos (23U)
  5276. #define SDIO_MASK_CEATAENDIE_Msk (0x1UL << SDIO_MASK_CEATAENDIE_Pos) /*!< 0x00800000 */
  5277. #define SDIO_MASK_CEATAENDIE SDIO_MASK_CEATAENDIE_Msk /*!< CE-ATA command completion signal received Interrupt Enable */
  5278. /***************** Bit definition for SDIO_FIFOCNT register *****************/
  5279. #define SDIO_FIFOCNT_FIFOCOUNT_Pos (0U)
  5280. #define SDIO_FIFOCNT_FIFOCOUNT_Msk (0xFFFFFFUL << SDIO_FIFOCNT_FIFOCOUNT_Pos) /*!< 0x00FFFFFF */
  5281. #define SDIO_FIFOCNT_FIFOCOUNT SDIO_FIFOCNT_FIFOCOUNT_Msk /*!< Remaining number of words to be written to or read from the FIFO */
  5282. /****************** Bit definition for SDIO_FIFO register *******************/
  5283. #define SDIO_FIFO_FIFODATA_Pos (0U)
  5284. #define SDIO_FIFO_FIFODATA_Msk (0xFFFFFFFFUL << SDIO_FIFO_FIFODATA_Pos) /*!< 0xFFFFFFFF */
  5285. #define SDIO_FIFO_FIFODATA SDIO_FIFO_FIFODATA_Msk /*!< Receive and transmit FIFO data */
  5286. /******************************************************************************/
  5287. /* */
  5288. /* USB Device FS */
  5289. /* */
  5290. /******************************************************************************/
  5291. /*!< Endpoint-specific registers */
  5292. #define USB_EP0R USB_BASE /*!< Endpoint 0 register address */
  5293. #define USB_EP1R (USB_BASE + 0x00000004) /*!< Endpoint 1 register address */
  5294. #define USB_EP2R (USB_BASE + 0x00000008) /*!< Endpoint 2 register address */
  5295. #define USB_EP3R (USB_BASE + 0x0000000C) /*!< Endpoint 3 register address */
  5296. #define USB_EP4R (USB_BASE + 0x00000010) /*!< Endpoint 4 register address */
  5297. #define USB_EP5R (USB_BASE + 0x00000014) /*!< Endpoint 5 register address */
  5298. #define USB_EP6R (USB_BASE + 0x00000018) /*!< Endpoint 6 register address */
  5299. #define USB_EP7R (USB_BASE + 0x0000001C) /*!< Endpoint 7 register address */
  5300. /* bit positions */
  5301. #define USB_EP_CTR_RX_Pos (15U)
  5302. #define USB_EP_CTR_RX_Msk (0x1UL << USB_EP_CTR_RX_Pos) /*!< 0x00008000 */
  5303. #define USB_EP_CTR_RX USB_EP_CTR_RX_Msk /*!< EndPoint Correct TRansfer RX */
  5304. #define USB_EP_DTOG_RX_Pos (14U)
  5305. #define USB_EP_DTOG_RX_Msk (0x1UL << USB_EP_DTOG_RX_Pos) /*!< 0x00004000 */
  5306. #define USB_EP_DTOG_RX USB_EP_DTOG_RX_Msk /*!< EndPoint Data TOGGLE RX */
  5307. #define USB_EPRX_STAT_Pos (12U)
  5308. #define USB_EPRX_STAT_Msk (0x3UL << USB_EPRX_STAT_Pos) /*!< 0x00003000 */
  5309. #define USB_EPRX_STAT USB_EPRX_STAT_Msk /*!< EndPoint RX STATus bit field */
  5310. #define USB_EP_SETUP_Pos (11U)
  5311. #define USB_EP_SETUP_Msk (0x1UL << USB_EP_SETUP_Pos) /*!< 0x00000800 */
  5312. #define USB_EP_SETUP USB_EP_SETUP_Msk /*!< EndPoint SETUP */
  5313. #define USB_EP_T_FIELD_Pos (9U)
  5314. #define USB_EP_T_FIELD_Msk (0x3UL << USB_EP_T_FIELD_Pos) /*!< 0x00000600 */
  5315. #define USB_EP_T_FIELD USB_EP_T_FIELD_Msk /*!< EndPoint TYPE */
  5316. #define USB_EP_KIND_Pos (8U)
  5317. #define USB_EP_KIND_Msk (0x1UL << USB_EP_KIND_Pos) /*!< 0x00000100 */
  5318. #define USB_EP_KIND USB_EP_KIND_Msk /*!< EndPoint KIND */
  5319. #define USB_EP_CTR_TX_Pos (7U)
  5320. #define USB_EP_CTR_TX_Msk (0x1UL << USB_EP_CTR_TX_Pos) /*!< 0x00000080 */
  5321. #define USB_EP_CTR_TX USB_EP_CTR_TX_Msk /*!< EndPoint Correct TRansfer TX */
  5322. #define USB_EP_DTOG_TX_Pos (6U)
  5323. #define USB_EP_DTOG_TX_Msk (0x1UL << USB_EP_DTOG_TX_Pos) /*!< 0x00000040 */
  5324. #define USB_EP_DTOG_TX USB_EP_DTOG_TX_Msk /*!< EndPoint Data TOGGLE TX */
  5325. #define USB_EPTX_STAT_Pos (4U)
  5326. #define USB_EPTX_STAT_Msk (0x3UL << USB_EPTX_STAT_Pos) /*!< 0x00000030 */
  5327. #define USB_EPTX_STAT USB_EPTX_STAT_Msk /*!< EndPoint TX STATus bit field */
  5328. #define USB_EPADDR_FIELD_Pos (0U)
  5329. #define USB_EPADDR_FIELD_Msk (0xFUL << USB_EPADDR_FIELD_Pos) /*!< 0x0000000F */
  5330. #define USB_EPADDR_FIELD USB_EPADDR_FIELD_Msk /*!< EndPoint ADDRess FIELD */
  5331. /* EndPoint REGister MASK (no toggle fields) */
  5332. #define USB_EPREG_MASK (USB_EP_CTR_RX|USB_EP_SETUP|USB_EP_T_FIELD|USB_EP_KIND|USB_EP_CTR_TX|USB_EPADDR_FIELD)
  5333. /*!< EP_TYPE[1:0] EndPoint TYPE */
  5334. #define USB_EP_TYPE_MASK_Pos (9U)
  5335. #define USB_EP_TYPE_MASK_Msk (0x3UL << USB_EP_TYPE_MASK_Pos) /*!< 0x00000600 */
  5336. #define USB_EP_TYPE_MASK USB_EP_TYPE_MASK_Msk /*!< EndPoint TYPE Mask */
  5337. #define USB_EP_BULK 0x00000000U /*!< EndPoint BULK */
  5338. #define USB_EP_CONTROL 0x00000200U /*!< EndPoint CONTROL */
  5339. #define USB_EP_ISOCHRONOUS 0x00000400U /*!< EndPoint ISOCHRONOUS */
  5340. #define USB_EP_INTERRUPT 0x00000600U /*!< EndPoint INTERRUPT */
  5341. #define USB_EP_T_MASK (~USB_EP_T_FIELD & USB_EPREG_MASK)
  5342. #define USB_EPKIND_MASK (~USB_EP_KIND & USB_EPREG_MASK) /*!< EP_KIND EndPoint KIND */
  5343. /*!< STAT_TX[1:0] STATus for TX transfer */
  5344. #define USB_EP_TX_DIS 0x00000000U /*!< EndPoint TX DISabled */
  5345. #define USB_EP_TX_STALL 0x00000010U /*!< EndPoint TX STALLed */
  5346. #define USB_EP_TX_NAK 0x00000020U /*!< EndPoint TX NAKed */
  5347. #define USB_EP_TX_VALID 0x00000030U /*!< EndPoint TX VALID */
  5348. #define USB_EPTX_DTOG1 0x00000010U /*!< EndPoint TX Data TOGgle bit1 */
  5349. #define USB_EPTX_DTOG2 0x00000020U /*!< EndPoint TX Data TOGgle bit2 */
  5350. #define USB_EPTX_DTOGMASK (USB_EPTX_STAT|USB_EPREG_MASK)
  5351. /*!< STAT_RX[1:0] STATus for RX transfer */
  5352. #define USB_EP_RX_DIS 0x00000000U /*!< EndPoint RX DISabled */
  5353. #define USB_EP_RX_STALL 0x00001000U /*!< EndPoint RX STALLed */
  5354. #define USB_EP_RX_NAK 0x00002000U /*!< EndPoint RX NAKed */
  5355. #define USB_EP_RX_VALID 0x00003000U /*!< EndPoint RX VALID */
  5356. #define USB_EPRX_DTOG1 0x00001000U /*!< EndPoint RX Data TOGgle bit1 */
  5357. #define USB_EPRX_DTOG2 0x00002000U /*!< EndPoint RX Data TOGgle bit1 */
  5358. #define USB_EPRX_DTOGMASK (USB_EPRX_STAT|USB_EPREG_MASK)
  5359. /******************* Bit definition for USB_EP0R register *******************/
  5360. #define USB_EP0R_EA_Pos (0U)
  5361. #define USB_EP0R_EA_Msk (0xFUL << USB_EP0R_EA_Pos) /*!< 0x0000000F */
  5362. #define USB_EP0R_EA USB_EP0R_EA_Msk /*!< Endpoint Address */
  5363. #define USB_EP0R_STAT_TX_Pos (4U)
  5364. #define USB_EP0R_STAT_TX_Msk (0x3UL << USB_EP0R_STAT_TX_Pos) /*!< 0x00000030 */
  5365. #define USB_EP0R_STAT_TX USB_EP0R_STAT_TX_Msk /*!< STAT_TX[1:0] bits (Status bits, for transmission transfers) */
  5366. #define USB_EP0R_STAT_TX_0 (0x1UL << USB_EP0R_STAT_TX_Pos) /*!< 0x00000010 */
  5367. #define USB_EP0R_STAT_TX_1 (0x2UL << USB_EP0R_STAT_TX_Pos) /*!< 0x00000020 */
  5368. #define USB_EP0R_DTOG_TX_Pos (6U)
  5369. #define USB_EP0R_DTOG_TX_Msk (0x1UL << USB_EP0R_DTOG_TX_Pos) /*!< 0x00000040 */
  5370. #define USB_EP0R_DTOG_TX USB_EP0R_DTOG_TX_Msk /*!< Data Toggle, for transmission transfers */
  5371. #define USB_EP0R_CTR_TX_Pos (7U)
  5372. #define USB_EP0R_CTR_TX_Msk (0x1UL << USB_EP0R_CTR_TX_Pos) /*!< 0x00000080 */
  5373. #define USB_EP0R_CTR_TX USB_EP0R_CTR_TX_Msk /*!< Correct Transfer for transmission */
  5374. #define USB_EP0R_EP_KIND_Pos (8U)
  5375. #define USB_EP0R_EP_KIND_Msk (0x1UL << USB_EP0R_EP_KIND_Pos) /*!< 0x00000100 */
  5376. #define USB_EP0R_EP_KIND USB_EP0R_EP_KIND_Msk /*!< Endpoint Kind */
  5377. #define USB_EP0R_EP_TYPE_Pos (9U)
  5378. #define USB_EP0R_EP_TYPE_Msk (0x3UL << USB_EP0R_EP_TYPE_Pos) /*!< 0x00000600 */
  5379. #define USB_EP0R_EP_TYPE USB_EP0R_EP_TYPE_Msk /*!< EP_TYPE[1:0] bits (Endpoint type) */
  5380. #define USB_EP0R_EP_TYPE_0 (0x1UL << USB_EP0R_EP_TYPE_Pos) /*!< 0x00000200 */
  5381. #define USB_EP0R_EP_TYPE_1 (0x2UL << USB_EP0R_EP_TYPE_Pos) /*!< 0x00000400 */
  5382. #define USB_EP0R_SETUP_Pos (11U)
  5383. #define USB_EP0R_SETUP_Msk (0x1UL << USB_EP0R_SETUP_Pos) /*!< 0x00000800 */
  5384. #define USB_EP0R_SETUP USB_EP0R_SETUP_Msk /*!< Setup transaction completed */
  5385. #define USB_EP0R_STAT_RX_Pos (12U)
  5386. #define USB_EP0R_STAT_RX_Msk (0x3UL << USB_EP0R_STAT_RX_Pos) /*!< 0x00003000 */
  5387. #define USB_EP0R_STAT_RX USB_EP0R_STAT_RX_Msk /*!< STAT_RX[1:0] bits (Status bits, for reception transfers) */
  5388. #define USB_EP0R_STAT_RX_0 (0x1UL << USB_EP0R_STAT_RX_Pos) /*!< 0x00001000 */
  5389. #define USB_EP0R_STAT_RX_1 (0x2UL << USB_EP0R_STAT_RX_Pos) /*!< 0x00002000 */
  5390. #define USB_EP0R_DTOG_RX_Pos (14U)
  5391. #define USB_EP0R_DTOG_RX_Msk (0x1UL << USB_EP0R_DTOG_RX_Pos) /*!< 0x00004000 */
  5392. #define USB_EP0R_DTOG_RX USB_EP0R_DTOG_RX_Msk /*!< Data Toggle, for reception transfers */
  5393. #define USB_EP0R_CTR_RX_Pos (15U)
  5394. #define USB_EP0R_CTR_RX_Msk (0x1UL << USB_EP0R_CTR_RX_Pos) /*!< 0x00008000 */
  5395. #define USB_EP0R_CTR_RX USB_EP0R_CTR_RX_Msk /*!< Correct Transfer for reception */
  5396. /******************* Bit definition for USB_EP1R register *******************/
  5397. #define USB_EP1R_EA_Pos (0U)
  5398. #define USB_EP1R_EA_Msk (0xFUL << USB_EP1R_EA_Pos) /*!< 0x0000000F */
  5399. #define USB_EP1R_EA USB_EP1R_EA_Msk /*!< Endpoint Address */
  5400. #define USB_EP1R_STAT_TX_Pos (4U)
  5401. #define USB_EP1R_STAT_TX_Msk (0x3UL << USB_EP1R_STAT_TX_Pos) /*!< 0x00000030 */
  5402. #define USB_EP1R_STAT_TX USB_EP1R_STAT_TX_Msk /*!< STAT_TX[1:0] bits (Status bits, for transmission transfers) */
  5403. #define USB_EP1R_STAT_TX_0 (0x1UL << USB_EP1R_STAT_TX_Pos) /*!< 0x00000010 */
  5404. #define USB_EP1R_STAT_TX_1 (0x2UL << USB_EP1R_STAT_TX_Pos) /*!< 0x00000020 */
  5405. #define USB_EP1R_DTOG_TX_Pos (6U)
  5406. #define USB_EP1R_DTOG_TX_Msk (0x1UL << USB_EP1R_DTOG_TX_Pos) /*!< 0x00000040 */
  5407. #define USB_EP1R_DTOG_TX USB_EP1R_DTOG_TX_Msk /*!< Data Toggle, for transmission transfers */
  5408. #define USB_EP1R_CTR_TX_Pos (7U)
  5409. #define USB_EP1R_CTR_TX_Msk (0x1UL << USB_EP1R_CTR_TX_Pos) /*!< 0x00000080 */
  5410. #define USB_EP1R_CTR_TX USB_EP1R_CTR_TX_Msk /*!< Correct Transfer for transmission */
  5411. #define USB_EP1R_EP_KIND_Pos (8U)
  5412. #define USB_EP1R_EP_KIND_Msk (0x1UL << USB_EP1R_EP_KIND_Pos) /*!< 0x00000100 */
  5413. #define USB_EP1R_EP_KIND USB_EP1R_EP_KIND_Msk /*!< Endpoint Kind */
  5414. #define USB_EP1R_EP_TYPE_Pos (9U)
  5415. #define USB_EP1R_EP_TYPE_Msk (0x3UL << USB_EP1R_EP_TYPE_Pos) /*!< 0x00000600 */
  5416. #define USB_EP1R_EP_TYPE USB_EP1R_EP_TYPE_Msk /*!< EP_TYPE[1:0] bits (Endpoint type) */
  5417. #define USB_EP1R_EP_TYPE_0 (0x1UL << USB_EP1R_EP_TYPE_Pos) /*!< 0x00000200 */
  5418. #define USB_EP1R_EP_TYPE_1 (0x2UL << USB_EP1R_EP_TYPE_Pos) /*!< 0x00000400 */
  5419. #define USB_EP1R_SETUP_Pos (11U)
  5420. #define USB_EP1R_SETUP_Msk (0x1UL << USB_EP1R_SETUP_Pos) /*!< 0x00000800 */
  5421. #define USB_EP1R_SETUP USB_EP1R_SETUP_Msk /*!< Setup transaction completed */
  5422. #define USB_EP1R_STAT_RX_Pos (12U)
  5423. #define USB_EP1R_STAT_RX_Msk (0x3UL << USB_EP1R_STAT_RX_Pos) /*!< 0x00003000 */
  5424. #define USB_EP1R_STAT_RX USB_EP1R_STAT_RX_Msk /*!< STAT_RX[1:0] bits (Status bits, for reception transfers) */
  5425. #define USB_EP1R_STAT_RX_0 (0x1UL << USB_EP1R_STAT_RX_Pos) /*!< 0x00001000 */
  5426. #define USB_EP1R_STAT_RX_1 (0x2UL << USB_EP1R_STAT_RX_Pos) /*!< 0x00002000 */
  5427. #define USB_EP1R_DTOG_RX_Pos (14U)
  5428. #define USB_EP1R_DTOG_RX_Msk (0x1UL << USB_EP1R_DTOG_RX_Pos) /*!< 0x00004000 */
  5429. #define USB_EP1R_DTOG_RX USB_EP1R_DTOG_RX_Msk /*!< Data Toggle, for reception transfers */
  5430. #define USB_EP1R_CTR_RX_Pos (15U)
  5431. #define USB_EP1R_CTR_RX_Msk (0x1UL << USB_EP1R_CTR_RX_Pos) /*!< 0x00008000 */
  5432. #define USB_EP1R_CTR_RX USB_EP1R_CTR_RX_Msk /*!< Correct Transfer for reception */
  5433. /******************* Bit definition for USB_EP2R register *******************/
  5434. #define USB_EP2R_EA_Pos (0U)
  5435. #define USB_EP2R_EA_Msk (0xFUL << USB_EP2R_EA_Pos) /*!< 0x0000000F */
  5436. #define USB_EP2R_EA USB_EP2R_EA_Msk /*!< Endpoint Address */
  5437. #define USB_EP2R_STAT_TX_Pos (4U)
  5438. #define USB_EP2R_STAT_TX_Msk (0x3UL << USB_EP2R_STAT_TX_Pos) /*!< 0x00000030 */
  5439. #define USB_EP2R_STAT_TX USB_EP2R_STAT_TX_Msk /*!< STAT_TX[1:0] bits (Status bits, for transmission transfers) */
  5440. #define USB_EP2R_STAT_TX_0 (0x1UL << USB_EP2R_STAT_TX_Pos) /*!< 0x00000010 */
  5441. #define USB_EP2R_STAT_TX_1 (0x2UL << USB_EP2R_STAT_TX_Pos) /*!< 0x00000020 */
  5442. #define USB_EP2R_DTOG_TX_Pos (6U)
  5443. #define USB_EP2R_DTOG_TX_Msk (0x1UL << USB_EP2R_DTOG_TX_Pos) /*!< 0x00000040 */
  5444. #define USB_EP2R_DTOG_TX USB_EP2R_DTOG_TX_Msk /*!< Data Toggle, for transmission transfers */
  5445. #define USB_EP2R_CTR_TX_Pos (7U)
  5446. #define USB_EP2R_CTR_TX_Msk (0x1UL << USB_EP2R_CTR_TX_Pos) /*!< 0x00000080 */
  5447. #define USB_EP2R_CTR_TX USB_EP2R_CTR_TX_Msk /*!< Correct Transfer for transmission */
  5448. #define USB_EP2R_EP_KIND_Pos (8U)
  5449. #define USB_EP2R_EP_KIND_Msk (0x1UL << USB_EP2R_EP_KIND_Pos) /*!< 0x00000100 */
  5450. #define USB_EP2R_EP_KIND USB_EP2R_EP_KIND_Msk /*!< Endpoint Kind */
  5451. #define USB_EP2R_EP_TYPE_Pos (9U)
  5452. #define USB_EP2R_EP_TYPE_Msk (0x3UL << USB_EP2R_EP_TYPE_Pos) /*!< 0x00000600 */
  5453. #define USB_EP2R_EP_TYPE USB_EP2R_EP_TYPE_Msk /*!< EP_TYPE[1:0] bits (Endpoint type) */
  5454. #define USB_EP2R_EP_TYPE_0 (0x1UL << USB_EP2R_EP_TYPE_Pos) /*!< 0x00000200 */
  5455. #define USB_EP2R_EP_TYPE_1 (0x2UL << USB_EP2R_EP_TYPE_Pos) /*!< 0x00000400 */
  5456. #define USB_EP2R_SETUP_Pos (11U)
  5457. #define USB_EP2R_SETUP_Msk (0x1UL << USB_EP2R_SETUP_Pos) /*!< 0x00000800 */
  5458. #define USB_EP2R_SETUP USB_EP2R_SETUP_Msk /*!< Setup transaction completed */
  5459. #define USB_EP2R_STAT_RX_Pos (12U)
  5460. #define USB_EP2R_STAT_RX_Msk (0x3UL << USB_EP2R_STAT_RX_Pos) /*!< 0x00003000 */
  5461. #define USB_EP2R_STAT_RX USB_EP2R_STAT_RX_Msk /*!< STAT_RX[1:0] bits (Status bits, for reception transfers) */
  5462. #define USB_EP2R_STAT_RX_0 (0x1UL << USB_EP2R_STAT_RX_Pos) /*!< 0x00001000 */
  5463. #define USB_EP2R_STAT_RX_1 (0x2UL << USB_EP2R_STAT_RX_Pos) /*!< 0x00002000 */
  5464. #define USB_EP2R_DTOG_RX_Pos (14U)
  5465. #define USB_EP2R_DTOG_RX_Msk (0x1UL << USB_EP2R_DTOG_RX_Pos) /*!< 0x00004000 */
  5466. #define USB_EP2R_DTOG_RX USB_EP2R_DTOG_RX_Msk /*!< Data Toggle, for reception transfers */
  5467. #define USB_EP2R_CTR_RX_Pos (15U)
  5468. #define USB_EP2R_CTR_RX_Msk (0x1UL << USB_EP2R_CTR_RX_Pos) /*!< 0x00008000 */
  5469. #define USB_EP2R_CTR_RX USB_EP2R_CTR_RX_Msk /*!< Correct Transfer for reception */
  5470. /******************* Bit definition for USB_EP3R register *******************/
  5471. #define USB_EP3R_EA_Pos (0U)
  5472. #define USB_EP3R_EA_Msk (0xFUL << USB_EP3R_EA_Pos) /*!< 0x0000000F */
  5473. #define USB_EP3R_EA USB_EP3R_EA_Msk /*!< Endpoint Address */
  5474. #define USB_EP3R_STAT_TX_Pos (4U)
  5475. #define USB_EP3R_STAT_TX_Msk (0x3UL << USB_EP3R_STAT_TX_Pos) /*!< 0x00000030 */
  5476. #define USB_EP3R_STAT_TX USB_EP3R_STAT_TX_Msk /*!< STAT_TX[1:0] bits (Status bits, for transmission transfers) */
  5477. #define USB_EP3R_STAT_TX_0 (0x1UL << USB_EP3R_STAT_TX_Pos) /*!< 0x00000010 */
  5478. #define USB_EP3R_STAT_TX_1 (0x2UL << USB_EP3R_STAT_TX_Pos) /*!< 0x00000020 */
  5479. #define USB_EP3R_DTOG_TX_Pos (6U)
  5480. #define USB_EP3R_DTOG_TX_Msk (0x1UL << USB_EP3R_DTOG_TX_Pos) /*!< 0x00000040 */
  5481. #define USB_EP3R_DTOG_TX USB_EP3R_DTOG_TX_Msk /*!< Data Toggle, for transmission transfers */
  5482. #define USB_EP3R_CTR_TX_Pos (7U)
  5483. #define USB_EP3R_CTR_TX_Msk (0x1UL << USB_EP3R_CTR_TX_Pos) /*!< 0x00000080 */
  5484. #define USB_EP3R_CTR_TX USB_EP3R_CTR_TX_Msk /*!< Correct Transfer for transmission */
  5485. #define USB_EP3R_EP_KIND_Pos (8U)
  5486. #define USB_EP3R_EP_KIND_Msk (0x1UL << USB_EP3R_EP_KIND_Pos) /*!< 0x00000100 */
  5487. #define USB_EP3R_EP_KIND USB_EP3R_EP_KIND_Msk /*!< Endpoint Kind */
  5488. #define USB_EP3R_EP_TYPE_Pos (9U)
  5489. #define USB_EP3R_EP_TYPE_Msk (0x3UL << USB_EP3R_EP_TYPE_Pos) /*!< 0x00000600 */
  5490. #define USB_EP3R_EP_TYPE USB_EP3R_EP_TYPE_Msk /*!< EP_TYPE[1:0] bits (Endpoint type) */
  5491. #define USB_EP3R_EP_TYPE_0 (0x1UL << USB_EP3R_EP_TYPE_Pos) /*!< 0x00000200 */
  5492. #define USB_EP3R_EP_TYPE_1 (0x2UL << USB_EP3R_EP_TYPE_Pos) /*!< 0x00000400 */
  5493. #define USB_EP3R_SETUP_Pos (11U)
  5494. #define USB_EP3R_SETUP_Msk (0x1UL << USB_EP3R_SETUP_Pos) /*!< 0x00000800 */
  5495. #define USB_EP3R_SETUP USB_EP3R_SETUP_Msk /*!< Setup transaction completed */
  5496. #define USB_EP3R_STAT_RX_Pos (12U)
  5497. #define USB_EP3R_STAT_RX_Msk (0x3UL << USB_EP3R_STAT_RX_Pos) /*!< 0x00003000 */
  5498. #define USB_EP3R_STAT_RX USB_EP3R_STAT_RX_Msk /*!< STAT_RX[1:0] bits (Status bits, for reception transfers) */
  5499. #define USB_EP3R_STAT_RX_0 (0x1UL << USB_EP3R_STAT_RX_Pos) /*!< 0x00001000 */
  5500. #define USB_EP3R_STAT_RX_1 (0x2UL << USB_EP3R_STAT_RX_Pos) /*!< 0x00002000 */
  5501. #define USB_EP3R_DTOG_RX_Pos (14U)
  5502. #define USB_EP3R_DTOG_RX_Msk (0x1UL << USB_EP3R_DTOG_RX_Pos) /*!< 0x00004000 */
  5503. #define USB_EP3R_DTOG_RX USB_EP3R_DTOG_RX_Msk /*!< Data Toggle, for reception transfers */
  5504. #define USB_EP3R_CTR_RX_Pos (15U)
  5505. #define USB_EP3R_CTR_RX_Msk (0x1UL << USB_EP3R_CTR_RX_Pos) /*!< 0x00008000 */
  5506. #define USB_EP3R_CTR_RX USB_EP3R_CTR_RX_Msk /*!< Correct Transfer for reception */
  5507. /******************* Bit definition for USB_EP4R register *******************/
  5508. #define USB_EP4R_EA_Pos (0U)
  5509. #define USB_EP4R_EA_Msk (0xFUL << USB_EP4R_EA_Pos) /*!< 0x0000000F */
  5510. #define USB_EP4R_EA USB_EP4R_EA_Msk /*!< Endpoint Address */
  5511. #define USB_EP4R_STAT_TX_Pos (4U)
  5512. #define USB_EP4R_STAT_TX_Msk (0x3UL << USB_EP4R_STAT_TX_Pos) /*!< 0x00000030 */
  5513. #define USB_EP4R_STAT_TX USB_EP4R_STAT_TX_Msk /*!< STAT_TX[1:0] bits (Status bits, for transmission transfers) */
  5514. #define USB_EP4R_STAT_TX_0 (0x1UL << USB_EP4R_STAT_TX_Pos) /*!< 0x00000010 */
  5515. #define USB_EP4R_STAT_TX_1 (0x2UL << USB_EP4R_STAT_TX_Pos) /*!< 0x00000020 */
  5516. #define USB_EP4R_DTOG_TX_Pos (6U)
  5517. #define USB_EP4R_DTOG_TX_Msk (0x1UL << USB_EP4R_DTOG_TX_Pos) /*!< 0x00000040 */
  5518. #define USB_EP4R_DTOG_TX USB_EP4R_DTOG_TX_Msk /*!< Data Toggle, for transmission transfers */
  5519. #define USB_EP4R_CTR_TX_Pos (7U)
  5520. #define USB_EP4R_CTR_TX_Msk (0x1UL << USB_EP4R_CTR_TX_Pos) /*!< 0x00000080 */
  5521. #define USB_EP4R_CTR_TX USB_EP4R_CTR_TX_Msk /*!< Correct Transfer for transmission */
  5522. #define USB_EP4R_EP_KIND_Pos (8U)
  5523. #define USB_EP4R_EP_KIND_Msk (0x1UL << USB_EP4R_EP_KIND_Pos) /*!< 0x00000100 */
  5524. #define USB_EP4R_EP_KIND USB_EP4R_EP_KIND_Msk /*!< Endpoint Kind */
  5525. #define USB_EP4R_EP_TYPE_Pos (9U)
  5526. #define USB_EP4R_EP_TYPE_Msk (0x3UL << USB_EP4R_EP_TYPE_Pos) /*!< 0x00000600 */
  5527. #define USB_EP4R_EP_TYPE USB_EP4R_EP_TYPE_Msk /*!< EP_TYPE[1:0] bits (Endpoint type) */
  5528. #define USB_EP4R_EP_TYPE_0 (0x1UL << USB_EP4R_EP_TYPE_Pos) /*!< 0x00000200 */
  5529. #define USB_EP4R_EP_TYPE_1 (0x2UL << USB_EP4R_EP_TYPE_Pos) /*!< 0x00000400 */
  5530. #define USB_EP4R_SETUP_Pos (11U)
  5531. #define USB_EP4R_SETUP_Msk (0x1UL << USB_EP4R_SETUP_Pos) /*!< 0x00000800 */
  5532. #define USB_EP4R_SETUP USB_EP4R_SETUP_Msk /*!< Setup transaction completed */
  5533. #define USB_EP4R_STAT_RX_Pos (12U)
  5534. #define USB_EP4R_STAT_RX_Msk (0x3UL << USB_EP4R_STAT_RX_Pos) /*!< 0x00003000 */
  5535. #define USB_EP4R_STAT_RX USB_EP4R_STAT_RX_Msk /*!< STAT_RX[1:0] bits (Status bits, for reception transfers) */
  5536. #define USB_EP4R_STAT_RX_0 (0x1UL << USB_EP4R_STAT_RX_Pos) /*!< 0x00001000 */
  5537. #define USB_EP4R_STAT_RX_1 (0x2UL << USB_EP4R_STAT_RX_Pos) /*!< 0x00002000 */
  5538. #define USB_EP4R_DTOG_RX_Pos (14U)
  5539. #define USB_EP4R_DTOG_RX_Msk (0x1UL << USB_EP4R_DTOG_RX_Pos) /*!< 0x00004000 */
  5540. #define USB_EP4R_DTOG_RX USB_EP4R_DTOG_RX_Msk /*!< Data Toggle, for reception transfers */
  5541. #define USB_EP4R_CTR_RX_Pos (15U)
  5542. #define USB_EP4R_CTR_RX_Msk (0x1UL << USB_EP4R_CTR_RX_Pos) /*!< 0x00008000 */
  5543. #define USB_EP4R_CTR_RX USB_EP4R_CTR_RX_Msk /*!< Correct Transfer for reception */
  5544. /******************* Bit definition for USB_EP5R register *******************/
  5545. #define USB_EP5R_EA_Pos (0U)
  5546. #define USB_EP5R_EA_Msk (0xFUL << USB_EP5R_EA_Pos) /*!< 0x0000000F */
  5547. #define USB_EP5R_EA USB_EP5R_EA_Msk /*!< Endpoint Address */
  5548. #define USB_EP5R_STAT_TX_Pos (4U)
  5549. #define USB_EP5R_STAT_TX_Msk (0x3UL << USB_EP5R_STAT_TX_Pos) /*!< 0x00000030 */
  5550. #define USB_EP5R_STAT_TX USB_EP5R_STAT_TX_Msk /*!< STAT_TX[1:0] bits (Status bits, for transmission transfers) */
  5551. #define USB_EP5R_STAT_TX_0 (0x1UL << USB_EP5R_STAT_TX_Pos) /*!< 0x00000010 */
  5552. #define USB_EP5R_STAT_TX_1 (0x2UL << USB_EP5R_STAT_TX_Pos) /*!< 0x00000020 */
  5553. #define USB_EP5R_DTOG_TX_Pos (6U)
  5554. #define USB_EP5R_DTOG_TX_Msk (0x1UL << USB_EP5R_DTOG_TX_Pos) /*!< 0x00000040 */
  5555. #define USB_EP5R_DTOG_TX USB_EP5R_DTOG_TX_Msk /*!< Data Toggle, for transmission transfers */
  5556. #define USB_EP5R_CTR_TX_Pos (7U)
  5557. #define USB_EP5R_CTR_TX_Msk (0x1UL << USB_EP5R_CTR_TX_Pos) /*!< 0x00000080 */
  5558. #define USB_EP5R_CTR_TX USB_EP5R_CTR_TX_Msk /*!< Correct Transfer for transmission */
  5559. #define USB_EP5R_EP_KIND_Pos (8U)
  5560. #define USB_EP5R_EP_KIND_Msk (0x1UL << USB_EP5R_EP_KIND_Pos) /*!< 0x00000100 */
  5561. #define USB_EP5R_EP_KIND USB_EP5R_EP_KIND_Msk /*!< Endpoint Kind */
  5562. #define USB_EP5R_EP_TYPE_Pos (9U)
  5563. #define USB_EP5R_EP_TYPE_Msk (0x3UL << USB_EP5R_EP_TYPE_Pos) /*!< 0x00000600 */
  5564. #define USB_EP5R_EP_TYPE USB_EP5R_EP_TYPE_Msk /*!< EP_TYPE[1:0] bits (Endpoint type) */
  5565. #define USB_EP5R_EP_TYPE_0 (0x1UL << USB_EP5R_EP_TYPE_Pos) /*!< 0x00000200 */
  5566. #define USB_EP5R_EP_TYPE_1 (0x2UL << USB_EP5R_EP_TYPE_Pos) /*!< 0x00000400 */
  5567. #define USB_EP5R_SETUP_Pos (11U)
  5568. #define USB_EP5R_SETUP_Msk (0x1UL << USB_EP5R_SETUP_Pos) /*!< 0x00000800 */
  5569. #define USB_EP5R_SETUP USB_EP5R_SETUP_Msk /*!< Setup transaction completed */
  5570. #define USB_EP5R_STAT_RX_Pos (12U)
  5571. #define USB_EP5R_STAT_RX_Msk (0x3UL << USB_EP5R_STAT_RX_Pos) /*!< 0x00003000 */
  5572. #define USB_EP5R_STAT_RX USB_EP5R_STAT_RX_Msk /*!< STAT_RX[1:0] bits (Status bits, for reception transfers) */
  5573. #define USB_EP5R_STAT_RX_0 (0x1UL << USB_EP5R_STAT_RX_Pos) /*!< 0x00001000 */
  5574. #define USB_EP5R_STAT_RX_1 (0x2UL << USB_EP5R_STAT_RX_Pos) /*!< 0x00002000 */
  5575. #define USB_EP5R_DTOG_RX_Pos (14U)
  5576. #define USB_EP5R_DTOG_RX_Msk (0x1UL << USB_EP5R_DTOG_RX_Pos) /*!< 0x00004000 */
  5577. #define USB_EP5R_DTOG_RX USB_EP5R_DTOG_RX_Msk /*!< Data Toggle, for reception transfers */
  5578. #define USB_EP5R_CTR_RX_Pos (15U)
  5579. #define USB_EP5R_CTR_RX_Msk (0x1UL << USB_EP5R_CTR_RX_Pos) /*!< 0x00008000 */
  5580. #define USB_EP5R_CTR_RX USB_EP5R_CTR_RX_Msk /*!< Correct Transfer for reception */
  5581. /******************* Bit definition for USB_EP6R register *******************/
  5582. #define USB_EP6R_EA_Pos (0U)
  5583. #define USB_EP6R_EA_Msk (0xFUL << USB_EP6R_EA_Pos) /*!< 0x0000000F */
  5584. #define USB_EP6R_EA USB_EP6R_EA_Msk /*!< Endpoint Address */
  5585. #define USB_EP6R_STAT_TX_Pos (4U)
  5586. #define USB_EP6R_STAT_TX_Msk (0x3UL << USB_EP6R_STAT_TX_Pos) /*!< 0x00000030 */
  5587. #define USB_EP6R_STAT_TX USB_EP6R_STAT_TX_Msk /*!< STAT_TX[1:0] bits (Status bits, for transmission transfers) */
  5588. #define USB_EP6R_STAT_TX_0 (0x1UL << USB_EP6R_STAT_TX_Pos) /*!< 0x00000010 */
  5589. #define USB_EP6R_STAT_TX_1 (0x2UL << USB_EP6R_STAT_TX_Pos) /*!< 0x00000020 */
  5590. #define USB_EP6R_DTOG_TX_Pos (6U)
  5591. #define USB_EP6R_DTOG_TX_Msk (0x1UL << USB_EP6R_DTOG_TX_Pos) /*!< 0x00000040 */
  5592. #define USB_EP6R_DTOG_TX USB_EP6R_DTOG_TX_Msk /*!< Data Toggle, for transmission transfers */
  5593. #define USB_EP6R_CTR_TX_Pos (7U)
  5594. #define USB_EP6R_CTR_TX_Msk (0x1UL << USB_EP6R_CTR_TX_Pos) /*!< 0x00000080 */
  5595. #define USB_EP6R_CTR_TX USB_EP6R_CTR_TX_Msk /*!< Correct Transfer for transmission */
  5596. #define USB_EP6R_EP_KIND_Pos (8U)
  5597. #define USB_EP6R_EP_KIND_Msk (0x1UL << USB_EP6R_EP_KIND_Pos) /*!< 0x00000100 */
  5598. #define USB_EP6R_EP_KIND USB_EP6R_EP_KIND_Msk /*!< Endpoint Kind */
  5599. #define USB_EP6R_EP_TYPE_Pos (9U)
  5600. #define USB_EP6R_EP_TYPE_Msk (0x3UL << USB_EP6R_EP_TYPE_Pos) /*!< 0x00000600 */
  5601. #define USB_EP6R_EP_TYPE USB_EP6R_EP_TYPE_Msk /*!< EP_TYPE[1:0] bits (Endpoint type) */
  5602. #define USB_EP6R_EP_TYPE_0 (0x1UL << USB_EP6R_EP_TYPE_Pos) /*!< 0x00000200 */
  5603. #define USB_EP6R_EP_TYPE_1 (0x2UL << USB_EP6R_EP_TYPE_Pos) /*!< 0x00000400 */
  5604. #define USB_EP6R_SETUP_Pos (11U)
  5605. #define USB_EP6R_SETUP_Msk (0x1UL << USB_EP6R_SETUP_Pos) /*!< 0x00000800 */
  5606. #define USB_EP6R_SETUP USB_EP6R_SETUP_Msk /*!< Setup transaction completed */
  5607. #define USB_EP6R_STAT_RX_Pos (12U)
  5608. #define USB_EP6R_STAT_RX_Msk (0x3UL << USB_EP6R_STAT_RX_Pos) /*!< 0x00003000 */
  5609. #define USB_EP6R_STAT_RX USB_EP6R_STAT_RX_Msk /*!< STAT_RX[1:0] bits (Status bits, for reception transfers) */
  5610. #define USB_EP6R_STAT_RX_0 (0x1UL << USB_EP6R_STAT_RX_Pos) /*!< 0x00001000 */
  5611. #define USB_EP6R_STAT_RX_1 (0x2UL << USB_EP6R_STAT_RX_Pos) /*!< 0x00002000 */
  5612. #define USB_EP6R_DTOG_RX_Pos (14U)
  5613. #define USB_EP6R_DTOG_RX_Msk (0x1UL << USB_EP6R_DTOG_RX_Pos) /*!< 0x00004000 */
  5614. #define USB_EP6R_DTOG_RX USB_EP6R_DTOG_RX_Msk /*!< Data Toggle, for reception transfers */
  5615. #define USB_EP6R_CTR_RX_Pos (15U)
  5616. #define USB_EP6R_CTR_RX_Msk (0x1UL << USB_EP6R_CTR_RX_Pos) /*!< 0x00008000 */
  5617. #define USB_EP6R_CTR_RX USB_EP6R_CTR_RX_Msk /*!< Correct Transfer for reception */
  5618. /******************* Bit definition for USB_EP7R register *******************/
  5619. #define USB_EP7R_EA_Pos (0U)
  5620. #define USB_EP7R_EA_Msk (0xFUL << USB_EP7R_EA_Pos) /*!< 0x0000000F */
  5621. #define USB_EP7R_EA USB_EP7R_EA_Msk /*!< Endpoint Address */
  5622. #define USB_EP7R_STAT_TX_Pos (4U)
  5623. #define USB_EP7R_STAT_TX_Msk (0x3UL << USB_EP7R_STAT_TX_Pos) /*!< 0x00000030 */
  5624. #define USB_EP7R_STAT_TX USB_EP7R_STAT_TX_Msk /*!< STAT_TX[1:0] bits (Status bits, for transmission transfers) */
  5625. #define USB_EP7R_STAT_TX_0 (0x1UL << USB_EP7R_STAT_TX_Pos) /*!< 0x00000010 */
  5626. #define USB_EP7R_STAT_TX_1 (0x2UL << USB_EP7R_STAT_TX_Pos) /*!< 0x00000020 */
  5627. #define USB_EP7R_DTOG_TX_Pos (6U)
  5628. #define USB_EP7R_DTOG_TX_Msk (0x1UL << USB_EP7R_DTOG_TX_Pos) /*!< 0x00000040 */
  5629. #define USB_EP7R_DTOG_TX USB_EP7R_DTOG_TX_Msk /*!< Data Toggle, for transmission transfers */
  5630. #define USB_EP7R_CTR_TX_Pos (7U)
  5631. #define USB_EP7R_CTR_TX_Msk (0x1UL << USB_EP7R_CTR_TX_Pos) /*!< 0x00000080 */
  5632. #define USB_EP7R_CTR_TX USB_EP7R_CTR_TX_Msk /*!< Correct Transfer for transmission */
  5633. #define USB_EP7R_EP_KIND_Pos (8U)
  5634. #define USB_EP7R_EP_KIND_Msk (0x1UL << USB_EP7R_EP_KIND_Pos) /*!< 0x00000100 */
  5635. #define USB_EP7R_EP_KIND USB_EP7R_EP_KIND_Msk /*!< Endpoint Kind */
  5636. #define USB_EP7R_EP_TYPE_Pos (9U)
  5637. #define USB_EP7R_EP_TYPE_Msk (0x3UL << USB_EP7R_EP_TYPE_Pos) /*!< 0x00000600 */
  5638. #define USB_EP7R_EP_TYPE USB_EP7R_EP_TYPE_Msk /*!< EP_TYPE[1:0] bits (Endpoint type) */
  5639. #define USB_EP7R_EP_TYPE_0 (0x1UL << USB_EP7R_EP_TYPE_Pos) /*!< 0x00000200 */
  5640. #define USB_EP7R_EP_TYPE_1 (0x2UL << USB_EP7R_EP_TYPE_Pos) /*!< 0x00000400 */
  5641. #define USB_EP7R_SETUP_Pos (11U)
  5642. #define USB_EP7R_SETUP_Msk (0x1UL << USB_EP7R_SETUP_Pos) /*!< 0x00000800 */
  5643. #define USB_EP7R_SETUP USB_EP7R_SETUP_Msk /*!< Setup transaction completed */
  5644. #define USB_EP7R_STAT_RX_Pos (12U)
  5645. #define USB_EP7R_STAT_RX_Msk (0x3UL << USB_EP7R_STAT_RX_Pos) /*!< 0x00003000 */
  5646. #define USB_EP7R_STAT_RX USB_EP7R_STAT_RX_Msk /*!< STAT_RX[1:0] bits (Status bits, for reception transfers) */
  5647. #define USB_EP7R_STAT_RX_0 (0x1UL << USB_EP7R_STAT_RX_Pos) /*!< 0x00001000 */
  5648. #define USB_EP7R_STAT_RX_1 (0x2UL << USB_EP7R_STAT_RX_Pos) /*!< 0x00002000 */
  5649. #define USB_EP7R_DTOG_RX_Pos (14U)
  5650. #define USB_EP7R_DTOG_RX_Msk (0x1UL << USB_EP7R_DTOG_RX_Pos) /*!< 0x00004000 */
  5651. #define USB_EP7R_DTOG_RX USB_EP7R_DTOG_RX_Msk /*!< Data Toggle, for reception transfers */
  5652. #define USB_EP7R_CTR_RX_Pos (15U)
  5653. #define USB_EP7R_CTR_RX_Msk (0x1UL << USB_EP7R_CTR_RX_Pos) /*!< 0x00008000 */
  5654. #define USB_EP7R_CTR_RX USB_EP7R_CTR_RX_Msk /*!< Correct Transfer for reception */
  5655. /*!< Common registers */
  5656. /******************* Bit definition for USB_CNTR register *******************/
  5657. #define USB_CNTR_FRES_Pos (0U)
  5658. #define USB_CNTR_FRES_Msk (0x1UL << USB_CNTR_FRES_Pos) /*!< 0x00000001 */
  5659. #define USB_CNTR_FRES USB_CNTR_FRES_Msk /*!< Force USB Reset */
  5660. #define USB_CNTR_PDWN_Pos (1U)
  5661. #define USB_CNTR_PDWN_Msk (0x1UL << USB_CNTR_PDWN_Pos) /*!< 0x00000002 */
  5662. #define USB_CNTR_PDWN USB_CNTR_PDWN_Msk /*!< Power down */
  5663. #define USB_CNTR_LP_MODE_Pos (2U)
  5664. #define USB_CNTR_LP_MODE_Msk (0x1UL << USB_CNTR_LP_MODE_Pos) /*!< 0x00000004 */
  5665. #define USB_CNTR_LP_MODE USB_CNTR_LP_MODE_Msk /*!< Low-power mode */
  5666. #define USB_CNTR_FSUSP_Pos (3U)
  5667. #define USB_CNTR_FSUSP_Msk (0x1UL << USB_CNTR_FSUSP_Pos) /*!< 0x00000008 */
  5668. #define USB_CNTR_FSUSP USB_CNTR_FSUSP_Msk /*!< Force suspend */
  5669. #define USB_CNTR_RESUME_Pos (4U)
  5670. #define USB_CNTR_RESUME_Msk (0x1UL << USB_CNTR_RESUME_Pos) /*!< 0x00000010 */
  5671. #define USB_CNTR_RESUME USB_CNTR_RESUME_Msk /*!< Resume request */
  5672. #define USB_CNTR_ESOFM_Pos (8U)
  5673. #define USB_CNTR_ESOFM_Msk (0x1UL << USB_CNTR_ESOFM_Pos) /*!< 0x00000100 */
  5674. #define USB_CNTR_ESOFM USB_CNTR_ESOFM_Msk /*!< Expected Start Of Frame Interrupt Mask */
  5675. #define USB_CNTR_SOFM_Pos (9U)
  5676. #define USB_CNTR_SOFM_Msk (0x1UL << USB_CNTR_SOFM_Pos) /*!< 0x00000200 */
  5677. #define USB_CNTR_SOFM USB_CNTR_SOFM_Msk /*!< Start Of Frame Interrupt Mask */
  5678. #define USB_CNTR_RESETM_Pos (10U)
  5679. #define USB_CNTR_RESETM_Msk (0x1UL << USB_CNTR_RESETM_Pos) /*!< 0x00000400 */
  5680. #define USB_CNTR_RESETM USB_CNTR_RESETM_Msk /*!< RESET Interrupt Mask */
  5681. #define USB_CNTR_SUSPM_Pos (11U)
  5682. #define USB_CNTR_SUSPM_Msk (0x1UL << USB_CNTR_SUSPM_Pos) /*!< 0x00000800 */
  5683. #define USB_CNTR_SUSPM USB_CNTR_SUSPM_Msk /*!< Suspend mode Interrupt Mask */
  5684. #define USB_CNTR_WKUPM_Pos (12U)
  5685. #define USB_CNTR_WKUPM_Msk (0x1UL << USB_CNTR_WKUPM_Pos) /*!< 0x00001000 */
  5686. #define USB_CNTR_WKUPM USB_CNTR_WKUPM_Msk /*!< Wakeup Interrupt Mask */
  5687. #define USB_CNTR_ERRM_Pos (13U)
  5688. #define USB_CNTR_ERRM_Msk (0x1UL << USB_CNTR_ERRM_Pos) /*!< 0x00002000 */
  5689. #define USB_CNTR_ERRM USB_CNTR_ERRM_Msk /*!< Error Interrupt Mask */
  5690. #define USB_CNTR_PMAOVRM_Pos (14U)
  5691. #define USB_CNTR_PMAOVRM_Msk (0x1UL << USB_CNTR_PMAOVRM_Pos) /*!< 0x00004000 */
  5692. #define USB_CNTR_PMAOVRM USB_CNTR_PMAOVRM_Msk /*!< Packet Memory Area Over / Underrun Interrupt Mask */
  5693. #define USB_CNTR_CTRM_Pos (15U)
  5694. #define USB_CNTR_CTRM_Msk (0x1UL << USB_CNTR_CTRM_Pos) /*!< 0x00008000 */
  5695. #define USB_CNTR_CTRM USB_CNTR_CTRM_Msk /*!< Correct Transfer Interrupt Mask */
  5696. /******************* Bit definition for USB_ISTR register *******************/
  5697. #define USB_ISTR_EP_ID_Pos (0U)
  5698. #define USB_ISTR_EP_ID_Msk (0xFUL << USB_ISTR_EP_ID_Pos) /*!< 0x0000000F */
  5699. #define USB_ISTR_EP_ID USB_ISTR_EP_ID_Msk /*!< Endpoint Identifier */
  5700. #define USB_ISTR_DIR_Pos (4U)
  5701. #define USB_ISTR_DIR_Msk (0x1UL << USB_ISTR_DIR_Pos) /*!< 0x00000010 */
  5702. #define USB_ISTR_DIR USB_ISTR_DIR_Msk /*!< Direction of transaction */
  5703. #define USB_ISTR_ESOF_Pos (8U)
  5704. #define USB_ISTR_ESOF_Msk (0x1UL << USB_ISTR_ESOF_Pos) /*!< 0x00000100 */
  5705. #define USB_ISTR_ESOF USB_ISTR_ESOF_Msk /*!< Expected Start Of Frame */
  5706. #define USB_ISTR_SOF_Pos (9U)
  5707. #define USB_ISTR_SOF_Msk (0x1UL << USB_ISTR_SOF_Pos) /*!< 0x00000200 */
  5708. #define USB_ISTR_SOF USB_ISTR_SOF_Msk /*!< Start Of Frame */
  5709. #define USB_ISTR_RESET_Pos (10U)
  5710. #define USB_ISTR_RESET_Msk (0x1UL << USB_ISTR_RESET_Pos) /*!< 0x00000400 */
  5711. #define USB_ISTR_RESET USB_ISTR_RESET_Msk /*!< USB RESET request */
  5712. #define USB_ISTR_SUSP_Pos (11U)
  5713. #define USB_ISTR_SUSP_Msk (0x1UL << USB_ISTR_SUSP_Pos) /*!< 0x00000800 */
  5714. #define USB_ISTR_SUSP USB_ISTR_SUSP_Msk /*!< Suspend mode request */
  5715. #define USB_ISTR_WKUP_Pos (12U)
  5716. #define USB_ISTR_WKUP_Msk (0x1UL << USB_ISTR_WKUP_Pos) /*!< 0x00001000 */
  5717. #define USB_ISTR_WKUP USB_ISTR_WKUP_Msk /*!< Wake up */
  5718. #define USB_ISTR_ERR_Pos (13U)
  5719. #define USB_ISTR_ERR_Msk (0x1UL << USB_ISTR_ERR_Pos) /*!< 0x00002000 */
  5720. #define USB_ISTR_ERR USB_ISTR_ERR_Msk /*!< Error */
  5721. #define USB_ISTR_PMAOVR_Pos (14U)
  5722. #define USB_ISTR_PMAOVR_Msk (0x1UL << USB_ISTR_PMAOVR_Pos) /*!< 0x00004000 */
  5723. #define USB_ISTR_PMAOVR USB_ISTR_PMAOVR_Msk /*!< Packet Memory Area Over / Underrun */
  5724. #define USB_ISTR_CTR_Pos (15U)
  5725. #define USB_ISTR_CTR_Msk (0x1UL << USB_ISTR_CTR_Pos) /*!< 0x00008000 */
  5726. #define USB_ISTR_CTR USB_ISTR_CTR_Msk /*!< Correct Transfer */
  5727. /******************* Bit definition for USB_FNR register ********************/
  5728. #define USB_FNR_FN_Pos (0U)
  5729. #define USB_FNR_FN_Msk (0x7FFUL << USB_FNR_FN_Pos) /*!< 0x000007FF */
  5730. #define USB_FNR_FN USB_FNR_FN_Msk /*!< Frame Number */
  5731. #define USB_FNR_LSOF_Pos (11U)
  5732. #define USB_FNR_LSOF_Msk (0x3UL << USB_FNR_LSOF_Pos) /*!< 0x00001800 */
  5733. #define USB_FNR_LSOF USB_FNR_LSOF_Msk /*!< Lost SOF */
  5734. #define USB_FNR_LCK_Pos (13U)
  5735. #define USB_FNR_LCK_Msk (0x1UL << USB_FNR_LCK_Pos) /*!< 0x00002000 */
  5736. #define USB_FNR_LCK USB_FNR_LCK_Msk /*!< Locked */
  5737. #define USB_FNR_RXDM_Pos (14U)
  5738. #define USB_FNR_RXDM_Msk (0x1UL << USB_FNR_RXDM_Pos) /*!< 0x00004000 */
  5739. #define USB_FNR_RXDM USB_FNR_RXDM_Msk /*!< Receive Data - Line Status */
  5740. #define USB_FNR_RXDP_Pos (15U)
  5741. #define USB_FNR_RXDP_Msk (0x1UL << USB_FNR_RXDP_Pos) /*!< 0x00008000 */
  5742. #define USB_FNR_RXDP USB_FNR_RXDP_Msk /*!< Receive Data + Line Status */
  5743. /****************** Bit definition for USB_DADDR register *******************/
  5744. #define USB_DADDR_ADD_Pos (0U)
  5745. #define USB_DADDR_ADD_Msk (0x7FUL << USB_DADDR_ADD_Pos) /*!< 0x0000007F */
  5746. #define USB_DADDR_ADD USB_DADDR_ADD_Msk /*!< ADD[6:0] bits (Device Address) */
  5747. #define USB_DADDR_ADD0_Pos (0U)
  5748. #define USB_DADDR_ADD0_Msk (0x1UL << USB_DADDR_ADD0_Pos) /*!< 0x00000001 */
  5749. #define USB_DADDR_ADD0 USB_DADDR_ADD0_Msk /*!< Bit 0 */
  5750. #define USB_DADDR_ADD1_Pos (1U)
  5751. #define USB_DADDR_ADD1_Msk (0x1UL << USB_DADDR_ADD1_Pos) /*!< 0x00000002 */
  5752. #define USB_DADDR_ADD1 USB_DADDR_ADD1_Msk /*!< Bit 1 */
  5753. #define USB_DADDR_ADD2_Pos (2U)
  5754. #define USB_DADDR_ADD2_Msk (0x1UL << USB_DADDR_ADD2_Pos) /*!< 0x00000004 */
  5755. #define USB_DADDR_ADD2 USB_DADDR_ADD2_Msk /*!< Bit 2 */
  5756. #define USB_DADDR_ADD3_Pos (3U)
  5757. #define USB_DADDR_ADD3_Msk (0x1UL << USB_DADDR_ADD3_Pos) /*!< 0x00000008 */
  5758. #define USB_DADDR_ADD3 USB_DADDR_ADD3_Msk /*!< Bit 3 */
  5759. #define USB_DADDR_ADD4_Pos (4U)
  5760. #define USB_DADDR_ADD4_Msk (0x1UL << USB_DADDR_ADD4_Pos) /*!< 0x00000010 */
  5761. #define USB_DADDR_ADD4 USB_DADDR_ADD4_Msk /*!< Bit 4 */
  5762. #define USB_DADDR_ADD5_Pos (5U)
  5763. #define USB_DADDR_ADD5_Msk (0x1UL << USB_DADDR_ADD5_Pos) /*!< 0x00000020 */
  5764. #define USB_DADDR_ADD5 USB_DADDR_ADD5_Msk /*!< Bit 5 */
  5765. #define USB_DADDR_ADD6_Pos (6U)
  5766. #define USB_DADDR_ADD6_Msk (0x1UL << USB_DADDR_ADD6_Pos) /*!< 0x00000040 */
  5767. #define USB_DADDR_ADD6 USB_DADDR_ADD6_Msk /*!< Bit 6 */
  5768. #define USB_DADDR_EF_Pos (7U)
  5769. #define USB_DADDR_EF_Msk (0x1UL << USB_DADDR_EF_Pos) /*!< 0x00000080 */
  5770. #define USB_DADDR_EF USB_DADDR_EF_Msk /*!< Enable Function */
  5771. /****************** Bit definition for USB_BTABLE register ******************/
  5772. #define USB_BTABLE_BTABLE_Pos (3U)
  5773. #define USB_BTABLE_BTABLE_Msk (0x1FFFUL << USB_BTABLE_BTABLE_Pos) /*!< 0x0000FFF8 */
  5774. #define USB_BTABLE_BTABLE USB_BTABLE_BTABLE_Msk /*!< Buffer Table */
  5775. /*!< Buffer descriptor table */
  5776. /***************** Bit definition for USB_ADDR0_TX register *****************/
  5777. #define USB_ADDR0_TX_ADDR0_TX_Pos (1U)
  5778. #define USB_ADDR0_TX_ADDR0_TX_Msk (0x7FFFUL << USB_ADDR0_TX_ADDR0_TX_Pos) /*!< 0x0000FFFE */
  5779. #define USB_ADDR0_TX_ADDR0_TX USB_ADDR0_TX_ADDR0_TX_Msk /*!< Transmission Buffer Address 0 */
  5780. /***************** Bit definition for USB_ADDR1_TX register *****************/
  5781. #define USB_ADDR1_TX_ADDR1_TX_Pos (1U)
  5782. #define USB_ADDR1_TX_ADDR1_TX_Msk (0x7FFFUL << USB_ADDR1_TX_ADDR1_TX_Pos) /*!< 0x0000FFFE */
  5783. #define USB_ADDR1_TX_ADDR1_TX USB_ADDR1_TX_ADDR1_TX_Msk /*!< Transmission Buffer Address 1 */
  5784. /***************** Bit definition for USB_ADDR2_TX register *****************/
  5785. #define USB_ADDR2_TX_ADDR2_TX_Pos (1U)
  5786. #define USB_ADDR2_TX_ADDR2_TX_Msk (0x7FFFUL << USB_ADDR2_TX_ADDR2_TX_Pos) /*!< 0x0000FFFE */
  5787. #define USB_ADDR2_TX_ADDR2_TX USB_ADDR2_TX_ADDR2_TX_Msk /*!< Transmission Buffer Address 2 */
  5788. /***************** Bit definition for USB_ADDR3_TX register *****************/
  5789. #define USB_ADDR3_TX_ADDR3_TX_Pos (1U)
  5790. #define USB_ADDR3_TX_ADDR3_TX_Msk (0x7FFFUL << USB_ADDR3_TX_ADDR3_TX_Pos) /*!< 0x0000FFFE */
  5791. #define USB_ADDR3_TX_ADDR3_TX USB_ADDR3_TX_ADDR3_TX_Msk /*!< Transmission Buffer Address 3 */
  5792. /***************** Bit definition for USB_ADDR4_TX register *****************/
  5793. #define USB_ADDR4_TX_ADDR4_TX_Pos (1U)
  5794. #define USB_ADDR4_TX_ADDR4_TX_Msk (0x7FFFUL << USB_ADDR4_TX_ADDR4_TX_Pos) /*!< 0x0000FFFE */
  5795. #define USB_ADDR4_TX_ADDR4_TX USB_ADDR4_TX_ADDR4_TX_Msk /*!< Transmission Buffer Address 4 */
  5796. /***************** Bit definition for USB_ADDR5_TX register *****************/
  5797. #define USB_ADDR5_TX_ADDR5_TX_Pos (1U)
  5798. #define USB_ADDR5_TX_ADDR5_TX_Msk (0x7FFFUL << USB_ADDR5_TX_ADDR5_TX_Pos) /*!< 0x0000FFFE */
  5799. #define USB_ADDR5_TX_ADDR5_TX USB_ADDR5_TX_ADDR5_TX_Msk /*!< Transmission Buffer Address 5 */
  5800. /***************** Bit definition for USB_ADDR6_TX register *****************/
  5801. #define USB_ADDR6_TX_ADDR6_TX_Pos (1U)
  5802. #define USB_ADDR6_TX_ADDR6_TX_Msk (0x7FFFUL << USB_ADDR6_TX_ADDR6_TX_Pos) /*!< 0x0000FFFE */
  5803. #define USB_ADDR6_TX_ADDR6_TX USB_ADDR6_TX_ADDR6_TX_Msk /*!< Transmission Buffer Address 6 */
  5804. /***************** Bit definition for USB_ADDR7_TX register *****************/
  5805. #define USB_ADDR7_TX_ADDR7_TX_Pos (1U)
  5806. #define USB_ADDR7_TX_ADDR7_TX_Msk (0x7FFFUL << USB_ADDR7_TX_ADDR7_TX_Pos) /*!< 0x0000FFFE */
  5807. #define USB_ADDR7_TX_ADDR7_TX USB_ADDR7_TX_ADDR7_TX_Msk /*!< Transmission Buffer Address 7 */
  5808. /*----------------------------------------------------------------------------*/
  5809. /***************** Bit definition for USB_COUNT0_TX register ****************/
  5810. #define USB_COUNT0_TX_COUNT0_TX_Pos (0U)
  5811. #define USB_COUNT0_TX_COUNT0_TX_Msk (0x3FFUL << USB_COUNT0_TX_COUNT0_TX_Pos) /*!< 0x000003FF */
  5812. #define USB_COUNT0_TX_COUNT0_TX USB_COUNT0_TX_COUNT0_TX_Msk /*!< Transmission Byte Count 0 */
  5813. /***************** Bit definition for USB_COUNT1_TX register ****************/
  5814. #define USB_COUNT1_TX_COUNT1_TX_Pos (0U)
  5815. #define USB_COUNT1_TX_COUNT1_TX_Msk (0x3FFUL << USB_COUNT1_TX_COUNT1_TX_Pos) /*!< 0x000003FF */
  5816. #define USB_COUNT1_TX_COUNT1_TX USB_COUNT1_TX_COUNT1_TX_Msk /*!< Transmission Byte Count 1 */
  5817. /***************** Bit definition for USB_COUNT2_TX register ****************/
  5818. #define USB_COUNT2_TX_COUNT2_TX_Pos (0U)
  5819. #define USB_COUNT2_TX_COUNT2_TX_Msk (0x3FFUL << USB_COUNT2_TX_COUNT2_TX_Pos) /*!< 0x000003FF */
  5820. #define USB_COUNT2_TX_COUNT2_TX USB_COUNT2_TX_COUNT2_TX_Msk /*!< Transmission Byte Count 2 */
  5821. /***************** Bit definition for USB_COUNT3_TX register ****************/
  5822. #define USB_COUNT3_TX_COUNT3_TX_Pos (0U)
  5823. #define USB_COUNT3_TX_COUNT3_TX_Msk (0x3FFUL << USB_COUNT3_TX_COUNT3_TX_Pos) /*!< 0x000003FF */
  5824. #define USB_COUNT3_TX_COUNT3_TX USB_COUNT3_TX_COUNT3_TX_Msk /*!< Transmission Byte Count 3 */
  5825. /***************** Bit definition for USB_COUNT4_TX register ****************/
  5826. #define USB_COUNT4_TX_COUNT4_TX_Pos (0U)
  5827. #define USB_COUNT4_TX_COUNT4_TX_Msk (0x3FFUL << USB_COUNT4_TX_COUNT4_TX_Pos) /*!< 0x000003FF */
  5828. #define USB_COUNT4_TX_COUNT4_TX USB_COUNT4_TX_COUNT4_TX_Msk /*!< Transmission Byte Count 4 */
  5829. /***************** Bit definition for USB_COUNT5_TX register ****************/
  5830. #define USB_COUNT5_TX_COUNT5_TX_Pos (0U)
  5831. #define USB_COUNT5_TX_COUNT5_TX_Msk (0x3FFUL << USB_COUNT5_TX_COUNT5_TX_Pos) /*!< 0x000003FF */
  5832. #define USB_COUNT5_TX_COUNT5_TX USB_COUNT5_TX_COUNT5_TX_Msk /*!< Transmission Byte Count 5 */
  5833. /***************** Bit definition for USB_COUNT6_TX register ****************/
  5834. #define USB_COUNT6_TX_COUNT6_TX_Pos (0U)
  5835. #define USB_COUNT6_TX_COUNT6_TX_Msk (0x3FFUL << USB_COUNT6_TX_COUNT6_TX_Pos) /*!< 0x000003FF */
  5836. #define USB_COUNT6_TX_COUNT6_TX USB_COUNT6_TX_COUNT6_TX_Msk /*!< Transmission Byte Count 6 */
  5837. /***************** Bit definition for USB_COUNT7_TX register ****************/
  5838. #define USB_COUNT7_TX_COUNT7_TX_Pos (0U)
  5839. #define USB_COUNT7_TX_COUNT7_TX_Msk (0x3FFUL << USB_COUNT7_TX_COUNT7_TX_Pos) /*!< 0x000003FF */
  5840. #define USB_COUNT7_TX_COUNT7_TX USB_COUNT7_TX_COUNT7_TX_Msk /*!< Transmission Byte Count 7 */
  5841. /*----------------------------------------------------------------------------*/
  5842. /**************** Bit definition for USB_COUNT0_TX_0 register ***************/
  5843. #define USB_COUNT0_TX_0_COUNT0_TX_0 0x000003FFU /*!< Transmission Byte Count 0 (low) */
  5844. /**************** Bit definition for USB_COUNT0_TX_1 register ***************/
  5845. #define USB_COUNT0_TX_1_COUNT0_TX_1 0x03FF0000U /*!< Transmission Byte Count 0 (high) */
  5846. /**************** Bit definition for USB_COUNT1_TX_0 register ***************/
  5847. #define USB_COUNT1_TX_0_COUNT1_TX_0 0x000003FFU /*!< Transmission Byte Count 1 (low) */
  5848. /**************** Bit definition for USB_COUNT1_TX_1 register ***************/
  5849. #define USB_COUNT1_TX_1_COUNT1_TX_1 0x03FF0000U /*!< Transmission Byte Count 1 (high) */
  5850. /**************** Bit definition for USB_COUNT2_TX_0 register ***************/
  5851. #define USB_COUNT2_TX_0_COUNT2_TX_0 0x000003FFU /*!< Transmission Byte Count 2 (low) */
  5852. /**************** Bit definition for USB_COUNT2_TX_1 register ***************/
  5853. #define USB_COUNT2_TX_1_COUNT2_TX_1 0x03FF0000U /*!< Transmission Byte Count 2 (high) */
  5854. /**************** Bit definition for USB_COUNT3_TX_0 register ***************/
  5855. #define USB_COUNT3_TX_0_COUNT3_TX_0 0x000003FFU /*!< Transmission Byte Count 3 (low) */
  5856. /**************** Bit definition for USB_COUNT3_TX_1 register ***************/
  5857. #define USB_COUNT3_TX_1_COUNT3_TX_1 0x03FF0000U /*!< Transmission Byte Count 3 (high) */
  5858. /**************** Bit definition for USB_COUNT4_TX_0 register ***************/
  5859. #define USB_COUNT4_TX_0_COUNT4_TX_0 0x000003FFU /*!< Transmission Byte Count 4 (low) */
  5860. /**************** Bit definition for USB_COUNT4_TX_1 register ***************/
  5861. #define USB_COUNT4_TX_1_COUNT4_TX_1 0x03FF0000U /*!< Transmission Byte Count 4 (high) */
  5862. /**************** Bit definition for USB_COUNT5_TX_0 register ***************/
  5863. #define USB_COUNT5_TX_0_COUNT5_TX_0 0x000003FFU /*!< Transmission Byte Count 5 (low) */
  5864. /**************** Bit definition for USB_COUNT5_TX_1 register ***************/
  5865. #define USB_COUNT5_TX_1_COUNT5_TX_1 0x03FF0000U /*!< Transmission Byte Count 5 (high) */
  5866. /**************** Bit definition for USB_COUNT6_TX_0 register ***************/
  5867. #define USB_COUNT6_TX_0_COUNT6_TX_0 0x000003FFU /*!< Transmission Byte Count 6 (low) */
  5868. /**************** Bit definition for USB_COUNT6_TX_1 register ***************/
  5869. #define USB_COUNT6_TX_1_COUNT6_TX_1 0x03FF0000U /*!< Transmission Byte Count 6 (high) */
  5870. /**************** Bit definition for USB_COUNT7_TX_0 register ***************/
  5871. #define USB_COUNT7_TX_0_COUNT7_TX_0 0x000003FFU /*!< Transmission Byte Count 7 (low) */
  5872. /**************** Bit definition for USB_COUNT7_TX_1 register ***************/
  5873. #define USB_COUNT7_TX_1_COUNT7_TX_1 0x03FF0000U /*!< Transmission Byte Count 7 (high) */
  5874. /*----------------------------------------------------------------------------*/
  5875. /***************** Bit definition for USB_ADDR0_RX register *****************/
  5876. #define USB_ADDR0_RX_ADDR0_RX_Pos (1U)
  5877. #define USB_ADDR0_RX_ADDR0_RX_Msk (0x7FFFUL << USB_ADDR0_RX_ADDR0_RX_Pos) /*!< 0x0000FFFE */
  5878. #define USB_ADDR0_RX_ADDR0_RX USB_ADDR0_RX_ADDR0_RX_Msk /*!< Reception Buffer Address 0 */
  5879. /***************** Bit definition for USB_ADDR1_RX register *****************/
  5880. #define USB_ADDR1_RX_ADDR1_RX_Pos (1U)
  5881. #define USB_ADDR1_RX_ADDR1_RX_Msk (0x7FFFUL << USB_ADDR1_RX_ADDR1_RX_Pos) /*!< 0x0000FFFE */
  5882. #define USB_ADDR1_RX_ADDR1_RX USB_ADDR1_RX_ADDR1_RX_Msk /*!< Reception Buffer Address 1 */
  5883. /***************** Bit definition for USB_ADDR2_RX register *****************/
  5884. #define USB_ADDR2_RX_ADDR2_RX_Pos (1U)
  5885. #define USB_ADDR2_RX_ADDR2_RX_Msk (0x7FFFUL << USB_ADDR2_RX_ADDR2_RX_Pos) /*!< 0x0000FFFE */
  5886. #define USB_ADDR2_RX_ADDR2_RX USB_ADDR2_RX_ADDR2_RX_Msk /*!< Reception Buffer Address 2 */
  5887. /***************** Bit definition for USB_ADDR3_RX register *****************/
  5888. #define USB_ADDR3_RX_ADDR3_RX_Pos (1U)
  5889. #define USB_ADDR3_RX_ADDR3_RX_Msk (0x7FFFUL << USB_ADDR3_RX_ADDR3_RX_Pos) /*!< 0x0000FFFE */
  5890. #define USB_ADDR3_RX_ADDR3_RX USB_ADDR3_RX_ADDR3_RX_Msk /*!< Reception Buffer Address 3 */
  5891. /***************** Bit definition for USB_ADDR4_RX register *****************/
  5892. #define USB_ADDR4_RX_ADDR4_RX_Pos (1U)
  5893. #define USB_ADDR4_RX_ADDR4_RX_Msk (0x7FFFUL << USB_ADDR4_RX_ADDR4_RX_Pos) /*!< 0x0000FFFE */
  5894. #define USB_ADDR4_RX_ADDR4_RX USB_ADDR4_RX_ADDR4_RX_Msk /*!< Reception Buffer Address 4 */
  5895. /***************** Bit definition for USB_ADDR5_RX register *****************/
  5896. #define USB_ADDR5_RX_ADDR5_RX_Pos (1U)
  5897. #define USB_ADDR5_RX_ADDR5_RX_Msk (0x7FFFUL << USB_ADDR5_RX_ADDR5_RX_Pos) /*!< 0x0000FFFE */
  5898. #define USB_ADDR5_RX_ADDR5_RX USB_ADDR5_RX_ADDR5_RX_Msk /*!< Reception Buffer Address 5 */
  5899. /***************** Bit definition for USB_ADDR6_RX register *****************/
  5900. #define USB_ADDR6_RX_ADDR6_RX_Pos (1U)
  5901. #define USB_ADDR6_RX_ADDR6_RX_Msk (0x7FFFUL << USB_ADDR6_RX_ADDR6_RX_Pos) /*!< 0x0000FFFE */
  5902. #define USB_ADDR6_RX_ADDR6_RX USB_ADDR6_RX_ADDR6_RX_Msk /*!< Reception Buffer Address 6 */
  5903. /***************** Bit definition for USB_ADDR7_RX register *****************/
  5904. #define USB_ADDR7_RX_ADDR7_RX_Pos (1U)
  5905. #define USB_ADDR7_RX_ADDR7_RX_Msk (0x7FFFUL << USB_ADDR7_RX_ADDR7_RX_Pos) /*!< 0x0000FFFE */
  5906. #define USB_ADDR7_RX_ADDR7_RX USB_ADDR7_RX_ADDR7_RX_Msk /*!< Reception Buffer Address 7 */
  5907. /*----------------------------------------------------------------------------*/
  5908. /***************** Bit definition for USB_COUNT0_RX register ****************/
  5909. #define USB_COUNT0_RX_COUNT0_RX_Pos (0U)
  5910. #define USB_COUNT0_RX_COUNT0_RX_Msk (0x3FFUL << USB_COUNT0_RX_COUNT0_RX_Pos) /*!< 0x000003FF */
  5911. #define USB_COUNT0_RX_COUNT0_RX USB_COUNT0_RX_COUNT0_RX_Msk /*!< Reception Byte Count */
  5912. #define USB_COUNT0_RX_NUM_BLOCK_Pos (10U)
  5913. #define USB_COUNT0_RX_NUM_BLOCK_Msk (0x1FUL << USB_COUNT0_RX_NUM_BLOCK_Pos) /*!< 0x00007C00 */
  5914. #define USB_COUNT0_RX_NUM_BLOCK USB_COUNT0_RX_NUM_BLOCK_Msk /*!< NUM_BLOCK[4:0] bits (Number of blocks) */
  5915. #define USB_COUNT0_RX_NUM_BLOCK_0 (0x01UL << USB_COUNT0_RX_NUM_BLOCK_Pos) /*!< 0x00000400 */
  5916. #define USB_COUNT0_RX_NUM_BLOCK_1 (0x02UL << USB_COUNT0_RX_NUM_BLOCK_Pos) /*!< 0x00000800 */
  5917. #define USB_COUNT0_RX_NUM_BLOCK_2 (0x04UL << USB_COUNT0_RX_NUM_BLOCK_Pos) /*!< 0x00001000 */
  5918. #define USB_COUNT0_RX_NUM_BLOCK_3 (0x08UL << USB_COUNT0_RX_NUM_BLOCK_Pos) /*!< 0x00002000 */
  5919. #define USB_COUNT0_RX_NUM_BLOCK_4 (0x10UL << USB_COUNT0_RX_NUM_BLOCK_Pos) /*!< 0x00004000 */
  5920. #define USB_COUNT0_RX_BLSIZE_Pos (15U)
  5921. #define USB_COUNT0_RX_BLSIZE_Msk (0x1UL << USB_COUNT0_RX_BLSIZE_Pos) /*!< 0x00008000 */
  5922. #define USB_COUNT0_RX_BLSIZE USB_COUNT0_RX_BLSIZE_Msk /*!< BLock SIZE */
  5923. /***************** Bit definition for USB_COUNT1_RX register ****************/
  5924. #define USB_COUNT1_RX_COUNT1_RX_Pos (0U)
  5925. #define USB_COUNT1_RX_COUNT1_RX_Msk (0x3FFUL << USB_COUNT1_RX_COUNT1_RX_Pos) /*!< 0x000003FF */
  5926. #define USB_COUNT1_RX_COUNT1_RX USB_COUNT1_RX_COUNT1_RX_Msk /*!< Reception Byte Count */
  5927. #define USB_COUNT1_RX_NUM_BLOCK_Pos (10U)
  5928. #define USB_COUNT1_RX_NUM_BLOCK_Msk (0x1FUL << USB_COUNT1_RX_NUM_BLOCK_Pos) /*!< 0x00007C00 */
  5929. #define USB_COUNT1_RX_NUM_BLOCK USB_COUNT1_RX_NUM_BLOCK_Msk /*!< NUM_BLOCK[4:0] bits (Number of blocks) */
  5930. #define USB_COUNT1_RX_NUM_BLOCK_0 (0x01UL << USB_COUNT1_RX_NUM_BLOCK_Pos) /*!< 0x00000400 */
  5931. #define USB_COUNT1_RX_NUM_BLOCK_1 (0x02UL << USB_COUNT1_RX_NUM_BLOCK_Pos) /*!< 0x00000800 */
  5932. #define USB_COUNT1_RX_NUM_BLOCK_2 (0x04UL << USB_COUNT1_RX_NUM_BLOCK_Pos) /*!< 0x00001000 */
  5933. #define USB_COUNT1_RX_NUM_BLOCK_3 (0x08UL << USB_COUNT1_RX_NUM_BLOCK_Pos) /*!< 0x00002000 */
  5934. #define USB_COUNT1_RX_NUM_BLOCK_4 (0x10UL << USB_COUNT1_RX_NUM_BLOCK_Pos) /*!< 0x00004000 */
  5935. #define USB_COUNT1_RX_BLSIZE_Pos (15U)
  5936. #define USB_COUNT1_RX_BLSIZE_Msk (0x1UL << USB_COUNT1_RX_BLSIZE_Pos) /*!< 0x00008000 */
  5937. #define USB_COUNT1_RX_BLSIZE USB_COUNT1_RX_BLSIZE_Msk /*!< BLock SIZE */
  5938. /***************** Bit definition for USB_COUNT2_RX register ****************/
  5939. #define USB_COUNT2_RX_COUNT2_RX_Pos (0U)
  5940. #define USB_COUNT2_RX_COUNT2_RX_Msk (0x3FFUL << USB_COUNT2_RX_COUNT2_RX_Pos) /*!< 0x000003FF */
  5941. #define USB_COUNT2_RX_COUNT2_RX USB_COUNT2_RX_COUNT2_RX_Msk /*!< Reception Byte Count */
  5942. #define USB_COUNT2_RX_NUM_BLOCK_Pos (10U)
  5943. #define USB_COUNT2_RX_NUM_BLOCK_Msk (0x1FUL << USB_COUNT2_RX_NUM_BLOCK_Pos) /*!< 0x00007C00 */
  5944. #define USB_COUNT2_RX_NUM_BLOCK USB_COUNT2_RX_NUM_BLOCK_Msk /*!< NUM_BLOCK[4:0] bits (Number of blocks) */
  5945. #define USB_COUNT2_RX_NUM_BLOCK_0 (0x01UL << USB_COUNT2_RX_NUM_BLOCK_Pos) /*!< 0x00000400 */
  5946. #define USB_COUNT2_RX_NUM_BLOCK_1 (0x02UL << USB_COUNT2_RX_NUM_BLOCK_Pos) /*!< 0x00000800 */
  5947. #define USB_COUNT2_RX_NUM_BLOCK_2 (0x04UL << USB_COUNT2_RX_NUM_BLOCK_Pos) /*!< 0x00001000 */
  5948. #define USB_COUNT2_RX_NUM_BLOCK_3 (0x08UL << USB_COUNT2_RX_NUM_BLOCK_Pos) /*!< 0x00002000 */
  5949. #define USB_COUNT2_RX_NUM_BLOCK_4 (0x10UL << USB_COUNT2_RX_NUM_BLOCK_Pos) /*!< 0x00004000 */
  5950. #define USB_COUNT2_RX_BLSIZE_Pos (15U)
  5951. #define USB_COUNT2_RX_BLSIZE_Msk (0x1UL << USB_COUNT2_RX_BLSIZE_Pos) /*!< 0x00008000 */
  5952. #define USB_COUNT2_RX_BLSIZE USB_COUNT2_RX_BLSIZE_Msk /*!< BLock SIZE */
  5953. /***************** Bit definition for USB_COUNT3_RX register ****************/
  5954. #define USB_COUNT3_RX_COUNT3_RX_Pos (0U)
  5955. #define USB_COUNT3_RX_COUNT3_RX_Msk (0x3FFUL << USB_COUNT3_RX_COUNT3_RX_Pos) /*!< 0x000003FF */
  5956. #define USB_COUNT3_RX_COUNT3_RX USB_COUNT3_RX_COUNT3_RX_Msk /*!< Reception Byte Count */
  5957. #define USB_COUNT3_RX_NUM_BLOCK_Pos (10U)
  5958. #define USB_COUNT3_RX_NUM_BLOCK_Msk (0x1FUL << USB_COUNT3_RX_NUM_BLOCK_Pos) /*!< 0x00007C00 */
  5959. #define USB_COUNT3_RX_NUM_BLOCK USB_COUNT3_RX_NUM_BLOCK_Msk /*!< NUM_BLOCK[4:0] bits (Number of blocks) */
  5960. #define USB_COUNT3_RX_NUM_BLOCK_0 (0x01UL << USB_COUNT3_RX_NUM_BLOCK_Pos) /*!< 0x00000400 */
  5961. #define USB_COUNT3_RX_NUM_BLOCK_1 (0x02UL << USB_COUNT3_RX_NUM_BLOCK_Pos) /*!< 0x00000800 */
  5962. #define USB_COUNT3_RX_NUM_BLOCK_2 (0x04UL << USB_COUNT3_RX_NUM_BLOCK_Pos) /*!< 0x00001000 */
  5963. #define USB_COUNT3_RX_NUM_BLOCK_3 (0x08UL << USB_COUNT3_RX_NUM_BLOCK_Pos) /*!< 0x00002000 */
  5964. #define USB_COUNT3_RX_NUM_BLOCK_4 (0x10UL << USB_COUNT3_RX_NUM_BLOCK_Pos) /*!< 0x00004000 */
  5965. #define USB_COUNT3_RX_BLSIZE_Pos (15U)
  5966. #define USB_COUNT3_RX_BLSIZE_Msk (0x1UL << USB_COUNT3_RX_BLSIZE_Pos) /*!< 0x00008000 */
  5967. #define USB_COUNT3_RX_BLSIZE USB_COUNT3_RX_BLSIZE_Msk /*!< BLock SIZE */
  5968. /***************** Bit definition for USB_COUNT4_RX register ****************/
  5969. #define USB_COUNT4_RX_COUNT4_RX_Pos (0U)
  5970. #define USB_COUNT4_RX_COUNT4_RX_Msk (0x3FFUL << USB_COUNT4_RX_COUNT4_RX_Pos) /*!< 0x000003FF */
  5971. #define USB_COUNT4_RX_COUNT4_RX USB_COUNT4_RX_COUNT4_RX_Msk /*!< Reception Byte Count */
  5972. #define USB_COUNT4_RX_NUM_BLOCK_Pos (10U)
  5973. #define USB_COUNT4_RX_NUM_BLOCK_Msk (0x1FUL << USB_COUNT4_RX_NUM_BLOCK_Pos) /*!< 0x00007C00 */
  5974. #define USB_COUNT4_RX_NUM_BLOCK USB_COUNT4_RX_NUM_BLOCK_Msk /*!< NUM_BLOCK[4:0] bits (Number of blocks) */
  5975. #define USB_COUNT4_RX_NUM_BLOCK_0 (0x01UL << USB_COUNT4_RX_NUM_BLOCK_Pos) /*!< 0x00000400 */
  5976. #define USB_COUNT4_RX_NUM_BLOCK_1 (0x02UL << USB_COUNT4_RX_NUM_BLOCK_Pos) /*!< 0x00000800 */
  5977. #define USB_COUNT4_RX_NUM_BLOCK_2 (0x04UL << USB_COUNT4_RX_NUM_BLOCK_Pos) /*!< 0x00001000 */
  5978. #define USB_COUNT4_RX_NUM_BLOCK_3 (0x08UL << USB_COUNT4_RX_NUM_BLOCK_Pos) /*!< 0x00002000 */
  5979. #define USB_COUNT4_RX_NUM_BLOCK_4 (0x10UL << USB_COUNT4_RX_NUM_BLOCK_Pos) /*!< 0x00004000 */
  5980. #define USB_COUNT4_RX_BLSIZE_Pos (15U)
  5981. #define USB_COUNT4_RX_BLSIZE_Msk (0x1UL << USB_COUNT4_RX_BLSIZE_Pos) /*!< 0x00008000 */
  5982. #define USB_COUNT4_RX_BLSIZE USB_COUNT4_RX_BLSIZE_Msk /*!< BLock SIZE */
  5983. /***************** Bit definition for USB_COUNT5_RX register ****************/
  5984. #define USB_COUNT5_RX_COUNT5_RX_Pos (0U)
  5985. #define USB_COUNT5_RX_COUNT5_RX_Msk (0x3FFUL << USB_COUNT5_RX_COUNT5_RX_Pos) /*!< 0x000003FF */
  5986. #define USB_COUNT5_RX_COUNT5_RX USB_COUNT5_RX_COUNT5_RX_Msk /*!< Reception Byte Count */
  5987. #define USB_COUNT5_RX_NUM_BLOCK_Pos (10U)
  5988. #define USB_COUNT5_RX_NUM_BLOCK_Msk (0x1FUL << USB_COUNT5_RX_NUM_BLOCK_Pos) /*!< 0x00007C00 */
  5989. #define USB_COUNT5_RX_NUM_BLOCK USB_COUNT5_RX_NUM_BLOCK_Msk /*!< NUM_BLOCK[4:0] bits (Number of blocks) */
  5990. #define USB_COUNT5_RX_NUM_BLOCK_0 (0x01UL << USB_COUNT5_RX_NUM_BLOCK_Pos) /*!< 0x00000400 */
  5991. #define USB_COUNT5_RX_NUM_BLOCK_1 (0x02UL << USB_COUNT5_RX_NUM_BLOCK_Pos) /*!< 0x00000800 */
  5992. #define USB_COUNT5_RX_NUM_BLOCK_2 (0x04UL << USB_COUNT5_RX_NUM_BLOCK_Pos) /*!< 0x00001000 */
  5993. #define USB_COUNT5_RX_NUM_BLOCK_3 (0x08UL << USB_COUNT5_RX_NUM_BLOCK_Pos) /*!< 0x00002000 */
  5994. #define USB_COUNT5_RX_NUM_BLOCK_4 (0x10UL << USB_COUNT5_RX_NUM_BLOCK_Pos) /*!< 0x00004000 */
  5995. #define USB_COUNT5_RX_BLSIZE_Pos (15U)
  5996. #define USB_COUNT5_RX_BLSIZE_Msk (0x1UL << USB_COUNT5_RX_BLSIZE_Pos) /*!< 0x00008000 */
  5997. #define USB_COUNT5_RX_BLSIZE USB_COUNT5_RX_BLSIZE_Msk /*!< BLock SIZE */
  5998. /***************** Bit definition for USB_COUNT6_RX register ****************/
  5999. #define USB_COUNT6_RX_COUNT6_RX_Pos (0U)
  6000. #define USB_COUNT6_RX_COUNT6_RX_Msk (0x3FFUL << USB_COUNT6_RX_COUNT6_RX_Pos) /*!< 0x000003FF */
  6001. #define USB_COUNT6_RX_COUNT6_RX USB_COUNT6_RX_COUNT6_RX_Msk /*!< Reception Byte Count */
  6002. #define USB_COUNT6_RX_NUM_BLOCK_Pos (10U)
  6003. #define USB_COUNT6_RX_NUM_BLOCK_Msk (0x1FUL << USB_COUNT6_RX_NUM_BLOCK_Pos) /*!< 0x00007C00 */
  6004. #define USB_COUNT6_RX_NUM_BLOCK USB_COUNT6_RX_NUM_BLOCK_Msk /*!< NUM_BLOCK[4:0] bits (Number of blocks) */
  6005. #define USB_COUNT6_RX_NUM_BLOCK_0 (0x01UL << USB_COUNT6_RX_NUM_BLOCK_Pos) /*!< 0x00000400 */
  6006. #define USB_COUNT6_RX_NUM_BLOCK_1 (0x02UL << USB_COUNT6_RX_NUM_BLOCK_Pos) /*!< 0x00000800 */
  6007. #define USB_COUNT6_RX_NUM_BLOCK_2 (0x04UL << USB_COUNT6_RX_NUM_BLOCK_Pos) /*!< 0x00001000 */
  6008. #define USB_COUNT6_RX_NUM_BLOCK_3 (0x08UL << USB_COUNT6_RX_NUM_BLOCK_Pos) /*!< 0x00002000 */
  6009. #define USB_COUNT6_RX_NUM_BLOCK_4 (0x10UL << USB_COUNT6_RX_NUM_BLOCK_Pos) /*!< 0x00004000 */
  6010. #define USB_COUNT6_RX_BLSIZE_Pos (15U)
  6011. #define USB_COUNT6_RX_BLSIZE_Msk (0x1UL << USB_COUNT6_RX_BLSIZE_Pos) /*!< 0x00008000 */
  6012. #define USB_COUNT6_RX_BLSIZE USB_COUNT6_RX_BLSIZE_Msk /*!< BLock SIZE */
  6013. /***************** Bit definition for USB_COUNT7_RX register ****************/
  6014. #define USB_COUNT7_RX_COUNT7_RX_Pos (0U)
  6015. #define USB_COUNT7_RX_COUNT7_RX_Msk (0x3FFUL << USB_COUNT7_RX_COUNT7_RX_Pos) /*!< 0x000003FF */
  6016. #define USB_COUNT7_RX_COUNT7_RX USB_COUNT7_RX_COUNT7_RX_Msk /*!< Reception Byte Count */
  6017. #define USB_COUNT7_RX_NUM_BLOCK_Pos (10U)
  6018. #define USB_COUNT7_RX_NUM_BLOCK_Msk (0x1FUL << USB_COUNT7_RX_NUM_BLOCK_Pos) /*!< 0x00007C00 */
  6019. #define USB_COUNT7_RX_NUM_BLOCK USB_COUNT7_RX_NUM_BLOCK_Msk /*!< NUM_BLOCK[4:0] bits (Number of blocks) */
  6020. #define USB_COUNT7_RX_NUM_BLOCK_0 (0x01UL << USB_COUNT7_RX_NUM_BLOCK_Pos) /*!< 0x00000400 */
  6021. #define USB_COUNT7_RX_NUM_BLOCK_1 (0x02UL << USB_COUNT7_RX_NUM_BLOCK_Pos) /*!< 0x00000800 */
  6022. #define USB_COUNT7_RX_NUM_BLOCK_2 (0x04UL << USB_COUNT7_RX_NUM_BLOCK_Pos) /*!< 0x00001000 */
  6023. #define USB_COUNT7_RX_NUM_BLOCK_3 (0x08UL << USB_COUNT7_RX_NUM_BLOCK_Pos) /*!< 0x00002000 */
  6024. #define USB_COUNT7_RX_NUM_BLOCK_4 (0x10UL << USB_COUNT7_RX_NUM_BLOCK_Pos) /*!< 0x00004000 */
  6025. #define USB_COUNT7_RX_BLSIZE_Pos (15U)
  6026. #define USB_COUNT7_RX_BLSIZE_Msk (0x1UL << USB_COUNT7_RX_BLSIZE_Pos) /*!< 0x00008000 */
  6027. #define USB_COUNT7_RX_BLSIZE USB_COUNT7_RX_BLSIZE_Msk /*!< BLock SIZE */
  6028. /*----------------------------------------------------------------------------*/
  6029. /**************** Bit definition for USB_COUNT0_RX_0 register ***************/
  6030. #define USB_COUNT0_RX_0_COUNT0_RX_0 0x000003FFU /*!< Reception Byte Count (low) */
  6031. #define USB_COUNT0_RX_0_NUM_BLOCK_0 0x00007C00U /*!< NUM_BLOCK_0[4:0] bits (Number of blocks) (low) */
  6032. #define USB_COUNT0_RX_0_NUM_BLOCK_0_0 0x00000400U /*!< Bit 0 */
  6033. #define USB_COUNT0_RX_0_NUM_BLOCK_0_1 0x00000800U /*!< Bit 1 */
  6034. #define USB_COUNT0_RX_0_NUM_BLOCK_0_2 0x00001000U /*!< Bit 2 */
  6035. #define USB_COUNT0_RX_0_NUM_BLOCK_0_3 0x00002000U /*!< Bit 3 */
  6036. #define USB_COUNT0_RX_0_NUM_BLOCK_0_4 0x00004000U /*!< Bit 4 */
  6037. #define USB_COUNT0_RX_0_BLSIZE_0 0x00008000U /*!< BLock SIZE (low) */
  6038. /**************** Bit definition for USB_COUNT0_RX_1 register ***************/
  6039. #define USB_COUNT0_RX_1_COUNT0_RX_1 0x03FF0000U /*!< Reception Byte Count (high) */
  6040. #define USB_COUNT0_RX_1_NUM_BLOCK_1 0x7C000000U /*!< NUM_BLOCK_1[4:0] bits (Number of blocks) (high) */
  6041. #define USB_COUNT0_RX_1_NUM_BLOCK_1_0 0x04000000U /*!< Bit 1 */
  6042. #define USB_COUNT0_RX_1_NUM_BLOCK_1_1 0x08000000U /*!< Bit 1 */
  6043. #define USB_COUNT0_RX_1_NUM_BLOCK_1_2 0x10000000U /*!< Bit 2 */
  6044. #define USB_COUNT0_RX_1_NUM_BLOCK_1_3 0x20000000U /*!< Bit 3 */
  6045. #define USB_COUNT0_RX_1_NUM_BLOCK_1_4 0x40000000U /*!< Bit 4 */
  6046. #define USB_COUNT0_RX_1_BLSIZE_1 0x80000000U /*!< BLock SIZE (high) */
  6047. /**************** Bit definition for USB_COUNT1_RX_0 register ***************/
  6048. #define USB_COUNT1_RX_0_COUNT1_RX_0 0x000003FFU /*!< Reception Byte Count (low) */
  6049. #define USB_COUNT1_RX_0_NUM_BLOCK_0 0x00007C00U /*!< NUM_BLOCK_0[4:0] bits (Number of blocks) (low) */
  6050. #define USB_COUNT1_RX_0_NUM_BLOCK_0_0 0x00000400U /*!< Bit 0 */
  6051. #define USB_COUNT1_RX_0_NUM_BLOCK_0_1 0x00000800U /*!< Bit 1 */
  6052. #define USB_COUNT1_RX_0_NUM_BLOCK_0_2 0x00001000U /*!< Bit 2 */
  6053. #define USB_COUNT1_RX_0_NUM_BLOCK_0_3 0x00002000U /*!< Bit 3 */
  6054. #define USB_COUNT1_RX_0_NUM_BLOCK_0_4 0x00004000U /*!< Bit 4 */
  6055. #define USB_COUNT1_RX_0_BLSIZE_0 0x00008000U /*!< BLock SIZE (low) */
  6056. /**************** Bit definition for USB_COUNT1_RX_1 register ***************/
  6057. #define USB_COUNT1_RX_1_COUNT1_RX_1 0x03FF0000U /*!< Reception Byte Count (high) */
  6058. #define USB_COUNT1_RX_1_NUM_BLOCK_1 0x7C000000U /*!< NUM_BLOCK_1[4:0] bits (Number of blocks) (high) */
  6059. #define USB_COUNT1_RX_1_NUM_BLOCK_1_0 0x04000000U /*!< Bit 0 */
  6060. #define USB_COUNT1_RX_1_NUM_BLOCK_1_1 0x08000000U /*!< Bit 1 */
  6061. #define USB_COUNT1_RX_1_NUM_BLOCK_1_2 0x10000000U /*!< Bit 2 */
  6062. #define USB_COUNT1_RX_1_NUM_BLOCK_1_3 0x20000000U /*!< Bit 3 */
  6063. #define USB_COUNT1_RX_1_NUM_BLOCK_1_4 0x40000000U /*!< Bit 4 */
  6064. #define USB_COUNT1_RX_1_BLSIZE_1 0x80000000U /*!< BLock SIZE (high) */
  6065. /**************** Bit definition for USB_COUNT2_RX_0 register ***************/
  6066. #define USB_COUNT2_RX_0_COUNT2_RX_0 0x000003FFU /*!< Reception Byte Count (low) */
  6067. #define USB_COUNT2_RX_0_NUM_BLOCK_0 0x00007C00U /*!< NUM_BLOCK_0[4:0] bits (Number of blocks) (low) */
  6068. #define USB_COUNT2_RX_0_NUM_BLOCK_0_0 0x00000400U /*!< Bit 0 */
  6069. #define USB_COUNT2_RX_0_NUM_BLOCK_0_1 0x00000800U /*!< Bit 1 */
  6070. #define USB_COUNT2_RX_0_NUM_BLOCK_0_2 0x00001000U /*!< Bit 2 */
  6071. #define USB_COUNT2_RX_0_NUM_BLOCK_0_3 0x00002000U /*!< Bit 3 */
  6072. #define USB_COUNT2_RX_0_NUM_BLOCK_0_4 0x00004000U /*!< Bit 4 */
  6073. #define USB_COUNT2_RX_0_BLSIZE_0 0x00008000U /*!< BLock SIZE (low) */
  6074. /**************** Bit definition for USB_COUNT2_RX_1 register ***************/
  6075. #define USB_COUNT2_RX_1_COUNT2_RX_1 0x03FF0000U /*!< Reception Byte Count (high) */
  6076. #define USB_COUNT2_RX_1_NUM_BLOCK_1 0x7C000000U /*!< NUM_BLOCK_1[4:0] bits (Number of blocks) (high) */
  6077. #define USB_COUNT2_RX_1_NUM_BLOCK_1_0 0x04000000U /*!< Bit 0 */
  6078. #define USB_COUNT2_RX_1_NUM_BLOCK_1_1 0x08000000U /*!< Bit 1 */
  6079. #define USB_COUNT2_RX_1_NUM_BLOCK_1_2 0x10000000U /*!< Bit 2 */
  6080. #define USB_COUNT2_RX_1_NUM_BLOCK_1_3 0x20000000U /*!< Bit 3 */
  6081. #define USB_COUNT2_RX_1_NUM_BLOCK_1_4 0x40000000U /*!< Bit 4 */
  6082. #define USB_COUNT2_RX_1_BLSIZE_1 0x80000000U /*!< BLock SIZE (high) */
  6083. /**************** Bit definition for USB_COUNT3_RX_0 register ***************/
  6084. #define USB_COUNT3_RX_0_COUNT3_RX_0 0x000003FFU /*!< Reception Byte Count (low) */
  6085. #define USB_COUNT3_RX_0_NUM_BLOCK_0 0x00007C00U /*!< NUM_BLOCK_0[4:0] bits (Number of blocks) (low) */
  6086. #define USB_COUNT3_RX_0_NUM_BLOCK_0_0 0x00000400U /*!< Bit 0 */
  6087. #define USB_COUNT3_RX_0_NUM_BLOCK_0_1 0x00000800U /*!< Bit 1 */
  6088. #define USB_COUNT3_RX_0_NUM_BLOCK_0_2 0x00001000U /*!< Bit 2 */
  6089. #define USB_COUNT3_RX_0_NUM_BLOCK_0_3 0x00002000U /*!< Bit 3 */
  6090. #define USB_COUNT3_RX_0_NUM_BLOCK_0_4 0x00004000U /*!< Bit 4 */
  6091. #define USB_COUNT3_RX_0_BLSIZE_0 0x00008000U /*!< BLock SIZE (low) */
  6092. /**************** Bit definition for USB_COUNT3_RX_1 register ***************/
  6093. #define USB_COUNT3_RX_1_COUNT3_RX_1 0x03FF0000U /*!< Reception Byte Count (high) */
  6094. #define USB_COUNT3_RX_1_NUM_BLOCK_1 0x7C000000U /*!< NUM_BLOCK_1[4:0] bits (Number of blocks) (high) */
  6095. #define USB_COUNT3_RX_1_NUM_BLOCK_1_0 0x04000000U /*!< Bit 0 */
  6096. #define USB_COUNT3_RX_1_NUM_BLOCK_1_1 0x08000000U /*!< Bit 1 */
  6097. #define USB_COUNT3_RX_1_NUM_BLOCK_1_2 0x10000000U /*!< Bit 2 */
  6098. #define USB_COUNT3_RX_1_NUM_BLOCK_1_3 0x20000000U /*!< Bit 3 */
  6099. #define USB_COUNT3_RX_1_NUM_BLOCK_1_4 0x40000000U /*!< Bit 4 */
  6100. #define USB_COUNT3_RX_1_BLSIZE_1 0x80000000U /*!< BLock SIZE (high) */
  6101. /**************** Bit definition for USB_COUNT4_RX_0 register ***************/
  6102. #define USB_COUNT4_RX_0_COUNT4_RX_0 0x000003FFU /*!< Reception Byte Count (low) */
  6103. #define USB_COUNT4_RX_0_NUM_BLOCK_0 0x00007C00U /*!< NUM_BLOCK_0[4:0] bits (Number of blocks) (low) */
  6104. #define USB_COUNT4_RX_0_NUM_BLOCK_0_0 0x00000400U /*!< Bit 0 */
  6105. #define USB_COUNT4_RX_0_NUM_BLOCK_0_1 0x00000800U /*!< Bit 1 */
  6106. #define USB_COUNT4_RX_0_NUM_BLOCK_0_2 0x00001000U /*!< Bit 2 */
  6107. #define USB_COUNT4_RX_0_NUM_BLOCK_0_3 0x00002000U /*!< Bit 3 */
  6108. #define USB_COUNT4_RX_0_NUM_BLOCK_0_4 0x00004000U /*!< Bit 4 */
  6109. #define USB_COUNT4_RX_0_BLSIZE_0 0x00008000U /*!< BLock SIZE (low) */
  6110. /**************** Bit definition for USB_COUNT4_RX_1 register ***************/
  6111. #define USB_COUNT4_RX_1_COUNT4_RX_1 0x03FF0000U /*!< Reception Byte Count (high) */
  6112. #define USB_COUNT4_RX_1_NUM_BLOCK_1 0x7C000000U /*!< NUM_BLOCK_1[4:0] bits (Number of blocks) (high) */
  6113. #define USB_COUNT4_RX_1_NUM_BLOCK_1_0 0x04000000U /*!< Bit 0 */
  6114. #define USB_COUNT4_RX_1_NUM_BLOCK_1_1 0x08000000U /*!< Bit 1 */
  6115. #define USB_COUNT4_RX_1_NUM_BLOCK_1_2 0x10000000U /*!< Bit 2 */
  6116. #define USB_COUNT4_RX_1_NUM_BLOCK_1_3 0x20000000U /*!< Bit 3 */
  6117. #define USB_COUNT4_RX_1_NUM_BLOCK_1_4 0x40000000U /*!< Bit 4 */
  6118. #define USB_COUNT4_RX_1_BLSIZE_1 0x80000000U /*!< BLock SIZE (high) */
  6119. /**************** Bit definition for USB_COUNT5_RX_0 register ***************/
  6120. #define USB_COUNT5_RX_0_COUNT5_RX_0 0x000003FFU /*!< Reception Byte Count (low) */
  6121. #define USB_COUNT5_RX_0_NUM_BLOCK_0 0x00007C00U /*!< NUM_BLOCK_0[4:0] bits (Number of blocks) (low) */
  6122. #define USB_COUNT5_RX_0_NUM_BLOCK_0_0 0x00000400U /*!< Bit 0 */
  6123. #define USB_COUNT5_RX_0_NUM_BLOCK_0_1 0x00000800U /*!< Bit 1 */
  6124. #define USB_COUNT5_RX_0_NUM_BLOCK_0_2 0x00001000U /*!< Bit 2 */
  6125. #define USB_COUNT5_RX_0_NUM_BLOCK_0_3 0x00002000U /*!< Bit 3 */
  6126. #define USB_COUNT5_RX_0_NUM_BLOCK_0_4 0x00004000U /*!< Bit 4 */
  6127. #define USB_COUNT5_RX_0_BLSIZE_0 0x00008000U /*!< BLock SIZE (low) */
  6128. /**************** Bit definition for USB_COUNT5_RX_1 register ***************/
  6129. #define USB_COUNT5_RX_1_COUNT5_RX_1 0x03FF0000U /*!< Reception Byte Count (high) */
  6130. #define USB_COUNT5_RX_1_NUM_BLOCK_1 0x7C000000U /*!< NUM_BLOCK_1[4:0] bits (Number of blocks) (high) */
  6131. #define USB_COUNT5_RX_1_NUM_BLOCK_1_0 0x04000000U /*!< Bit 0 */
  6132. #define USB_COUNT5_RX_1_NUM_BLOCK_1_1 0x08000000U /*!< Bit 1 */
  6133. #define USB_COUNT5_RX_1_NUM_BLOCK_1_2 0x10000000U /*!< Bit 2 */
  6134. #define USB_COUNT5_RX_1_NUM_BLOCK_1_3 0x20000000U /*!< Bit 3 */
  6135. #define USB_COUNT5_RX_1_NUM_BLOCK_1_4 0x40000000U /*!< Bit 4 */
  6136. #define USB_COUNT5_RX_1_BLSIZE_1 0x80000000U /*!< BLock SIZE (high) */
  6137. /*************** Bit definition for USB_COUNT6_RX_0 register ***************/
  6138. #define USB_COUNT6_RX_0_COUNT6_RX_0 0x000003FFU /*!< Reception Byte Count (low) */
  6139. #define USB_COUNT6_RX_0_NUM_BLOCK_0 0x00007C00U /*!< NUM_BLOCK_0[4:0] bits (Number of blocks) (low) */
  6140. #define USB_COUNT6_RX_0_NUM_BLOCK_0_0 0x00000400U /*!< Bit 0 */
  6141. #define USB_COUNT6_RX_0_NUM_BLOCK_0_1 0x00000800U /*!< Bit 1 */
  6142. #define USB_COUNT6_RX_0_NUM_BLOCK_0_2 0x00001000U /*!< Bit 2 */
  6143. #define USB_COUNT6_RX_0_NUM_BLOCK_0_3 0x00002000U /*!< Bit 3 */
  6144. #define USB_COUNT6_RX_0_NUM_BLOCK_0_4 0x00004000U /*!< Bit 4 */
  6145. #define USB_COUNT6_RX_0_BLSIZE_0 0x00008000U /*!< BLock SIZE (low) */
  6146. /**************** Bit definition for USB_COUNT6_RX_1 register ***************/
  6147. #define USB_COUNT6_RX_1_COUNT6_RX_1 0x03FF0000U /*!< Reception Byte Count (high) */
  6148. #define USB_COUNT6_RX_1_NUM_BLOCK_1 0x7C000000U /*!< NUM_BLOCK_1[4:0] bits (Number of blocks) (high) */
  6149. #define USB_COUNT6_RX_1_NUM_BLOCK_1_0 0x04000000U /*!< Bit 0 */
  6150. #define USB_COUNT6_RX_1_NUM_BLOCK_1_1 0x08000000U /*!< Bit 1 */
  6151. #define USB_COUNT6_RX_1_NUM_BLOCK_1_2 0x10000000U /*!< Bit 2 */
  6152. #define USB_COUNT6_RX_1_NUM_BLOCK_1_3 0x20000000U /*!< Bit 3 */
  6153. #define USB_COUNT6_RX_1_NUM_BLOCK_1_4 0x40000000U /*!< Bit 4 */
  6154. #define USB_COUNT6_RX_1_BLSIZE_1 0x80000000U /*!< BLock SIZE (high) */
  6155. /*************** Bit definition for USB_COUNT7_RX_0 register ****************/
  6156. #define USB_COUNT7_RX_0_COUNT7_RX_0 0x000003FFU /*!< Reception Byte Count (low) */
  6157. #define USB_COUNT7_RX_0_NUM_BLOCK_0 0x00007C00U /*!< NUM_BLOCK_0[4:0] bits (Number of blocks) (low) */
  6158. #define USB_COUNT7_RX_0_NUM_BLOCK_0_0 0x00000400U /*!< Bit 0 */
  6159. #define USB_COUNT7_RX_0_NUM_BLOCK_0_1 0x00000800U /*!< Bit 1 */
  6160. #define USB_COUNT7_RX_0_NUM_BLOCK_0_2 0x00001000U /*!< Bit 2 */
  6161. #define USB_COUNT7_RX_0_NUM_BLOCK_0_3 0x00002000U /*!< Bit 3 */
  6162. #define USB_COUNT7_RX_0_NUM_BLOCK_0_4 0x00004000U /*!< Bit 4 */
  6163. #define USB_COUNT7_RX_0_BLSIZE_0 0x00008000U /*!< BLock SIZE (low) */
  6164. /*************** Bit definition for USB_COUNT7_RX_1 register ****************/
  6165. #define USB_COUNT7_RX_1_COUNT7_RX_1 0x03FF0000U /*!< Reception Byte Count (high) */
  6166. #define USB_COUNT7_RX_1_NUM_BLOCK_1 0x7C000000U /*!< NUM_BLOCK_1[4:0] bits (Number of blocks) (high) */
  6167. #define USB_COUNT7_RX_1_NUM_BLOCK_1_0 0x04000000U /*!< Bit 0 */
  6168. #define USB_COUNT7_RX_1_NUM_BLOCK_1_1 0x08000000U /*!< Bit 1 */
  6169. #define USB_COUNT7_RX_1_NUM_BLOCK_1_2 0x10000000U /*!< Bit 2 */
  6170. #define USB_COUNT7_RX_1_NUM_BLOCK_1_3 0x20000000U /*!< Bit 3 */
  6171. #define USB_COUNT7_RX_1_NUM_BLOCK_1_4 0x40000000U /*!< Bit 4 */
  6172. #define USB_COUNT7_RX_1_BLSIZE_1 0x80000000U /*!< BLock SIZE (high) */
  6173. /******************************************************************************/
  6174. /* */
  6175. /* Controller Area Network */
  6176. /* */
  6177. /******************************************************************************/
  6178. /*!< CAN control and status registers */
  6179. /******************* Bit definition for CAN_MCR register ********************/
  6180. #define CAN_MCR_INRQ_Pos (0U)
  6181. #define CAN_MCR_INRQ_Msk (0x1UL << CAN_MCR_INRQ_Pos) /*!< 0x00000001 */
  6182. #define CAN_MCR_INRQ CAN_MCR_INRQ_Msk /*!< Initialization Request */
  6183. #define CAN_MCR_SLEEP_Pos (1U)
  6184. #define CAN_MCR_SLEEP_Msk (0x1UL << CAN_MCR_SLEEP_Pos) /*!< 0x00000002 */
  6185. #define CAN_MCR_SLEEP CAN_MCR_SLEEP_Msk /*!< Sleep Mode Request */
  6186. #define CAN_MCR_TXFP_Pos (2U)
  6187. #define CAN_MCR_TXFP_Msk (0x1UL << CAN_MCR_TXFP_Pos) /*!< 0x00000004 */
  6188. #define CAN_MCR_TXFP CAN_MCR_TXFP_Msk /*!< Transmit FIFO Priority */
  6189. #define CAN_MCR_RFLM_Pos (3U)
  6190. #define CAN_MCR_RFLM_Msk (0x1UL << CAN_MCR_RFLM_Pos) /*!< 0x00000008 */
  6191. #define CAN_MCR_RFLM CAN_MCR_RFLM_Msk /*!< Receive FIFO Locked Mode */
  6192. #define CAN_MCR_NART_Pos (4U)
  6193. #define CAN_MCR_NART_Msk (0x1UL << CAN_MCR_NART_Pos) /*!< 0x00000010 */
  6194. #define CAN_MCR_NART CAN_MCR_NART_Msk /*!< No Automatic Retransmission */
  6195. #define CAN_MCR_AWUM_Pos (5U)
  6196. #define CAN_MCR_AWUM_Msk (0x1UL << CAN_MCR_AWUM_Pos) /*!< 0x00000020 */
  6197. #define CAN_MCR_AWUM CAN_MCR_AWUM_Msk /*!< Automatic Wakeup Mode */
  6198. #define CAN_MCR_ABOM_Pos (6U)
  6199. #define CAN_MCR_ABOM_Msk (0x1UL << CAN_MCR_ABOM_Pos) /*!< 0x00000040 */
  6200. #define CAN_MCR_ABOM CAN_MCR_ABOM_Msk /*!< Automatic Bus-Off Management */
  6201. #define CAN_MCR_TTCM_Pos (7U)
  6202. #define CAN_MCR_TTCM_Msk (0x1UL << CAN_MCR_TTCM_Pos) /*!< 0x00000080 */
  6203. #define CAN_MCR_TTCM CAN_MCR_TTCM_Msk /*!< Time Triggered Communication Mode */
  6204. #define CAN_MCR_RESET_Pos (15U)
  6205. #define CAN_MCR_RESET_Msk (0x1UL << CAN_MCR_RESET_Pos) /*!< 0x00008000 */
  6206. #define CAN_MCR_RESET CAN_MCR_RESET_Msk /*!< CAN software master reset */
  6207. #define CAN_MCR_DBF_Pos (16U)
  6208. #define CAN_MCR_DBF_Msk (0x1UL << CAN_MCR_DBF_Pos) /*!< 0x00010000 */
  6209. #define CAN_MCR_DBF CAN_MCR_DBF_Msk /*!< CAN Debug freeze */
  6210. /******************* Bit definition for CAN_MSR register ********************/
  6211. #define CAN_MSR_INAK_Pos (0U)
  6212. #define CAN_MSR_INAK_Msk (0x1UL << CAN_MSR_INAK_Pos) /*!< 0x00000001 */
  6213. #define CAN_MSR_INAK CAN_MSR_INAK_Msk /*!< Initialization Acknowledge */
  6214. #define CAN_MSR_SLAK_Pos (1U)
  6215. #define CAN_MSR_SLAK_Msk (0x1UL << CAN_MSR_SLAK_Pos) /*!< 0x00000002 */
  6216. #define CAN_MSR_SLAK CAN_MSR_SLAK_Msk /*!< Sleep Acknowledge */
  6217. #define CAN_MSR_ERRI_Pos (2U)
  6218. #define CAN_MSR_ERRI_Msk (0x1UL << CAN_MSR_ERRI_Pos) /*!< 0x00000004 */
  6219. #define CAN_MSR_ERRI CAN_MSR_ERRI_Msk /*!< Error Interrupt */
  6220. #define CAN_MSR_WKUI_Pos (3U)
  6221. #define CAN_MSR_WKUI_Msk (0x1UL << CAN_MSR_WKUI_Pos) /*!< 0x00000008 */
  6222. #define CAN_MSR_WKUI CAN_MSR_WKUI_Msk /*!< Wakeup Interrupt */
  6223. #define CAN_MSR_SLAKI_Pos (4U)
  6224. #define CAN_MSR_SLAKI_Msk (0x1UL << CAN_MSR_SLAKI_Pos) /*!< 0x00000010 */
  6225. #define CAN_MSR_SLAKI CAN_MSR_SLAKI_Msk /*!< Sleep Acknowledge Interrupt */
  6226. #define CAN_MSR_TXM_Pos (8U)
  6227. #define CAN_MSR_TXM_Msk (0x1UL << CAN_MSR_TXM_Pos) /*!< 0x00000100 */
  6228. #define CAN_MSR_TXM CAN_MSR_TXM_Msk /*!< Transmit Mode */
  6229. #define CAN_MSR_RXM_Pos (9U)
  6230. #define CAN_MSR_RXM_Msk (0x1UL << CAN_MSR_RXM_Pos) /*!< 0x00000200 */
  6231. #define CAN_MSR_RXM CAN_MSR_RXM_Msk /*!< Receive Mode */
  6232. #define CAN_MSR_SAMP_Pos (10U)
  6233. #define CAN_MSR_SAMP_Msk (0x1UL << CAN_MSR_SAMP_Pos) /*!< 0x00000400 */
  6234. #define CAN_MSR_SAMP CAN_MSR_SAMP_Msk /*!< Last Sample Point */
  6235. #define CAN_MSR_RX_Pos (11U)
  6236. #define CAN_MSR_RX_Msk (0x1UL << CAN_MSR_RX_Pos) /*!< 0x00000800 */
  6237. #define CAN_MSR_RX CAN_MSR_RX_Msk /*!< CAN Rx Signal */
  6238. /******************* Bit definition for CAN_TSR register ********************/
  6239. #define CAN_TSR_RQCP0_Pos (0U)
  6240. #define CAN_TSR_RQCP0_Msk (0x1UL << CAN_TSR_RQCP0_Pos) /*!< 0x00000001 */
  6241. #define CAN_TSR_RQCP0 CAN_TSR_RQCP0_Msk /*!< Request Completed Mailbox0 */
  6242. #define CAN_TSR_TXOK0_Pos (1U)
  6243. #define CAN_TSR_TXOK0_Msk (0x1UL << CAN_TSR_TXOK0_Pos) /*!< 0x00000002 */
  6244. #define CAN_TSR_TXOK0 CAN_TSR_TXOK0_Msk /*!< Transmission OK of Mailbox0 */
  6245. #define CAN_TSR_ALST0_Pos (2U)
  6246. #define CAN_TSR_ALST0_Msk (0x1UL << CAN_TSR_ALST0_Pos) /*!< 0x00000004 */
  6247. #define CAN_TSR_ALST0 CAN_TSR_ALST0_Msk /*!< Arbitration Lost for Mailbox0 */
  6248. #define CAN_TSR_TERR0_Pos (3U)
  6249. #define CAN_TSR_TERR0_Msk (0x1UL << CAN_TSR_TERR0_Pos) /*!< 0x00000008 */
  6250. #define CAN_TSR_TERR0 CAN_TSR_TERR0_Msk /*!< Transmission Error of Mailbox0 */
  6251. #define CAN_TSR_ABRQ0_Pos (7U)
  6252. #define CAN_TSR_ABRQ0_Msk (0x1UL << CAN_TSR_ABRQ0_Pos) /*!< 0x00000080 */
  6253. #define CAN_TSR_ABRQ0 CAN_TSR_ABRQ0_Msk /*!< Abort Request for Mailbox0 */
  6254. #define CAN_TSR_RQCP1_Pos (8U)
  6255. #define CAN_TSR_RQCP1_Msk (0x1UL << CAN_TSR_RQCP1_Pos) /*!< 0x00000100 */
  6256. #define CAN_TSR_RQCP1 CAN_TSR_RQCP1_Msk /*!< Request Completed Mailbox1 */
  6257. #define CAN_TSR_TXOK1_Pos (9U)
  6258. #define CAN_TSR_TXOK1_Msk (0x1UL << CAN_TSR_TXOK1_Pos) /*!< 0x00000200 */
  6259. #define CAN_TSR_TXOK1 CAN_TSR_TXOK1_Msk /*!< Transmission OK of Mailbox1 */
  6260. #define CAN_TSR_ALST1_Pos (10U)
  6261. #define CAN_TSR_ALST1_Msk (0x1UL << CAN_TSR_ALST1_Pos) /*!< 0x00000400 */
  6262. #define CAN_TSR_ALST1 CAN_TSR_ALST1_Msk /*!< Arbitration Lost for Mailbox1 */
  6263. #define CAN_TSR_TERR1_Pos (11U)
  6264. #define CAN_TSR_TERR1_Msk (0x1UL << CAN_TSR_TERR1_Pos) /*!< 0x00000800 */
  6265. #define CAN_TSR_TERR1 CAN_TSR_TERR1_Msk /*!< Transmission Error of Mailbox1 */
  6266. #define CAN_TSR_ABRQ1_Pos (15U)
  6267. #define CAN_TSR_ABRQ1_Msk (0x1UL << CAN_TSR_ABRQ1_Pos) /*!< 0x00008000 */
  6268. #define CAN_TSR_ABRQ1 CAN_TSR_ABRQ1_Msk /*!< Abort Request for Mailbox 1 */
  6269. #define CAN_TSR_RQCP2_Pos (16U)
  6270. #define CAN_TSR_RQCP2_Msk (0x1UL << CAN_TSR_RQCP2_Pos) /*!< 0x00010000 */
  6271. #define CAN_TSR_RQCP2 CAN_TSR_RQCP2_Msk /*!< Request Completed Mailbox2 */
  6272. #define CAN_TSR_TXOK2_Pos (17U)
  6273. #define CAN_TSR_TXOK2_Msk (0x1UL << CAN_TSR_TXOK2_Pos) /*!< 0x00020000 */
  6274. #define CAN_TSR_TXOK2 CAN_TSR_TXOK2_Msk /*!< Transmission OK of Mailbox 2 */
  6275. #define CAN_TSR_ALST2_Pos (18U)
  6276. #define CAN_TSR_ALST2_Msk (0x1UL << CAN_TSR_ALST2_Pos) /*!< 0x00040000 */
  6277. #define CAN_TSR_ALST2 CAN_TSR_ALST2_Msk /*!< Arbitration Lost for mailbox 2 */
  6278. #define CAN_TSR_TERR2_Pos (19U)
  6279. #define CAN_TSR_TERR2_Msk (0x1UL << CAN_TSR_TERR2_Pos) /*!< 0x00080000 */
  6280. #define CAN_TSR_TERR2 CAN_TSR_TERR2_Msk /*!< Transmission Error of Mailbox 2 */
  6281. #define CAN_TSR_ABRQ2_Pos (23U)
  6282. #define CAN_TSR_ABRQ2_Msk (0x1UL << CAN_TSR_ABRQ2_Pos) /*!< 0x00800000 */
  6283. #define CAN_TSR_ABRQ2 CAN_TSR_ABRQ2_Msk /*!< Abort Request for Mailbox 2 */
  6284. #define CAN_TSR_CODE_Pos (24U)
  6285. #define CAN_TSR_CODE_Msk (0x3UL << CAN_TSR_CODE_Pos) /*!< 0x03000000 */
  6286. #define CAN_TSR_CODE CAN_TSR_CODE_Msk /*!< Mailbox Code */
  6287. #define CAN_TSR_TME_Pos (26U)
  6288. #define CAN_TSR_TME_Msk (0x7UL << CAN_TSR_TME_Pos) /*!< 0x1C000000 */
  6289. #define CAN_TSR_TME CAN_TSR_TME_Msk /*!< TME[2:0] bits */
  6290. #define CAN_TSR_TME0_Pos (26U)
  6291. #define CAN_TSR_TME0_Msk (0x1UL << CAN_TSR_TME0_Pos) /*!< 0x04000000 */
  6292. #define CAN_TSR_TME0 CAN_TSR_TME0_Msk /*!< Transmit Mailbox 0 Empty */
  6293. #define CAN_TSR_TME1_Pos (27U)
  6294. #define CAN_TSR_TME1_Msk (0x1UL << CAN_TSR_TME1_Pos) /*!< 0x08000000 */
  6295. #define CAN_TSR_TME1 CAN_TSR_TME1_Msk /*!< Transmit Mailbox 1 Empty */
  6296. #define CAN_TSR_TME2_Pos (28U)
  6297. #define CAN_TSR_TME2_Msk (0x1UL << CAN_TSR_TME2_Pos) /*!< 0x10000000 */
  6298. #define CAN_TSR_TME2 CAN_TSR_TME2_Msk /*!< Transmit Mailbox 2 Empty */
  6299. #define CAN_TSR_LOW_Pos (29U)
  6300. #define CAN_TSR_LOW_Msk (0x7UL << CAN_TSR_LOW_Pos) /*!< 0xE0000000 */
  6301. #define CAN_TSR_LOW CAN_TSR_LOW_Msk /*!< LOW[2:0] bits */
  6302. #define CAN_TSR_LOW0_Pos (29U)
  6303. #define CAN_TSR_LOW0_Msk (0x1UL << CAN_TSR_LOW0_Pos) /*!< 0x20000000 */
  6304. #define CAN_TSR_LOW0 CAN_TSR_LOW0_Msk /*!< Lowest Priority Flag for Mailbox 0 */
  6305. #define CAN_TSR_LOW1_Pos (30U)
  6306. #define CAN_TSR_LOW1_Msk (0x1UL << CAN_TSR_LOW1_Pos) /*!< 0x40000000 */
  6307. #define CAN_TSR_LOW1 CAN_TSR_LOW1_Msk /*!< Lowest Priority Flag for Mailbox 1 */
  6308. #define CAN_TSR_LOW2_Pos (31U)
  6309. #define CAN_TSR_LOW2_Msk (0x1UL << CAN_TSR_LOW2_Pos) /*!< 0x80000000 */
  6310. #define CAN_TSR_LOW2 CAN_TSR_LOW2_Msk /*!< Lowest Priority Flag for Mailbox 2 */
  6311. /******************* Bit definition for CAN_RF0R register *******************/
  6312. #define CAN_RF0R_FMP0_Pos (0U)
  6313. #define CAN_RF0R_FMP0_Msk (0x3UL << CAN_RF0R_FMP0_Pos) /*!< 0x00000003 */
  6314. #define CAN_RF0R_FMP0 CAN_RF0R_FMP0_Msk /*!< FIFO 0 Message Pending */
  6315. #define CAN_RF0R_FULL0_Pos (3U)
  6316. #define CAN_RF0R_FULL0_Msk (0x1UL << CAN_RF0R_FULL0_Pos) /*!< 0x00000008 */
  6317. #define CAN_RF0R_FULL0 CAN_RF0R_FULL0_Msk /*!< FIFO 0 Full */
  6318. #define CAN_RF0R_FOVR0_Pos (4U)
  6319. #define CAN_RF0R_FOVR0_Msk (0x1UL << CAN_RF0R_FOVR0_Pos) /*!< 0x00000010 */
  6320. #define CAN_RF0R_FOVR0 CAN_RF0R_FOVR0_Msk /*!< FIFO 0 Overrun */
  6321. #define CAN_RF0R_RFOM0_Pos (5U)
  6322. #define CAN_RF0R_RFOM0_Msk (0x1UL << CAN_RF0R_RFOM0_Pos) /*!< 0x00000020 */
  6323. #define CAN_RF0R_RFOM0 CAN_RF0R_RFOM0_Msk /*!< Release FIFO 0 Output Mailbox */
  6324. /******************* Bit definition for CAN_RF1R register *******************/
  6325. #define CAN_RF1R_FMP1_Pos (0U)
  6326. #define CAN_RF1R_FMP1_Msk (0x3UL << CAN_RF1R_FMP1_Pos) /*!< 0x00000003 */
  6327. #define CAN_RF1R_FMP1 CAN_RF1R_FMP1_Msk /*!< FIFO 1 Message Pending */
  6328. #define CAN_RF1R_FULL1_Pos (3U)
  6329. #define CAN_RF1R_FULL1_Msk (0x1UL << CAN_RF1R_FULL1_Pos) /*!< 0x00000008 */
  6330. #define CAN_RF1R_FULL1 CAN_RF1R_FULL1_Msk /*!< FIFO 1 Full */
  6331. #define CAN_RF1R_FOVR1_Pos (4U)
  6332. #define CAN_RF1R_FOVR1_Msk (0x1UL << CAN_RF1R_FOVR1_Pos) /*!< 0x00000010 */
  6333. #define CAN_RF1R_FOVR1 CAN_RF1R_FOVR1_Msk /*!< FIFO 1 Overrun */
  6334. #define CAN_RF1R_RFOM1_Pos (5U)
  6335. #define CAN_RF1R_RFOM1_Msk (0x1UL << CAN_RF1R_RFOM1_Pos) /*!< 0x00000020 */
  6336. #define CAN_RF1R_RFOM1 CAN_RF1R_RFOM1_Msk /*!< Release FIFO 1 Output Mailbox */
  6337. /******************** Bit definition for CAN_IER register *******************/
  6338. #define CAN_IER_TMEIE_Pos (0U)
  6339. #define CAN_IER_TMEIE_Msk (0x1UL << CAN_IER_TMEIE_Pos) /*!< 0x00000001 */
  6340. #define CAN_IER_TMEIE CAN_IER_TMEIE_Msk /*!< Transmit Mailbox Empty Interrupt Enable */
  6341. #define CAN_IER_FMPIE0_Pos (1U)
  6342. #define CAN_IER_FMPIE0_Msk (0x1UL << CAN_IER_FMPIE0_Pos) /*!< 0x00000002 */
  6343. #define CAN_IER_FMPIE0 CAN_IER_FMPIE0_Msk /*!< FIFO Message Pending Interrupt Enable */
  6344. #define CAN_IER_FFIE0_Pos (2U)
  6345. #define CAN_IER_FFIE0_Msk (0x1UL << CAN_IER_FFIE0_Pos) /*!< 0x00000004 */
  6346. #define CAN_IER_FFIE0 CAN_IER_FFIE0_Msk /*!< FIFO Full Interrupt Enable */
  6347. #define CAN_IER_FOVIE0_Pos (3U)
  6348. #define CAN_IER_FOVIE0_Msk (0x1UL << CAN_IER_FOVIE0_Pos) /*!< 0x00000008 */
  6349. #define CAN_IER_FOVIE0 CAN_IER_FOVIE0_Msk /*!< FIFO Overrun Interrupt Enable */
  6350. #define CAN_IER_FMPIE1_Pos (4U)
  6351. #define CAN_IER_FMPIE1_Msk (0x1UL << CAN_IER_FMPIE1_Pos) /*!< 0x00000010 */
  6352. #define CAN_IER_FMPIE1 CAN_IER_FMPIE1_Msk /*!< FIFO Message Pending Interrupt Enable */
  6353. #define CAN_IER_FFIE1_Pos (5U)
  6354. #define CAN_IER_FFIE1_Msk (0x1UL << CAN_IER_FFIE1_Pos) /*!< 0x00000020 */
  6355. #define CAN_IER_FFIE1 CAN_IER_FFIE1_Msk /*!< FIFO Full Interrupt Enable */
  6356. #define CAN_IER_FOVIE1_Pos (6U)
  6357. #define CAN_IER_FOVIE1_Msk (0x1UL << CAN_IER_FOVIE1_Pos) /*!< 0x00000040 */
  6358. #define CAN_IER_FOVIE1 CAN_IER_FOVIE1_Msk /*!< FIFO Overrun Interrupt Enable */
  6359. #define CAN_IER_EWGIE_Pos (8U)
  6360. #define CAN_IER_EWGIE_Msk (0x1UL << CAN_IER_EWGIE_Pos) /*!< 0x00000100 */
  6361. #define CAN_IER_EWGIE CAN_IER_EWGIE_Msk /*!< Error Warning Interrupt Enable */
  6362. #define CAN_IER_EPVIE_Pos (9U)
  6363. #define CAN_IER_EPVIE_Msk (0x1UL << CAN_IER_EPVIE_Pos) /*!< 0x00000200 */
  6364. #define CAN_IER_EPVIE CAN_IER_EPVIE_Msk /*!< Error Passive Interrupt Enable */
  6365. #define CAN_IER_BOFIE_Pos (10U)
  6366. #define CAN_IER_BOFIE_Msk (0x1UL << CAN_IER_BOFIE_Pos) /*!< 0x00000400 */
  6367. #define CAN_IER_BOFIE CAN_IER_BOFIE_Msk /*!< Bus-Off Interrupt Enable */
  6368. #define CAN_IER_LECIE_Pos (11U)
  6369. #define CAN_IER_LECIE_Msk (0x1UL << CAN_IER_LECIE_Pos) /*!< 0x00000800 */
  6370. #define CAN_IER_LECIE CAN_IER_LECIE_Msk /*!< Last Error Code Interrupt Enable */
  6371. #define CAN_IER_ERRIE_Pos (15U)
  6372. #define CAN_IER_ERRIE_Msk (0x1UL << CAN_IER_ERRIE_Pos) /*!< 0x00008000 */
  6373. #define CAN_IER_ERRIE CAN_IER_ERRIE_Msk /*!< Error Interrupt Enable */
  6374. #define CAN_IER_WKUIE_Pos (16U)
  6375. #define CAN_IER_WKUIE_Msk (0x1UL << CAN_IER_WKUIE_Pos) /*!< 0x00010000 */
  6376. #define CAN_IER_WKUIE CAN_IER_WKUIE_Msk /*!< Wakeup Interrupt Enable */
  6377. #define CAN_IER_SLKIE_Pos (17U)
  6378. #define CAN_IER_SLKIE_Msk (0x1UL << CAN_IER_SLKIE_Pos) /*!< 0x00020000 */
  6379. #define CAN_IER_SLKIE CAN_IER_SLKIE_Msk /*!< Sleep Interrupt Enable */
  6380. /******************** Bit definition for CAN_ESR register *******************/
  6381. #define CAN_ESR_EWGF_Pos (0U)
  6382. #define CAN_ESR_EWGF_Msk (0x1UL << CAN_ESR_EWGF_Pos) /*!< 0x00000001 */
  6383. #define CAN_ESR_EWGF CAN_ESR_EWGF_Msk /*!< Error Warning Flag */
  6384. #define CAN_ESR_EPVF_Pos (1U)
  6385. #define CAN_ESR_EPVF_Msk (0x1UL << CAN_ESR_EPVF_Pos) /*!< 0x00000002 */
  6386. #define CAN_ESR_EPVF CAN_ESR_EPVF_Msk /*!< Error Passive Flag */
  6387. #define CAN_ESR_BOFF_Pos (2U)
  6388. #define CAN_ESR_BOFF_Msk (0x1UL << CAN_ESR_BOFF_Pos) /*!< 0x00000004 */
  6389. #define CAN_ESR_BOFF CAN_ESR_BOFF_Msk /*!< Bus-Off Flag */
  6390. #define CAN_ESR_LEC_Pos (4U)
  6391. #define CAN_ESR_LEC_Msk (0x7UL << CAN_ESR_LEC_Pos) /*!< 0x00000070 */
  6392. #define CAN_ESR_LEC CAN_ESR_LEC_Msk /*!< LEC[2:0] bits (Last Error Code) */
  6393. #define CAN_ESR_LEC_0 (0x1UL << CAN_ESR_LEC_Pos) /*!< 0x00000010 */
  6394. #define CAN_ESR_LEC_1 (0x2UL << CAN_ESR_LEC_Pos) /*!< 0x00000020 */
  6395. #define CAN_ESR_LEC_2 (0x4UL << CAN_ESR_LEC_Pos) /*!< 0x00000040 */
  6396. #define CAN_ESR_TEC_Pos (16U)
  6397. #define CAN_ESR_TEC_Msk (0xFFUL << CAN_ESR_TEC_Pos) /*!< 0x00FF0000 */
  6398. #define CAN_ESR_TEC CAN_ESR_TEC_Msk /*!< Least significant byte of the 9-bit Transmit Error Counter */
  6399. #define CAN_ESR_REC_Pos (24U)
  6400. #define CAN_ESR_REC_Msk (0xFFUL << CAN_ESR_REC_Pos) /*!< 0xFF000000 */
  6401. #define CAN_ESR_REC CAN_ESR_REC_Msk /*!< Receive Error Counter */
  6402. /******************* Bit definition for CAN_BTR register ********************/
  6403. #define CAN_BTR_BRP_Pos (0U)
  6404. #define CAN_BTR_BRP_Msk (0x3FFUL << CAN_BTR_BRP_Pos) /*!< 0x000003FF */
  6405. #define CAN_BTR_BRP CAN_BTR_BRP_Msk /*!<Baud Rate Prescaler */
  6406. #define CAN_BTR_TS1_Pos (16U)
  6407. #define CAN_BTR_TS1_Msk (0xFUL << CAN_BTR_TS1_Pos) /*!< 0x000F0000 */
  6408. #define CAN_BTR_TS1 CAN_BTR_TS1_Msk /*!<Time Segment 1 */
  6409. #define CAN_BTR_TS1_0 (0x1UL << CAN_BTR_TS1_Pos) /*!< 0x00010000 */
  6410. #define CAN_BTR_TS1_1 (0x2UL << CAN_BTR_TS1_Pos) /*!< 0x00020000 */
  6411. #define CAN_BTR_TS1_2 (0x4UL << CAN_BTR_TS1_Pos) /*!< 0x00040000 */
  6412. #define CAN_BTR_TS1_3 (0x8UL << CAN_BTR_TS1_Pos) /*!< 0x00080000 */
  6413. #define CAN_BTR_TS2_Pos (20U)
  6414. #define CAN_BTR_TS2_Msk (0x7UL << CAN_BTR_TS2_Pos) /*!< 0x00700000 */
  6415. #define CAN_BTR_TS2 CAN_BTR_TS2_Msk /*!<Time Segment 2 */
  6416. #define CAN_BTR_TS2_0 (0x1UL << CAN_BTR_TS2_Pos) /*!< 0x00100000 */
  6417. #define CAN_BTR_TS2_1 (0x2UL << CAN_BTR_TS2_Pos) /*!< 0x00200000 */
  6418. #define CAN_BTR_TS2_2 (0x4UL << CAN_BTR_TS2_Pos) /*!< 0x00400000 */
  6419. #define CAN_BTR_SJW_Pos (24U)
  6420. #define CAN_BTR_SJW_Msk (0x3UL << CAN_BTR_SJW_Pos) /*!< 0x03000000 */
  6421. #define CAN_BTR_SJW CAN_BTR_SJW_Msk /*!<Resynchronization Jump Width */
  6422. #define CAN_BTR_SJW_0 (0x1UL << CAN_BTR_SJW_Pos) /*!< 0x01000000 */
  6423. #define CAN_BTR_SJW_1 (0x2UL << CAN_BTR_SJW_Pos) /*!< 0x02000000 */
  6424. #define CAN_BTR_LBKM_Pos (30U)
  6425. #define CAN_BTR_LBKM_Msk (0x1UL << CAN_BTR_LBKM_Pos) /*!< 0x40000000 */
  6426. #define CAN_BTR_LBKM CAN_BTR_LBKM_Msk /*!<Loop Back Mode (Debug) */
  6427. #define CAN_BTR_SILM_Pos (31U)
  6428. #define CAN_BTR_SILM_Msk (0x1UL << CAN_BTR_SILM_Pos) /*!< 0x80000000 */
  6429. #define CAN_BTR_SILM CAN_BTR_SILM_Msk /*!<Silent Mode */
  6430. /*!< Mailbox registers */
  6431. /****************** Bit definition for CAN_TI0R register ********************/
  6432. #define CAN_TI0R_TXRQ_Pos (0U)
  6433. #define CAN_TI0R_TXRQ_Msk (0x1UL << CAN_TI0R_TXRQ_Pos) /*!< 0x00000001 */
  6434. #define CAN_TI0R_TXRQ CAN_TI0R_TXRQ_Msk /*!< Transmit Mailbox Request */
  6435. #define CAN_TI0R_RTR_Pos (1U)
  6436. #define CAN_TI0R_RTR_Msk (0x1UL << CAN_TI0R_RTR_Pos) /*!< 0x00000002 */
  6437. #define CAN_TI0R_RTR CAN_TI0R_RTR_Msk /*!< Remote Transmission Request */
  6438. #define CAN_TI0R_IDE_Pos (2U)
  6439. #define CAN_TI0R_IDE_Msk (0x1UL << CAN_TI0R_IDE_Pos) /*!< 0x00000004 */
  6440. #define CAN_TI0R_IDE CAN_TI0R_IDE_Msk /*!< Identifier Extension */
  6441. #define CAN_TI0R_EXID_Pos (3U)
  6442. #define CAN_TI0R_EXID_Msk (0x3FFFFUL << CAN_TI0R_EXID_Pos) /*!< 0x001FFFF8 */
  6443. #define CAN_TI0R_EXID CAN_TI0R_EXID_Msk /*!< Extended Identifier */
  6444. #define CAN_TI0R_STID_Pos (21U)
  6445. #define CAN_TI0R_STID_Msk (0x7FFUL << CAN_TI0R_STID_Pos) /*!< 0xFFE00000 */
  6446. #define CAN_TI0R_STID CAN_TI0R_STID_Msk /*!< Standard Identifier or Extended Identifier */
  6447. /****************** Bit definition for CAN_TDT0R register *******************/
  6448. #define CAN_TDT0R_DLC_Pos (0U)
  6449. #define CAN_TDT0R_DLC_Msk (0xFUL << CAN_TDT0R_DLC_Pos) /*!< 0x0000000F */
  6450. #define CAN_TDT0R_DLC CAN_TDT0R_DLC_Msk /*!< Data Length Code */
  6451. #define CAN_TDT0R_TGT_Pos (8U)
  6452. #define CAN_TDT0R_TGT_Msk (0x1UL << CAN_TDT0R_TGT_Pos) /*!< 0x00000100 */
  6453. #define CAN_TDT0R_TGT CAN_TDT0R_TGT_Msk /*!< Transmit Global Time */
  6454. #define CAN_TDT0R_TIME_Pos (16U)
  6455. #define CAN_TDT0R_TIME_Msk (0xFFFFUL << CAN_TDT0R_TIME_Pos) /*!< 0xFFFF0000 */
  6456. #define CAN_TDT0R_TIME CAN_TDT0R_TIME_Msk /*!< Message Time Stamp */
  6457. /****************** Bit definition for CAN_TDL0R register *******************/
  6458. #define CAN_TDL0R_DATA0_Pos (0U)
  6459. #define CAN_TDL0R_DATA0_Msk (0xFFUL << CAN_TDL0R_DATA0_Pos) /*!< 0x000000FF */
  6460. #define CAN_TDL0R_DATA0 CAN_TDL0R_DATA0_Msk /*!< Data byte 0 */
  6461. #define CAN_TDL0R_DATA1_Pos (8U)
  6462. #define CAN_TDL0R_DATA1_Msk (0xFFUL << CAN_TDL0R_DATA1_Pos) /*!< 0x0000FF00 */
  6463. #define CAN_TDL0R_DATA1 CAN_TDL0R_DATA1_Msk /*!< Data byte 1 */
  6464. #define CAN_TDL0R_DATA2_Pos (16U)
  6465. #define CAN_TDL0R_DATA2_Msk (0xFFUL << CAN_TDL0R_DATA2_Pos) /*!< 0x00FF0000 */
  6466. #define CAN_TDL0R_DATA2 CAN_TDL0R_DATA2_Msk /*!< Data byte 2 */
  6467. #define CAN_TDL0R_DATA3_Pos (24U)
  6468. #define CAN_TDL0R_DATA3_Msk (0xFFUL << CAN_TDL0R_DATA3_Pos) /*!< 0xFF000000 */
  6469. #define CAN_TDL0R_DATA3 CAN_TDL0R_DATA3_Msk /*!< Data byte 3 */
  6470. /****************** Bit definition for CAN_TDH0R register *******************/
  6471. #define CAN_TDH0R_DATA4_Pos (0U)
  6472. #define CAN_TDH0R_DATA4_Msk (0xFFUL << CAN_TDH0R_DATA4_Pos) /*!< 0x000000FF */
  6473. #define CAN_TDH0R_DATA4 CAN_TDH0R_DATA4_Msk /*!< Data byte 4 */
  6474. #define CAN_TDH0R_DATA5_Pos (8U)
  6475. #define CAN_TDH0R_DATA5_Msk (0xFFUL << CAN_TDH0R_DATA5_Pos) /*!< 0x0000FF00 */
  6476. #define CAN_TDH0R_DATA5 CAN_TDH0R_DATA5_Msk /*!< Data byte 5 */
  6477. #define CAN_TDH0R_DATA6_Pos (16U)
  6478. #define CAN_TDH0R_DATA6_Msk (0xFFUL << CAN_TDH0R_DATA6_Pos) /*!< 0x00FF0000 */
  6479. #define CAN_TDH0R_DATA6 CAN_TDH0R_DATA6_Msk /*!< Data byte 6 */
  6480. #define CAN_TDH0R_DATA7_Pos (24U)
  6481. #define CAN_TDH0R_DATA7_Msk (0xFFUL << CAN_TDH0R_DATA7_Pos) /*!< 0xFF000000 */
  6482. #define CAN_TDH0R_DATA7 CAN_TDH0R_DATA7_Msk /*!< Data byte 7 */
  6483. /******************* Bit definition for CAN_TI1R register *******************/
  6484. #define CAN_TI1R_TXRQ_Pos (0U)
  6485. #define CAN_TI1R_TXRQ_Msk (0x1UL << CAN_TI1R_TXRQ_Pos) /*!< 0x00000001 */
  6486. #define CAN_TI1R_TXRQ CAN_TI1R_TXRQ_Msk /*!< Transmit Mailbox Request */
  6487. #define CAN_TI1R_RTR_Pos (1U)
  6488. #define CAN_TI1R_RTR_Msk (0x1UL << CAN_TI1R_RTR_Pos) /*!< 0x00000002 */
  6489. #define CAN_TI1R_RTR CAN_TI1R_RTR_Msk /*!< Remote Transmission Request */
  6490. #define CAN_TI1R_IDE_Pos (2U)
  6491. #define CAN_TI1R_IDE_Msk (0x1UL << CAN_TI1R_IDE_Pos) /*!< 0x00000004 */
  6492. #define CAN_TI1R_IDE CAN_TI1R_IDE_Msk /*!< Identifier Extension */
  6493. #define CAN_TI1R_EXID_Pos (3U)
  6494. #define CAN_TI1R_EXID_Msk (0x3FFFFUL << CAN_TI1R_EXID_Pos) /*!< 0x001FFFF8 */
  6495. #define CAN_TI1R_EXID CAN_TI1R_EXID_Msk /*!< Extended Identifier */
  6496. #define CAN_TI1R_STID_Pos (21U)
  6497. #define CAN_TI1R_STID_Msk (0x7FFUL << CAN_TI1R_STID_Pos) /*!< 0xFFE00000 */
  6498. #define CAN_TI1R_STID CAN_TI1R_STID_Msk /*!< Standard Identifier or Extended Identifier */
  6499. /******************* Bit definition for CAN_TDT1R register ******************/
  6500. #define CAN_TDT1R_DLC_Pos (0U)
  6501. #define CAN_TDT1R_DLC_Msk (0xFUL << CAN_TDT1R_DLC_Pos) /*!< 0x0000000F */
  6502. #define CAN_TDT1R_DLC CAN_TDT1R_DLC_Msk /*!< Data Length Code */
  6503. #define CAN_TDT1R_TGT_Pos (8U)
  6504. #define CAN_TDT1R_TGT_Msk (0x1UL << CAN_TDT1R_TGT_Pos) /*!< 0x00000100 */
  6505. #define CAN_TDT1R_TGT CAN_TDT1R_TGT_Msk /*!< Transmit Global Time */
  6506. #define CAN_TDT1R_TIME_Pos (16U)
  6507. #define CAN_TDT1R_TIME_Msk (0xFFFFUL << CAN_TDT1R_TIME_Pos) /*!< 0xFFFF0000 */
  6508. #define CAN_TDT1R_TIME CAN_TDT1R_TIME_Msk /*!< Message Time Stamp */
  6509. /******************* Bit definition for CAN_TDL1R register ******************/
  6510. #define CAN_TDL1R_DATA0_Pos (0U)
  6511. #define CAN_TDL1R_DATA0_Msk (0xFFUL << CAN_TDL1R_DATA0_Pos) /*!< 0x000000FF */
  6512. #define CAN_TDL1R_DATA0 CAN_TDL1R_DATA0_Msk /*!< Data byte 0 */
  6513. #define CAN_TDL1R_DATA1_Pos (8U)
  6514. #define CAN_TDL1R_DATA1_Msk (0xFFUL << CAN_TDL1R_DATA1_Pos) /*!< 0x0000FF00 */
  6515. #define CAN_TDL1R_DATA1 CAN_TDL1R_DATA1_Msk /*!< Data byte 1 */
  6516. #define CAN_TDL1R_DATA2_Pos (16U)
  6517. #define CAN_TDL1R_DATA2_Msk (0xFFUL << CAN_TDL1R_DATA2_Pos) /*!< 0x00FF0000 */
  6518. #define CAN_TDL1R_DATA2 CAN_TDL1R_DATA2_Msk /*!< Data byte 2 */
  6519. #define CAN_TDL1R_DATA3_Pos (24U)
  6520. #define CAN_TDL1R_DATA3_Msk (0xFFUL << CAN_TDL1R_DATA3_Pos) /*!< 0xFF000000 */
  6521. #define CAN_TDL1R_DATA3 CAN_TDL1R_DATA3_Msk /*!< Data byte 3 */
  6522. /******************* Bit definition for CAN_TDH1R register ******************/
  6523. #define CAN_TDH1R_DATA4_Pos (0U)
  6524. #define CAN_TDH1R_DATA4_Msk (0xFFUL << CAN_TDH1R_DATA4_Pos) /*!< 0x000000FF */
  6525. #define CAN_TDH1R_DATA4 CAN_TDH1R_DATA4_Msk /*!< Data byte 4 */
  6526. #define CAN_TDH1R_DATA5_Pos (8U)
  6527. #define CAN_TDH1R_DATA5_Msk (0xFFUL << CAN_TDH1R_DATA5_Pos) /*!< 0x0000FF00 */
  6528. #define CAN_TDH1R_DATA5 CAN_TDH1R_DATA5_Msk /*!< Data byte 5 */
  6529. #define CAN_TDH1R_DATA6_Pos (16U)
  6530. #define CAN_TDH1R_DATA6_Msk (0xFFUL << CAN_TDH1R_DATA6_Pos) /*!< 0x00FF0000 */
  6531. #define CAN_TDH1R_DATA6 CAN_TDH1R_DATA6_Msk /*!< Data byte 6 */
  6532. #define CAN_TDH1R_DATA7_Pos (24U)
  6533. #define CAN_TDH1R_DATA7_Msk (0xFFUL << CAN_TDH1R_DATA7_Pos) /*!< 0xFF000000 */
  6534. #define CAN_TDH1R_DATA7 CAN_TDH1R_DATA7_Msk /*!< Data byte 7 */
  6535. /******************* Bit definition for CAN_TI2R register *******************/
  6536. #define CAN_TI2R_TXRQ_Pos (0U)
  6537. #define CAN_TI2R_TXRQ_Msk (0x1UL << CAN_TI2R_TXRQ_Pos) /*!< 0x00000001 */
  6538. #define CAN_TI2R_TXRQ CAN_TI2R_TXRQ_Msk /*!< Transmit Mailbox Request */
  6539. #define CAN_TI2R_RTR_Pos (1U)
  6540. #define CAN_TI2R_RTR_Msk (0x1UL << CAN_TI2R_RTR_Pos) /*!< 0x00000002 */
  6541. #define CAN_TI2R_RTR CAN_TI2R_RTR_Msk /*!< Remote Transmission Request */
  6542. #define CAN_TI2R_IDE_Pos (2U)
  6543. #define CAN_TI2R_IDE_Msk (0x1UL << CAN_TI2R_IDE_Pos) /*!< 0x00000004 */
  6544. #define CAN_TI2R_IDE CAN_TI2R_IDE_Msk /*!< Identifier Extension */
  6545. #define CAN_TI2R_EXID_Pos (3U)
  6546. #define CAN_TI2R_EXID_Msk (0x3FFFFUL << CAN_TI2R_EXID_Pos) /*!< 0x001FFFF8 */
  6547. #define CAN_TI2R_EXID CAN_TI2R_EXID_Msk /*!< Extended identifier */
  6548. #define CAN_TI2R_STID_Pos (21U)
  6549. #define CAN_TI2R_STID_Msk (0x7FFUL << CAN_TI2R_STID_Pos) /*!< 0xFFE00000 */
  6550. #define CAN_TI2R_STID CAN_TI2R_STID_Msk /*!< Standard Identifier or Extended Identifier */
  6551. /******************* Bit definition for CAN_TDT2R register ******************/
  6552. #define CAN_TDT2R_DLC_Pos (0U)
  6553. #define CAN_TDT2R_DLC_Msk (0xFUL << CAN_TDT2R_DLC_Pos) /*!< 0x0000000F */
  6554. #define CAN_TDT2R_DLC CAN_TDT2R_DLC_Msk /*!< Data Length Code */
  6555. #define CAN_TDT2R_TGT_Pos (8U)
  6556. #define CAN_TDT2R_TGT_Msk (0x1UL << CAN_TDT2R_TGT_Pos) /*!< 0x00000100 */
  6557. #define CAN_TDT2R_TGT CAN_TDT2R_TGT_Msk /*!< Transmit Global Time */
  6558. #define CAN_TDT2R_TIME_Pos (16U)
  6559. #define CAN_TDT2R_TIME_Msk (0xFFFFUL << CAN_TDT2R_TIME_Pos) /*!< 0xFFFF0000 */
  6560. #define CAN_TDT2R_TIME CAN_TDT2R_TIME_Msk /*!< Message Time Stamp */
  6561. /******************* Bit definition for CAN_TDL2R register ******************/
  6562. #define CAN_TDL2R_DATA0_Pos (0U)
  6563. #define CAN_TDL2R_DATA0_Msk (0xFFUL << CAN_TDL2R_DATA0_Pos) /*!< 0x000000FF */
  6564. #define CAN_TDL2R_DATA0 CAN_TDL2R_DATA0_Msk /*!< Data byte 0 */
  6565. #define CAN_TDL2R_DATA1_Pos (8U)
  6566. #define CAN_TDL2R_DATA1_Msk (0xFFUL << CAN_TDL2R_DATA1_Pos) /*!< 0x0000FF00 */
  6567. #define CAN_TDL2R_DATA1 CAN_TDL2R_DATA1_Msk /*!< Data byte 1 */
  6568. #define CAN_TDL2R_DATA2_Pos (16U)
  6569. #define CAN_TDL2R_DATA2_Msk (0xFFUL << CAN_TDL2R_DATA2_Pos) /*!< 0x00FF0000 */
  6570. #define CAN_TDL2R_DATA2 CAN_TDL2R_DATA2_Msk /*!< Data byte 2 */
  6571. #define CAN_TDL2R_DATA3_Pos (24U)
  6572. #define CAN_TDL2R_DATA3_Msk (0xFFUL << CAN_TDL2R_DATA3_Pos) /*!< 0xFF000000 */
  6573. #define CAN_TDL2R_DATA3 CAN_TDL2R_DATA3_Msk /*!< Data byte 3 */
  6574. /******************* Bit definition for CAN_TDH2R register ******************/
  6575. #define CAN_TDH2R_DATA4_Pos (0U)
  6576. #define CAN_TDH2R_DATA4_Msk (0xFFUL << CAN_TDH2R_DATA4_Pos) /*!< 0x000000FF */
  6577. #define CAN_TDH2R_DATA4 CAN_TDH2R_DATA4_Msk /*!< Data byte 4 */
  6578. #define CAN_TDH2R_DATA5_Pos (8U)
  6579. #define CAN_TDH2R_DATA5_Msk (0xFFUL << CAN_TDH2R_DATA5_Pos) /*!< 0x0000FF00 */
  6580. #define CAN_TDH2R_DATA5 CAN_TDH2R_DATA5_Msk /*!< Data byte 5 */
  6581. #define CAN_TDH2R_DATA6_Pos (16U)
  6582. #define CAN_TDH2R_DATA6_Msk (0xFFUL << CAN_TDH2R_DATA6_Pos) /*!< 0x00FF0000 */
  6583. #define CAN_TDH2R_DATA6 CAN_TDH2R_DATA6_Msk /*!< Data byte 6 */
  6584. #define CAN_TDH2R_DATA7_Pos (24U)
  6585. #define CAN_TDH2R_DATA7_Msk (0xFFUL << CAN_TDH2R_DATA7_Pos) /*!< 0xFF000000 */
  6586. #define CAN_TDH2R_DATA7 CAN_TDH2R_DATA7_Msk /*!< Data byte 7 */
  6587. /******************* Bit definition for CAN_RI0R register *******************/
  6588. #define CAN_RI0R_RTR_Pos (1U)
  6589. #define CAN_RI0R_RTR_Msk (0x1UL << CAN_RI0R_RTR_Pos) /*!< 0x00000002 */
  6590. #define CAN_RI0R_RTR CAN_RI0R_RTR_Msk /*!< Remote Transmission Request */
  6591. #define CAN_RI0R_IDE_Pos (2U)
  6592. #define CAN_RI0R_IDE_Msk (0x1UL << CAN_RI0R_IDE_Pos) /*!< 0x00000004 */
  6593. #define CAN_RI0R_IDE CAN_RI0R_IDE_Msk /*!< Identifier Extension */
  6594. #define CAN_RI0R_EXID_Pos (3U)
  6595. #define CAN_RI0R_EXID_Msk (0x3FFFFUL << CAN_RI0R_EXID_Pos) /*!< 0x001FFFF8 */
  6596. #define CAN_RI0R_EXID CAN_RI0R_EXID_Msk /*!< Extended Identifier */
  6597. #define CAN_RI0R_STID_Pos (21U)
  6598. #define CAN_RI0R_STID_Msk (0x7FFUL << CAN_RI0R_STID_Pos) /*!< 0xFFE00000 */
  6599. #define CAN_RI0R_STID CAN_RI0R_STID_Msk /*!< Standard Identifier or Extended Identifier */
  6600. /******************* Bit definition for CAN_RDT0R register ******************/
  6601. #define CAN_RDT0R_DLC_Pos (0U)
  6602. #define CAN_RDT0R_DLC_Msk (0xFUL << CAN_RDT0R_DLC_Pos) /*!< 0x0000000F */
  6603. #define CAN_RDT0R_DLC CAN_RDT0R_DLC_Msk /*!< Data Length Code */
  6604. #define CAN_RDT0R_FMI_Pos (8U)
  6605. #define CAN_RDT0R_FMI_Msk (0xFFUL << CAN_RDT0R_FMI_Pos) /*!< 0x0000FF00 */
  6606. #define CAN_RDT0R_FMI CAN_RDT0R_FMI_Msk /*!< Filter Match Index */
  6607. #define CAN_RDT0R_TIME_Pos (16U)
  6608. #define CAN_RDT0R_TIME_Msk (0xFFFFUL << CAN_RDT0R_TIME_Pos) /*!< 0xFFFF0000 */
  6609. #define CAN_RDT0R_TIME CAN_RDT0R_TIME_Msk /*!< Message Time Stamp */
  6610. /******************* Bit definition for CAN_RDL0R register ******************/
  6611. #define CAN_RDL0R_DATA0_Pos (0U)
  6612. #define CAN_RDL0R_DATA0_Msk (0xFFUL << CAN_RDL0R_DATA0_Pos) /*!< 0x000000FF */
  6613. #define CAN_RDL0R_DATA0 CAN_RDL0R_DATA0_Msk /*!< Data byte 0 */
  6614. #define CAN_RDL0R_DATA1_Pos (8U)
  6615. #define CAN_RDL0R_DATA1_Msk (0xFFUL << CAN_RDL0R_DATA1_Pos) /*!< 0x0000FF00 */
  6616. #define CAN_RDL0R_DATA1 CAN_RDL0R_DATA1_Msk /*!< Data byte 1 */
  6617. #define CAN_RDL0R_DATA2_Pos (16U)
  6618. #define CAN_RDL0R_DATA2_Msk (0xFFUL << CAN_RDL0R_DATA2_Pos) /*!< 0x00FF0000 */
  6619. #define CAN_RDL0R_DATA2 CAN_RDL0R_DATA2_Msk /*!< Data byte 2 */
  6620. #define CAN_RDL0R_DATA3_Pos (24U)
  6621. #define CAN_RDL0R_DATA3_Msk (0xFFUL << CAN_RDL0R_DATA3_Pos) /*!< 0xFF000000 */
  6622. #define CAN_RDL0R_DATA3 CAN_RDL0R_DATA3_Msk /*!< Data byte 3 */
  6623. /******************* Bit definition for CAN_RDH0R register ******************/
  6624. #define CAN_RDH0R_DATA4_Pos (0U)
  6625. #define CAN_RDH0R_DATA4_Msk (0xFFUL << CAN_RDH0R_DATA4_Pos) /*!< 0x000000FF */
  6626. #define CAN_RDH0R_DATA4 CAN_RDH0R_DATA4_Msk /*!< Data byte 4 */
  6627. #define CAN_RDH0R_DATA5_Pos (8U)
  6628. #define CAN_RDH0R_DATA5_Msk (0xFFUL << CAN_RDH0R_DATA5_Pos) /*!< 0x0000FF00 */
  6629. #define CAN_RDH0R_DATA5 CAN_RDH0R_DATA5_Msk /*!< Data byte 5 */
  6630. #define CAN_RDH0R_DATA6_Pos (16U)
  6631. #define CAN_RDH0R_DATA6_Msk (0xFFUL << CAN_RDH0R_DATA6_Pos) /*!< 0x00FF0000 */
  6632. #define CAN_RDH0R_DATA6 CAN_RDH0R_DATA6_Msk /*!< Data byte 6 */
  6633. #define CAN_RDH0R_DATA7_Pos (24U)
  6634. #define CAN_RDH0R_DATA7_Msk (0xFFUL << CAN_RDH0R_DATA7_Pos) /*!< 0xFF000000 */
  6635. #define CAN_RDH0R_DATA7 CAN_RDH0R_DATA7_Msk /*!< Data byte 7 */
  6636. /******************* Bit definition for CAN_RI1R register *******************/
  6637. #define CAN_RI1R_RTR_Pos (1U)
  6638. #define CAN_RI1R_RTR_Msk (0x1UL << CAN_RI1R_RTR_Pos) /*!< 0x00000002 */
  6639. #define CAN_RI1R_RTR CAN_RI1R_RTR_Msk /*!< Remote Transmission Request */
  6640. #define CAN_RI1R_IDE_Pos (2U)
  6641. #define CAN_RI1R_IDE_Msk (0x1UL << CAN_RI1R_IDE_Pos) /*!< 0x00000004 */
  6642. #define CAN_RI1R_IDE CAN_RI1R_IDE_Msk /*!< Identifier Extension */
  6643. #define CAN_RI1R_EXID_Pos (3U)
  6644. #define CAN_RI1R_EXID_Msk (0x3FFFFUL << CAN_RI1R_EXID_Pos) /*!< 0x001FFFF8 */
  6645. #define CAN_RI1R_EXID CAN_RI1R_EXID_Msk /*!< Extended identifier */
  6646. #define CAN_RI1R_STID_Pos (21U)
  6647. #define CAN_RI1R_STID_Msk (0x7FFUL << CAN_RI1R_STID_Pos) /*!< 0xFFE00000 */
  6648. #define CAN_RI1R_STID CAN_RI1R_STID_Msk /*!< Standard Identifier or Extended Identifier */
  6649. /******************* Bit definition for CAN_RDT1R register ******************/
  6650. #define CAN_RDT1R_DLC_Pos (0U)
  6651. #define CAN_RDT1R_DLC_Msk (0xFUL << CAN_RDT1R_DLC_Pos) /*!< 0x0000000F */
  6652. #define CAN_RDT1R_DLC CAN_RDT1R_DLC_Msk /*!< Data Length Code */
  6653. #define CAN_RDT1R_FMI_Pos (8U)
  6654. #define CAN_RDT1R_FMI_Msk (0xFFUL << CAN_RDT1R_FMI_Pos) /*!< 0x0000FF00 */
  6655. #define CAN_RDT1R_FMI CAN_RDT1R_FMI_Msk /*!< Filter Match Index */
  6656. #define CAN_RDT1R_TIME_Pos (16U)
  6657. #define CAN_RDT1R_TIME_Msk (0xFFFFUL << CAN_RDT1R_TIME_Pos) /*!< 0xFFFF0000 */
  6658. #define CAN_RDT1R_TIME CAN_RDT1R_TIME_Msk /*!< Message Time Stamp */
  6659. /******************* Bit definition for CAN_RDL1R register ******************/
  6660. #define CAN_RDL1R_DATA0_Pos (0U)
  6661. #define CAN_RDL1R_DATA0_Msk (0xFFUL << CAN_RDL1R_DATA0_Pos) /*!< 0x000000FF */
  6662. #define CAN_RDL1R_DATA0 CAN_RDL1R_DATA0_Msk /*!< Data byte 0 */
  6663. #define CAN_RDL1R_DATA1_Pos (8U)
  6664. #define CAN_RDL1R_DATA1_Msk (0xFFUL << CAN_RDL1R_DATA1_Pos) /*!< 0x0000FF00 */
  6665. #define CAN_RDL1R_DATA1 CAN_RDL1R_DATA1_Msk /*!< Data byte 1 */
  6666. #define CAN_RDL1R_DATA2_Pos (16U)
  6667. #define CAN_RDL1R_DATA2_Msk (0xFFUL << CAN_RDL1R_DATA2_Pos) /*!< 0x00FF0000 */
  6668. #define CAN_RDL1R_DATA2 CAN_RDL1R_DATA2_Msk /*!< Data byte 2 */
  6669. #define CAN_RDL1R_DATA3_Pos (24U)
  6670. #define CAN_RDL1R_DATA3_Msk (0xFFUL << CAN_RDL1R_DATA3_Pos) /*!< 0xFF000000 */
  6671. #define CAN_RDL1R_DATA3 CAN_RDL1R_DATA3_Msk /*!< Data byte 3 */
  6672. /******************* Bit definition for CAN_RDH1R register ******************/
  6673. #define CAN_RDH1R_DATA4_Pos (0U)
  6674. #define CAN_RDH1R_DATA4_Msk (0xFFUL << CAN_RDH1R_DATA4_Pos) /*!< 0x000000FF */
  6675. #define CAN_RDH1R_DATA4 CAN_RDH1R_DATA4_Msk /*!< Data byte 4 */
  6676. #define CAN_RDH1R_DATA5_Pos (8U)
  6677. #define CAN_RDH1R_DATA5_Msk (0xFFUL << CAN_RDH1R_DATA5_Pos) /*!< 0x0000FF00 */
  6678. #define CAN_RDH1R_DATA5 CAN_RDH1R_DATA5_Msk /*!< Data byte 5 */
  6679. #define CAN_RDH1R_DATA6_Pos (16U)
  6680. #define CAN_RDH1R_DATA6_Msk (0xFFUL << CAN_RDH1R_DATA6_Pos) /*!< 0x00FF0000 */
  6681. #define CAN_RDH1R_DATA6 CAN_RDH1R_DATA6_Msk /*!< Data byte 6 */
  6682. #define CAN_RDH1R_DATA7_Pos (24U)
  6683. #define CAN_RDH1R_DATA7_Msk (0xFFUL << CAN_RDH1R_DATA7_Pos) /*!< 0xFF000000 */
  6684. #define CAN_RDH1R_DATA7 CAN_RDH1R_DATA7_Msk /*!< Data byte 7 */
  6685. /*!< CAN filter registers */
  6686. /******************* Bit definition for CAN_FMR register ********************/
  6687. #define CAN_FMR_FINIT_Pos (0U)
  6688. #define CAN_FMR_FINIT_Msk (0x1UL << CAN_FMR_FINIT_Pos) /*!< 0x00000001 */
  6689. #define CAN_FMR_FINIT CAN_FMR_FINIT_Msk /*!< Filter Init Mode */
  6690. #define CAN_FMR_CAN2SB_Pos (8U)
  6691. #define CAN_FMR_CAN2SB_Msk (0x3FUL << CAN_FMR_CAN2SB_Pos) /*!< 0x00003F00 */
  6692. #define CAN_FMR_CAN2SB CAN_FMR_CAN2SB_Msk /*!< CAN2 start bank */
  6693. /******************* Bit definition for CAN_FM1R register *******************/
  6694. #define CAN_FM1R_FBM_Pos (0U)
  6695. #define CAN_FM1R_FBM_Msk (0x3FFFUL << CAN_FM1R_FBM_Pos) /*!< 0x00003FFF */
  6696. #define CAN_FM1R_FBM CAN_FM1R_FBM_Msk /*!< Filter Mode */
  6697. #define CAN_FM1R_FBM0_Pos (0U)
  6698. #define CAN_FM1R_FBM0_Msk (0x1UL << CAN_FM1R_FBM0_Pos) /*!< 0x00000001 */
  6699. #define CAN_FM1R_FBM0 CAN_FM1R_FBM0_Msk /*!< Filter Init Mode for filter 0 */
  6700. #define CAN_FM1R_FBM1_Pos (1U)
  6701. #define CAN_FM1R_FBM1_Msk (0x1UL << CAN_FM1R_FBM1_Pos) /*!< 0x00000002 */
  6702. #define CAN_FM1R_FBM1 CAN_FM1R_FBM1_Msk /*!< Filter Init Mode for filter 1 */
  6703. #define CAN_FM1R_FBM2_Pos (2U)
  6704. #define CAN_FM1R_FBM2_Msk (0x1UL << CAN_FM1R_FBM2_Pos) /*!< 0x00000004 */
  6705. #define CAN_FM1R_FBM2 CAN_FM1R_FBM2_Msk /*!< Filter Init Mode for filter 2 */
  6706. #define CAN_FM1R_FBM3_Pos (3U)
  6707. #define CAN_FM1R_FBM3_Msk (0x1UL << CAN_FM1R_FBM3_Pos) /*!< 0x00000008 */
  6708. #define CAN_FM1R_FBM3 CAN_FM1R_FBM3_Msk /*!< Filter Init Mode for filter 3 */
  6709. #define CAN_FM1R_FBM4_Pos (4U)
  6710. #define CAN_FM1R_FBM4_Msk (0x1UL << CAN_FM1R_FBM4_Pos) /*!< 0x00000010 */
  6711. #define CAN_FM1R_FBM4 CAN_FM1R_FBM4_Msk /*!< Filter Init Mode for filter 4 */
  6712. #define CAN_FM1R_FBM5_Pos (5U)
  6713. #define CAN_FM1R_FBM5_Msk (0x1UL << CAN_FM1R_FBM5_Pos) /*!< 0x00000020 */
  6714. #define CAN_FM1R_FBM5 CAN_FM1R_FBM5_Msk /*!< Filter Init Mode for filter 5 */
  6715. #define CAN_FM1R_FBM6_Pos (6U)
  6716. #define CAN_FM1R_FBM6_Msk (0x1UL << CAN_FM1R_FBM6_Pos) /*!< 0x00000040 */
  6717. #define CAN_FM1R_FBM6 CAN_FM1R_FBM6_Msk /*!< Filter Init Mode for filter 6 */
  6718. #define CAN_FM1R_FBM7_Pos (7U)
  6719. #define CAN_FM1R_FBM7_Msk (0x1UL << CAN_FM1R_FBM7_Pos) /*!< 0x00000080 */
  6720. #define CAN_FM1R_FBM7 CAN_FM1R_FBM7_Msk /*!< Filter Init Mode for filter 7 */
  6721. #define CAN_FM1R_FBM8_Pos (8U)
  6722. #define CAN_FM1R_FBM8_Msk (0x1UL << CAN_FM1R_FBM8_Pos) /*!< 0x00000100 */
  6723. #define CAN_FM1R_FBM8 CAN_FM1R_FBM8_Msk /*!< Filter Init Mode for filter 8 */
  6724. #define CAN_FM1R_FBM9_Pos (9U)
  6725. #define CAN_FM1R_FBM9_Msk (0x1UL << CAN_FM1R_FBM9_Pos) /*!< 0x00000200 */
  6726. #define CAN_FM1R_FBM9 CAN_FM1R_FBM9_Msk /*!< Filter Init Mode for filter 9 */
  6727. #define CAN_FM1R_FBM10_Pos (10U)
  6728. #define CAN_FM1R_FBM10_Msk (0x1UL << CAN_FM1R_FBM10_Pos) /*!< 0x00000400 */
  6729. #define CAN_FM1R_FBM10 CAN_FM1R_FBM10_Msk /*!< Filter Init Mode for filter 10 */
  6730. #define CAN_FM1R_FBM11_Pos (11U)
  6731. #define CAN_FM1R_FBM11_Msk (0x1UL << CAN_FM1R_FBM11_Pos) /*!< 0x00000800 */
  6732. #define CAN_FM1R_FBM11 CAN_FM1R_FBM11_Msk /*!< Filter Init Mode for filter 11 */
  6733. #define CAN_FM1R_FBM12_Pos (12U)
  6734. #define CAN_FM1R_FBM12_Msk (0x1UL << CAN_FM1R_FBM12_Pos) /*!< 0x00001000 */
  6735. #define CAN_FM1R_FBM12 CAN_FM1R_FBM12_Msk /*!< Filter Init Mode for filter 12 */
  6736. #define CAN_FM1R_FBM13_Pos (13U)
  6737. #define CAN_FM1R_FBM13_Msk (0x1UL << CAN_FM1R_FBM13_Pos) /*!< 0x00002000 */
  6738. #define CAN_FM1R_FBM13 CAN_FM1R_FBM13_Msk /*!< Filter Init Mode for filter 13 */
  6739. /******************* Bit definition for CAN_FS1R register *******************/
  6740. #define CAN_FS1R_FSC_Pos (0U)
  6741. #define CAN_FS1R_FSC_Msk (0x3FFFUL << CAN_FS1R_FSC_Pos) /*!< 0x00003FFF */
  6742. #define CAN_FS1R_FSC CAN_FS1R_FSC_Msk /*!< Filter Scale Configuration */
  6743. #define CAN_FS1R_FSC0_Pos (0U)
  6744. #define CAN_FS1R_FSC0_Msk (0x1UL << CAN_FS1R_FSC0_Pos) /*!< 0x00000001 */
  6745. #define CAN_FS1R_FSC0 CAN_FS1R_FSC0_Msk /*!< Filter Scale Configuration for filter 0 */
  6746. #define CAN_FS1R_FSC1_Pos (1U)
  6747. #define CAN_FS1R_FSC1_Msk (0x1UL << CAN_FS1R_FSC1_Pos) /*!< 0x00000002 */
  6748. #define CAN_FS1R_FSC1 CAN_FS1R_FSC1_Msk /*!< Filter Scale Configuration for filter 1 */
  6749. #define CAN_FS1R_FSC2_Pos (2U)
  6750. #define CAN_FS1R_FSC2_Msk (0x1UL << CAN_FS1R_FSC2_Pos) /*!< 0x00000004 */
  6751. #define CAN_FS1R_FSC2 CAN_FS1R_FSC2_Msk /*!< Filter Scale Configuration for filter 2 */
  6752. #define CAN_FS1R_FSC3_Pos (3U)
  6753. #define CAN_FS1R_FSC3_Msk (0x1UL << CAN_FS1R_FSC3_Pos) /*!< 0x00000008 */
  6754. #define CAN_FS1R_FSC3 CAN_FS1R_FSC3_Msk /*!< Filter Scale Configuration for filter 3 */
  6755. #define CAN_FS1R_FSC4_Pos (4U)
  6756. #define CAN_FS1R_FSC4_Msk (0x1UL << CAN_FS1R_FSC4_Pos) /*!< 0x00000010 */
  6757. #define CAN_FS1R_FSC4 CAN_FS1R_FSC4_Msk /*!< Filter Scale Configuration for filter 4 */
  6758. #define CAN_FS1R_FSC5_Pos (5U)
  6759. #define CAN_FS1R_FSC5_Msk (0x1UL << CAN_FS1R_FSC5_Pos) /*!< 0x00000020 */
  6760. #define CAN_FS1R_FSC5 CAN_FS1R_FSC5_Msk /*!< Filter Scale Configuration for filter 5 */
  6761. #define CAN_FS1R_FSC6_Pos (6U)
  6762. #define CAN_FS1R_FSC6_Msk (0x1UL << CAN_FS1R_FSC6_Pos) /*!< 0x00000040 */
  6763. #define CAN_FS1R_FSC6 CAN_FS1R_FSC6_Msk /*!< Filter Scale Configuration for filter 6 */
  6764. #define CAN_FS1R_FSC7_Pos (7U)
  6765. #define CAN_FS1R_FSC7_Msk (0x1UL << CAN_FS1R_FSC7_Pos) /*!< 0x00000080 */
  6766. #define CAN_FS1R_FSC7 CAN_FS1R_FSC7_Msk /*!< Filter Scale Configuration for filter 7 */
  6767. #define CAN_FS1R_FSC8_Pos (8U)
  6768. #define CAN_FS1R_FSC8_Msk (0x1UL << CAN_FS1R_FSC8_Pos) /*!< 0x00000100 */
  6769. #define CAN_FS1R_FSC8 CAN_FS1R_FSC8_Msk /*!< Filter Scale Configuration for filter 8 */
  6770. #define CAN_FS1R_FSC9_Pos (9U)
  6771. #define CAN_FS1R_FSC9_Msk (0x1UL << CAN_FS1R_FSC9_Pos) /*!< 0x00000200 */
  6772. #define CAN_FS1R_FSC9 CAN_FS1R_FSC9_Msk /*!< Filter Scale Configuration for filter 9 */
  6773. #define CAN_FS1R_FSC10_Pos (10U)
  6774. #define CAN_FS1R_FSC10_Msk (0x1UL << CAN_FS1R_FSC10_Pos) /*!< 0x00000400 */
  6775. #define CAN_FS1R_FSC10 CAN_FS1R_FSC10_Msk /*!< Filter Scale Configuration for filter 10 */
  6776. #define CAN_FS1R_FSC11_Pos (11U)
  6777. #define CAN_FS1R_FSC11_Msk (0x1UL << CAN_FS1R_FSC11_Pos) /*!< 0x00000800 */
  6778. #define CAN_FS1R_FSC11 CAN_FS1R_FSC11_Msk /*!< Filter Scale Configuration for filter 11 */
  6779. #define CAN_FS1R_FSC12_Pos (12U)
  6780. #define CAN_FS1R_FSC12_Msk (0x1UL << CAN_FS1R_FSC12_Pos) /*!< 0x00001000 */
  6781. #define CAN_FS1R_FSC12 CAN_FS1R_FSC12_Msk /*!< Filter Scale Configuration for filter 12 */
  6782. #define CAN_FS1R_FSC13_Pos (13U)
  6783. #define CAN_FS1R_FSC13_Msk (0x1UL << CAN_FS1R_FSC13_Pos) /*!< 0x00002000 */
  6784. #define CAN_FS1R_FSC13 CAN_FS1R_FSC13_Msk /*!< Filter Scale Configuration for filter 13 */
  6785. /****************** Bit definition for CAN_FFA1R register *******************/
  6786. #define CAN_FFA1R_FFA_Pos (0U)
  6787. #define CAN_FFA1R_FFA_Msk (0x3FFFUL << CAN_FFA1R_FFA_Pos) /*!< 0x00003FFF */
  6788. #define CAN_FFA1R_FFA CAN_FFA1R_FFA_Msk /*!< Filter FIFO Assignment */
  6789. #define CAN_FFA1R_FFA0_Pos (0U)
  6790. #define CAN_FFA1R_FFA0_Msk (0x1UL << CAN_FFA1R_FFA0_Pos) /*!< 0x00000001 */
  6791. #define CAN_FFA1R_FFA0 CAN_FFA1R_FFA0_Msk /*!< Filter FIFO Assignment for filter 0 */
  6792. #define CAN_FFA1R_FFA1_Pos (1U)
  6793. #define CAN_FFA1R_FFA1_Msk (0x1UL << CAN_FFA1R_FFA1_Pos) /*!< 0x00000002 */
  6794. #define CAN_FFA1R_FFA1 CAN_FFA1R_FFA1_Msk /*!< Filter FIFO Assignment for filter 1 */
  6795. #define CAN_FFA1R_FFA2_Pos (2U)
  6796. #define CAN_FFA1R_FFA2_Msk (0x1UL << CAN_FFA1R_FFA2_Pos) /*!< 0x00000004 */
  6797. #define CAN_FFA1R_FFA2 CAN_FFA1R_FFA2_Msk /*!< Filter FIFO Assignment for filter 2 */
  6798. #define CAN_FFA1R_FFA3_Pos (3U)
  6799. #define CAN_FFA1R_FFA3_Msk (0x1UL << CAN_FFA1R_FFA3_Pos) /*!< 0x00000008 */
  6800. #define CAN_FFA1R_FFA3 CAN_FFA1R_FFA3_Msk /*!< Filter FIFO Assignment for filter 3 */
  6801. #define CAN_FFA1R_FFA4_Pos (4U)
  6802. #define CAN_FFA1R_FFA4_Msk (0x1UL << CAN_FFA1R_FFA4_Pos) /*!< 0x00000010 */
  6803. #define CAN_FFA1R_FFA4 CAN_FFA1R_FFA4_Msk /*!< Filter FIFO Assignment for filter 4 */
  6804. #define CAN_FFA1R_FFA5_Pos (5U)
  6805. #define CAN_FFA1R_FFA5_Msk (0x1UL << CAN_FFA1R_FFA5_Pos) /*!< 0x00000020 */
  6806. #define CAN_FFA1R_FFA5 CAN_FFA1R_FFA5_Msk /*!< Filter FIFO Assignment for filter 5 */
  6807. #define CAN_FFA1R_FFA6_Pos (6U)
  6808. #define CAN_FFA1R_FFA6_Msk (0x1UL << CAN_FFA1R_FFA6_Pos) /*!< 0x00000040 */
  6809. #define CAN_FFA1R_FFA6 CAN_FFA1R_FFA6_Msk /*!< Filter FIFO Assignment for filter 6 */
  6810. #define CAN_FFA1R_FFA7_Pos (7U)
  6811. #define CAN_FFA1R_FFA7_Msk (0x1UL << CAN_FFA1R_FFA7_Pos) /*!< 0x00000080 */
  6812. #define CAN_FFA1R_FFA7 CAN_FFA1R_FFA7_Msk /*!< Filter FIFO Assignment for filter 7 */
  6813. #define CAN_FFA1R_FFA8_Pos (8U)
  6814. #define CAN_FFA1R_FFA8_Msk (0x1UL << CAN_FFA1R_FFA8_Pos) /*!< 0x00000100 */
  6815. #define CAN_FFA1R_FFA8 CAN_FFA1R_FFA8_Msk /*!< Filter FIFO Assignment for filter 8 */
  6816. #define CAN_FFA1R_FFA9_Pos (9U)
  6817. #define CAN_FFA1R_FFA9_Msk (0x1UL << CAN_FFA1R_FFA9_Pos) /*!< 0x00000200 */
  6818. #define CAN_FFA1R_FFA9 CAN_FFA1R_FFA9_Msk /*!< Filter FIFO Assignment for filter 9 */
  6819. #define CAN_FFA1R_FFA10_Pos (10U)
  6820. #define CAN_FFA1R_FFA10_Msk (0x1UL << CAN_FFA1R_FFA10_Pos) /*!< 0x00000400 */
  6821. #define CAN_FFA1R_FFA10 CAN_FFA1R_FFA10_Msk /*!< Filter FIFO Assignment for filter 10 */
  6822. #define CAN_FFA1R_FFA11_Pos (11U)
  6823. #define CAN_FFA1R_FFA11_Msk (0x1UL << CAN_FFA1R_FFA11_Pos) /*!< 0x00000800 */
  6824. #define CAN_FFA1R_FFA11 CAN_FFA1R_FFA11_Msk /*!< Filter FIFO Assignment for filter 11 */
  6825. #define CAN_FFA1R_FFA12_Pos (12U)
  6826. #define CAN_FFA1R_FFA12_Msk (0x1UL << CAN_FFA1R_FFA12_Pos) /*!< 0x00001000 */
  6827. #define CAN_FFA1R_FFA12 CAN_FFA1R_FFA12_Msk /*!< Filter FIFO Assignment for filter 12 */
  6828. #define CAN_FFA1R_FFA13_Pos (13U)
  6829. #define CAN_FFA1R_FFA13_Msk (0x1UL << CAN_FFA1R_FFA13_Pos) /*!< 0x00002000 */
  6830. #define CAN_FFA1R_FFA13 CAN_FFA1R_FFA13_Msk /*!< Filter FIFO Assignment for filter 13 */
  6831. /******************* Bit definition for CAN_FA1R register *******************/
  6832. #define CAN_FA1R_FACT_Pos (0U)
  6833. #define CAN_FA1R_FACT_Msk (0x3FFFUL << CAN_FA1R_FACT_Pos) /*!< 0x00003FFF */
  6834. #define CAN_FA1R_FACT CAN_FA1R_FACT_Msk /*!< Filter Active */
  6835. #define CAN_FA1R_FACT0_Pos (0U)
  6836. #define CAN_FA1R_FACT0_Msk (0x1UL << CAN_FA1R_FACT0_Pos) /*!< 0x00000001 */
  6837. #define CAN_FA1R_FACT0 CAN_FA1R_FACT0_Msk /*!< Filter 0 Active */
  6838. #define CAN_FA1R_FACT1_Pos (1U)
  6839. #define CAN_FA1R_FACT1_Msk (0x1UL << CAN_FA1R_FACT1_Pos) /*!< 0x00000002 */
  6840. #define CAN_FA1R_FACT1 CAN_FA1R_FACT1_Msk /*!< Filter 1 Active */
  6841. #define CAN_FA1R_FACT2_Pos (2U)
  6842. #define CAN_FA1R_FACT2_Msk (0x1UL << CAN_FA1R_FACT2_Pos) /*!< 0x00000004 */
  6843. #define CAN_FA1R_FACT2 CAN_FA1R_FACT2_Msk /*!< Filter 2 Active */
  6844. #define CAN_FA1R_FACT3_Pos (3U)
  6845. #define CAN_FA1R_FACT3_Msk (0x1UL << CAN_FA1R_FACT3_Pos) /*!< 0x00000008 */
  6846. #define CAN_FA1R_FACT3 CAN_FA1R_FACT3_Msk /*!< Filter 3 Active */
  6847. #define CAN_FA1R_FACT4_Pos (4U)
  6848. #define CAN_FA1R_FACT4_Msk (0x1UL << CAN_FA1R_FACT4_Pos) /*!< 0x00000010 */
  6849. #define CAN_FA1R_FACT4 CAN_FA1R_FACT4_Msk /*!< Filter 4 Active */
  6850. #define CAN_FA1R_FACT5_Pos (5U)
  6851. #define CAN_FA1R_FACT5_Msk (0x1UL << CAN_FA1R_FACT5_Pos) /*!< 0x00000020 */
  6852. #define CAN_FA1R_FACT5 CAN_FA1R_FACT5_Msk /*!< Filter 5 Active */
  6853. #define CAN_FA1R_FACT6_Pos (6U)
  6854. #define CAN_FA1R_FACT6_Msk (0x1UL << CAN_FA1R_FACT6_Pos) /*!< 0x00000040 */
  6855. #define CAN_FA1R_FACT6 CAN_FA1R_FACT6_Msk /*!< Filter 6 Active */
  6856. #define CAN_FA1R_FACT7_Pos (7U)
  6857. #define CAN_FA1R_FACT7_Msk (0x1UL << CAN_FA1R_FACT7_Pos) /*!< 0x00000080 */
  6858. #define CAN_FA1R_FACT7 CAN_FA1R_FACT7_Msk /*!< Filter 7 Active */
  6859. #define CAN_FA1R_FACT8_Pos (8U)
  6860. #define CAN_FA1R_FACT8_Msk (0x1UL << CAN_FA1R_FACT8_Pos) /*!< 0x00000100 */
  6861. #define CAN_FA1R_FACT8 CAN_FA1R_FACT8_Msk /*!< Filter 8 Active */
  6862. #define CAN_FA1R_FACT9_Pos (9U)
  6863. #define CAN_FA1R_FACT9_Msk (0x1UL << CAN_FA1R_FACT9_Pos) /*!< 0x00000200 */
  6864. #define CAN_FA1R_FACT9 CAN_FA1R_FACT9_Msk /*!< Filter 9 Active */
  6865. #define CAN_FA1R_FACT10_Pos (10U)
  6866. #define CAN_FA1R_FACT10_Msk (0x1UL << CAN_FA1R_FACT10_Pos) /*!< 0x00000400 */
  6867. #define CAN_FA1R_FACT10 CAN_FA1R_FACT10_Msk /*!< Filter 10 Active */
  6868. #define CAN_FA1R_FACT11_Pos (11U)
  6869. #define CAN_FA1R_FACT11_Msk (0x1UL << CAN_FA1R_FACT11_Pos) /*!< 0x00000800 */
  6870. #define CAN_FA1R_FACT11 CAN_FA1R_FACT11_Msk /*!< Filter 11 Active */
  6871. #define CAN_FA1R_FACT12_Pos (12U)
  6872. #define CAN_FA1R_FACT12_Msk (0x1UL << CAN_FA1R_FACT12_Pos) /*!< 0x00001000 */
  6873. #define CAN_FA1R_FACT12 CAN_FA1R_FACT12_Msk /*!< Filter 12 Active */
  6874. #define CAN_FA1R_FACT13_Pos (13U)
  6875. #define CAN_FA1R_FACT13_Msk (0x1UL << CAN_FA1R_FACT13_Pos) /*!< 0x00002000 */
  6876. #define CAN_FA1R_FACT13 CAN_FA1R_FACT13_Msk /*!< Filter 13 Active */
  6877. /******************* Bit definition for CAN_F0R1 register *******************/
  6878. #define CAN_F0R1_FB0_Pos (0U)
  6879. #define CAN_F0R1_FB0_Msk (0x1UL << CAN_F0R1_FB0_Pos) /*!< 0x00000001 */
  6880. #define CAN_F0R1_FB0 CAN_F0R1_FB0_Msk /*!< Filter bit 0 */
  6881. #define CAN_F0R1_FB1_Pos (1U)
  6882. #define CAN_F0R1_FB1_Msk (0x1UL << CAN_F0R1_FB1_Pos) /*!< 0x00000002 */
  6883. #define CAN_F0R1_FB1 CAN_F0R1_FB1_Msk /*!< Filter bit 1 */
  6884. #define CAN_F0R1_FB2_Pos (2U)
  6885. #define CAN_F0R1_FB2_Msk (0x1UL << CAN_F0R1_FB2_Pos) /*!< 0x00000004 */
  6886. #define CAN_F0R1_FB2 CAN_F0R1_FB2_Msk /*!< Filter bit 2 */
  6887. #define CAN_F0R1_FB3_Pos (3U)
  6888. #define CAN_F0R1_FB3_Msk (0x1UL << CAN_F0R1_FB3_Pos) /*!< 0x00000008 */
  6889. #define CAN_F0R1_FB3 CAN_F0R1_FB3_Msk /*!< Filter bit 3 */
  6890. #define CAN_F0R1_FB4_Pos (4U)
  6891. #define CAN_F0R1_FB4_Msk (0x1UL << CAN_F0R1_FB4_Pos) /*!< 0x00000010 */
  6892. #define CAN_F0R1_FB4 CAN_F0R1_FB4_Msk /*!< Filter bit 4 */
  6893. #define CAN_F0R1_FB5_Pos (5U)
  6894. #define CAN_F0R1_FB5_Msk (0x1UL << CAN_F0R1_FB5_Pos) /*!< 0x00000020 */
  6895. #define CAN_F0R1_FB5 CAN_F0R1_FB5_Msk /*!< Filter bit 5 */
  6896. #define CAN_F0R1_FB6_Pos (6U)
  6897. #define CAN_F0R1_FB6_Msk (0x1UL << CAN_F0R1_FB6_Pos) /*!< 0x00000040 */
  6898. #define CAN_F0R1_FB6 CAN_F0R1_FB6_Msk /*!< Filter bit 6 */
  6899. #define CAN_F0R1_FB7_Pos (7U)
  6900. #define CAN_F0R1_FB7_Msk (0x1UL << CAN_F0R1_FB7_Pos) /*!< 0x00000080 */
  6901. #define CAN_F0R1_FB7 CAN_F0R1_FB7_Msk /*!< Filter bit 7 */
  6902. #define CAN_F0R1_FB8_Pos (8U)
  6903. #define CAN_F0R1_FB8_Msk (0x1UL << CAN_F0R1_FB8_Pos) /*!< 0x00000100 */
  6904. #define CAN_F0R1_FB8 CAN_F0R1_FB8_Msk /*!< Filter bit 8 */
  6905. #define CAN_F0R1_FB9_Pos (9U)
  6906. #define CAN_F0R1_FB9_Msk (0x1UL << CAN_F0R1_FB9_Pos) /*!< 0x00000200 */
  6907. #define CAN_F0R1_FB9 CAN_F0R1_FB9_Msk /*!< Filter bit 9 */
  6908. #define CAN_F0R1_FB10_Pos (10U)
  6909. #define CAN_F0R1_FB10_Msk (0x1UL << CAN_F0R1_FB10_Pos) /*!< 0x00000400 */
  6910. #define CAN_F0R1_FB10 CAN_F0R1_FB10_Msk /*!< Filter bit 10 */
  6911. #define CAN_F0R1_FB11_Pos (11U)
  6912. #define CAN_F0R1_FB11_Msk (0x1UL << CAN_F0R1_FB11_Pos) /*!< 0x00000800 */
  6913. #define CAN_F0R1_FB11 CAN_F0R1_FB11_Msk /*!< Filter bit 11 */
  6914. #define CAN_F0R1_FB12_Pos (12U)
  6915. #define CAN_F0R1_FB12_Msk (0x1UL << CAN_F0R1_FB12_Pos) /*!< 0x00001000 */
  6916. #define CAN_F0R1_FB12 CAN_F0R1_FB12_Msk /*!< Filter bit 12 */
  6917. #define CAN_F0R1_FB13_Pos (13U)
  6918. #define CAN_F0R1_FB13_Msk (0x1UL << CAN_F0R1_FB13_Pos) /*!< 0x00002000 */
  6919. #define CAN_F0R1_FB13 CAN_F0R1_FB13_Msk /*!< Filter bit 13 */
  6920. #define CAN_F0R1_FB14_Pos (14U)
  6921. #define CAN_F0R1_FB14_Msk (0x1UL << CAN_F0R1_FB14_Pos) /*!< 0x00004000 */
  6922. #define CAN_F0R1_FB14 CAN_F0R1_FB14_Msk /*!< Filter bit 14 */
  6923. #define CAN_F0R1_FB15_Pos (15U)
  6924. #define CAN_F0R1_FB15_Msk (0x1UL << CAN_F0R1_FB15_Pos) /*!< 0x00008000 */
  6925. #define CAN_F0R1_FB15 CAN_F0R1_FB15_Msk /*!< Filter bit 15 */
  6926. #define CAN_F0R1_FB16_Pos (16U)
  6927. #define CAN_F0R1_FB16_Msk (0x1UL << CAN_F0R1_FB16_Pos) /*!< 0x00010000 */
  6928. #define CAN_F0R1_FB16 CAN_F0R1_FB16_Msk /*!< Filter bit 16 */
  6929. #define CAN_F0R1_FB17_Pos (17U)
  6930. #define CAN_F0R1_FB17_Msk (0x1UL << CAN_F0R1_FB17_Pos) /*!< 0x00020000 */
  6931. #define CAN_F0R1_FB17 CAN_F0R1_FB17_Msk /*!< Filter bit 17 */
  6932. #define CAN_F0R1_FB18_Pos (18U)
  6933. #define CAN_F0R1_FB18_Msk (0x1UL << CAN_F0R1_FB18_Pos) /*!< 0x00040000 */
  6934. #define CAN_F0R1_FB18 CAN_F0R1_FB18_Msk /*!< Filter bit 18 */
  6935. #define CAN_F0R1_FB19_Pos (19U)
  6936. #define CAN_F0R1_FB19_Msk (0x1UL << CAN_F0R1_FB19_Pos) /*!< 0x00080000 */
  6937. #define CAN_F0R1_FB19 CAN_F0R1_FB19_Msk /*!< Filter bit 19 */
  6938. #define CAN_F0R1_FB20_Pos (20U)
  6939. #define CAN_F0R1_FB20_Msk (0x1UL << CAN_F0R1_FB20_Pos) /*!< 0x00100000 */
  6940. #define CAN_F0R1_FB20 CAN_F0R1_FB20_Msk /*!< Filter bit 20 */
  6941. #define CAN_F0R1_FB21_Pos (21U)
  6942. #define CAN_F0R1_FB21_Msk (0x1UL << CAN_F0R1_FB21_Pos) /*!< 0x00200000 */
  6943. #define CAN_F0R1_FB21 CAN_F0R1_FB21_Msk /*!< Filter bit 21 */
  6944. #define CAN_F0R1_FB22_Pos (22U)
  6945. #define CAN_F0R1_FB22_Msk (0x1UL << CAN_F0R1_FB22_Pos) /*!< 0x00400000 */
  6946. #define CAN_F0R1_FB22 CAN_F0R1_FB22_Msk /*!< Filter bit 22 */
  6947. #define CAN_F0R1_FB23_Pos (23U)
  6948. #define CAN_F0R1_FB23_Msk (0x1UL << CAN_F0R1_FB23_Pos) /*!< 0x00800000 */
  6949. #define CAN_F0R1_FB23 CAN_F0R1_FB23_Msk /*!< Filter bit 23 */
  6950. #define CAN_F0R1_FB24_Pos (24U)
  6951. #define CAN_F0R1_FB24_Msk (0x1UL << CAN_F0R1_FB24_Pos) /*!< 0x01000000 */
  6952. #define CAN_F0R1_FB24 CAN_F0R1_FB24_Msk /*!< Filter bit 24 */
  6953. #define CAN_F0R1_FB25_Pos (25U)
  6954. #define CAN_F0R1_FB25_Msk (0x1UL << CAN_F0R1_FB25_Pos) /*!< 0x02000000 */
  6955. #define CAN_F0R1_FB25 CAN_F0R1_FB25_Msk /*!< Filter bit 25 */
  6956. #define CAN_F0R1_FB26_Pos (26U)
  6957. #define CAN_F0R1_FB26_Msk (0x1UL << CAN_F0R1_FB26_Pos) /*!< 0x04000000 */
  6958. #define CAN_F0R1_FB26 CAN_F0R1_FB26_Msk /*!< Filter bit 26 */
  6959. #define CAN_F0R1_FB27_Pos (27U)
  6960. #define CAN_F0R1_FB27_Msk (0x1UL << CAN_F0R1_FB27_Pos) /*!< 0x08000000 */
  6961. #define CAN_F0R1_FB27 CAN_F0R1_FB27_Msk /*!< Filter bit 27 */
  6962. #define CAN_F0R1_FB28_Pos (28U)
  6963. #define CAN_F0R1_FB28_Msk (0x1UL << CAN_F0R1_FB28_Pos) /*!< 0x10000000 */
  6964. #define CAN_F0R1_FB28 CAN_F0R1_FB28_Msk /*!< Filter bit 28 */
  6965. #define CAN_F0R1_FB29_Pos (29U)
  6966. #define CAN_F0R1_FB29_Msk (0x1UL << CAN_F0R1_FB29_Pos) /*!< 0x20000000 */
  6967. #define CAN_F0R1_FB29 CAN_F0R1_FB29_Msk /*!< Filter bit 29 */
  6968. #define CAN_F0R1_FB30_Pos (30U)
  6969. #define CAN_F0R1_FB30_Msk (0x1UL << CAN_F0R1_FB30_Pos) /*!< 0x40000000 */
  6970. #define CAN_F0R1_FB30 CAN_F0R1_FB30_Msk /*!< Filter bit 30 */
  6971. #define CAN_F0R1_FB31_Pos (31U)
  6972. #define CAN_F0R1_FB31_Msk (0x1UL << CAN_F0R1_FB31_Pos) /*!< 0x80000000 */
  6973. #define CAN_F0R1_FB31 CAN_F0R1_FB31_Msk /*!< Filter bit 31 */
  6974. /******************* Bit definition for CAN_F1R1 register *******************/
  6975. #define CAN_F1R1_FB0_Pos (0U)
  6976. #define CAN_F1R1_FB0_Msk (0x1UL << CAN_F1R1_FB0_Pos) /*!< 0x00000001 */
  6977. #define CAN_F1R1_FB0 CAN_F1R1_FB0_Msk /*!< Filter bit 0 */
  6978. #define CAN_F1R1_FB1_Pos (1U)
  6979. #define CAN_F1R1_FB1_Msk (0x1UL << CAN_F1R1_FB1_Pos) /*!< 0x00000002 */
  6980. #define CAN_F1R1_FB1 CAN_F1R1_FB1_Msk /*!< Filter bit 1 */
  6981. #define CAN_F1R1_FB2_Pos (2U)
  6982. #define CAN_F1R1_FB2_Msk (0x1UL << CAN_F1R1_FB2_Pos) /*!< 0x00000004 */
  6983. #define CAN_F1R1_FB2 CAN_F1R1_FB2_Msk /*!< Filter bit 2 */
  6984. #define CAN_F1R1_FB3_Pos (3U)
  6985. #define CAN_F1R1_FB3_Msk (0x1UL << CAN_F1R1_FB3_Pos) /*!< 0x00000008 */
  6986. #define CAN_F1R1_FB3 CAN_F1R1_FB3_Msk /*!< Filter bit 3 */
  6987. #define CAN_F1R1_FB4_Pos (4U)
  6988. #define CAN_F1R1_FB4_Msk (0x1UL << CAN_F1R1_FB4_Pos) /*!< 0x00000010 */
  6989. #define CAN_F1R1_FB4 CAN_F1R1_FB4_Msk /*!< Filter bit 4 */
  6990. #define CAN_F1R1_FB5_Pos (5U)
  6991. #define CAN_F1R1_FB5_Msk (0x1UL << CAN_F1R1_FB5_Pos) /*!< 0x00000020 */
  6992. #define CAN_F1R1_FB5 CAN_F1R1_FB5_Msk /*!< Filter bit 5 */
  6993. #define CAN_F1R1_FB6_Pos (6U)
  6994. #define CAN_F1R1_FB6_Msk (0x1UL << CAN_F1R1_FB6_Pos) /*!< 0x00000040 */
  6995. #define CAN_F1R1_FB6 CAN_F1R1_FB6_Msk /*!< Filter bit 6 */
  6996. #define CAN_F1R1_FB7_Pos (7U)
  6997. #define CAN_F1R1_FB7_Msk (0x1UL << CAN_F1R1_FB7_Pos) /*!< 0x00000080 */
  6998. #define CAN_F1R1_FB7 CAN_F1R1_FB7_Msk /*!< Filter bit 7 */
  6999. #define CAN_F1R1_FB8_Pos (8U)
  7000. #define CAN_F1R1_FB8_Msk (0x1UL << CAN_F1R1_FB8_Pos) /*!< 0x00000100 */
  7001. #define CAN_F1R1_FB8 CAN_F1R1_FB8_Msk /*!< Filter bit 8 */
  7002. #define CAN_F1R1_FB9_Pos (9U)
  7003. #define CAN_F1R1_FB9_Msk (0x1UL << CAN_F1R1_FB9_Pos) /*!< 0x00000200 */
  7004. #define CAN_F1R1_FB9 CAN_F1R1_FB9_Msk /*!< Filter bit 9 */
  7005. #define CAN_F1R1_FB10_Pos (10U)
  7006. #define CAN_F1R1_FB10_Msk (0x1UL << CAN_F1R1_FB10_Pos) /*!< 0x00000400 */
  7007. #define CAN_F1R1_FB10 CAN_F1R1_FB10_Msk /*!< Filter bit 10 */
  7008. #define CAN_F1R1_FB11_Pos (11U)
  7009. #define CAN_F1R1_FB11_Msk (0x1UL << CAN_F1R1_FB11_Pos) /*!< 0x00000800 */
  7010. #define CAN_F1R1_FB11 CAN_F1R1_FB11_Msk /*!< Filter bit 11 */
  7011. #define CAN_F1R1_FB12_Pos (12U)
  7012. #define CAN_F1R1_FB12_Msk (0x1UL << CAN_F1R1_FB12_Pos) /*!< 0x00001000 */
  7013. #define CAN_F1R1_FB12 CAN_F1R1_FB12_Msk /*!< Filter bit 12 */
  7014. #define CAN_F1R1_FB13_Pos (13U)
  7015. #define CAN_F1R1_FB13_Msk (0x1UL << CAN_F1R1_FB13_Pos) /*!< 0x00002000 */
  7016. #define CAN_F1R1_FB13 CAN_F1R1_FB13_Msk /*!< Filter bit 13 */
  7017. #define CAN_F1R1_FB14_Pos (14U)
  7018. #define CAN_F1R1_FB14_Msk (0x1UL << CAN_F1R1_FB14_Pos) /*!< 0x00004000 */
  7019. #define CAN_F1R1_FB14 CAN_F1R1_FB14_Msk /*!< Filter bit 14 */
  7020. #define CAN_F1R1_FB15_Pos (15U)
  7021. #define CAN_F1R1_FB15_Msk (0x1UL << CAN_F1R1_FB15_Pos) /*!< 0x00008000 */
  7022. #define CAN_F1R1_FB15 CAN_F1R1_FB15_Msk /*!< Filter bit 15 */
  7023. #define CAN_F1R1_FB16_Pos (16U)
  7024. #define CAN_F1R1_FB16_Msk (0x1UL << CAN_F1R1_FB16_Pos) /*!< 0x00010000 */
  7025. #define CAN_F1R1_FB16 CAN_F1R1_FB16_Msk /*!< Filter bit 16 */
  7026. #define CAN_F1R1_FB17_Pos (17U)
  7027. #define CAN_F1R1_FB17_Msk (0x1UL << CAN_F1R1_FB17_Pos) /*!< 0x00020000 */
  7028. #define CAN_F1R1_FB17 CAN_F1R1_FB17_Msk /*!< Filter bit 17 */
  7029. #define CAN_F1R1_FB18_Pos (18U)
  7030. #define CAN_F1R1_FB18_Msk (0x1UL << CAN_F1R1_FB18_Pos) /*!< 0x00040000 */
  7031. #define CAN_F1R1_FB18 CAN_F1R1_FB18_Msk /*!< Filter bit 18 */
  7032. #define CAN_F1R1_FB19_Pos (19U)
  7033. #define CAN_F1R1_FB19_Msk (0x1UL << CAN_F1R1_FB19_Pos) /*!< 0x00080000 */
  7034. #define CAN_F1R1_FB19 CAN_F1R1_FB19_Msk /*!< Filter bit 19 */
  7035. #define CAN_F1R1_FB20_Pos (20U)
  7036. #define CAN_F1R1_FB20_Msk (0x1UL << CAN_F1R1_FB20_Pos) /*!< 0x00100000 */
  7037. #define CAN_F1R1_FB20 CAN_F1R1_FB20_Msk /*!< Filter bit 20 */
  7038. #define CAN_F1R1_FB21_Pos (21U)
  7039. #define CAN_F1R1_FB21_Msk (0x1UL << CAN_F1R1_FB21_Pos) /*!< 0x00200000 */
  7040. #define CAN_F1R1_FB21 CAN_F1R1_FB21_Msk /*!< Filter bit 21 */
  7041. #define CAN_F1R1_FB22_Pos (22U)
  7042. #define CAN_F1R1_FB22_Msk (0x1UL << CAN_F1R1_FB22_Pos) /*!< 0x00400000 */
  7043. #define CAN_F1R1_FB22 CAN_F1R1_FB22_Msk /*!< Filter bit 22 */
  7044. #define CAN_F1R1_FB23_Pos (23U)
  7045. #define CAN_F1R1_FB23_Msk (0x1UL << CAN_F1R1_FB23_Pos) /*!< 0x00800000 */
  7046. #define CAN_F1R1_FB23 CAN_F1R1_FB23_Msk /*!< Filter bit 23 */
  7047. #define CAN_F1R1_FB24_Pos (24U)
  7048. #define CAN_F1R1_FB24_Msk (0x1UL << CAN_F1R1_FB24_Pos) /*!< 0x01000000 */
  7049. #define CAN_F1R1_FB24 CAN_F1R1_FB24_Msk /*!< Filter bit 24 */
  7050. #define CAN_F1R1_FB25_Pos (25U)
  7051. #define CAN_F1R1_FB25_Msk (0x1UL << CAN_F1R1_FB25_Pos) /*!< 0x02000000 */
  7052. #define CAN_F1R1_FB25 CAN_F1R1_FB25_Msk /*!< Filter bit 25 */
  7053. #define CAN_F1R1_FB26_Pos (26U)
  7054. #define CAN_F1R1_FB26_Msk (0x1UL << CAN_F1R1_FB26_Pos) /*!< 0x04000000 */
  7055. #define CAN_F1R1_FB26 CAN_F1R1_FB26_Msk /*!< Filter bit 26 */
  7056. #define CAN_F1R1_FB27_Pos (27U)
  7057. #define CAN_F1R1_FB27_Msk (0x1UL << CAN_F1R1_FB27_Pos) /*!< 0x08000000 */
  7058. #define CAN_F1R1_FB27 CAN_F1R1_FB27_Msk /*!< Filter bit 27 */
  7059. #define CAN_F1R1_FB28_Pos (28U)
  7060. #define CAN_F1R1_FB28_Msk (0x1UL << CAN_F1R1_FB28_Pos) /*!< 0x10000000 */
  7061. #define CAN_F1R1_FB28 CAN_F1R1_FB28_Msk /*!< Filter bit 28 */
  7062. #define CAN_F1R1_FB29_Pos (29U)
  7063. #define CAN_F1R1_FB29_Msk (0x1UL << CAN_F1R1_FB29_Pos) /*!< 0x20000000 */
  7064. #define CAN_F1R1_FB29 CAN_F1R1_FB29_Msk /*!< Filter bit 29 */
  7065. #define CAN_F1R1_FB30_Pos (30U)
  7066. #define CAN_F1R1_FB30_Msk (0x1UL << CAN_F1R1_FB30_Pos) /*!< 0x40000000 */
  7067. #define CAN_F1R1_FB30 CAN_F1R1_FB30_Msk /*!< Filter bit 30 */
  7068. #define CAN_F1R1_FB31_Pos (31U)
  7069. #define CAN_F1R1_FB31_Msk (0x1UL << CAN_F1R1_FB31_Pos) /*!< 0x80000000 */
  7070. #define CAN_F1R1_FB31 CAN_F1R1_FB31_Msk /*!< Filter bit 31 */
  7071. /******************* Bit definition for CAN_F2R1 register *******************/
  7072. #define CAN_F2R1_FB0_Pos (0U)
  7073. #define CAN_F2R1_FB0_Msk (0x1UL << CAN_F2R1_FB0_Pos) /*!< 0x00000001 */
  7074. #define CAN_F2R1_FB0 CAN_F2R1_FB0_Msk /*!< Filter bit 0 */
  7075. #define CAN_F2R1_FB1_Pos (1U)
  7076. #define CAN_F2R1_FB1_Msk (0x1UL << CAN_F2R1_FB1_Pos) /*!< 0x00000002 */
  7077. #define CAN_F2R1_FB1 CAN_F2R1_FB1_Msk /*!< Filter bit 1 */
  7078. #define CAN_F2R1_FB2_Pos (2U)
  7079. #define CAN_F2R1_FB2_Msk (0x1UL << CAN_F2R1_FB2_Pos) /*!< 0x00000004 */
  7080. #define CAN_F2R1_FB2 CAN_F2R1_FB2_Msk /*!< Filter bit 2 */
  7081. #define CAN_F2R1_FB3_Pos (3U)
  7082. #define CAN_F2R1_FB3_Msk (0x1UL << CAN_F2R1_FB3_Pos) /*!< 0x00000008 */
  7083. #define CAN_F2R1_FB3 CAN_F2R1_FB3_Msk /*!< Filter bit 3 */
  7084. #define CAN_F2R1_FB4_Pos (4U)
  7085. #define CAN_F2R1_FB4_Msk (0x1UL << CAN_F2R1_FB4_Pos) /*!< 0x00000010 */
  7086. #define CAN_F2R1_FB4 CAN_F2R1_FB4_Msk /*!< Filter bit 4 */
  7087. #define CAN_F2R1_FB5_Pos (5U)
  7088. #define CAN_F2R1_FB5_Msk (0x1UL << CAN_F2R1_FB5_Pos) /*!< 0x00000020 */
  7089. #define CAN_F2R1_FB5 CAN_F2R1_FB5_Msk /*!< Filter bit 5 */
  7090. #define CAN_F2R1_FB6_Pos (6U)
  7091. #define CAN_F2R1_FB6_Msk (0x1UL << CAN_F2R1_FB6_Pos) /*!< 0x00000040 */
  7092. #define CAN_F2R1_FB6 CAN_F2R1_FB6_Msk /*!< Filter bit 6 */
  7093. #define CAN_F2R1_FB7_Pos (7U)
  7094. #define CAN_F2R1_FB7_Msk (0x1UL << CAN_F2R1_FB7_Pos) /*!< 0x00000080 */
  7095. #define CAN_F2R1_FB7 CAN_F2R1_FB7_Msk /*!< Filter bit 7 */
  7096. #define CAN_F2R1_FB8_Pos (8U)
  7097. #define CAN_F2R1_FB8_Msk (0x1UL << CAN_F2R1_FB8_Pos) /*!< 0x00000100 */
  7098. #define CAN_F2R1_FB8 CAN_F2R1_FB8_Msk /*!< Filter bit 8 */
  7099. #define CAN_F2R1_FB9_Pos (9U)
  7100. #define CAN_F2R1_FB9_Msk (0x1UL << CAN_F2R1_FB9_Pos) /*!< 0x00000200 */
  7101. #define CAN_F2R1_FB9 CAN_F2R1_FB9_Msk /*!< Filter bit 9 */
  7102. #define CAN_F2R1_FB10_Pos (10U)
  7103. #define CAN_F2R1_FB10_Msk (0x1UL << CAN_F2R1_FB10_Pos) /*!< 0x00000400 */
  7104. #define CAN_F2R1_FB10 CAN_F2R1_FB10_Msk /*!< Filter bit 10 */
  7105. #define CAN_F2R1_FB11_Pos (11U)
  7106. #define CAN_F2R1_FB11_Msk (0x1UL << CAN_F2R1_FB11_Pos) /*!< 0x00000800 */
  7107. #define CAN_F2R1_FB11 CAN_F2R1_FB11_Msk /*!< Filter bit 11 */
  7108. #define CAN_F2R1_FB12_Pos (12U)
  7109. #define CAN_F2R1_FB12_Msk (0x1UL << CAN_F2R1_FB12_Pos) /*!< 0x00001000 */
  7110. #define CAN_F2R1_FB12 CAN_F2R1_FB12_Msk /*!< Filter bit 12 */
  7111. #define CAN_F2R1_FB13_Pos (13U)
  7112. #define CAN_F2R1_FB13_Msk (0x1UL << CAN_F2R1_FB13_Pos) /*!< 0x00002000 */
  7113. #define CAN_F2R1_FB13 CAN_F2R1_FB13_Msk /*!< Filter bit 13 */
  7114. #define CAN_F2R1_FB14_Pos (14U)
  7115. #define CAN_F2R1_FB14_Msk (0x1UL << CAN_F2R1_FB14_Pos) /*!< 0x00004000 */
  7116. #define CAN_F2R1_FB14 CAN_F2R1_FB14_Msk /*!< Filter bit 14 */
  7117. #define CAN_F2R1_FB15_Pos (15U)
  7118. #define CAN_F2R1_FB15_Msk (0x1UL << CAN_F2R1_FB15_Pos) /*!< 0x00008000 */
  7119. #define CAN_F2R1_FB15 CAN_F2R1_FB15_Msk /*!< Filter bit 15 */
  7120. #define CAN_F2R1_FB16_Pos (16U)
  7121. #define CAN_F2R1_FB16_Msk (0x1UL << CAN_F2R1_FB16_Pos) /*!< 0x00010000 */
  7122. #define CAN_F2R1_FB16 CAN_F2R1_FB16_Msk /*!< Filter bit 16 */
  7123. #define CAN_F2R1_FB17_Pos (17U)
  7124. #define CAN_F2R1_FB17_Msk (0x1UL << CAN_F2R1_FB17_Pos) /*!< 0x00020000 */
  7125. #define CAN_F2R1_FB17 CAN_F2R1_FB17_Msk /*!< Filter bit 17 */
  7126. #define CAN_F2R1_FB18_Pos (18U)
  7127. #define CAN_F2R1_FB18_Msk (0x1UL << CAN_F2R1_FB18_Pos) /*!< 0x00040000 */
  7128. #define CAN_F2R1_FB18 CAN_F2R1_FB18_Msk /*!< Filter bit 18 */
  7129. #define CAN_F2R1_FB19_Pos (19U)
  7130. #define CAN_F2R1_FB19_Msk (0x1UL << CAN_F2R1_FB19_Pos) /*!< 0x00080000 */
  7131. #define CAN_F2R1_FB19 CAN_F2R1_FB19_Msk /*!< Filter bit 19 */
  7132. #define CAN_F2R1_FB20_Pos (20U)
  7133. #define CAN_F2R1_FB20_Msk (0x1UL << CAN_F2R1_FB20_Pos) /*!< 0x00100000 */
  7134. #define CAN_F2R1_FB20 CAN_F2R1_FB20_Msk /*!< Filter bit 20 */
  7135. #define CAN_F2R1_FB21_Pos (21U)
  7136. #define CAN_F2R1_FB21_Msk (0x1UL << CAN_F2R1_FB21_Pos) /*!< 0x00200000 */
  7137. #define CAN_F2R1_FB21 CAN_F2R1_FB21_Msk /*!< Filter bit 21 */
  7138. #define CAN_F2R1_FB22_Pos (22U)
  7139. #define CAN_F2R1_FB22_Msk (0x1UL << CAN_F2R1_FB22_Pos) /*!< 0x00400000 */
  7140. #define CAN_F2R1_FB22 CAN_F2R1_FB22_Msk /*!< Filter bit 22 */
  7141. #define CAN_F2R1_FB23_Pos (23U)
  7142. #define CAN_F2R1_FB23_Msk (0x1UL << CAN_F2R1_FB23_Pos) /*!< 0x00800000 */
  7143. #define CAN_F2R1_FB23 CAN_F2R1_FB23_Msk /*!< Filter bit 23 */
  7144. #define CAN_F2R1_FB24_Pos (24U)
  7145. #define CAN_F2R1_FB24_Msk (0x1UL << CAN_F2R1_FB24_Pos) /*!< 0x01000000 */
  7146. #define CAN_F2R1_FB24 CAN_F2R1_FB24_Msk /*!< Filter bit 24 */
  7147. #define CAN_F2R1_FB25_Pos (25U)
  7148. #define CAN_F2R1_FB25_Msk (0x1UL << CAN_F2R1_FB25_Pos) /*!< 0x02000000 */
  7149. #define CAN_F2R1_FB25 CAN_F2R1_FB25_Msk /*!< Filter bit 25 */
  7150. #define CAN_F2R1_FB26_Pos (26U)
  7151. #define CAN_F2R1_FB26_Msk (0x1UL << CAN_F2R1_FB26_Pos) /*!< 0x04000000 */
  7152. #define CAN_F2R1_FB26 CAN_F2R1_FB26_Msk /*!< Filter bit 26 */
  7153. #define CAN_F2R1_FB27_Pos (27U)
  7154. #define CAN_F2R1_FB27_Msk (0x1UL << CAN_F2R1_FB27_Pos) /*!< 0x08000000 */
  7155. #define CAN_F2R1_FB27 CAN_F2R1_FB27_Msk /*!< Filter bit 27 */
  7156. #define CAN_F2R1_FB28_Pos (28U)
  7157. #define CAN_F2R1_FB28_Msk (0x1UL << CAN_F2R1_FB28_Pos) /*!< 0x10000000 */
  7158. #define CAN_F2R1_FB28 CAN_F2R1_FB28_Msk /*!< Filter bit 28 */
  7159. #define CAN_F2R1_FB29_Pos (29U)
  7160. #define CAN_F2R1_FB29_Msk (0x1UL << CAN_F2R1_FB29_Pos) /*!< 0x20000000 */
  7161. #define CAN_F2R1_FB29 CAN_F2R1_FB29_Msk /*!< Filter bit 29 */
  7162. #define CAN_F2R1_FB30_Pos (30U)
  7163. #define CAN_F2R1_FB30_Msk (0x1UL << CAN_F2R1_FB30_Pos) /*!< 0x40000000 */
  7164. #define CAN_F2R1_FB30 CAN_F2R1_FB30_Msk /*!< Filter bit 30 */
  7165. #define CAN_F2R1_FB31_Pos (31U)
  7166. #define CAN_F2R1_FB31_Msk (0x1UL << CAN_F2R1_FB31_Pos) /*!< 0x80000000 */
  7167. #define CAN_F2R1_FB31 CAN_F2R1_FB31_Msk /*!< Filter bit 31 */
  7168. /******************* Bit definition for CAN_F3R1 register *******************/
  7169. #define CAN_F3R1_FB0_Pos (0U)
  7170. #define CAN_F3R1_FB0_Msk (0x1UL << CAN_F3R1_FB0_Pos) /*!< 0x00000001 */
  7171. #define CAN_F3R1_FB0 CAN_F3R1_FB0_Msk /*!< Filter bit 0 */
  7172. #define CAN_F3R1_FB1_Pos (1U)
  7173. #define CAN_F3R1_FB1_Msk (0x1UL << CAN_F3R1_FB1_Pos) /*!< 0x00000002 */
  7174. #define CAN_F3R1_FB1 CAN_F3R1_FB1_Msk /*!< Filter bit 1 */
  7175. #define CAN_F3R1_FB2_Pos (2U)
  7176. #define CAN_F3R1_FB2_Msk (0x1UL << CAN_F3R1_FB2_Pos) /*!< 0x00000004 */
  7177. #define CAN_F3R1_FB2 CAN_F3R1_FB2_Msk /*!< Filter bit 2 */
  7178. #define CAN_F3R1_FB3_Pos (3U)
  7179. #define CAN_F3R1_FB3_Msk (0x1UL << CAN_F3R1_FB3_Pos) /*!< 0x00000008 */
  7180. #define CAN_F3R1_FB3 CAN_F3R1_FB3_Msk /*!< Filter bit 3 */
  7181. #define CAN_F3R1_FB4_Pos (4U)
  7182. #define CAN_F3R1_FB4_Msk (0x1UL << CAN_F3R1_FB4_Pos) /*!< 0x00000010 */
  7183. #define CAN_F3R1_FB4 CAN_F3R1_FB4_Msk /*!< Filter bit 4 */
  7184. #define CAN_F3R1_FB5_Pos (5U)
  7185. #define CAN_F3R1_FB5_Msk (0x1UL << CAN_F3R1_FB5_Pos) /*!< 0x00000020 */
  7186. #define CAN_F3R1_FB5 CAN_F3R1_FB5_Msk /*!< Filter bit 5 */
  7187. #define CAN_F3R1_FB6_Pos (6U)
  7188. #define CAN_F3R1_FB6_Msk (0x1UL << CAN_F3R1_FB6_Pos) /*!< 0x00000040 */
  7189. #define CAN_F3R1_FB6 CAN_F3R1_FB6_Msk /*!< Filter bit 6 */
  7190. #define CAN_F3R1_FB7_Pos (7U)
  7191. #define CAN_F3R1_FB7_Msk (0x1UL << CAN_F3R1_FB7_Pos) /*!< 0x00000080 */
  7192. #define CAN_F3R1_FB7 CAN_F3R1_FB7_Msk /*!< Filter bit 7 */
  7193. #define CAN_F3R1_FB8_Pos (8U)
  7194. #define CAN_F3R1_FB8_Msk (0x1UL << CAN_F3R1_FB8_Pos) /*!< 0x00000100 */
  7195. #define CAN_F3R1_FB8 CAN_F3R1_FB8_Msk /*!< Filter bit 8 */
  7196. #define CAN_F3R1_FB9_Pos (9U)
  7197. #define CAN_F3R1_FB9_Msk (0x1UL << CAN_F3R1_FB9_Pos) /*!< 0x00000200 */
  7198. #define CAN_F3R1_FB9 CAN_F3R1_FB9_Msk /*!< Filter bit 9 */
  7199. #define CAN_F3R1_FB10_Pos (10U)
  7200. #define CAN_F3R1_FB10_Msk (0x1UL << CAN_F3R1_FB10_Pos) /*!< 0x00000400 */
  7201. #define CAN_F3R1_FB10 CAN_F3R1_FB10_Msk /*!< Filter bit 10 */
  7202. #define CAN_F3R1_FB11_Pos (11U)
  7203. #define CAN_F3R1_FB11_Msk (0x1UL << CAN_F3R1_FB11_Pos) /*!< 0x00000800 */
  7204. #define CAN_F3R1_FB11 CAN_F3R1_FB11_Msk /*!< Filter bit 11 */
  7205. #define CAN_F3R1_FB12_Pos (12U)
  7206. #define CAN_F3R1_FB12_Msk (0x1UL << CAN_F3R1_FB12_Pos) /*!< 0x00001000 */
  7207. #define CAN_F3R1_FB12 CAN_F3R1_FB12_Msk /*!< Filter bit 12 */
  7208. #define CAN_F3R1_FB13_Pos (13U)
  7209. #define CAN_F3R1_FB13_Msk (0x1UL << CAN_F3R1_FB13_Pos) /*!< 0x00002000 */
  7210. #define CAN_F3R1_FB13 CAN_F3R1_FB13_Msk /*!< Filter bit 13 */
  7211. #define CAN_F3R1_FB14_Pos (14U)
  7212. #define CAN_F3R1_FB14_Msk (0x1UL << CAN_F3R1_FB14_Pos) /*!< 0x00004000 */
  7213. #define CAN_F3R1_FB14 CAN_F3R1_FB14_Msk /*!< Filter bit 14 */
  7214. #define CAN_F3R1_FB15_Pos (15U)
  7215. #define CAN_F3R1_FB15_Msk (0x1UL << CAN_F3R1_FB15_Pos) /*!< 0x00008000 */
  7216. #define CAN_F3R1_FB15 CAN_F3R1_FB15_Msk /*!< Filter bit 15 */
  7217. #define CAN_F3R1_FB16_Pos (16U)
  7218. #define CAN_F3R1_FB16_Msk (0x1UL << CAN_F3R1_FB16_Pos) /*!< 0x00010000 */
  7219. #define CAN_F3R1_FB16 CAN_F3R1_FB16_Msk /*!< Filter bit 16 */
  7220. #define CAN_F3R1_FB17_Pos (17U)
  7221. #define CAN_F3R1_FB17_Msk (0x1UL << CAN_F3R1_FB17_Pos) /*!< 0x00020000 */
  7222. #define CAN_F3R1_FB17 CAN_F3R1_FB17_Msk /*!< Filter bit 17 */
  7223. #define CAN_F3R1_FB18_Pos (18U)
  7224. #define CAN_F3R1_FB18_Msk (0x1UL << CAN_F3R1_FB18_Pos) /*!< 0x00040000 */
  7225. #define CAN_F3R1_FB18 CAN_F3R1_FB18_Msk /*!< Filter bit 18 */
  7226. #define CAN_F3R1_FB19_Pos (19U)
  7227. #define CAN_F3R1_FB19_Msk (0x1UL << CAN_F3R1_FB19_Pos) /*!< 0x00080000 */
  7228. #define CAN_F3R1_FB19 CAN_F3R1_FB19_Msk /*!< Filter bit 19 */
  7229. #define CAN_F3R1_FB20_Pos (20U)
  7230. #define CAN_F3R1_FB20_Msk (0x1UL << CAN_F3R1_FB20_Pos) /*!< 0x00100000 */
  7231. #define CAN_F3R1_FB20 CAN_F3R1_FB20_Msk /*!< Filter bit 20 */
  7232. #define CAN_F3R1_FB21_Pos (21U)
  7233. #define CAN_F3R1_FB21_Msk (0x1UL << CAN_F3R1_FB21_Pos) /*!< 0x00200000 */
  7234. #define CAN_F3R1_FB21 CAN_F3R1_FB21_Msk /*!< Filter bit 21 */
  7235. #define CAN_F3R1_FB22_Pos (22U)
  7236. #define CAN_F3R1_FB22_Msk (0x1UL << CAN_F3R1_FB22_Pos) /*!< 0x00400000 */
  7237. #define CAN_F3R1_FB22 CAN_F3R1_FB22_Msk /*!< Filter bit 22 */
  7238. #define CAN_F3R1_FB23_Pos (23U)
  7239. #define CAN_F3R1_FB23_Msk (0x1UL << CAN_F3R1_FB23_Pos) /*!< 0x00800000 */
  7240. #define CAN_F3R1_FB23 CAN_F3R1_FB23_Msk /*!< Filter bit 23 */
  7241. #define CAN_F3R1_FB24_Pos (24U)
  7242. #define CAN_F3R1_FB24_Msk (0x1UL << CAN_F3R1_FB24_Pos) /*!< 0x01000000 */
  7243. #define CAN_F3R1_FB24 CAN_F3R1_FB24_Msk /*!< Filter bit 24 */
  7244. #define CAN_F3R1_FB25_Pos (25U)
  7245. #define CAN_F3R1_FB25_Msk (0x1UL << CAN_F3R1_FB25_Pos) /*!< 0x02000000 */
  7246. #define CAN_F3R1_FB25 CAN_F3R1_FB25_Msk /*!< Filter bit 25 */
  7247. #define CAN_F3R1_FB26_Pos (26U)
  7248. #define CAN_F3R1_FB26_Msk (0x1UL << CAN_F3R1_FB26_Pos) /*!< 0x04000000 */
  7249. #define CAN_F3R1_FB26 CAN_F3R1_FB26_Msk /*!< Filter bit 26 */
  7250. #define CAN_F3R1_FB27_Pos (27U)
  7251. #define CAN_F3R1_FB27_Msk (0x1UL << CAN_F3R1_FB27_Pos) /*!< 0x08000000 */
  7252. #define CAN_F3R1_FB27 CAN_F3R1_FB27_Msk /*!< Filter bit 27 */
  7253. #define CAN_F3R1_FB28_Pos (28U)
  7254. #define CAN_F3R1_FB28_Msk (0x1UL << CAN_F3R1_FB28_Pos) /*!< 0x10000000 */
  7255. #define CAN_F3R1_FB28 CAN_F3R1_FB28_Msk /*!< Filter bit 28 */
  7256. #define CAN_F3R1_FB29_Pos (29U)
  7257. #define CAN_F3R1_FB29_Msk (0x1UL << CAN_F3R1_FB29_Pos) /*!< 0x20000000 */
  7258. #define CAN_F3R1_FB29 CAN_F3R1_FB29_Msk /*!< Filter bit 29 */
  7259. #define CAN_F3R1_FB30_Pos (30U)
  7260. #define CAN_F3R1_FB30_Msk (0x1UL << CAN_F3R1_FB30_Pos) /*!< 0x40000000 */
  7261. #define CAN_F3R1_FB30 CAN_F3R1_FB30_Msk /*!< Filter bit 30 */
  7262. #define CAN_F3R1_FB31_Pos (31U)
  7263. #define CAN_F3R1_FB31_Msk (0x1UL << CAN_F3R1_FB31_Pos) /*!< 0x80000000 */
  7264. #define CAN_F3R1_FB31 CAN_F3R1_FB31_Msk /*!< Filter bit 31 */
  7265. /******************* Bit definition for CAN_F4R1 register *******************/
  7266. #define CAN_F4R1_FB0_Pos (0U)
  7267. #define CAN_F4R1_FB0_Msk (0x1UL << CAN_F4R1_FB0_Pos) /*!< 0x00000001 */
  7268. #define CAN_F4R1_FB0 CAN_F4R1_FB0_Msk /*!< Filter bit 0 */
  7269. #define CAN_F4R1_FB1_Pos (1U)
  7270. #define CAN_F4R1_FB1_Msk (0x1UL << CAN_F4R1_FB1_Pos) /*!< 0x00000002 */
  7271. #define CAN_F4R1_FB1 CAN_F4R1_FB1_Msk /*!< Filter bit 1 */
  7272. #define CAN_F4R1_FB2_Pos (2U)
  7273. #define CAN_F4R1_FB2_Msk (0x1UL << CAN_F4R1_FB2_Pos) /*!< 0x00000004 */
  7274. #define CAN_F4R1_FB2 CAN_F4R1_FB2_Msk /*!< Filter bit 2 */
  7275. #define CAN_F4R1_FB3_Pos (3U)
  7276. #define CAN_F4R1_FB3_Msk (0x1UL << CAN_F4R1_FB3_Pos) /*!< 0x00000008 */
  7277. #define CAN_F4R1_FB3 CAN_F4R1_FB3_Msk /*!< Filter bit 3 */
  7278. #define CAN_F4R1_FB4_Pos (4U)
  7279. #define CAN_F4R1_FB4_Msk (0x1UL << CAN_F4R1_FB4_Pos) /*!< 0x00000010 */
  7280. #define CAN_F4R1_FB4 CAN_F4R1_FB4_Msk /*!< Filter bit 4 */
  7281. #define CAN_F4R1_FB5_Pos (5U)
  7282. #define CAN_F4R1_FB5_Msk (0x1UL << CAN_F4R1_FB5_Pos) /*!< 0x00000020 */
  7283. #define CAN_F4R1_FB5 CAN_F4R1_FB5_Msk /*!< Filter bit 5 */
  7284. #define CAN_F4R1_FB6_Pos (6U)
  7285. #define CAN_F4R1_FB6_Msk (0x1UL << CAN_F4R1_FB6_Pos) /*!< 0x00000040 */
  7286. #define CAN_F4R1_FB6 CAN_F4R1_FB6_Msk /*!< Filter bit 6 */
  7287. #define CAN_F4R1_FB7_Pos (7U)
  7288. #define CAN_F4R1_FB7_Msk (0x1UL << CAN_F4R1_FB7_Pos) /*!< 0x00000080 */
  7289. #define CAN_F4R1_FB7 CAN_F4R1_FB7_Msk /*!< Filter bit 7 */
  7290. #define CAN_F4R1_FB8_Pos (8U)
  7291. #define CAN_F4R1_FB8_Msk (0x1UL << CAN_F4R1_FB8_Pos) /*!< 0x00000100 */
  7292. #define CAN_F4R1_FB8 CAN_F4R1_FB8_Msk /*!< Filter bit 8 */
  7293. #define CAN_F4R1_FB9_Pos (9U)
  7294. #define CAN_F4R1_FB9_Msk (0x1UL << CAN_F4R1_FB9_Pos) /*!< 0x00000200 */
  7295. #define CAN_F4R1_FB9 CAN_F4R1_FB9_Msk /*!< Filter bit 9 */
  7296. #define CAN_F4R1_FB10_Pos (10U)
  7297. #define CAN_F4R1_FB10_Msk (0x1UL << CAN_F4R1_FB10_Pos) /*!< 0x00000400 */
  7298. #define CAN_F4R1_FB10 CAN_F4R1_FB10_Msk /*!< Filter bit 10 */
  7299. #define CAN_F4R1_FB11_Pos (11U)
  7300. #define CAN_F4R1_FB11_Msk (0x1UL << CAN_F4R1_FB11_Pos) /*!< 0x00000800 */
  7301. #define CAN_F4R1_FB11 CAN_F4R1_FB11_Msk /*!< Filter bit 11 */
  7302. #define CAN_F4R1_FB12_Pos (12U)
  7303. #define CAN_F4R1_FB12_Msk (0x1UL << CAN_F4R1_FB12_Pos) /*!< 0x00001000 */
  7304. #define CAN_F4R1_FB12 CAN_F4R1_FB12_Msk /*!< Filter bit 12 */
  7305. #define CAN_F4R1_FB13_Pos (13U)
  7306. #define CAN_F4R1_FB13_Msk (0x1UL << CAN_F4R1_FB13_Pos) /*!< 0x00002000 */
  7307. #define CAN_F4R1_FB13 CAN_F4R1_FB13_Msk /*!< Filter bit 13 */
  7308. #define CAN_F4R1_FB14_Pos (14U)
  7309. #define CAN_F4R1_FB14_Msk (0x1UL << CAN_F4R1_FB14_Pos) /*!< 0x00004000 */
  7310. #define CAN_F4R1_FB14 CAN_F4R1_FB14_Msk /*!< Filter bit 14 */
  7311. #define CAN_F4R1_FB15_Pos (15U)
  7312. #define CAN_F4R1_FB15_Msk (0x1UL << CAN_F4R1_FB15_Pos) /*!< 0x00008000 */
  7313. #define CAN_F4R1_FB15 CAN_F4R1_FB15_Msk /*!< Filter bit 15 */
  7314. #define CAN_F4R1_FB16_Pos (16U)
  7315. #define CAN_F4R1_FB16_Msk (0x1UL << CAN_F4R1_FB16_Pos) /*!< 0x00010000 */
  7316. #define CAN_F4R1_FB16 CAN_F4R1_FB16_Msk /*!< Filter bit 16 */
  7317. #define CAN_F4R1_FB17_Pos (17U)
  7318. #define CAN_F4R1_FB17_Msk (0x1UL << CAN_F4R1_FB17_Pos) /*!< 0x00020000 */
  7319. #define CAN_F4R1_FB17 CAN_F4R1_FB17_Msk /*!< Filter bit 17 */
  7320. #define CAN_F4R1_FB18_Pos (18U)
  7321. #define CAN_F4R1_FB18_Msk (0x1UL << CAN_F4R1_FB18_Pos) /*!< 0x00040000 */
  7322. #define CAN_F4R1_FB18 CAN_F4R1_FB18_Msk /*!< Filter bit 18 */
  7323. #define CAN_F4R1_FB19_Pos (19U)
  7324. #define CAN_F4R1_FB19_Msk (0x1UL << CAN_F4R1_FB19_Pos) /*!< 0x00080000 */
  7325. #define CAN_F4R1_FB19 CAN_F4R1_FB19_Msk /*!< Filter bit 19 */
  7326. #define CAN_F4R1_FB20_Pos (20U)
  7327. #define CAN_F4R1_FB20_Msk (0x1UL << CAN_F4R1_FB20_Pos) /*!< 0x00100000 */
  7328. #define CAN_F4R1_FB20 CAN_F4R1_FB20_Msk /*!< Filter bit 20 */
  7329. #define CAN_F4R1_FB21_Pos (21U)
  7330. #define CAN_F4R1_FB21_Msk (0x1UL << CAN_F4R1_FB21_Pos) /*!< 0x00200000 */
  7331. #define CAN_F4R1_FB21 CAN_F4R1_FB21_Msk /*!< Filter bit 21 */
  7332. #define CAN_F4R1_FB22_Pos (22U)
  7333. #define CAN_F4R1_FB22_Msk (0x1UL << CAN_F4R1_FB22_Pos) /*!< 0x00400000 */
  7334. #define CAN_F4R1_FB22 CAN_F4R1_FB22_Msk /*!< Filter bit 22 */
  7335. #define CAN_F4R1_FB23_Pos (23U)
  7336. #define CAN_F4R1_FB23_Msk (0x1UL << CAN_F4R1_FB23_Pos) /*!< 0x00800000 */
  7337. #define CAN_F4R1_FB23 CAN_F4R1_FB23_Msk /*!< Filter bit 23 */
  7338. #define CAN_F4R1_FB24_Pos (24U)
  7339. #define CAN_F4R1_FB24_Msk (0x1UL << CAN_F4R1_FB24_Pos) /*!< 0x01000000 */
  7340. #define CAN_F4R1_FB24 CAN_F4R1_FB24_Msk /*!< Filter bit 24 */
  7341. #define CAN_F4R1_FB25_Pos (25U)
  7342. #define CAN_F4R1_FB25_Msk (0x1UL << CAN_F4R1_FB25_Pos) /*!< 0x02000000 */
  7343. #define CAN_F4R1_FB25 CAN_F4R1_FB25_Msk /*!< Filter bit 25 */
  7344. #define CAN_F4R1_FB26_Pos (26U)
  7345. #define CAN_F4R1_FB26_Msk (0x1UL << CAN_F4R1_FB26_Pos) /*!< 0x04000000 */
  7346. #define CAN_F4R1_FB26 CAN_F4R1_FB26_Msk /*!< Filter bit 26 */
  7347. #define CAN_F4R1_FB27_Pos (27U)
  7348. #define CAN_F4R1_FB27_Msk (0x1UL << CAN_F4R1_FB27_Pos) /*!< 0x08000000 */
  7349. #define CAN_F4R1_FB27 CAN_F4R1_FB27_Msk /*!< Filter bit 27 */
  7350. #define CAN_F4R1_FB28_Pos (28U)
  7351. #define CAN_F4R1_FB28_Msk (0x1UL << CAN_F4R1_FB28_Pos) /*!< 0x10000000 */
  7352. #define CAN_F4R1_FB28 CAN_F4R1_FB28_Msk /*!< Filter bit 28 */
  7353. #define CAN_F4R1_FB29_Pos (29U)
  7354. #define CAN_F4R1_FB29_Msk (0x1UL << CAN_F4R1_FB29_Pos) /*!< 0x20000000 */
  7355. #define CAN_F4R1_FB29 CAN_F4R1_FB29_Msk /*!< Filter bit 29 */
  7356. #define CAN_F4R1_FB30_Pos (30U)
  7357. #define CAN_F4R1_FB30_Msk (0x1UL << CAN_F4R1_FB30_Pos) /*!< 0x40000000 */
  7358. #define CAN_F4R1_FB30 CAN_F4R1_FB30_Msk /*!< Filter bit 30 */
  7359. #define CAN_F4R1_FB31_Pos (31U)
  7360. #define CAN_F4R1_FB31_Msk (0x1UL << CAN_F4R1_FB31_Pos) /*!< 0x80000000 */
  7361. #define CAN_F4R1_FB31 CAN_F4R1_FB31_Msk /*!< Filter bit 31 */
  7362. /******************* Bit definition for CAN_F5R1 register *******************/
  7363. #define CAN_F5R1_FB0_Pos (0U)
  7364. #define CAN_F5R1_FB0_Msk (0x1UL << CAN_F5R1_FB0_Pos) /*!< 0x00000001 */
  7365. #define CAN_F5R1_FB0 CAN_F5R1_FB0_Msk /*!< Filter bit 0 */
  7366. #define CAN_F5R1_FB1_Pos (1U)
  7367. #define CAN_F5R1_FB1_Msk (0x1UL << CAN_F5R1_FB1_Pos) /*!< 0x00000002 */
  7368. #define CAN_F5R1_FB1 CAN_F5R1_FB1_Msk /*!< Filter bit 1 */
  7369. #define CAN_F5R1_FB2_Pos (2U)
  7370. #define CAN_F5R1_FB2_Msk (0x1UL << CAN_F5R1_FB2_Pos) /*!< 0x00000004 */
  7371. #define CAN_F5R1_FB2 CAN_F5R1_FB2_Msk /*!< Filter bit 2 */
  7372. #define CAN_F5R1_FB3_Pos (3U)
  7373. #define CAN_F5R1_FB3_Msk (0x1UL << CAN_F5R1_FB3_Pos) /*!< 0x00000008 */
  7374. #define CAN_F5R1_FB3 CAN_F5R1_FB3_Msk /*!< Filter bit 3 */
  7375. #define CAN_F5R1_FB4_Pos (4U)
  7376. #define CAN_F5R1_FB4_Msk (0x1UL << CAN_F5R1_FB4_Pos) /*!< 0x00000010 */
  7377. #define CAN_F5R1_FB4 CAN_F5R1_FB4_Msk /*!< Filter bit 4 */
  7378. #define CAN_F5R1_FB5_Pos (5U)
  7379. #define CAN_F5R1_FB5_Msk (0x1UL << CAN_F5R1_FB5_Pos) /*!< 0x00000020 */
  7380. #define CAN_F5R1_FB5 CAN_F5R1_FB5_Msk /*!< Filter bit 5 */
  7381. #define CAN_F5R1_FB6_Pos (6U)
  7382. #define CAN_F5R1_FB6_Msk (0x1UL << CAN_F5R1_FB6_Pos) /*!< 0x00000040 */
  7383. #define CAN_F5R1_FB6 CAN_F5R1_FB6_Msk /*!< Filter bit 6 */
  7384. #define CAN_F5R1_FB7_Pos (7U)
  7385. #define CAN_F5R1_FB7_Msk (0x1UL << CAN_F5R1_FB7_Pos) /*!< 0x00000080 */
  7386. #define CAN_F5R1_FB7 CAN_F5R1_FB7_Msk /*!< Filter bit 7 */
  7387. #define CAN_F5R1_FB8_Pos (8U)
  7388. #define CAN_F5R1_FB8_Msk (0x1UL << CAN_F5R1_FB8_Pos) /*!< 0x00000100 */
  7389. #define CAN_F5R1_FB8 CAN_F5R1_FB8_Msk /*!< Filter bit 8 */
  7390. #define CAN_F5R1_FB9_Pos (9U)
  7391. #define CAN_F5R1_FB9_Msk (0x1UL << CAN_F5R1_FB9_Pos) /*!< 0x00000200 */
  7392. #define CAN_F5R1_FB9 CAN_F5R1_FB9_Msk /*!< Filter bit 9 */
  7393. #define CAN_F5R1_FB10_Pos (10U)
  7394. #define CAN_F5R1_FB10_Msk (0x1UL << CAN_F5R1_FB10_Pos) /*!< 0x00000400 */
  7395. #define CAN_F5R1_FB10 CAN_F5R1_FB10_Msk /*!< Filter bit 10 */
  7396. #define CAN_F5R1_FB11_Pos (11U)
  7397. #define CAN_F5R1_FB11_Msk (0x1UL << CAN_F5R1_FB11_Pos) /*!< 0x00000800 */
  7398. #define CAN_F5R1_FB11 CAN_F5R1_FB11_Msk /*!< Filter bit 11 */
  7399. #define CAN_F5R1_FB12_Pos (12U)
  7400. #define CAN_F5R1_FB12_Msk (0x1UL << CAN_F5R1_FB12_Pos) /*!< 0x00001000 */
  7401. #define CAN_F5R1_FB12 CAN_F5R1_FB12_Msk /*!< Filter bit 12 */
  7402. #define CAN_F5R1_FB13_Pos (13U)
  7403. #define CAN_F5R1_FB13_Msk (0x1UL << CAN_F5R1_FB13_Pos) /*!< 0x00002000 */
  7404. #define CAN_F5R1_FB13 CAN_F5R1_FB13_Msk /*!< Filter bit 13 */
  7405. #define CAN_F5R1_FB14_Pos (14U)
  7406. #define CAN_F5R1_FB14_Msk (0x1UL << CAN_F5R1_FB14_Pos) /*!< 0x00004000 */
  7407. #define CAN_F5R1_FB14 CAN_F5R1_FB14_Msk /*!< Filter bit 14 */
  7408. #define CAN_F5R1_FB15_Pos (15U)
  7409. #define CAN_F5R1_FB15_Msk (0x1UL << CAN_F5R1_FB15_Pos) /*!< 0x00008000 */
  7410. #define CAN_F5R1_FB15 CAN_F5R1_FB15_Msk /*!< Filter bit 15 */
  7411. #define CAN_F5R1_FB16_Pos (16U)
  7412. #define CAN_F5R1_FB16_Msk (0x1UL << CAN_F5R1_FB16_Pos) /*!< 0x00010000 */
  7413. #define CAN_F5R1_FB16 CAN_F5R1_FB16_Msk /*!< Filter bit 16 */
  7414. #define CAN_F5R1_FB17_Pos (17U)
  7415. #define CAN_F5R1_FB17_Msk (0x1UL << CAN_F5R1_FB17_Pos) /*!< 0x00020000 */
  7416. #define CAN_F5R1_FB17 CAN_F5R1_FB17_Msk /*!< Filter bit 17 */
  7417. #define CAN_F5R1_FB18_Pos (18U)
  7418. #define CAN_F5R1_FB18_Msk (0x1UL << CAN_F5R1_FB18_Pos) /*!< 0x00040000 */
  7419. #define CAN_F5R1_FB18 CAN_F5R1_FB18_Msk /*!< Filter bit 18 */
  7420. #define CAN_F5R1_FB19_Pos (19U)
  7421. #define CAN_F5R1_FB19_Msk (0x1UL << CAN_F5R1_FB19_Pos) /*!< 0x00080000 */
  7422. #define CAN_F5R1_FB19 CAN_F5R1_FB19_Msk /*!< Filter bit 19 */
  7423. #define CAN_F5R1_FB20_Pos (20U)
  7424. #define CAN_F5R1_FB20_Msk (0x1UL << CAN_F5R1_FB20_Pos) /*!< 0x00100000 */
  7425. #define CAN_F5R1_FB20 CAN_F5R1_FB20_Msk /*!< Filter bit 20 */
  7426. #define CAN_F5R1_FB21_Pos (21U)
  7427. #define CAN_F5R1_FB21_Msk (0x1UL << CAN_F5R1_FB21_Pos) /*!< 0x00200000 */
  7428. #define CAN_F5R1_FB21 CAN_F5R1_FB21_Msk /*!< Filter bit 21 */
  7429. #define CAN_F5R1_FB22_Pos (22U)
  7430. #define CAN_F5R1_FB22_Msk (0x1UL << CAN_F5R1_FB22_Pos) /*!< 0x00400000 */
  7431. #define CAN_F5R1_FB22 CAN_F5R1_FB22_Msk /*!< Filter bit 22 */
  7432. #define CAN_F5R1_FB23_Pos (23U)
  7433. #define CAN_F5R1_FB23_Msk (0x1UL << CAN_F5R1_FB23_Pos) /*!< 0x00800000 */
  7434. #define CAN_F5R1_FB23 CAN_F5R1_FB23_Msk /*!< Filter bit 23 */
  7435. #define CAN_F5R1_FB24_Pos (24U)
  7436. #define CAN_F5R1_FB24_Msk (0x1UL << CAN_F5R1_FB24_Pos) /*!< 0x01000000 */
  7437. #define CAN_F5R1_FB24 CAN_F5R1_FB24_Msk /*!< Filter bit 24 */
  7438. #define CAN_F5R1_FB25_Pos (25U)
  7439. #define CAN_F5R1_FB25_Msk (0x1UL << CAN_F5R1_FB25_Pos) /*!< 0x02000000 */
  7440. #define CAN_F5R1_FB25 CAN_F5R1_FB25_Msk /*!< Filter bit 25 */
  7441. #define CAN_F5R1_FB26_Pos (26U)
  7442. #define CAN_F5R1_FB26_Msk (0x1UL << CAN_F5R1_FB26_Pos) /*!< 0x04000000 */
  7443. #define CAN_F5R1_FB26 CAN_F5R1_FB26_Msk /*!< Filter bit 26 */
  7444. #define CAN_F5R1_FB27_Pos (27U)
  7445. #define CAN_F5R1_FB27_Msk (0x1UL << CAN_F5R1_FB27_Pos) /*!< 0x08000000 */
  7446. #define CAN_F5R1_FB27 CAN_F5R1_FB27_Msk /*!< Filter bit 27 */
  7447. #define CAN_F5R1_FB28_Pos (28U)
  7448. #define CAN_F5R1_FB28_Msk (0x1UL << CAN_F5R1_FB28_Pos) /*!< 0x10000000 */
  7449. #define CAN_F5R1_FB28 CAN_F5R1_FB28_Msk /*!< Filter bit 28 */
  7450. #define CAN_F5R1_FB29_Pos (29U)
  7451. #define CAN_F5R1_FB29_Msk (0x1UL << CAN_F5R1_FB29_Pos) /*!< 0x20000000 */
  7452. #define CAN_F5R1_FB29 CAN_F5R1_FB29_Msk /*!< Filter bit 29 */
  7453. #define CAN_F5R1_FB30_Pos (30U)
  7454. #define CAN_F5R1_FB30_Msk (0x1UL << CAN_F5R1_FB30_Pos) /*!< 0x40000000 */
  7455. #define CAN_F5R1_FB30 CAN_F5R1_FB30_Msk /*!< Filter bit 30 */
  7456. #define CAN_F5R1_FB31_Pos (31U)
  7457. #define CAN_F5R1_FB31_Msk (0x1UL << CAN_F5R1_FB31_Pos) /*!< 0x80000000 */
  7458. #define CAN_F5R1_FB31 CAN_F5R1_FB31_Msk /*!< Filter bit 31 */
  7459. /******************* Bit definition for CAN_F6R1 register *******************/
  7460. #define CAN_F6R1_FB0_Pos (0U)
  7461. #define CAN_F6R1_FB0_Msk (0x1UL << CAN_F6R1_FB0_Pos) /*!< 0x00000001 */
  7462. #define CAN_F6R1_FB0 CAN_F6R1_FB0_Msk /*!< Filter bit 0 */
  7463. #define CAN_F6R1_FB1_Pos (1U)
  7464. #define CAN_F6R1_FB1_Msk (0x1UL << CAN_F6R1_FB1_Pos) /*!< 0x00000002 */
  7465. #define CAN_F6R1_FB1 CAN_F6R1_FB1_Msk /*!< Filter bit 1 */
  7466. #define CAN_F6R1_FB2_Pos (2U)
  7467. #define CAN_F6R1_FB2_Msk (0x1UL << CAN_F6R1_FB2_Pos) /*!< 0x00000004 */
  7468. #define CAN_F6R1_FB2 CAN_F6R1_FB2_Msk /*!< Filter bit 2 */
  7469. #define CAN_F6R1_FB3_Pos (3U)
  7470. #define CAN_F6R1_FB3_Msk (0x1UL << CAN_F6R1_FB3_Pos) /*!< 0x00000008 */
  7471. #define CAN_F6R1_FB3 CAN_F6R1_FB3_Msk /*!< Filter bit 3 */
  7472. #define CAN_F6R1_FB4_Pos (4U)
  7473. #define CAN_F6R1_FB4_Msk (0x1UL << CAN_F6R1_FB4_Pos) /*!< 0x00000010 */
  7474. #define CAN_F6R1_FB4 CAN_F6R1_FB4_Msk /*!< Filter bit 4 */
  7475. #define CAN_F6R1_FB5_Pos (5U)
  7476. #define CAN_F6R1_FB5_Msk (0x1UL << CAN_F6R1_FB5_Pos) /*!< 0x00000020 */
  7477. #define CAN_F6R1_FB5 CAN_F6R1_FB5_Msk /*!< Filter bit 5 */
  7478. #define CAN_F6R1_FB6_Pos (6U)
  7479. #define CAN_F6R1_FB6_Msk (0x1UL << CAN_F6R1_FB6_Pos) /*!< 0x00000040 */
  7480. #define CAN_F6R1_FB6 CAN_F6R1_FB6_Msk /*!< Filter bit 6 */
  7481. #define CAN_F6R1_FB7_Pos (7U)
  7482. #define CAN_F6R1_FB7_Msk (0x1UL << CAN_F6R1_FB7_Pos) /*!< 0x00000080 */
  7483. #define CAN_F6R1_FB7 CAN_F6R1_FB7_Msk /*!< Filter bit 7 */
  7484. #define CAN_F6R1_FB8_Pos (8U)
  7485. #define CAN_F6R1_FB8_Msk (0x1UL << CAN_F6R1_FB8_Pos) /*!< 0x00000100 */
  7486. #define CAN_F6R1_FB8 CAN_F6R1_FB8_Msk /*!< Filter bit 8 */
  7487. #define CAN_F6R1_FB9_Pos (9U)
  7488. #define CAN_F6R1_FB9_Msk (0x1UL << CAN_F6R1_FB9_Pos) /*!< 0x00000200 */
  7489. #define CAN_F6R1_FB9 CAN_F6R1_FB9_Msk /*!< Filter bit 9 */
  7490. #define CAN_F6R1_FB10_Pos (10U)
  7491. #define CAN_F6R1_FB10_Msk (0x1UL << CAN_F6R1_FB10_Pos) /*!< 0x00000400 */
  7492. #define CAN_F6R1_FB10 CAN_F6R1_FB10_Msk /*!< Filter bit 10 */
  7493. #define CAN_F6R1_FB11_Pos (11U)
  7494. #define CAN_F6R1_FB11_Msk (0x1UL << CAN_F6R1_FB11_Pos) /*!< 0x00000800 */
  7495. #define CAN_F6R1_FB11 CAN_F6R1_FB11_Msk /*!< Filter bit 11 */
  7496. #define CAN_F6R1_FB12_Pos (12U)
  7497. #define CAN_F6R1_FB12_Msk (0x1UL << CAN_F6R1_FB12_Pos) /*!< 0x00001000 */
  7498. #define CAN_F6R1_FB12 CAN_F6R1_FB12_Msk /*!< Filter bit 12 */
  7499. #define CAN_F6R1_FB13_Pos (13U)
  7500. #define CAN_F6R1_FB13_Msk (0x1UL << CAN_F6R1_FB13_Pos) /*!< 0x00002000 */
  7501. #define CAN_F6R1_FB13 CAN_F6R1_FB13_Msk /*!< Filter bit 13 */
  7502. #define CAN_F6R1_FB14_Pos (14U)
  7503. #define CAN_F6R1_FB14_Msk (0x1UL << CAN_F6R1_FB14_Pos) /*!< 0x00004000 */
  7504. #define CAN_F6R1_FB14 CAN_F6R1_FB14_Msk /*!< Filter bit 14 */
  7505. #define CAN_F6R1_FB15_Pos (15U)
  7506. #define CAN_F6R1_FB15_Msk (0x1UL << CAN_F6R1_FB15_Pos) /*!< 0x00008000 */
  7507. #define CAN_F6R1_FB15 CAN_F6R1_FB15_Msk /*!< Filter bit 15 */
  7508. #define CAN_F6R1_FB16_Pos (16U)
  7509. #define CAN_F6R1_FB16_Msk (0x1UL << CAN_F6R1_FB16_Pos) /*!< 0x00010000 */
  7510. #define CAN_F6R1_FB16 CAN_F6R1_FB16_Msk /*!< Filter bit 16 */
  7511. #define CAN_F6R1_FB17_Pos (17U)
  7512. #define CAN_F6R1_FB17_Msk (0x1UL << CAN_F6R1_FB17_Pos) /*!< 0x00020000 */
  7513. #define CAN_F6R1_FB17 CAN_F6R1_FB17_Msk /*!< Filter bit 17 */
  7514. #define CAN_F6R1_FB18_Pos (18U)
  7515. #define CAN_F6R1_FB18_Msk (0x1UL << CAN_F6R1_FB18_Pos) /*!< 0x00040000 */
  7516. #define CAN_F6R1_FB18 CAN_F6R1_FB18_Msk /*!< Filter bit 18 */
  7517. #define CAN_F6R1_FB19_Pos (19U)
  7518. #define CAN_F6R1_FB19_Msk (0x1UL << CAN_F6R1_FB19_Pos) /*!< 0x00080000 */
  7519. #define CAN_F6R1_FB19 CAN_F6R1_FB19_Msk /*!< Filter bit 19 */
  7520. #define CAN_F6R1_FB20_Pos (20U)
  7521. #define CAN_F6R1_FB20_Msk (0x1UL << CAN_F6R1_FB20_Pos) /*!< 0x00100000 */
  7522. #define CAN_F6R1_FB20 CAN_F6R1_FB20_Msk /*!< Filter bit 20 */
  7523. #define CAN_F6R1_FB21_Pos (21U)
  7524. #define CAN_F6R1_FB21_Msk (0x1UL << CAN_F6R1_FB21_Pos) /*!< 0x00200000 */
  7525. #define CAN_F6R1_FB21 CAN_F6R1_FB21_Msk /*!< Filter bit 21 */
  7526. #define CAN_F6R1_FB22_Pos (22U)
  7527. #define CAN_F6R1_FB22_Msk (0x1UL << CAN_F6R1_FB22_Pos) /*!< 0x00400000 */
  7528. #define CAN_F6R1_FB22 CAN_F6R1_FB22_Msk /*!< Filter bit 22 */
  7529. #define CAN_F6R1_FB23_Pos (23U)
  7530. #define CAN_F6R1_FB23_Msk (0x1UL << CAN_F6R1_FB23_Pos) /*!< 0x00800000 */
  7531. #define CAN_F6R1_FB23 CAN_F6R1_FB23_Msk /*!< Filter bit 23 */
  7532. #define CAN_F6R1_FB24_Pos (24U)
  7533. #define CAN_F6R1_FB24_Msk (0x1UL << CAN_F6R1_FB24_Pos) /*!< 0x01000000 */
  7534. #define CAN_F6R1_FB24 CAN_F6R1_FB24_Msk /*!< Filter bit 24 */
  7535. #define CAN_F6R1_FB25_Pos (25U)
  7536. #define CAN_F6R1_FB25_Msk (0x1UL << CAN_F6R1_FB25_Pos) /*!< 0x02000000 */
  7537. #define CAN_F6R1_FB25 CAN_F6R1_FB25_Msk /*!< Filter bit 25 */
  7538. #define CAN_F6R1_FB26_Pos (26U)
  7539. #define CAN_F6R1_FB26_Msk (0x1UL << CAN_F6R1_FB26_Pos) /*!< 0x04000000 */
  7540. #define CAN_F6R1_FB26 CAN_F6R1_FB26_Msk /*!< Filter bit 26 */
  7541. #define CAN_F6R1_FB27_Pos (27U)
  7542. #define CAN_F6R1_FB27_Msk (0x1UL << CAN_F6R1_FB27_Pos) /*!< 0x08000000 */
  7543. #define CAN_F6R1_FB27 CAN_F6R1_FB27_Msk /*!< Filter bit 27 */
  7544. #define CAN_F6R1_FB28_Pos (28U)
  7545. #define CAN_F6R1_FB28_Msk (0x1UL << CAN_F6R1_FB28_Pos) /*!< 0x10000000 */
  7546. #define CAN_F6R1_FB28 CAN_F6R1_FB28_Msk /*!< Filter bit 28 */
  7547. #define CAN_F6R1_FB29_Pos (29U)
  7548. #define CAN_F6R1_FB29_Msk (0x1UL << CAN_F6R1_FB29_Pos) /*!< 0x20000000 */
  7549. #define CAN_F6R1_FB29 CAN_F6R1_FB29_Msk /*!< Filter bit 29 */
  7550. #define CAN_F6R1_FB30_Pos (30U)
  7551. #define CAN_F6R1_FB30_Msk (0x1UL << CAN_F6R1_FB30_Pos) /*!< 0x40000000 */
  7552. #define CAN_F6R1_FB30 CAN_F6R1_FB30_Msk /*!< Filter bit 30 */
  7553. #define CAN_F6R1_FB31_Pos (31U)
  7554. #define CAN_F6R1_FB31_Msk (0x1UL << CAN_F6R1_FB31_Pos) /*!< 0x80000000 */
  7555. #define CAN_F6R1_FB31 CAN_F6R1_FB31_Msk /*!< Filter bit 31 */
  7556. /******************* Bit definition for CAN_F7R1 register *******************/
  7557. #define CAN_F7R1_FB0_Pos (0U)
  7558. #define CAN_F7R1_FB0_Msk (0x1UL << CAN_F7R1_FB0_Pos) /*!< 0x00000001 */
  7559. #define CAN_F7R1_FB0 CAN_F7R1_FB0_Msk /*!< Filter bit 0 */
  7560. #define CAN_F7R1_FB1_Pos (1U)
  7561. #define CAN_F7R1_FB1_Msk (0x1UL << CAN_F7R1_FB1_Pos) /*!< 0x00000002 */
  7562. #define CAN_F7R1_FB1 CAN_F7R1_FB1_Msk /*!< Filter bit 1 */
  7563. #define CAN_F7R1_FB2_Pos (2U)
  7564. #define CAN_F7R1_FB2_Msk (0x1UL << CAN_F7R1_FB2_Pos) /*!< 0x00000004 */
  7565. #define CAN_F7R1_FB2 CAN_F7R1_FB2_Msk /*!< Filter bit 2 */
  7566. #define CAN_F7R1_FB3_Pos (3U)
  7567. #define CAN_F7R1_FB3_Msk (0x1UL << CAN_F7R1_FB3_Pos) /*!< 0x00000008 */
  7568. #define CAN_F7R1_FB3 CAN_F7R1_FB3_Msk /*!< Filter bit 3 */
  7569. #define CAN_F7R1_FB4_Pos (4U)
  7570. #define CAN_F7R1_FB4_Msk (0x1UL << CAN_F7R1_FB4_Pos) /*!< 0x00000010 */
  7571. #define CAN_F7R1_FB4 CAN_F7R1_FB4_Msk /*!< Filter bit 4 */
  7572. #define CAN_F7R1_FB5_Pos (5U)
  7573. #define CAN_F7R1_FB5_Msk (0x1UL << CAN_F7R1_FB5_Pos) /*!< 0x00000020 */
  7574. #define CAN_F7R1_FB5 CAN_F7R1_FB5_Msk /*!< Filter bit 5 */
  7575. #define CAN_F7R1_FB6_Pos (6U)
  7576. #define CAN_F7R1_FB6_Msk (0x1UL << CAN_F7R1_FB6_Pos) /*!< 0x00000040 */
  7577. #define CAN_F7R1_FB6 CAN_F7R1_FB6_Msk /*!< Filter bit 6 */
  7578. #define CAN_F7R1_FB7_Pos (7U)
  7579. #define CAN_F7R1_FB7_Msk (0x1UL << CAN_F7R1_FB7_Pos) /*!< 0x00000080 */
  7580. #define CAN_F7R1_FB7 CAN_F7R1_FB7_Msk /*!< Filter bit 7 */
  7581. #define CAN_F7R1_FB8_Pos (8U)
  7582. #define CAN_F7R1_FB8_Msk (0x1UL << CAN_F7R1_FB8_Pos) /*!< 0x00000100 */
  7583. #define CAN_F7R1_FB8 CAN_F7R1_FB8_Msk /*!< Filter bit 8 */
  7584. #define CAN_F7R1_FB9_Pos (9U)
  7585. #define CAN_F7R1_FB9_Msk (0x1UL << CAN_F7R1_FB9_Pos) /*!< 0x00000200 */
  7586. #define CAN_F7R1_FB9 CAN_F7R1_FB9_Msk /*!< Filter bit 9 */
  7587. #define CAN_F7R1_FB10_Pos (10U)
  7588. #define CAN_F7R1_FB10_Msk (0x1UL << CAN_F7R1_FB10_Pos) /*!< 0x00000400 */
  7589. #define CAN_F7R1_FB10 CAN_F7R1_FB10_Msk /*!< Filter bit 10 */
  7590. #define CAN_F7R1_FB11_Pos (11U)
  7591. #define CAN_F7R1_FB11_Msk (0x1UL << CAN_F7R1_FB11_Pos) /*!< 0x00000800 */
  7592. #define CAN_F7R1_FB11 CAN_F7R1_FB11_Msk /*!< Filter bit 11 */
  7593. #define CAN_F7R1_FB12_Pos (12U)
  7594. #define CAN_F7R1_FB12_Msk (0x1UL << CAN_F7R1_FB12_Pos) /*!< 0x00001000 */
  7595. #define CAN_F7R1_FB12 CAN_F7R1_FB12_Msk /*!< Filter bit 12 */
  7596. #define CAN_F7R1_FB13_Pos (13U)
  7597. #define CAN_F7R1_FB13_Msk (0x1UL << CAN_F7R1_FB13_Pos) /*!< 0x00002000 */
  7598. #define CAN_F7R1_FB13 CAN_F7R1_FB13_Msk /*!< Filter bit 13 */
  7599. #define CAN_F7R1_FB14_Pos (14U)
  7600. #define CAN_F7R1_FB14_Msk (0x1UL << CAN_F7R1_FB14_Pos) /*!< 0x00004000 */
  7601. #define CAN_F7R1_FB14 CAN_F7R1_FB14_Msk /*!< Filter bit 14 */
  7602. #define CAN_F7R1_FB15_Pos (15U)
  7603. #define CAN_F7R1_FB15_Msk (0x1UL << CAN_F7R1_FB15_Pos) /*!< 0x00008000 */
  7604. #define CAN_F7R1_FB15 CAN_F7R1_FB15_Msk /*!< Filter bit 15 */
  7605. #define CAN_F7R1_FB16_Pos (16U)
  7606. #define CAN_F7R1_FB16_Msk (0x1UL << CAN_F7R1_FB16_Pos) /*!< 0x00010000 */
  7607. #define CAN_F7R1_FB16 CAN_F7R1_FB16_Msk /*!< Filter bit 16 */
  7608. #define CAN_F7R1_FB17_Pos (17U)
  7609. #define CAN_F7R1_FB17_Msk (0x1UL << CAN_F7R1_FB17_Pos) /*!< 0x00020000 */
  7610. #define CAN_F7R1_FB17 CAN_F7R1_FB17_Msk /*!< Filter bit 17 */
  7611. #define CAN_F7R1_FB18_Pos (18U)
  7612. #define CAN_F7R1_FB18_Msk (0x1UL << CAN_F7R1_FB18_Pos) /*!< 0x00040000 */
  7613. #define CAN_F7R1_FB18 CAN_F7R1_FB18_Msk /*!< Filter bit 18 */
  7614. #define CAN_F7R1_FB19_Pos (19U)
  7615. #define CAN_F7R1_FB19_Msk (0x1UL << CAN_F7R1_FB19_Pos) /*!< 0x00080000 */
  7616. #define CAN_F7R1_FB19 CAN_F7R1_FB19_Msk /*!< Filter bit 19 */
  7617. #define CAN_F7R1_FB20_Pos (20U)
  7618. #define CAN_F7R1_FB20_Msk (0x1UL << CAN_F7R1_FB20_Pos) /*!< 0x00100000 */
  7619. #define CAN_F7R1_FB20 CAN_F7R1_FB20_Msk /*!< Filter bit 20 */
  7620. #define CAN_F7R1_FB21_Pos (21U)
  7621. #define CAN_F7R1_FB21_Msk (0x1UL << CAN_F7R1_FB21_Pos) /*!< 0x00200000 */
  7622. #define CAN_F7R1_FB21 CAN_F7R1_FB21_Msk /*!< Filter bit 21 */
  7623. #define CAN_F7R1_FB22_Pos (22U)
  7624. #define CAN_F7R1_FB22_Msk (0x1UL << CAN_F7R1_FB22_Pos) /*!< 0x00400000 */
  7625. #define CAN_F7R1_FB22 CAN_F7R1_FB22_Msk /*!< Filter bit 22 */
  7626. #define CAN_F7R1_FB23_Pos (23U)
  7627. #define CAN_F7R1_FB23_Msk (0x1UL << CAN_F7R1_FB23_Pos) /*!< 0x00800000 */
  7628. #define CAN_F7R1_FB23 CAN_F7R1_FB23_Msk /*!< Filter bit 23 */
  7629. #define CAN_F7R1_FB24_Pos (24U)
  7630. #define CAN_F7R1_FB24_Msk (0x1UL << CAN_F7R1_FB24_Pos) /*!< 0x01000000 */
  7631. #define CAN_F7R1_FB24 CAN_F7R1_FB24_Msk /*!< Filter bit 24 */
  7632. #define CAN_F7R1_FB25_Pos (25U)
  7633. #define CAN_F7R1_FB25_Msk (0x1UL << CAN_F7R1_FB25_Pos) /*!< 0x02000000 */
  7634. #define CAN_F7R1_FB25 CAN_F7R1_FB25_Msk /*!< Filter bit 25 */
  7635. #define CAN_F7R1_FB26_Pos (26U)
  7636. #define CAN_F7R1_FB26_Msk (0x1UL << CAN_F7R1_FB26_Pos) /*!< 0x04000000 */
  7637. #define CAN_F7R1_FB26 CAN_F7R1_FB26_Msk /*!< Filter bit 26 */
  7638. #define CAN_F7R1_FB27_Pos (27U)
  7639. #define CAN_F7R1_FB27_Msk (0x1UL << CAN_F7R1_FB27_Pos) /*!< 0x08000000 */
  7640. #define CAN_F7R1_FB27 CAN_F7R1_FB27_Msk /*!< Filter bit 27 */
  7641. #define CAN_F7R1_FB28_Pos (28U)
  7642. #define CAN_F7R1_FB28_Msk (0x1UL << CAN_F7R1_FB28_Pos) /*!< 0x10000000 */
  7643. #define CAN_F7R1_FB28 CAN_F7R1_FB28_Msk /*!< Filter bit 28 */
  7644. #define CAN_F7R1_FB29_Pos (29U)
  7645. #define CAN_F7R1_FB29_Msk (0x1UL << CAN_F7R1_FB29_Pos) /*!< 0x20000000 */
  7646. #define CAN_F7R1_FB29 CAN_F7R1_FB29_Msk /*!< Filter bit 29 */
  7647. #define CAN_F7R1_FB30_Pos (30U)
  7648. #define CAN_F7R1_FB30_Msk (0x1UL << CAN_F7R1_FB30_Pos) /*!< 0x40000000 */
  7649. #define CAN_F7R1_FB30 CAN_F7R1_FB30_Msk /*!< Filter bit 30 */
  7650. #define CAN_F7R1_FB31_Pos (31U)
  7651. #define CAN_F7R1_FB31_Msk (0x1UL << CAN_F7R1_FB31_Pos) /*!< 0x80000000 */
  7652. #define CAN_F7R1_FB31 CAN_F7R1_FB31_Msk /*!< Filter bit 31 */
  7653. /******************* Bit definition for CAN_F8R1 register *******************/
  7654. #define CAN_F8R1_FB0_Pos (0U)
  7655. #define CAN_F8R1_FB0_Msk (0x1UL << CAN_F8R1_FB0_Pos) /*!< 0x00000001 */
  7656. #define CAN_F8R1_FB0 CAN_F8R1_FB0_Msk /*!< Filter bit 0 */
  7657. #define CAN_F8R1_FB1_Pos (1U)
  7658. #define CAN_F8R1_FB1_Msk (0x1UL << CAN_F8R1_FB1_Pos) /*!< 0x00000002 */
  7659. #define CAN_F8R1_FB1 CAN_F8R1_FB1_Msk /*!< Filter bit 1 */
  7660. #define CAN_F8R1_FB2_Pos (2U)
  7661. #define CAN_F8R1_FB2_Msk (0x1UL << CAN_F8R1_FB2_Pos) /*!< 0x00000004 */
  7662. #define CAN_F8R1_FB2 CAN_F8R1_FB2_Msk /*!< Filter bit 2 */
  7663. #define CAN_F8R1_FB3_Pos (3U)
  7664. #define CAN_F8R1_FB3_Msk (0x1UL << CAN_F8R1_FB3_Pos) /*!< 0x00000008 */
  7665. #define CAN_F8R1_FB3 CAN_F8R1_FB3_Msk /*!< Filter bit 3 */
  7666. #define CAN_F8R1_FB4_Pos (4U)
  7667. #define CAN_F8R1_FB4_Msk (0x1UL << CAN_F8R1_FB4_Pos) /*!< 0x00000010 */
  7668. #define CAN_F8R1_FB4 CAN_F8R1_FB4_Msk /*!< Filter bit 4 */
  7669. #define CAN_F8R1_FB5_Pos (5U)
  7670. #define CAN_F8R1_FB5_Msk (0x1UL << CAN_F8R1_FB5_Pos) /*!< 0x00000020 */
  7671. #define CAN_F8R1_FB5 CAN_F8R1_FB5_Msk /*!< Filter bit 5 */
  7672. #define CAN_F8R1_FB6_Pos (6U)
  7673. #define CAN_F8R1_FB6_Msk (0x1UL << CAN_F8R1_FB6_Pos) /*!< 0x00000040 */
  7674. #define CAN_F8R1_FB6 CAN_F8R1_FB6_Msk /*!< Filter bit 6 */
  7675. #define CAN_F8R1_FB7_Pos (7U)
  7676. #define CAN_F8R1_FB7_Msk (0x1UL << CAN_F8R1_FB7_Pos) /*!< 0x00000080 */
  7677. #define CAN_F8R1_FB7 CAN_F8R1_FB7_Msk /*!< Filter bit 7 */
  7678. #define CAN_F8R1_FB8_Pos (8U)
  7679. #define CAN_F8R1_FB8_Msk (0x1UL << CAN_F8R1_FB8_Pos) /*!< 0x00000100 */
  7680. #define CAN_F8R1_FB8 CAN_F8R1_FB8_Msk /*!< Filter bit 8 */
  7681. #define CAN_F8R1_FB9_Pos (9U)
  7682. #define CAN_F8R1_FB9_Msk (0x1UL << CAN_F8R1_FB9_Pos) /*!< 0x00000200 */
  7683. #define CAN_F8R1_FB9 CAN_F8R1_FB9_Msk /*!< Filter bit 9 */
  7684. #define CAN_F8R1_FB10_Pos (10U)
  7685. #define CAN_F8R1_FB10_Msk (0x1UL << CAN_F8R1_FB10_Pos) /*!< 0x00000400 */
  7686. #define CAN_F8R1_FB10 CAN_F8R1_FB10_Msk /*!< Filter bit 10 */
  7687. #define CAN_F8R1_FB11_Pos (11U)
  7688. #define CAN_F8R1_FB11_Msk (0x1UL << CAN_F8R1_FB11_Pos) /*!< 0x00000800 */
  7689. #define CAN_F8R1_FB11 CAN_F8R1_FB11_Msk /*!< Filter bit 11 */
  7690. #define CAN_F8R1_FB12_Pos (12U)
  7691. #define CAN_F8R1_FB12_Msk (0x1UL << CAN_F8R1_FB12_Pos) /*!< 0x00001000 */
  7692. #define CAN_F8R1_FB12 CAN_F8R1_FB12_Msk /*!< Filter bit 12 */
  7693. #define CAN_F8R1_FB13_Pos (13U)
  7694. #define CAN_F8R1_FB13_Msk (0x1UL << CAN_F8R1_FB13_Pos) /*!< 0x00002000 */
  7695. #define CAN_F8R1_FB13 CAN_F8R1_FB13_Msk /*!< Filter bit 13 */
  7696. #define CAN_F8R1_FB14_Pos (14U)
  7697. #define CAN_F8R1_FB14_Msk (0x1UL << CAN_F8R1_FB14_Pos) /*!< 0x00004000 */
  7698. #define CAN_F8R1_FB14 CAN_F8R1_FB14_Msk /*!< Filter bit 14 */
  7699. #define CAN_F8R1_FB15_Pos (15U)
  7700. #define CAN_F8R1_FB15_Msk (0x1UL << CAN_F8R1_FB15_Pos) /*!< 0x00008000 */
  7701. #define CAN_F8R1_FB15 CAN_F8R1_FB15_Msk /*!< Filter bit 15 */
  7702. #define CAN_F8R1_FB16_Pos (16U)
  7703. #define CAN_F8R1_FB16_Msk (0x1UL << CAN_F8R1_FB16_Pos) /*!< 0x00010000 */
  7704. #define CAN_F8R1_FB16 CAN_F8R1_FB16_Msk /*!< Filter bit 16 */
  7705. #define CAN_F8R1_FB17_Pos (17U)
  7706. #define CAN_F8R1_FB17_Msk (0x1UL << CAN_F8R1_FB17_Pos) /*!< 0x00020000 */
  7707. #define CAN_F8R1_FB17 CAN_F8R1_FB17_Msk /*!< Filter bit 17 */
  7708. #define CAN_F8R1_FB18_Pos (18U)
  7709. #define CAN_F8R1_FB18_Msk (0x1UL << CAN_F8R1_FB18_Pos) /*!< 0x00040000 */
  7710. #define CAN_F8R1_FB18 CAN_F8R1_FB18_Msk /*!< Filter bit 18 */
  7711. #define CAN_F8R1_FB19_Pos (19U)
  7712. #define CAN_F8R1_FB19_Msk (0x1UL << CAN_F8R1_FB19_Pos) /*!< 0x00080000 */
  7713. #define CAN_F8R1_FB19 CAN_F8R1_FB19_Msk /*!< Filter bit 19 */
  7714. #define CAN_F8R1_FB20_Pos (20U)
  7715. #define CAN_F8R1_FB20_Msk (0x1UL << CAN_F8R1_FB20_Pos) /*!< 0x00100000 */
  7716. #define CAN_F8R1_FB20 CAN_F8R1_FB20_Msk /*!< Filter bit 20 */
  7717. #define CAN_F8R1_FB21_Pos (21U)
  7718. #define CAN_F8R1_FB21_Msk (0x1UL << CAN_F8R1_FB21_Pos) /*!< 0x00200000 */
  7719. #define CAN_F8R1_FB21 CAN_F8R1_FB21_Msk /*!< Filter bit 21 */
  7720. #define CAN_F8R1_FB22_Pos (22U)
  7721. #define CAN_F8R1_FB22_Msk (0x1UL << CAN_F8R1_FB22_Pos) /*!< 0x00400000 */
  7722. #define CAN_F8R1_FB22 CAN_F8R1_FB22_Msk /*!< Filter bit 22 */
  7723. #define CAN_F8R1_FB23_Pos (23U)
  7724. #define CAN_F8R1_FB23_Msk (0x1UL << CAN_F8R1_FB23_Pos) /*!< 0x00800000 */
  7725. #define CAN_F8R1_FB23 CAN_F8R1_FB23_Msk /*!< Filter bit 23 */
  7726. #define CAN_F8R1_FB24_Pos (24U)
  7727. #define CAN_F8R1_FB24_Msk (0x1UL << CAN_F8R1_FB24_Pos) /*!< 0x01000000 */
  7728. #define CAN_F8R1_FB24 CAN_F8R1_FB24_Msk /*!< Filter bit 24 */
  7729. #define CAN_F8R1_FB25_Pos (25U)
  7730. #define CAN_F8R1_FB25_Msk (0x1UL << CAN_F8R1_FB25_Pos) /*!< 0x02000000 */
  7731. #define CAN_F8R1_FB25 CAN_F8R1_FB25_Msk /*!< Filter bit 25 */
  7732. #define CAN_F8R1_FB26_Pos (26U)
  7733. #define CAN_F8R1_FB26_Msk (0x1UL << CAN_F8R1_FB26_Pos) /*!< 0x04000000 */
  7734. #define CAN_F8R1_FB26 CAN_F8R1_FB26_Msk /*!< Filter bit 26 */
  7735. #define CAN_F8R1_FB27_Pos (27U)
  7736. #define CAN_F8R1_FB27_Msk (0x1UL << CAN_F8R1_FB27_Pos) /*!< 0x08000000 */
  7737. #define CAN_F8R1_FB27 CAN_F8R1_FB27_Msk /*!< Filter bit 27 */
  7738. #define CAN_F8R1_FB28_Pos (28U)
  7739. #define CAN_F8R1_FB28_Msk (0x1UL << CAN_F8R1_FB28_Pos) /*!< 0x10000000 */
  7740. #define CAN_F8R1_FB28 CAN_F8R1_FB28_Msk /*!< Filter bit 28 */
  7741. #define CAN_F8R1_FB29_Pos (29U)
  7742. #define CAN_F8R1_FB29_Msk (0x1UL << CAN_F8R1_FB29_Pos) /*!< 0x20000000 */
  7743. #define CAN_F8R1_FB29 CAN_F8R1_FB29_Msk /*!< Filter bit 29 */
  7744. #define CAN_F8R1_FB30_Pos (30U)
  7745. #define CAN_F8R1_FB30_Msk (0x1UL << CAN_F8R1_FB30_Pos) /*!< 0x40000000 */
  7746. #define CAN_F8R1_FB30 CAN_F8R1_FB30_Msk /*!< Filter bit 30 */
  7747. #define CAN_F8R1_FB31_Pos (31U)
  7748. #define CAN_F8R1_FB31_Msk (0x1UL << CAN_F8R1_FB31_Pos) /*!< 0x80000000 */
  7749. #define CAN_F8R1_FB31 CAN_F8R1_FB31_Msk /*!< Filter bit 31 */
  7750. /******************* Bit definition for CAN_F9R1 register *******************/
  7751. #define CAN_F9R1_FB0_Pos (0U)
  7752. #define CAN_F9R1_FB0_Msk (0x1UL << CAN_F9R1_FB0_Pos) /*!< 0x00000001 */
  7753. #define CAN_F9R1_FB0 CAN_F9R1_FB0_Msk /*!< Filter bit 0 */
  7754. #define CAN_F9R1_FB1_Pos (1U)
  7755. #define CAN_F9R1_FB1_Msk (0x1UL << CAN_F9R1_FB1_Pos) /*!< 0x00000002 */
  7756. #define CAN_F9R1_FB1 CAN_F9R1_FB1_Msk /*!< Filter bit 1 */
  7757. #define CAN_F9R1_FB2_Pos (2U)
  7758. #define CAN_F9R1_FB2_Msk (0x1UL << CAN_F9R1_FB2_Pos) /*!< 0x00000004 */
  7759. #define CAN_F9R1_FB2 CAN_F9R1_FB2_Msk /*!< Filter bit 2 */
  7760. #define CAN_F9R1_FB3_Pos (3U)
  7761. #define CAN_F9R1_FB3_Msk (0x1UL << CAN_F9R1_FB3_Pos) /*!< 0x00000008 */
  7762. #define CAN_F9R1_FB3 CAN_F9R1_FB3_Msk /*!< Filter bit 3 */
  7763. #define CAN_F9R1_FB4_Pos (4U)
  7764. #define CAN_F9R1_FB4_Msk (0x1UL << CAN_F9R1_FB4_Pos) /*!< 0x00000010 */
  7765. #define CAN_F9R1_FB4 CAN_F9R1_FB4_Msk /*!< Filter bit 4 */
  7766. #define CAN_F9R1_FB5_Pos (5U)
  7767. #define CAN_F9R1_FB5_Msk (0x1UL << CAN_F9R1_FB5_Pos) /*!< 0x00000020 */
  7768. #define CAN_F9R1_FB5 CAN_F9R1_FB5_Msk /*!< Filter bit 5 */
  7769. #define CAN_F9R1_FB6_Pos (6U)
  7770. #define CAN_F9R1_FB6_Msk (0x1UL << CAN_F9R1_FB6_Pos) /*!< 0x00000040 */
  7771. #define CAN_F9R1_FB6 CAN_F9R1_FB6_Msk /*!< Filter bit 6 */
  7772. #define CAN_F9R1_FB7_Pos (7U)
  7773. #define CAN_F9R1_FB7_Msk (0x1UL << CAN_F9R1_FB7_Pos) /*!< 0x00000080 */
  7774. #define CAN_F9R1_FB7 CAN_F9R1_FB7_Msk /*!< Filter bit 7 */
  7775. #define CAN_F9R1_FB8_Pos (8U)
  7776. #define CAN_F9R1_FB8_Msk (0x1UL << CAN_F9R1_FB8_Pos) /*!< 0x00000100 */
  7777. #define CAN_F9R1_FB8 CAN_F9R1_FB8_Msk /*!< Filter bit 8 */
  7778. #define CAN_F9R1_FB9_Pos (9U)
  7779. #define CAN_F9R1_FB9_Msk (0x1UL << CAN_F9R1_FB9_Pos) /*!< 0x00000200 */
  7780. #define CAN_F9R1_FB9 CAN_F9R1_FB9_Msk /*!< Filter bit 9 */
  7781. #define CAN_F9R1_FB10_Pos (10U)
  7782. #define CAN_F9R1_FB10_Msk (0x1UL << CAN_F9R1_FB10_Pos) /*!< 0x00000400 */
  7783. #define CAN_F9R1_FB10 CAN_F9R1_FB10_Msk /*!< Filter bit 10 */
  7784. #define CAN_F9R1_FB11_Pos (11U)
  7785. #define CAN_F9R1_FB11_Msk (0x1UL << CAN_F9R1_FB11_Pos) /*!< 0x00000800 */
  7786. #define CAN_F9R1_FB11 CAN_F9R1_FB11_Msk /*!< Filter bit 11 */
  7787. #define CAN_F9R1_FB12_Pos (12U)
  7788. #define CAN_F9R1_FB12_Msk (0x1UL << CAN_F9R1_FB12_Pos) /*!< 0x00001000 */
  7789. #define CAN_F9R1_FB12 CAN_F9R1_FB12_Msk /*!< Filter bit 12 */
  7790. #define CAN_F9R1_FB13_Pos (13U)
  7791. #define CAN_F9R1_FB13_Msk (0x1UL << CAN_F9R1_FB13_Pos) /*!< 0x00002000 */
  7792. #define CAN_F9R1_FB13 CAN_F9R1_FB13_Msk /*!< Filter bit 13 */
  7793. #define CAN_F9R1_FB14_Pos (14U)
  7794. #define CAN_F9R1_FB14_Msk (0x1UL << CAN_F9R1_FB14_Pos) /*!< 0x00004000 */
  7795. #define CAN_F9R1_FB14 CAN_F9R1_FB14_Msk /*!< Filter bit 14 */
  7796. #define CAN_F9R1_FB15_Pos (15U)
  7797. #define CAN_F9R1_FB15_Msk (0x1UL << CAN_F9R1_FB15_Pos) /*!< 0x00008000 */
  7798. #define CAN_F9R1_FB15 CAN_F9R1_FB15_Msk /*!< Filter bit 15 */
  7799. #define CAN_F9R1_FB16_Pos (16U)
  7800. #define CAN_F9R1_FB16_Msk (0x1UL << CAN_F9R1_FB16_Pos) /*!< 0x00010000 */
  7801. #define CAN_F9R1_FB16 CAN_F9R1_FB16_Msk /*!< Filter bit 16 */
  7802. #define CAN_F9R1_FB17_Pos (17U)
  7803. #define CAN_F9R1_FB17_Msk (0x1UL << CAN_F9R1_FB17_Pos) /*!< 0x00020000 */
  7804. #define CAN_F9R1_FB17 CAN_F9R1_FB17_Msk /*!< Filter bit 17 */
  7805. #define CAN_F9R1_FB18_Pos (18U)
  7806. #define CAN_F9R1_FB18_Msk (0x1UL << CAN_F9R1_FB18_Pos) /*!< 0x00040000 */
  7807. #define CAN_F9R1_FB18 CAN_F9R1_FB18_Msk /*!< Filter bit 18 */
  7808. #define CAN_F9R1_FB19_Pos (19U)
  7809. #define CAN_F9R1_FB19_Msk (0x1UL << CAN_F9R1_FB19_Pos) /*!< 0x00080000 */
  7810. #define CAN_F9R1_FB19 CAN_F9R1_FB19_Msk /*!< Filter bit 19 */
  7811. #define CAN_F9R1_FB20_Pos (20U)
  7812. #define CAN_F9R1_FB20_Msk (0x1UL << CAN_F9R1_FB20_Pos) /*!< 0x00100000 */
  7813. #define CAN_F9R1_FB20 CAN_F9R1_FB20_Msk /*!< Filter bit 20 */
  7814. #define CAN_F9R1_FB21_Pos (21U)
  7815. #define CAN_F9R1_FB21_Msk (0x1UL << CAN_F9R1_FB21_Pos) /*!< 0x00200000 */
  7816. #define CAN_F9R1_FB21 CAN_F9R1_FB21_Msk /*!< Filter bit 21 */
  7817. #define CAN_F9R1_FB22_Pos (22U)
  7818. #define CAN_F9R1_FB22_Msk (0x1UL << CAN_F9R1_FB22_Pos) /*!< 0x00400000 */
  7819. #define CAN_F9R1_FB22 CAN_F9R1_FB22_Msk /*!< Filter bit 22 */
  7820. #define CAN_F9R1_FB23_Pos (23U)
  7821. #define CAN_F9R1_FB23_Msk (0x1UL << CAN_F9R1_FB23_Pos) /*!< 0x00800000 */
  7822. #define CAN_F9R1_FB23 CAN_F9R1_FB23_Msk /*!< Filter bit 23 */
  7823. #define CAN_F9R1_FB24_Pos (24U)
  7824. #define CAN_F9R1_FB24_Msk (0x1UL << CAN_F9R1_FB24_Pos) /*!< 0x01000000 */
  7825. #define CAN_F9R1_FB24 CAN_F9R1_FB24_Msk /*!< Filter bit 24 */
  7826. #define CAN_F9R1_FB25_Pos (25U)
  7827. #define CAN_F9R1_FB25_Msk (0x1UL << CAN_F9R1_FB25_Pos) /*!< 0x02000000 */
  7828. #define CAN_F9R1_FB25 CAN_F9R1_FB25_Msk /*!< Filter bit 25 */
  7829. #define CAN_F9R1_FB26_Pos (26U)
  7830. #define CAN_F9R1_FB26_Msk (0x1UL << CAN_F9R1_FB26_Pos) /*!< 0x04000000 */
  7831. #define CAN_F9R1_FB26 CAN_F9R1_FB26_Msk /*!< Filter bit 26 */
  7832. #define CAN_F9R1_FB27_Pos (27U)
  7833. #define CAN_F9R1_FB27_Msk (0x1UL << CAN_F9R1_FB27_Pos) /*!< 0x08000000 */
  7834. #define CAN_F9R1_FB27 CAN_F9R1_FB27_Msk /*!< Filter bit 27 */
  7835. #define CAN_F9R1_FB28_Pos (28U)
  7836. #define CAN_F9R1_FB28_Msk (0x1UL << CAN_F9R1_FB28_Pos) /*!< 0x10000000 */
  7837. #define CAN_F9R1_FB28 CAN_F9R1_FB28_Msk /*!< Filter bit 28 */
  7838. #define CAN_F9R1_FB29_Pos (29U)
  7839. #define CAN_F9R1_FB29_Msk (0x1UL << CAN_F9R1_FB29_Pos) /*!< 0x20000000 */
  7840. #define CAN_F9R1_FB29 CAN_F9R1_FB29_Msk /*!< Filter bit 29 */
  7841. #define CAN_F9R1_FB30_Pos (30U)
  7842. #define CAN_F9R1_FB30_Msk (0x1UL << CAN_F9R1_FB30_Pos) /*!< 0x40000000 */
  7843. #define CAN_F9R1_FB30 CAN_F9R1_FB30_Msk /*!< Filter bit 30 */
  7844. #define CAN_F9R1_FB31_Pos (31U)
  7845. #define CAN_F9R1_FB31_Msk (0x1UL << CAN_F9R1_FB31_Pos) /*!< 0x80000000 */
  7846. #define CAN_F9R1_FB31 CAN_F9R1_FB31_Msk /*!< Filter bit 31 */
  7847. /******************* Bit definition for CAN_F10R1 register ******************/
  7848. #define CAN_F10R1_FB0_Pos (0U)
  7849. #define CAN_F10R1_FB0_Msk (0x1UL << CAN_F10R1_FB0_Pos) /*!< 0x00000001 */
  7850. #define CAN_F10R1_FB0 CAN_F10R1_FB0_Msk /*!< Filter bit 0 */
  7851. #define CAN_F10R1_FB1_Pos (1U)
  7852. #define CAN_F10R1_FB1_Msk (0x1UL << CAN_F10R1_FB1_Pos) /*!< 0x00000002 */
  7853. #define CAN_F10R1_FB1 CAN_F10R1_FB1_Msk /*!< Filter bit 1 */
  7854. #define CAN_F10R1_FB2_Pos (2U)
  7855. #define CAN_F10R1_FB2_Msk (0x1UL << CAN_F10R1_FB2_Pos) /*!< 0x00000004 */
  7856. #define CAN_F10R1_FB2 CAN_F10R1_FB2_Msk /*!< Filter bit 2 */
  7857. #define CAN_F10R1_FB3_Pos (3U)
  7858. #define CAN_F10R1_FB3_Msk (0x1UL << CAN_F10R1_FB3_Pos) /*!< 0x00000008 */
  7859. #define CAN_F10R1_FB3 CAN_F10R1_FB3_Msk /*!< Filter bit 3 */
  7860. #define CAN_F10R1_FB4_Pos (4U)
  7861. #define CAN_F10R1_FB4_Msk (0x1UL << CAN_F10R1_FB4_Pos) /*!< 0x00000010 */
  7862. #define CAN_F10R1_FB4 CAN_F10R1_FB4_Msk /*!< Filter bit 4 */
  7863. #define CAN_F10R1_FB5_Pos (5U)
  7864. #define CAN_F10R1_FB5_Msk (0x1UL << CAN_F10R1_FB5_Pos) /*!< 0x00000020 */
  7865. #define CAN_F10R1_FB5 CAN_F10R1_FB5_Msk /*!< Filter bit 5 */
  7866. #define CAN_F10R1_FB6_Pos (6U)
  7867. #define CAN_F10R1_FB6_Msk (0x1UL << CAN_F10R1_FB6_Pos) /*!< 0x00000040 */
  7868. #define CAN_F10R1_FB6 CAN_F10R1_FB6_Msk /*!< Filter bit 6 */
  7869. #define CAN_F10R1_FB7_Pos (7U)
  7870. #define CAN_F10R1_FB7_Msk (0x1UL << CAN_F10R1_FB7_Pos) /*!< 0x00000080 */
  7871. #define CAN_F10R1_FB7 CAN_F10R1_FB7_Msk /*!< Filter bit 7 */
  7872. #define CAN_F10R1_FB8_Pos (8U)
  7873. #define CAN_F10R1_FB8_Msk (0x1UL << CAN_F10R1_FB8_Pos) /*!< 0x00000100 */
  7874. #define CAN_F10R1_FB8 CAN_F10R1_FB8_Msk /*!< Filter bit 8 */
  7875. #define CAN_F10R1_FB9_Pos (9U)
  7876. #define CAN_F10R1_FB9_Msk (0x1UL << CAN_F10R1_FB9_Pos) /*!< 0x00000200 */
  7877. #define CAN_F10R1_FB9 CAN_F10R1_FB9_Msk /*!< Filter bit 9 */
  7878. #define CAN_F10R1_FB10_Pos (10U)
  7879. #define CAN_F10R1_FB10_Msk (0x1UL << CAN_F10R1_FB10_Pos) /*!< 0x00000400 */
  7880. #define CAN_F10R1_FB10 CAN_F10R1_FB10_Msk /*!< Filter bit 10 */
  7881. #define CAN_F10R1_FB11_Pos (11U)
  7882. #define CAN_F10R1_FB11_Msk (0x1UL << CAN_F10R1_FB11_Pos) /*!< 0x00000800 */
  7883. #define CAN_F10R1_FB11 CAN_F10R1_FB11_Msk /*!< Filter bit 11 */
  7884. #define CAN_F10R1_FB12_Pos (12U)
  7885. #define CAN_F10R1_FB12_Msk (0x1UL << CAN_F10R1_FB12_Pos) /*!< 0x00001000 */
  7886. #define CAN_F10R1_FB12 CAN_F10R1_FB12_Msk /*!< Filter bit 12 */
  7887. #define CAN_F10R1_FB13_Pos (13U)
  7888. #define CAN_F10R1_FB13_Msk (0x1UL << CAN_F10R1_FB13_Pos) /*!< 0x00002000 */
  7889. #define CAN_F10R1_FB13 CAN_F10R1_FB13_Msk /*!< Filter bit 13 */
  7890. #define CAN_F10R1_FB14_Pos (14U)
  7891. #define CAN_F10R1_FB14_Msk (0x1UL << CAN_F10R1_FB14_Pos) /*!< 0x00004000 */
  7892. #define CAN_F10R1_FB14 CAN_F10R1_FB14_Msk /*!< Filter bit 14 */
  7893. #define CAN_F10R1_FB15_Pos (15U)
  7894. #define CAN_F10R1_FB15_Msk (0x1UL << CAN_F10R1_FB15_Pos) /*!< 0x00008000 */
  7895. #define CAN_F10R1_FB15 CAN_F10R1_FB15_Msk /*!< Filter bit 15 */
  7896. #define CAN_F10R1_FB16_Pos (16U)
  7897. #define CAN_F10R1_FB16_Msk (0x1UL << CAN_F10R1_FB16_Pos) /*!< 0x00010000 */
  7898. #define CAN_F10R1_FB16 CAN_F10R1_FB16_Msk /*!< Filter bit 16 */
  7899. #define CAN_F10R1_FB17_Pos (17U)
  7900. #define CAN_F10R1_FB17_Msk (0x1UL << CAN_F10R1_FB17_Pos) /*!< 0x00020000 */
  7901. #define CAN_F10R1_FB17 CAN_F10R1_FB17_Msk /*!< Filter bit 17 */
  7902. #define CAN_F10R1_FB18_Pos (18U)
  7903. #define CAN_F10R1_FB18_Msk (0x1UL << CAN_F10R1_FB18_Pos) /*!< 0x00040000 */
  7904. #define CAN_F10R1_FB18 CAN_F10R1_FB18_Msk /*!< Filter bit 18 */
  7905. #define CAN_F10R1_FB19_Pos (19U)
  7906. #define CAN_F10R1_FB19_Msk (0x1UL << CAN_F10R1_FB19_Pos) /*!< 0x00080000 */
  7907. #define CAN_F10R1_FB19 CAN_F10R1_FB19_Msk /*!< Filter bit 19 */
  7908. #define CAN_F10R1_FB20_Pos (20U)
  7909. #define CAN_F10R1_FB20_Msk (0x1UL << CAN_F10R1_FB20_Pos) /*!< 0x00100000 */
  7910. #define CAN_F10R1_FB20 CAN_F10R1_FB20_Msk /*!< Filter bit 20 */
  7911. #define CAN_F10R1_FB21_Pos (21U)
  7912. #define CAN_F10R1_FB21_Msk (0x1UL << CAN_F10R1_FB21_Pos) /*!< 0x00200000 */
  7913. #define CAN_F10R1_FB21 CAN_F10R1_FB21_Msk /*!< Filter bit 21 */
  7914. #define CAN_F10R1_FB22_Pos (22U)
  7915. #define CAN_F10R1_FB22_Msk (0x1UL << CAN_F10R1_FB22_Pos) /*!< 0x00400000 */
  7916. #define CAN_F10R1_FB22 CAN_F10R1_FB22_Msk /*!< Filter bit 22 */
  7917. #define CAN_F10R1_FB23_Pos (23U)
  7918. #define CAN_F10R1_FB23_Msk (0x1UL << CAN_F10R1_FB23_Pos) /*!< 0x00800000 */
  7919. #define CAN_F10R1_FB23 CAN_F10R1_FB23_Msk /*!< Filter bit 23 */
  7920. #define CAN_F10R1_FB24_Pos (24U)
  7921. #define CAN_F10R1_FB24_Msk (0x1UL << CAN_F10R1_FB24_Pos) /*!< 0x01000000 */
  7922. #define CAN_F10R1_FB24 CAN_F10R1_FB24_Msk /*!< Filter bit 24 */
  7923. #define CAN_F10R1_FB25_Pos (25U)
  7924. #define CAN_F10R1_FB25_Msk (0x1UL << CAN_F10R1_FB25_Pos) /*!< 0x02000000 */
  7925. #define CAN_F10R1_FB25 CAN_F10R1_FB25_Msk /*!< Filter bit 25 */
  7926. #define CAN_F10R1_FB26_Pos (26U)
  7927. #define CAN_F10R1_FB26_Msk (0x1UL << CAN_F10R1_FB26_Pos) /*!< 0x04000000 */
  7928. #define CAN_F10R1_FB26 CAN_F10R1_FB26_Msk /*!< Filter bit 26 */
  7929. #define CAN_F10R1_FB27_Pos (27U)
  7930. #define CAN_F10R1_FB27_Msk (0x1UL << CAN_F10R1_FB27_Pos) /*!< 0x08000000 */
  7931. #define CAN_F10R1_FB27 CAN_F10R1_FB27_Msk /*!< Filter bit 27 */
  7932. #define CAN_F10R1_FB28_Pos (28U)
  7933. #define CAN_F10R1_FB28_Msk (0x1UL << CAN_F10R1_FB28_Pos) /*!< 0x10000000 */
  7934. #define CAN_F10R1_FB28 CAN_F10R1_FB28_Msk /*!< Filter bit 28 */
  7935. #define CAN_F10R1_FB29_Pos (29U)
  7936. #define CAN_F10R1_FB29_Msk (0x1UL << CAN_F10R1_FB29_Pos) /*!< 0x20000000 */
  7937. #define CAN_F10R1_FB29 CAN_F10R1_FB29_Msk /*!< Filter bit 29 */
  7938. #define CAN_F10R1_FB30_Pos (30U)
  7939. #define CAN_F10R1_FB30_Msk (0x1UL << CAN_F10R1_FB30_Pos) /*!< 0x40000000 */
  7940. #define CAN_F10R1_FB30 CAN_F10R1_FB30_Msk /*!< Filter bit 30 */
  7941. #define CAN_F10R1_FB31_Pos (31U)
  7942. #define CAN_F10R1_FB31_Msk (0x1UL << CAN_F10R1_FB31_Pos) /*!< 0x80000000 */
  7943. #define CAN_F10R1_FB31 CAN_F10R1_FB31_Msk /*!< Filter bit 31 */
  7944. /******************* Bit definition for CAN_F11R1 register ******************/
  7945. #define CAN_F11R1_FB0_Pos (0U)
  7946. #define CAN_F11R1_FB0_Msk (0x1UL << CAN_F11R1_FB0_Pos) /*!< 0x00000001 */
  7947. #define CAN_F11R1_FB0 CAN_F11R1_FB0_Msk /*!< Filter bit 0 */
  7948. #define CAN_F11R1_FB1_Pos (1U)
  7949. #define CAN_F11R1_FB1_Msk (0x1UL << CAN_F11R1_FB1_Pos) /*!< 0x00000002 */
  7950. #define CAN_F11R1_FB1 CAN_F11R1_FB1_Msk /*!< Filter bit 1 */
  7951. #define CAN_F11R1_FB2_Pos (2U)
  7952. #define CAN_F11R1_FB2_Msk (0x1UL << CAN_F11R1_FB2_Pos) /*!< 0x00000004 */
  7953. #define CAN_F11R1_FB2 CAN_F11R1_FB2_Msk /*!< Filter bit 2 */
  7954. #define CAN_F11R1_FB3_Pos (3U)
  7955. #define CAN_F11R1_FB3_Msk (0x1UL << CAN_F11R1_FB3_Pos) /*!< 0x00000008 */
  7956. #define CAN_F11R1_FB3 CAN_F11R1_FB3_Msk /*!< Filter bit 3 */
  7957. #define CAN_F11R1_FB4_Pos (4U)
  7958. #define CAN_F11R1_FB4_Msk (0x1UL << CAN_F11R1_FB4_Pos) /*!< 0x00000010 */
  7959. #define CAN_F11R1_FB4 CAN_F11R1_FB4_Msk /*!< Filter bit 4 */
  7960. #define CAN_F11R1_FB5_Pos (5U)
  7961. #define CAN_F11R1_FB5_Msk (0x1UL << CAN_F11R1_FB5_Pos) /*!< 0x00000020 */
  7962. #define CAN_F11R1_FB5 CAN_F11R1_FB5_Msk /*!< Filter bit 5 */
  7963. #define CAN_F11R1_FB6_Pos (6U)
  7964. #define CAN_F11R1_FB6_Msk (0x1UL << CAN_F11R1_FB6_Pos) /*!< 0x00000040 */
  7965. #define CAN_F11R1_FB6 CAN_F11R1_FB6_Msk /*!< Filter bit 6 */
  7966. #define CAN_F11R1_FB7_Pos (7U)
  7967. #define CAN_F11R1_FB7_Msk (0x1UL << CAN_F11R1_FB7_Pos) /*!< 0x00000080 */
  7968. #define CAN_F11R1_FB7 CAN_F11R1_FB7_Msk /*!< Filter bit 7 */
  7969. #define CAN_F11R1_FB8_Pos (8U)
  7970. #define CAN_F11R1_FB8_Msk (0x1UL << CAN_F11R1_FB8_Pos) /*!< 0x00000100 */
  7971. #define CAN_F11R1_FB8 CAN_F11R1_FB8_Msk /*!< Filter bit 8 */
  7972. #define CAN_F11R1_FB9_Pos (9U)
  7973. #define CAN_F11R1_FB9_Msk (0x1UL << CAN_F11R1_FB9_Pos) /*!< 0x00000200 */
  7974. #define CAN_F11R1_FB9 CAN_F11R1_FB9_Msk /*!< Filter bit 9 */
  7975. #define CAN_F11R1_FB10_Pos (10U)
  7976. #define CAN_F11R1_FB10_Msk (0x1UL << CAN_F11R1_FB10_Pos) /*!< 0x00000400 */
  7977. #define CAN_F11R1_FB10 CAN_F11R1_FB10_Msk /*!< Filter bit 10 */
  7978. #define CAN_F11R1_FB11_Pos (11U)
  7979. #define CAN_F11R1_FB11_Msk (0x1UL << CAN_F11R1_FB11_Pos) /*!< 0x00000800 */
  7980. #define CAN_F11R1_FB11 CAN_F11R1_FB11_Msk /*!< Filter bit 11 */
  7981. #define CAN_F11R1_FB12_Pos (12U)
  7982. #define CAN_F11R1_FB12_Msk (0x1UL << CAN_F11R1_FB12_Pos) /*!< 0x00001000 */
  7983. #define CAN_F11R1_FB12 CAN_F11R1_FB12_Msk /*!< Filter bit 12 */
  7984. #define CAN_F11R1_FB13_Pos (13U)
  7985. #define CAN_F11R1_FB13_Msk (0x1UL << CAN_F11R1_FB13_Pos) /*!< 0x00002000 */
  7986. #define CAN_F11R1_FB13 CAN_F11R1_FB13_Msk /*!< Filter bit 13 */
  7987. #define CAN_F11R1_FB14_Pos (14U)
  7988. #define CAN_F11R1_FB14_Msk (0x1UL << CAN_F11R1_FB14_Pos) /*!< 0x00004000 */
  7989. #define CAN_F11R1_FB14 CAN_F11R1_FB14_Msk /*!< Filter bit 14 */
  7990. #define CAN_F11R1_FB15_Pos (15U)
  7991. #define CAN_F11R1_FB15_Msk (0x1UL << CAN_F11R1_FB15_Pos) /*!< 0x00008000 */
  7992. #define CAN_F11R1_FB15 CAN_F11R1_FB15_Msk /*!< Filter bit 15 */
  7993. #define CAN_F11R1_FB16_Pos (16U)
  7994. #define CAN_F11R1_FB16_Msk (0x1UL << CAN_F11R1_FB16_Pos) /*!< 0x00010000 */
  7995. #define CAN_F11R1_FB16 CAN_F11R1_FB16_Msk /*!< Filter bit 16 */
  7996. #define CAN_F11R1_FB17_Pos (17U)
  7997. #define CAN_F11R1_FB17_Msk (0x1UL << CAN_F11R1_FB17_Pos) /*!< 0x00020000 */
  7998. #define CAN_F11R1_FB17 CAN_F11R1_FB17_Msk /*!< Filter bit 17 */
  7999. #define CAN_F11R1_FB18_Pos (18U)
  8000. #define CAN_F11R1_FB18_Msk (0x1UL << CAN_F11R1_FB18_Pos) /*!< 0x00040000 */
  8001. #define CAN_F11R1_FB18 CAN_F11R1_FB18_Msk /*!< Filter bit 18 */
  8002. #define CAN_F11R1_FB19_Pos (19U)
  8003. #define CAN_F11R1_FB19_Msk (0x1UL << CAN_F11R1_FB19_Pos) /*!< 0x00080000 */
  8004. #define CAN_F11R1_FB19 CAN_F11R1_FB19_Msk /*!< Filter bit 19 */
  8005. #define CAN_F11R1_FB20_Pos (20U)
  8006. #define CAN_F11R1_FB20_Msk (0x1UL << CAN_F11R1_FB20_Pos) /*!< 0x00100000 */
  8007. #define CAN_F11R1_FB20 CAN_F11R1_FB20_Msk /*!< Filter bit 20 */
  8008. #define CAN_F11R1_FB21_Pos (21U)
  8009. #define CAN_F11R1_FB21_Msk (0x1UL << CAN_F11R1_FB21_Pos) /*!< 0x00200000 */
  8010. #define CAN_F11R1_FB21 CAN_F11R1_FB21_Msk /*!< Filter bit 21 */
  8011. #define CAN_F11R1_FB22_Pos (22U)
  8012. #define CAN_F11R1_FB22_Msk (0x1UL << CAN_F11R1_FB22_Pos) /*!< 0x00400000 */
  8013. #define CAN_F11R1_FB22 CAN_F11R1_FB22_Msk /*!< Filter bit 22 */
  8014. #define CAN_F11R1_FB23_Pos (23U)
  8015. #define CAN_F11R1_FB23_Msk (0x1UL << CAN_F11R1_FB23_Pos) /*!< 0x00800000 */
  8016. #define CAN_F11R1_FB23 CAN_F11R1_FB23_Msk /*!< Filter bit 23 */
  8017. #define CAN_F11R1_FB24_Pos (24U)
  8018. #define CAN_F11R1_FB24_Msk (0x1UL << CAN_F11R1_FB24_Pos) /*!< 0x01000000 */
  8019. #define CAN_F11R1_FB24 CAN_F11R1_FB24_Msk /*!< Filter bit 24 */
  8020. #define CAN_F11R1_FB25_Pos (25U)
  8021. #define CAN_F11R1_FB25_Msk (0x1UL << CAN_F11R1_FB25_Pos) /*!< 0x02000000 */
  8022. #define CAN_F11R1_FB25 CAN_F11R1_FB25_Msk /*!< Filter bit 25 */
  8023. #define CAN_F11R1_FB26_Pos (26U)
  8024. #define CAN_F11R1_FB26_Msk (0x1UL << CAN_F11R1_FB26_Pos) /*!< 0x04000000 */
  8025. #define CAN_F11R1_FB26 CAN_F11R1_FB26_Msk /*!< Filter bit 26 */
  8026. #define CAN_F11R1_FB27_Pos (27U)
  8027. #define CAN_F11R1_FB27_Msk (0x1UL << CAN_F11R1_FB27_Pos) /*!< 0x08000000 */
  8028. #define CAN_F11R1_FB27 CAN_F11R1_FB27_Msk /*!< Filter bit 27 */
  8029. #define CAN_F11R1_FB28_Pos (28U)
  8030. #define CAN_F11R1_FB28_Msk (0x1UL << CAN_F11R1_FB28_Pos) /*!< 0x10000000 */
  8031. #define CAN_F11R1_FB28 CAN_F11R1_FB28_Msk /*!< Filter bit 28 */
  8032. #define CAN_F11R1_FB29_Pos (29U)
  8033. #define CAN_F11R1_FB29_Msk (0x1UL << CAN_F11R1_FB29_Pos) /*!< 0x20000000 */
  8034. #define CAN_F11R1_FB29 CAN_F11R1_FB29_Msk /*!< Filter bit 29 */
  8035. #define CAN_F11R1_FB30_Pos (30U)
  8036. #define CAN_F11R1_FB30_Msk (0x1UL << CAN_F11R1_FB30_Pos) /*!< 0x40000000 */
  8037. #define CAN_F11R1_FB30 CAN_F11R1_FB30_Msk /*!< Filter bit 30 */
  8038. #define CAN_F11R1_FB31_Pos (31U)
  8039. #define CAN_F11R1_FB31_Msk (0x1UL << CAN_F11R1_FB31_Pos) /*!< 0x80000000 */
  8040. #define CAN_F11R1_FB31 CAN_F11R1_FB31_Msk /*!< Filter bit 31 */
  8041. /******************* Bit definition for CAN_F12R1 register ******************/
  8042. #define CAN_F12R1_FB0_Pos (0U)
  8043. #define CAN_F12R1_FB0_Msk (0x1UL << CAN_F12R1_FB0_Pos) /*!< 0x00000001 */
  8044. #define CAN_F12R1_FB0 CAN_F12R1_FB0_Msk /*!< Filter bit 0 */
  8045. #define CAN_F12R1_FB1_Pos (1U)
  8046. #define CAN_F12R1_FB1_Msk (0x1UL << CAN_F12R1_FB1_Pos) /*!< 0x00000002 */
  8047. #define CAN_F12R1_FB1 CAN_F12R1_FB1_Msk /*!< Filter bit 1 */
  8048. #define CAN_F12R1_FB2_Pos (2U)
  8049. #define CAN_F12R1_FB2_Msk (0x1UL << CAN_F12R1_FB2_Pos) /*!< 0x00000004 */
  8050. #define CAN_F12R1_FB2 CAN_F12R1_FB2_Msk /*!< Filter bit 2 */
  8051. #define CAN_F12R1_FB3_Pos (3U)
  8052. #define CAN_F12R1_FB3_Msk (0x1UL << CAN_F12R1_FB3_Pos) /*!< 0x00000008 */
  8053. #define CAN_F12R1_FB3 CAN_F12R1_FB3_Msk /*!< Filter bit 3 */
  8054. #define CAN_F12R1_FB4_Pos (4U)
  8055. #define CAN_F12R1_FB4_Msk (0x1UL << CAN_F12R1_FB4_Pos) /*!< 0x00000010 */
  8056. #define CAN_F12R1_FB4 CAN_F12R1_FB4_Msk /*!< Filter bit 4 */
  8057. #define CAN_F12R1_FB5_Pos (5U)
  8058. #define CAN_F12R1_FB5_Msk (0x1UL << CAN_F12R1_FB5_Pos) /*!< 0x00000020 */
  8059. #define CAN_F12R1_FB5 CAN_F12R1_FB5_Msk /*!< Filter bit 5 */
  8060. #define CAN_F12R1_FB6_Pos (6U)
  8061. #define CAN_F12R1_FB6_Msk (0x1UL << CAN_F12R1_FB6_Pos) /*!< 0x00000040 */
  8062. #define CAN_F12R1_FB6 CAN_F12R1_FB6_Msk /*!< Filter bit 6 */
  8063. #define CAN_F12R1_FB7_Pos (7U)
  8064. #define CAN_F12R1_FB7_Msk (0x1UL << CAN_F12R1_FB7_Pos) /*!< 0x00000080 */
  8065. #define CAN_F12R1_FB7 CAN_F12R1_FB7_Msk /*!< Filter bit 7 */
  8066. #define CAN_F12R1_FB8_Pos (8U)
  8067. #define CAN_F12R1_FB8_Msk (0x1UL << CAN_F12R1_FB8_Pos) /*!< 0x00000100 */
  8068. #define CAN_F12R1_FB8 CAN_F12R1_FB8_Msk /*!< Filter bit 8 */
  8069. #define CAN_F12R1_FB9_Pos (9U)
  8070. #define CAN_F12R1_FB9_Msk (0x1UL << CAN_F12R1_FB9_Pos) /*!< 0x00000200 */
  8071. #define CAN_F12R1_FB9 CAN_F12R1_FB9_Msk /*!< Filter bit 9 */
  8072. #define CAN_F12R1_FB10_Pos (10U)
  8073. #define CAN_F12R1_FB10_Msk (0x1UL << CAN_F12R1_FB10_Pos) /*!< 0x00000400 */
  8074. #define CAN_F12R1_FB10 CAN_F12R1_FB10_Msk /*!< Filter bit 10 */
  8075. #define CAN_F12R1_FB11_Pos (11U)
  8076. #define CAN_F12R1_FB11_Msk (0x1UL << CAN_F12R1_FB11_Pos) /*!< 0x00000800 */
  8077. #define CAN_F12R1_FB11 CAN_F12R1_FB11_Msk /*!< Filter bit 11 */
  8078. #define CAN_F12R1_FB12_Pos (12U)
  8079. #define CAN_F12R1_FB12_Msk (0x1UL << CAN_F12R1_FB12_Pos) /*!< 0x00001000 */
  8080. #define CAN_F12R1_FB12 CAN_F12R1_FB12_Msk /*!< Filter bit 12 */
  8081. #define CAN_F12R1_FB13_Pos (13U)
  8082. #define CAN_F12R1_FB13_Msk (0x1UL << CAN_F12R1_FB13_Pos) /*!< 0x00002000 */
  8083. #define CAN_F12R1_FB13 CAN_F12R1_FB13_Msk /*!< Filter bit 13 */
  8084. #define CAN_F12R1_FB14_Pos (14U)
  8085. #define CAN_F12R1_FB14_Msk (0x1UL << CAN_F12R1_FB14_Pos) /*!< 0x00004000 */
  8086. #define CAN_F12R1_FB14 CAN_F12R1_FB14_Msk /*!< Filter bit 14 */
  8087. #define CAN_F12R1_FB15_Pos (15U)
  8088. #define CAN_F12R1_FB15_Msk (0x1UL << CAN_F12R1_FB15_Pos) /*!< 0x00008000 */
  8089. #define CAN_F12R1_FB15 CAN_F12R1_FB15_Msk /*!< Filter bit 15 */
  8090. #define CAN_F12R1_FB16_Pos (16U)
  8091. #define CAN_F12R1_FB16_Msk (0x1UL << CAN_F12R1_FB16_Pos) /*!< 0x00010000 */
  8092. #define CAN_F12R1_FB16 CAN_F12R1_FB16_Msk /*!< Filter bit 16 */
  8093. #define CAN_F12R1_FB17_Pos (17U)
  8094. #define CAN_F12R1_FB17_Msk (0x1UL << CAN_F12R1_FB17_Pos) /*!< 0x00020000 */
  8095. #define CAN_F12R1_FB17 CAN_F12R1_FB17_Msk /*!< Filter bit 17 */
  8096. #define CAN_F12R1_FB18_Pos (18U)
  8097. #define CAN_F12R1_FB18_Msk (0x1UL << CAN_F12R1_FB18_Pos) /*!< 0x00040000 */
  8098. #define CAN_F12R1_FB18 CAN_F12R1_FB18_Msk /*!< Filter bit 18 */
  8099. #define CAN_F12R1_FB19_Pos (19U)
  8100. #define CAN_F12R1_FB19_Msk (0x1UL << CAN_F12R1_FB19_Pos) /*!< 0x00080000 */
  8101. #define CAN_F12R1_FB19 CAN_F12R1_FB19_Msk /*!< Filter bit 19 */
  8102. #define CAN_F12R1_FB20_Pos (20U)
  8103. #define CAN_F12R1_FB20_Msk (0x1UL << CAN_F12R1_FB20_Pos) /*!< 0x00100000 */
  8104. #define CAN_F12R1_FB20 CAN_F12R1_FB20_Msk /*!< Filter bit 20 */
  8105. #define CAN_F12R1_FB21_Pos (21U)
  8106. #define CAN_F12R1_FB21_Msk (0x1UL << CAN_F12R1_FB21_Pos) /*!< 0x00200000 */
  8107. #define CAN_F12R1_FB21 CAN_F12R1_FB21_Msk /*!< Filter bit 21 */
  8108. #define CAN_F12R1_FB22_Pos (22U)
  8109. #define CAN_F12R1_FB22_Msk (0x1UL << CAN_F12R1_FB22_Pos) /*!< 0x00400000 */
  8110. #define CAN_F12R1_FB22 CAN_F12R1_FB22_Msk /*!< Filter bit 22 */
  8111. #define CAN_F12R1_FB23_Pos (23U)
  8112. #define CAN_F12R1_FB23_Msk (0x1UL << CAN_F12R1_FB23_Pos) /*!< 0x00800000 */
  8113. #define CAN_F12R1_FB23 CAN_F12R1_FB23_Msk /*!< Filter bit 23 */
  8114. #define CAN_F12R1_FB24_Pos (24U)
  8115. #define CAN_F12R1_FB24_Msk (0x1UL << CAN_F12R1_FB24_Pos) /*!< 0x01000000 */
  8116. #define CAN_F12R1_FB24 CAN_F12R1_FB24_Msk /*!< Filter bit 24 */
  8117. #define CAN_F12R1_FB25_Pos (25U)
  8118. #define CAN_F12R1_FB25_Msk (0x1UL << CAN_F12R1_FB25_Pos) /*!< 0x02000000 */
  8119. #define CAN_F12R1_FB25 CAN_F12R1_FB25_Msk /*!< Filter bit 25 */
  8120. #define CAN_F12R1_FB26_Pos (26U)
  8121. #define CAN_F12R1_FB26_Msk (0x1UL << CAN_F12R1_FB26_Pos) /*!< 0x04000000 */
  8122. #define CAN_F12R1_FB26 CAN_F12R1_FB26_Msk /*!< Filter bit 26 */
  8123. #define CAN_F12R1_FB27_Pos (27U)
  8124. #define CAN_F12R1_FB27_Msk (0x1UL << CAN_F12R1_FB27_Pos) /*!< 0x08000000 */
  8125. #define CAN_F12R1_FB27 CAN_F12R1_FB27_Msk /*!< Filter bit 27 */
  8126. #define CAN_F12R1_FB28_Pos (28U)
  8127. #define CAN_F12R1_FB28_Msk (0x1UL << CAN_F12R1_FB28_Pos) /*!< 0x10000000 */
  8128. #define CAN_F12R1_FB28 CAN_F12R1_FB28_Msk /*!< Filter bit 28 */
  8129. #define CAN_F12R1_FB29_Pos (29U)
  8130. #define CAN_F12R1_FB29_Msk (0x1UL << CAN_F12R1_FB29_Pos) /*!< 0x20000000 */
  8131. #define CAN_F12R1_FB29 CAN_F12R1_FB29_Msk /*!< Filter bit 29 */
  8132. #define CAN_F12R1_FB30_Pos (30U)
  8133. #define CAN_F12R1_FB30_Msk (0x1UL << CAN_F12R1_FB30_Pos) /*!< 0x40000000 */
  8134. #define CAN_F12R1_FB30 CAN_F12R1_FB30_Msk /*!< Filter bit 30 */
  8135. #define CAN_F12R1_FB31_Pos (31U)
  8136. #define CAN_F12R1_FB31_Msk (0x1UL << CAN_F12R1_FB31_Pos) /*!< 0x80000000 */
  8137. #define CAN_F12R1_FB31 CAN_F12R1_FB31_Msk /*!< Filter bit 31 */
  8138. /******************* Bit definition for CAN_F13R1 register ******************/
  8139. #define CAN_F13R1_FB0_Pos (0U)
  8140. #define CAN_F13R1_FB0_Msk (0x1UL << CAN_F13R1_FB0_Pos) /*!< 0x00000001 */
  8141. #define CAN_F13R1_FB0 CAN_F13R1_FB0_Msk /*!< Filter bit 0 */
  8142. #define CAN_F13R1_FB1_Pos (1U)
  8143. #define CAN_F13R1_FB1_Msk (0x1UL << CAN_F13R1_FB1_Pos) /*!< 0x00000002 */
  8144. #define CAN_F13R1_FB1 CAN_F13R1_FB1_Msk /*!< Filter bit 1 */
  8145. #define CAN_F13R1_FB2_Pos (2U)
  8146. #define CAN_F13R1_FB2_Msk (0x1UL << CAN_F13R1_FB2_Pos) /*!< 0x00000004 */
  8147. #define CAN_F13R1_FB2 CAN_F13R1_FB2_Msk /*!< Filter bit 2 */
  8148. #define CAN_F13R1_FB3_Pos (3U)
  8149. #define CAN_F13R1_FB3_Msk (0x1UL << CAN_F13R1_FB3_Pos) /*!< 0x00000008 */
  8150. #define CAN_F13R1_FB3 CAN_F13R1_FB3_Msk /*!< Filter bit 3 */
  8151. #define CAN_F13R1_FB4_Pos (4U)
  8152. #define CAN_F13R1_FB4_Msk (0x1UL << CAN_F13R1_FB4_Pos) /*!< 0x00000010 */
  8153. #define CAN_F13R1_FB4 CAN_F13R1_FB4_Msk /*!< Filter bit 4 */
  8154. #define CAN_F13R1_FB5_Pos (5U)
  8155. #define CAN_F13R1_FB5_Msk (0x1UL << CAN_F13R1_FB5_Pos) /*!< 0x00000020 */
  8156. #define CAN_F13R1_FB5 CAN_F13R1_FB5_Msk /*!< Filter bit 5 */
  8157. #define CAN_F13R1_FB6_Pos (6U)
  8158. #define CAN_F13R1_FB6_Msk (0x1UL << CAN_F13R1_FB6_Pos) /*!< 0x00000040 */
  8159. #define CAN_F13R1_FB6 CAN_F13R1_FB6_Msk /*!< Filter bit 6 */
  8160. #define CAN_F13R1_FB7_Pos (7U)
  8161. #define CAN_F13R1_FB7_Msk (0x1UL << CAN_F13R1_FB7_Pos) /*!< 0x00000080 */
  8162. #define CAN_F13R1_FB7 CAN_F13R1_FB7_Msk /*!< Filter bit 7 */
  8163. #define CAN_F13R1_FB8_Pos (8U)
  8164. #define CAN_F13R1_FB8_Msk (0x1UL << CAN_F13R1_FB8_Pos) /*!< 0x00000100 */
  8165. #define CAN_F13R1_FB8 CAN_F13R1_FB8_Msk /*!< Filter bit 8 */
  8166. #define CAN_F13R1_FB9_Pos (9U)
  8167. #define CAN_F13R1_FB9_Msk (0x1UL << CAN_F13R1_FB9_Pos) /*!< 0x00000200 */
  8168. #define CAN_F13R1_FB9 CAN_F13R1_FB9_Msk /*!< Filter bit 9 */
  8169. #define CAN_F13R1_FB10_Pos (10U)
  8170. #define CAN_F13R1_FB10_Msk (0x1UL << CAN_F13R1_FB10_Pos) /*!< 0x00000400 */
  8171. #define CAN_F13R1_FB10 CAN_F13R1_FB10_Msk /*!< Filter bit 10 */
  8172. #define CAN_F13R1_FB11_Pos (11U)
  8173. #define CAN_F13R1_FB11_Msk (0x1UL << CAN_F13R1_FB11_Pos) /*!< 0x00000800 */
  8174. #define CAN_F13R1_FB11 CAN_F13R1_FB11_Msk /*!< Filter bit 11 */
  8175. #define CAN_F13R1_FB12_Pos (12U)
  8176. #define CAN_F13R1_FB12_Msk (0x1UL << CAN_F13R1_FB12_Pos) /*!< 0x00001000 */
  8177. #define CAN_F13R1_FB12 CAN_F13R1_FB12_Msk /*!< Filter bit 12 */
  8178. #define CAN_F13R1_FB13_Pos (13U)
  8179. #define CAN_F13R1_FB13_Msk (0x1UL << CAN_F13R1_FB13_Pos) /*!< 0x00002000 */
  8180. #define CAN_F13R1_FB13 CAN_F13R1_FB13_Msk /*!< Filter bit 13 */
  8181. #define CAN_F13R1_FB14_Pos (14U)
  8182. #define CAN_F13R1_FB14_Msk (0x1UL << CAN_F13R1_FB14_Pos) /*!< 0x00004000 */
  8183. #define CAN_F13R1_FB14 CAN_F13R1_FB14_Msk /*!< Filter bit 14 */
  8184. #define CAN_F13R1_FB15_Pos (15U)
  8185. #define CAN_F13R1_FB15_Msk (0x1UL << CAN_F13R1_FB15_Pos) /*!< 0x00008000 */
  8186. #define CAN_F13R1_FB15 CAN_F13R1_FB15_Msk /*!< Filter bit 15 */
  8187. #define CAN_F13R1_FB16_Pos (16U)
  8188. #define CAN_F13R1_FB16_Msk (0x1UL << CAN_F13R1_FB16_Pos) /*!< 0x00010000 */
  8189. #define CAN_F13R1_FB16 CAN_F13R1_FB16_Msk /*!< Filter bit 16 */
  8190. #define CAN_F13R1_FB17_Pos (17U)
  8191. #define CAN_F13R1_FB17_Msk (0x1UL << CAN_F13R1_FB17_Pos) /*!< 0x00020000 */
  8192. #define CAN_F13R1_FB17 CAN_F13R1_FB17_Msk /*!< Filter bit 17 */
  8193. #define CAN_F13R1_FB18_Pos (18U)
  8194. #define CAN_F13R1_FB18_Msk (0x1UL << CAN_F13R1_FB18_Pos) /*!< 0x00040000 */
  8195. #define CAN_F13R1_FB18 CAN_F13R1_FB18_Msk /*!< Filter bit 18 */
  8196. #define CAN_F13R1_FB19_Pos (19U)
  8197. #define CAN_F13R1_FB19_Msk (0x1UL << CAN_F13R1_FB19_Pos) /*!< 0x00080000 */
  8198. #define CAN_F13R1_FB19 CAN_F13R1_FB19_Msk /*!< Filter bit 19 */
  8199. #define CAN_F13R1_FB20_Pos (20U)
  8200. #define CAN_F13R1_FB20_Msk (0x1UL << CAN_F13R1_FB20_Pos) /*!< 0x00100000 */
  8201. #define CAN_F13R1_FB20 CAN_F13R1_FB20_Msk /*!< Filter bit 20 */
  8202. #define CAN_F13R1_FB21_Pos (21U)
  8203. #define CAN_F13R1_FB21_Msk (0x1UL << CAN_F13R1_FB21_Pos) /*!< 0x00200000 */
  8204. #define CAN_F13R1_FB21 CAN_F13R1_FB21_Msk /*!< Filter bit 21 */
  8205. #define CAN_F13R1_FB22_Pos (22U)
  8206. #define CAN_F13R1_FB22_Msk (0x1UL << CAN_F13R1_FB22_Pos) /*!< 0x00400000 */
  8207. #define CAN_F13R1_FB22 CAN_F13R1_FB22_Msk /*!< Filter bit 22 */
  8208. #define CAN_F13R1_FB23_Pos (23U)
  8209. #define CAN_F13R1_FB23_Msk (0x1UL << CAN_F13R1_FB23_Pos) /*!< 0x00800000 */
  8210. #define CAN_F13R1_FB23 CAN_F13R1_FB23_Msk /*!< Filter bit 23 */
  8211. #define CAN_F13R1_FB24_Pos (24U)
  8212. #define CAN_F13R1_FB24_Msk (0x1UL << CAN_F13R1_FB24_Pos) /*!< 0x01000000 */
  8213. #define CAN_F13R1_FB24 CAN_F13R1_FB24_Msk /*!< Filter bit 24 */
  8214. #define CAN_F13R1_FB25_Pos (25U)
  8215. #define CAN_F13R1_FB25_Msk (0x1UL << CAN_F13R1_FB25_Pos) /*!< 0x02000000 */
  8216. #define CAN_F13R1_FB25 CAN_F13R1_FB25_Msk /*!< Filter bit 25 */
  8217. #define CAN_F13R1_FB26_Pos (26U)
  8218. #define CAN_F13R1_FB26_Msk (0x1UL << CAN_F13R1_FB26_Pos) /*!< 0x04000000 */
  8219. #define CAN_F13R1_FB26 CAN_F13R1_FB26_Msk /*!< Filter bit 26 */
  8220. #define CAN_F13R1_FB27_Pos (27U)
  8221. #define CAN_F13R1_FB27_Msk (0x1UL << CAN_F13R1_FB27_Pos) /*!< 0x08000000 */
  8222. #define CAN_F13R1_FB27 CAN_F13R1_FB27_Msk /*!< Filter bit 27 */
  8223. #define CAN_F13R1_FB28_Pos (28U)
  8224. #define CAN_F13R1_FB28_Msk (0x1UL << CAN_F13R1_FB28_Pos) /*!< 0x10000000 */
  8225. #define CAN_F13R1_FB28 CAN_F13R1_FB28_Msk /*!< Filter bit 28 */
  8226. #define CAN_F13R1_FB29_Pos (29U)
  8227. #define CAN_F13R1_FB29_Msk (0x1UL << CAN_F13R1_FB29_Pos) /*!< 0x20000000 */
  8228. #define CAN_F13R1_FB29 CAN_F13R1_FB29_Msk /*!< Filter bit 29 */
  8229. #define CAN_F13R1_FB30_Pos (30U)
  8230. #define CAN_F13R1_FB30_Msk (0x1UL << CAN_F13R1_FB30_Pos) /*!< 0x40000000 */
  8231. #define CAN_F13R1_FB30 CAN_F13R1_FB30_Msk /*!< Filter bit 30 */
  8232. #define CAN_F13R1_FB31_Pos (31U)
  8233. #define CAN_F13R1_FB31_Msk (0x1UL << CAN_F13R1_FB31_Pos) /*!< 0x80000000 */
  8234. #define CAN_F13R1_FB31 CAN_F13R1_FB31_Msk /*!< Filter bit 31 */
  8235. /******************* Bit definition for CAN_F0R2 register *******************/
  8236. #define CAN_F0R2_FB0_Pos (0U)
  8237. #define CAN_F0R2_FB0_Msk (0x1UL << CAN_F0R2_FB0_Pos) /*!< 0x00000001 */
  8238. #define CAN_F0R2_FB0 CAN_F0R2_FB0_Msk /*!< Filter bit 0 */
  8239. #define CAN_F0R2_FB1_Pos (1U)
  8240. #define CAN_F0R2_FB1_Msk (0x1UL << CAN_F0R2_FB1_Pos) /*!< 0x00000002 */
  8241. #define CAN_F0R2_FB1 CAN_F0R2_FB1_Msk /*!< Filter bit 1 */
  8242. #define CAN_F0R2_FB2_Pos (2U)
  8243. #define CAN_F0R2_FB2_Msk (0x1UL << CAN_F0R2_FB2_Pos) /*!< 0x00000004 */
  8244. #define CAN_F0R2_FB2 CAN_F0R2_FB2_Msk /*!< Filter bit 2 */
  8245. #define CAN_F0R2_FB3_Pos (3U)
  8246. #define CAN_F0R2_FB3_Msk (0x1UL << CAN_F0R2_FB3_Pos) /*!< 0x00000008 */
  8247. #define CAN_F0R2_FB3 CAN_F0R2_FB3_Msk /*!< Filter bit 3 */
  8248. #define CAN_F0R2_FB4_Pos (4U)
  8249. #define CAN_F0R2_FB4_Msk (0x1UL << CAN_F0R2_FB4_Pos) /*!< 0x00000010 */
  8250. #define CAN_F0R2_FB4 CAN_F0R2_FB4_Msk /*!< Filter bit 4 */
  8251. #define CAN_F0R2_FB5_Pos (5U)
  8252. #define CAN_F0R2_FB5_Msk (0x1UL << CAN_F0R2_FB5_Pos) /*!< 0x00000020 */
  8253. #define CAN_F0R2_FB5 CAN_F0R2_FB5_Msk /*!< Filter bit 5 */
  8254. #define CAN_F0R2_FB6_Pos (6U)
  8255. #define CAN_F0R2_FB6_Msk (0x1UL << CAN_F0R2_FB6_Pos) /*!< 0x00000040 */
  8256. #define CAN_F0R2_FB6 CAN_F0R2_FB6_Msk /*!< Filter bit 6 */
  8257. #define CAN_F0R2_FB7_Pos (7U)
  8258. #define CAN_F0R2_FB7_Msk (0x1UL << CAN_F0R2_FB7_Pos) /*!< 0x00000080 */
  8259. #define CAN_F0R2_FB7 CAN_F0R2_FB7_Msk /*!< Filter bit 7 */
  8260. #define CAN_F0R2_FB8_Pos (8U)
  8261. #define CAN_F0R2_FB8_Msk (0x1UL << CAN_F0R2_FB8_Pos) /*!< 0x00000100 */
  8262. #define CAN_F0R2_FB8 CAN_F0R2_FB8_Msk /*!< Filter bit 8 */
  8263. #define CAN_F0R2_FB9_Pos (9U)
  8264. #define CAN_F0R2_FB9_Msk (0x1UL << CAN_F0R2_FB9_Pos) /*!< 0x00000200 */
  8265. #define CAN_F0R2_FB9 CAN_F0R2_FB9_Msk /*!< Filter bit 9 */
  8266. #define CAN_F0R2_FB10_Pos (10U)
  8267. #define CAN_F0R2_FB10_Msk (0x1UL << CAN_F0R2_FB10_Pos) /*!< 0x00000400 */
  8268. #define CAN_F0R2_FB10 CAN_F0R2_FB10_Msk /*!< Filter bit 10 */
  8269. #define CAN_F0R2_FB11_Pos (11U)
  8270. #define CAN_F0R2_FB11_Msk (0x1UL << CAN_F0R2_FB11_Pos) /*!< 0x00000800 */
  8271. #define CAN_F0R2_FB11 CAN_F0R2_FB11_Msk /*!< Filter bit 11 */
  8272. #define CAN_F0R2_FB12_Pos (12U)
  8273. #define CAN_F0R2_FB12_Msk (0x1UL << CAN_F0R2_FB12_Pos) /*!< 0x00001000 */
  8274. #define CAN_F0R2_FB12 CAN_F0R2_FB12_Msk /*!< Filter bit 12 */
  8275. #define CAN_F0R2_FB13_Pos (13U)
  8276. #define CAN_F0R2_FB13_Msk (0x1UL << CAN_F0R2_FB13_Pos) /*!< 0x00002000 */
  8277. #define CAN_F0R2_FB13 CAN_F0R2_FB13_Msk /*!< Filter bit 13 */
  8278. #define CAN_F0R2_FB14_Pos (14U)
  8279. #define CAN_F0R2_FB14_Msk (0x1UL << CAN_F0R2_FB14_Pos) /*!< 0x00004000 */
  8280. #define CAN_F0R2_FB14 CAN_F0R2_FB14_Msk /*!< Filter bit 14 */
  8281. #define CAN_F0R2_FB15_Pos (15U)
  8282. #define CAN_F0R2_FB15_Msk (0x1UL << CAN_F0R2_FB15_Pos) /*!< 0x00008000 */
  8283. #define CAN_F0R2_FB15 CAN_F0R2_FB15_Msk /*!< Filter bit 15 */
  8284. #define CAN_F0R2_FB16_Pos (16U)
  8285. #define CAN_F0R2_FB16_Msk (0x1UL << CAN_F0R2_FB16_Pos) /*!< 0x00010000 */
  8286. #define CAN_F0R2_FB16 CAN_F0R2_FB16_Msk /*!< Filter bit 16 */
  8287. #define CAN_F0R2_FB17_Pos (17U)
  8288. #define CAN_F0R2_FB17_Msk (0x1UL << CAN_F0R2_FB17_Pos) /*!< 0x00020000 */
  8289. #define CAN_F0R2_FB17 CAN_F0R2_FB17_Msk /*!< Filter bit 17 */
  8290. #define CAN_F0R2_FB18_Pos (18U)
  8291. #define CAN_F0R2_FB18_Msk (0x1UL << CAN_F0R2_FB18_Pos) /*!< 0x00040000 */
  8292. #define CAN_F0R2_FB18 CAN_F0R2_FB18_Msk /*!< Filter bit 18 */
  8293. #define CAN_F0R2_FB19_Pos (19U)
  8294. #define CAN_F0R2_FB19_Msk (0x1UL << CAN_F0R2_FB19_Pos) /*!< 0x00080000 */
  8295. #define CAN_F0R2_FB19 CAN_F0R2_FB19_Msk /*!< Filter bit 19 */
  8296. #define CAN_F0R2_FB20_Pos (20U)
  8297. #define CAN_F0R2_FB20_Msk (0x1UL << CAN_F0R2_FB20_Pos) /*!< 0x00100000 */
  8298. #define CAN_F0R2_FB20 CAN_F0R2_FB20_Msk /*!< Filter bit 20 */
  8299. #define CAN_F0R2_FB21_Pos (21U)
  8300. #define CAN_F0R2_FB21_Msk (0x1UL << CAN_F0R2_FB21_Pos) /*!< 0x00200000 */
  8301. #define CAN_F0R2_FB21 CAN_F0R2_FB21_Msk /*!< Filter bit 21 */
  8302. #define CAN_F0R2_FB22_Pos (22U)
  8303. #define CAN_F0R2_FB22_Msk (0x1UL << CAN_F0R2_FB22_Pos) /*!< 0x00400000 */
  8304. #define CAN_F0R2_FB22 CAN_F0R2_FB22_Msk /*!< Filter bit 22 */
  8305. #define CAN_F0R2_FB23_Pos (23U)
  8306. #define CAN_F0R2_FB23_Msk (0x1UL << CAN_F0R2_FB23_Pos) /*!< 0x00800000 */
  8307. #define CAN_F0R2_FB23 CAN_F0R2_FB23_Msk /*!< Filter bit 23 */
  8308. #define CAN_F0R2_FB24_Pos (24U)
  8309. #define CAN_F0R2_FB24_Msk (0x1UL << CAN_F0R2_FB24_Pos) /*!< 0x01000000 */
  8310. #define CAN_F0R2_FB24 CAN_F0R2_FB24_Msk /*!< Filter bit 24 */
  8311. #define CAN_F0R2_FB25_Pos (25U)
  8312. #define CAN_F0R2_FB25_Msk (0x1UL << CAN_F0R2_FB25_Pos) /*!< 0x02000000 */
  8313. #define CAN_F0R2_FB25 CAN_F0R2_FB25_Msk /*!< Filter bit 25 */
  8314. #define CAN_F0R2_FB26_Pos (26U)
  8315. #define CAN_F0R2_FB26_Msk (0x1UL << CAN_F0R2_FB26_Pos) /*!< 0x04000000 */
  8316. #define CAN_F0R2_FB26 CAN_F0R2_FB26_Msk /*!< Filter bit 26 */
  8317. #define CAN_F0R2_FB27_Pos (27U)
  8318. #define CAN_F0R2_FB27_Msk (0x1UL << CAN_F0R2_FB27_Pos) /*!< 0x08000000 */
  8319. #define CAN_F0R2_FB27 CAN_F0R2_FB27_Msk /*!< Filter bit 27 */
  8320. #define CAN_F0R2_FB28_Pos (28U)
  8321. #define CAN_F0R2_FB28_Msk (0x1UL << CAN_F0R2_FB28_Pos) /*!< 0x10000000 */
  8322. #define CAN_F0R2_FB28 CAN_F0R2_FB28_Msk /*!< Filter bit 28 */
  8323. #define CAN_F0R2_FB29_Pos (29U)
  8324. #define CAN_F0R2_FB29_Msk (0x1UL << CAN_F0R2_FB29_Pos) /*!< 0x20000000 */
  8325. #define CAN_F0R2_FB29 CAN_F0R2_FB29_Msk /*!< Filter bit 29 */
  8326. #define CAN_F0R2_FB30_Pos (30U)
  8327. #define CAN_F0R2_FB30_Msk (0x1UL << CAN_F0R2_FB30_Pos) /*!< 0x40000000 */
  8328. #define CAN_F0R2_FB30 CAN_F0R2_FB30_Msk /*!< Filter bit 30 */
  8329. #define CAN_F0R2_FB31_Pos (31U)
  8330. #define CAN_F0R2_FB31_Msk (0x1UL << CAN_F0R2_FB31_Pos) /*!< 0x80000000 */
  8331. #define CAN_F0R2_FB31 CAN_F0R2_FB31_Msk /*!< Filter bit 31 */
  8332. /******************* Bit definition for CAN_F1R2 register *******************/
  8333. #define CAN_F1R2_FB0_Pos (0U)
  8334. #define CAN_F1R2_FB0_Msk (0x1UL << CAN_F1R2_FB0_Pos) /*!< 0x00000001 */
  8335. #define CAN_F1R2_FB0 CAN_F1R2_FB0_Msk /*!< Filter bit 0 */
  8336. #define CAN_F1R2_FB1_Pos (1U)
  8337. #define CAN_F1R2_FB1_Msk (0x1UL << CAN_F1R2_FB1_Pos) /*!< 0x00000002 */
  8338. #define CAN_F1R2_FB1 CAN_F1R2_FB1_Msk /*!< Filter bit 1 */
  8339. #define CAN_F1R2_FB2_Pos (2U)
  8340. #define CAN_F1R2_FB2_Msk (0x1UL << CAN_F1R2_FB2_Pos) /*!< 0x00000004 */
  8341. #define CAN_F1R2_FB2 CAN_F1R2_FB2_Msk /*!< Filter bit 2 */
  8342. #define CAN_F1R2_FB3_Pos (3U)
  8343. #define CAN_F1R2_FB3_Msk (0x1UL << CAN_F1R2_FB3_Pos) /*!< 0x00000008 */
  8344. #define CAN_F1R2_FB3 CAN_F1R2_FB3_Msk /*!< Filter bit 3 */
  8345. #define CAN_F1R2_FB4_Pos (4U)
  8346. #define CAN_F1R2_FB4_Msk (0x1UL << CAN_F1R2_FB4_Pos) /*!< 0x00000010 */
  8347. #define CAN_F1R2_FB4 CAN_F1R2_FB4_Msk /*!< Filter bit 4 */
  8348. #define CAN_F1R2_FB5_Pos (5U)
  8349. #define CAN_F1R2_FB5_Msk (0x1UL << CAN_F1R2_FB5_Pos) /*!< 0x00000020 */
  8350. #define CAN_F1R2_FB5 CAN_F1R2_FB5_Msk /*!< Filter bit 5 */
  8351. #define CAN_F1R2_FB6_Pos (6U)
  8352. #define CAN_F1R2_FB6_Msk (0x1UL << CAN_F1R2_FB6_Pos) /*!< 0x00000040 */
  8353. #define CAN_F1R2_FB6 CAN_F1R2_FB6_Msk /*!< Filter bit 6 */
  8354. #define CAN_F1R2_FB7_Pos (7U)
  8355. #define CAN_F1R2_FB7_Msk (0x1UL << CAN_F1R2_FB7_Pos) /*!< 0x00000080 */
  8356. #define CAN_F1R2_FB7 CAN_F1R2_FB7_Msk /*!< Filter bit 7 */
  8357. #define CAN_F1R2_FB8_Pos (8U)
  8358. #define CAN_F1R2_FB8_Msk (0x1UL << CAN_F1R2_FB8_Pos) /*!< 0x00000100 */
  8359. #define CAN_F1R2_FB8 CAN_F1R2_FB8_Msk /*!< Filter bit 8 */
  8360. #define CAN_F1R2_FB9_Pos (9U)
  8361. #define CAN_F1R2_FB9_Msk (0x1UL << CAN_F1R2_FB9_Pos) /*!< 0x00000200 */
  8362. #define CAN_F1R2_FB9 CAN_F1R2_FB9_Msk /*!< Filter bit 9 */
  8363. #define CAN_F1R2_FB10_Pos (10U)
  8364. #define CAN_F1R2_FB10_Msk (0x1UL << CAN_F1R2_FB10_Pos) /*!< 0x00000400 */
  8365. #define CAN_F1R2_FB10 CAN_F1R2_FB10_Msk /*!< Filter bit 10 */
  8366. #define CAN_F1R2_FB11_Pos (11U)
  8367. #define CAN_F1R2_FB11_Msk (0x1UL << CAN_F1R2_FB11_Pos) /*!< 0x00000800 */
  8368. #define CAN_F1R2_FB11 CAN_F1R2_FB11_Msk /*!< Filter bit 11 */
  8369. #define CAN_F1R2_FB12_Pos (12U)
  8370. #define CAN_F1R2_FB12_Msk (0x1UL << CAN_F1R2_FB12_Pos) /*!< 0x00001000 */
  8371. #define CAN_F1R2_FB12 CAN_F1R2_FB12_Msk /*!< Filter bit 12 */
  8372. #define CAN_F1R2_FB13_Pos (13U)
  8373. #define CAN_F1R2_FB13_Msk (0x1UL << CAN_F1R2_FB13_Pos) /*!< 0x00002000 */
  8374. #define CAN_F1R2_FB13 CAN_F1R2_FB13_Msk /*!< Filter bit 13 */
  8375. #define CAN_F1R2_FB14_Pos (14U)
  8376. #define CAN_F1R2_FB14_Msk (0x1UL << CAN_F1R2_FB14_Pos) /*!< 0x00004000 */
  8377. #define CAN_F1R2_FB14 CAN_F1R2_FB14_Msk /*!< Filter bit 14 */
  8378. #define CAN_F1R2_FB15_Pos (15U)
  8379. #define CAN_F1R2_FB15_Msk (0x1UL << CAN_F1R2_FB15_Pos) /*!< 0x00008000 */
  8380. #define CAN_F1R2_FB15 CAN_F1R2_FB15_Msk /*!< Filter bit 15 */
  8381. #define CAN_F1R2_FB16_Pos (16U)
  8382. #define CAN_F1R2_FB16_Msk (0x1UL << CAN_F1R2_FB16_Pos) /*!< 0x00010000 */
  8383. #define CAN_F1R2_FB16 CAN_F1R2_FB16_Msk /*!< Filter bit 16 */
  8384. #define CAN_F1R2_FB17_Pos (17U)
  8385. #define CAN_F1R2_FB17_Msk (0x1UL << CAN_F1R2_FB17_Pos) /*!< 0x00020000 */
  8386. #define CAN_F1R2_FB17 CAN_F1R2_FB17_Msk /*!< Filter bit 17 */
  8387. #define CAN_F1R2_FB18_Pos (18U)
  8388. #define CAN_F1R2_FB18_Msk (0x1UL << CAN_F1R2_FB18_Pos) /*!< 0x00040000 */
  8389. #define CAN_F1R2_FB18 CAN_F1R2_FB18_Msk /*!< Filter bit 18 */
  8390. #define CAN_F1R2_FB19_Pos (19U)
  8391. #define CAN_F1R2_FB19_Msk (0x1UL << CAN_F1R2_FB19_Pos) /*!< 0x00080000 */
  8392. #define CAN_F1R2_FB19 CAN_F1R2_FB19_Msk /*!< Filter bit 19 */
  8393. #define CAN_F1R2_FB20_Pos (20U)
  8394. #define CAN_F1R2_FB20_Msk (0x1UL << CAN_F1R2_FB20_Pos) /*!< 0x00100000 */
  8395. #define CAN_F1R2_FB20 CAN_F1R2_FB20_Msk /*!< Filter bit 20 */
  8396. #define CAN_F1R2_FB21_Pos (21U)
  8397. #define CAN_F1R2_FB21_Msk (0x1UL << CAN_F1R2_FB21_Pos) /*!< 0x00200000 */
  8398. #define CAN_F1R2_FB21 CAN_F1R2_FB21_Msk /*!< Filter bit 21 */
  8399. #define CAN_F1R2_FB22_Pos (22U)
  8400. #define CAN_F1R2_FB22_Msk (0x1UL << CAN_F1R2_FB22_Pos) /*!< 0x00400000 */
  8401. #define CAN_F1R2_FB22 CAN_F1R2_FB22_Msk /*!< Filter bit 22 */
  8402. #define CAN_F1R2_FB23_Pos (23U)
  8403. #define CAN_F1R2_FB23_Msk (0x1UL << CAN_F1R2_FB23_Pos) /*!< 0x00800000 */
  8404. #define CAN_F1R2_FB23 CAN_F1R2_FB23_Msk /*!< Filter bit 23 */
  8405. #define CAN_F1R2_FB24_Pos (24U)
  8406. #define CAN_F1R2_FB24_Msk (0x1UL << CAN_F1R2_FB24_Pos) /*!< 0x01000000 */
  8407. #define CAN_F1R2_FB24 CAN_F1R2_FB24_Msk /*!< Filter bit 24 */
  8408. #define CAN_F1R2_FB25_Pos (25U)
  8409. #define CAN_F1R2_FB25_Msk (0x1UL << CAN_F1R2_FB25_Pos) /*!< 0x02000000 */
  8410. #define CAN_F1R2_FB25 CAN_F1R2_FB25_Msk /*!< Filter bit 25 */
  8411. #define CAN_F1R2_FB26_Pos (26U)
  8412. #define CAN_F1R2_FB26_Msk (0x1UL << CAN_F1R2_FB26_Pos) /*!< 0x04000000 */
  8413. #define CAN_F1R2_FB26 CAN_F1R2_FB26_Msk /*!< Filter bit 26 */
  8414. #define CAN_F1R2_FB27_Pos (27U)
  8415. #define CAN_F1R2_FB27_Msk (0x1UL << CAN_F1R2_FB27_Pos) /*!< 0x08000000 */
  8416. #define CAN_F1R2_FB27 CAN_F1R2_FB27_Msk /*!< Filter bit 27 */
  8417. #define CAN_F1R2_FB28_Pos (28U)
  8418. #define CAN_F1R2_FB28_Msk (0x1UL << CAN_F1R2_FB28_Pos) /*!< 0x10000000 */
  8419. #define CAN_F1R2_FB28 CAN_F1R2_FB28_Msk /*!< Filter bit 28 */
  8420. #define CAN_F1R2_FB29_Pos (29U)
  8421. #define CAN_F1R2_FB29_Msk (0x1UL << CAN_F1R2_FB29_Pos) /*!< 0x20000000 */
  8422. #define CAN_F1R2_FB29 CAN_F1R2_FB29_Msk /*!< Filter bit 29 */
  8423. #define CAN_F1R2_FB30_Pos (30U)
  8424. #define CAN_F1R2_FB30_Msk (0x1UL << CAN_F1R2_FB30_Pos) /*!< 0x40000000 */
  8425. #define CAN_F1R2_FB30 CAN_F1R2_FB30_Msk /*!< Filter bit 30 */
  8426. #define CAN_F1R2_FB31_Pos (31U)
  8427. #define CAN_F1R2_FB31_Msk (0x1UL << CAN_F1R2_FB31_Pos) /*!< 0x80000000 */
  8428. #define CAN_F1R2_FB31 CAN_F1R2_FB31_Msk /*!< Filter bit 31 */
  8429. /******************* Bit definition for CAN_F2R2 register *******************/
  8430. #define CAN_F2R2_FB0_Pos (0U)
  8431. #define CAN_F2R2_FB0_Msk (0x1UL << CAN_F2R2_FB0_Pos) /*!< 0x00000001 */
  8432. #define CAN_F2R2_FB0 CAN_F2R2_FB0_Msk /*!< Filter bit 0 */
  8433. #define CAN_F2R2_FB1_Pos (1U)
  8434. #define CAN_F2R2_FB1_Msk (0x1UL << CAN_F2R2_FB1_Pos) /*!< 0x00000002 */
  8435. #define CAN_F2R2_FB1 CAN_F2R2_FB1_Msk /*!< Filter bit 1 */
  8436. #define CAN_F2R2_FB2_Pos (2U)
  8437. #define CAN_F2R2_FB2_Msk (0x1UL << CAN_F2R2_FB2_Pos) /*!< 0x00000004 */
  8438. #define CAN_F2R2_FB2 CAN_F2R2_FB2_Msk /*!< Filter bit 2 */
  8439. #define CAN_F2R2_FB3_Pos (3U)
  8440. #define CAN_F2R2_FB3_Msk (0x1UL << CAN_F2R2_FB3_Pos) /*!< 0x00000008 */
  8441. #define CAN_F2R2_FB3 CAN_F2R2_FB3_Msk /*!< Filter bit 3 */
  8442. #define CAN_F2R2_FB4_Pos (4U)
  8443. #define CAN_F2R2_FB4_Msk (0x1UL << CAN_F2R2_FB4_Pos) /*!< 0x00000010 */
  8444. #define CAN_F2R2_FB4 CAN_F2R2_FB4_Msk /*!< Filter bit 4 */
  8445. #define CAN_F2R2_FB5_Pos (5U)
  8446. #define CAN_F2R2_FB5_Msk (0x1UL << CAN_F2R2_FB5_Pos) /*!< 0x00000020 */
  8447. #define CAN_F2R2_FB5 CAN_F2R2_FB5_Msk /*!< Filter bit 5 */
  8448. #define CAN_F2R2_FB6_Pos (6U)
  8449. #define CAN_F2R2_FB6_Msk (0x1UL << CAN_F2R2_FB6_Pos) /*!< 0x00000040 */
  8450. #define CAN_F2R2_FB6 CAN_F2R2_FB6_Msk /*!< Filter bit 6 */
  8451. #define CAN_F2R2_FB7_Pos (7U)
  8452. #define CAN_F2R2_FB7_Msk (0x1UL << CAN_F2R2_FB7_Pos) /*!< 0x00000080 */
  8453. #define CAN_F2R2_FB7 CAN_F2R2_FB7_Msk /*!< Filter bit 7 */
  8454. #define CAN_F2R2_FB8_Pos (8U)
  8455. #define CAN_F2R2_FB8_Msk (0x1UL << CAN_F2R2_FB8_Pos) /*!< 0x00000100 */
  8456. #define CAN_F2R2_FB8 CAN_F2R2_FB8_Msk /*!< Filter bit 8 */
  8457. #define CAN_F2R2_FB9_Pos (9U)
  8458. #define CAN_F2R2_FB9_Msk (0x1UL << CAN_F2R2_FB9_Pos) /*!< 0x00000200 */
  8459. #define CAN_F2R2_FB9 CAN_F2R2_FB9_Msk /*!< Filter bit 9 */
  8460. #define CAN_F2R2_FB10_Pos (10U)
  8461. #define CAN_F2R2_FB10_Msk (0x1UL << CAN_F2R2_FB10_Pos) /*!< 0x00000400 */
  8462. #define CAN_F2R2_FB10 CAN_F2R2_FB10_Msk /*!< Filter bit 10 */
  8463. #define CAN_F2R2_FB11_Pos (11U)
  8464. #define CAN_F2R2_FB11_Msk (0x1UL << CAN_F2R2_FB11_Pos) /*!< 0x00000800 */
  8465. #define CAN_F2R2_FB11 CAN_F2R2_FB11_Msk /*!< Filter bit 11 */
  8466. #define CAN_F2R2_FB12_Pos (12U)
  8467. #define CAN_F2R2_FB12_Msk (0x1UL << CAN_F2R2_FB12_Pos) /*!< 0x00001000 */
  8468. #define CAN_F2R2_FB12 CAN_F2R2_FB12_Msk /*!< Filter bit 12 */
  8469. #define CAN_F2R2_FB13_Pos (13U)
  8470. #define CAN_F2R2_FB13_Msk (0x1UL << CAN_F2R2_FB13_Pos) /*!< 0x00002000 */
  8471. #define CAN_F2R2_FB13 CAN_F2R2_FB13_Msk /*!< Filter bit 13 */
  8472. #define CAN_F2R2_FB14_Pos (14U)
  8473. #define CAN_F2R2_FB14_Msk (0x1UL << CAN_F2R2_FB14_Pos) /*!< 0x00004000 */
  8474. #define CAN_F2R2_FB14 CAN_F2R2_FB14_Msk /*!< Filter bit 14 */
  8475. #define CAN_F2R2_FB15_Pos (15U)
  8476. #define CAN_F2R2_FB15_Msk (0x1UL << CAN_F2R2_FB15_Pos) /*!< 0x00008000 */
  8477. #define CAN_F2R2_FB15 CAN_F2R2_FB15_Msk /*!< Filter bit 15 */
  8478. #define CAN_F2R2_FB16_Pos (16U)
  8479. #define CAN_F2R2_FB16_Msk (0x1UL << CAN_F2R2_FB16_Pos) /*!< 0x00010000 */
  8480. #define CAN_F2R2_FB16 CAN_F2R2_FB16_Msk /*!< Filter bit 16 */
  8481. #define CAN_F2R2_FB17_Pos (17U)
  8482. #define CAN_F2R2_FB17_Msk (0x1UL << CAN_F2R2_FB17_Pos) /*!< 0x00020000 */
  8483. #define CAN_F2R2_FB17 CAN_F2R2_FB17_Msk /*!< Filter bit 17 */
  8484. #define CAN_F2R2_FB18_Pos (18U)
  8485. #define CAN_F2R2_FB18_Msk (0x1UL << CAN_F2R2_FB18_Pos) /*!< 0x00040000 */
  8486. #define CAN_F2R2_FB18 CAN_F2R2_FB18_Msk /*!< Filter bit 18 */
  8487. #define CAN_F2R2_FB19_Pos (19U)
  8488. #define CAN_F2R2_FB19_Msk (0x1UL << CAN_F2R2_FB19_Pos) /*!< 0x00080000 */
  8489. #define CAN_F2R2_FB19 CAN_F2R2_FB19_Msk /*!< Filter bit 19 */
  8490. #define CAN_F2R2_FB20_Pos (20U)
  8491. #define CAN_F2R2_FB20_Msk (0x1UL << CAN_F2R2_FB20_Pos) /*!< 0x00100000 */
  8492. #define CAN_F2R2_FB20 CAN_F2R2_FB20_Msk /*!< Filter bit 20 */
  8493. #define CAN_F2R2_FB21_Pos (21U)
  8494. #define CAN_F2R2_FB21_Msk (0x1UL << CAN_F2R2_FB21_Pos) /*!< 0x00200000 */
  8495. #define CAN_F2R2_FB21 CAN_F2R2_FB21_Msk /*!< Filter bit 21 */
  8496. #define CAN_F2R2_FB22_Pos (22U)
  8497. #define CAN_F2R2_FB22_Msk (0x1UL << CAN_F2R2_FB22_Pos) /*!< 0x00400000 */
  8498. #define CAN_F2R2_FB22 CAN_F2R2_FB22_Msk /*!< Filter bit 22 */
  8499. #define CAN_F2R2_FB23_Pos (23U)
  8500. #define CAN_F2R2_FB23_Msk (0x1UL << CAN_F2R2_FB23_Pos) /*!< 0x00800000 */
  8501. #define CAN_F2R2_FB23 CAN_F2R2_FB23_Msk /*!< Filter bit 23 */
  8502. #define CAN_F2R2_FB24_Pos (24U)
  8503. #define CAN_F2R2_FB24_Msk (0x1UL << CAN_F2R2_FB24_Pos) /*!< 0x01000000 */
  8504. #define CAN_F2R2_FB24 CAN_F2R2_FB24_Msk /*!< Filter bit 24 */
  8505. #define CAN_F2R2_FB25_Pos (25U)
  8506. #define CAN_F2R2_FB25_Msk (0x1UL << CAN_F2R2_FB25_Pos) /*!< 0x02000000 */
  8507. #define CAN_F2R2_FB25 CAN_F2R2_FB25_Msk /*!< Filter bit 25 */
  8508. #define CAN_F2R2_FB26_Pos (26U)
  8509. #define CAN_F2R2_FB26_Msk (0x1UL << CAN_F2R2_FB26_Pos) /*!< 0x04000000 */
  8510. #define CAN_F2R2_FB26 CAN_F2R2_FB26_Msk /*!< Filter bit 26 */
  8511. #define CAN_F2R2_FB27_Pos (27U)
  8512. #define CAN_F2R2_FB27_Msk (0x1UL << CAN_F2R2_FB27_Pos) /*!< 0x08000000 */
  8513. #define CAN_F2R2_FB27 CAN_F2R2_FB27_Msk /*!< Filter bit 27 */
  8514. #define CAN_F2R2_FB28_Pos (28U)
  8515. #define CAN_F2R2_FB28_Msk (0x1UL << CAN_F2R2_FB28_Pos) /*!< 0x10000000 */
  8516. #define CAN_F2R2_FB28 CAN_F2R2_FB28_Msk /*!< Filter bit 28 */
  8517. #define CAN_F2R2_FB29_Pos (29U)
  8518. #define CAN_F2R2_FB29_Msk (0x1UL << CAN_F2R2_FB29_Pos) /*!< 0x20000000 */
  8519. #define CAN_F2R2_FB29 CAN_F2R2_FB29_Msk /*!< Filter bit 29 */
  8520. #define CAN_F2R2_FB30_Pos (30U)
  8521. #define CAN_F2R2_FB30_Msk (0x1UL << CAN_F2R2_FB30_Pos) /*!< 0x40000000 */
  8522. #define CAN_F2R2_FB30 CAN_F2R2_FB30_Msk /*!< Filter bit 30 */
  8523. #define CAN_F2R2_FB31_Pos (31U)
  8524. #define CAN_F2R2_FB31_Msk (0x1UL << CAN_F2R2_FB31_Pos) /*!< 0x80000000 */
  8525. #define CAN_F2R2_FB31 CAN_F2R2_FB31_Msk /*!< Filter bit 31 */
  8526. /******************* Bit definition for CAN_F3R2 register *******************/
  8527. #define CAN_F3R2_FB0_Pos (0U)
  8528. #define CAN_F3R2_FB0_Msk (0x1UL << CAN_F3R2_FB0_Pos) /*!< 0x00000001 */
  8529. #define CAN_F3R2_FB0 CAN_F3R2_FB0_Msk /*!< Filter bit 0 */
  8530. #define CAN_F3R2_FB1_Pos (1U)
  8531. #define CAN_F3R2_FB1_Msk (0x1UL << CAN_F3R2_FB1_Pos) /*!< 0x00000002 */
  8532. #define CAN_F3R2_FB1 CAN_F3R2_FB1_Msk /*!< Filter bit 1 */
  8533. #define CAN_F3R2_FB2_Pos (2U)
  8534. #define CAN_F3R2_FB2_Msk (0x1UL << CAN_F3R2_FB2_Pos) /*!< 0x00000004 */
  8535. #define CAN_F3R2_FB2 CAN_F3R2_FB2_Msk /*!< Filter bit 2 */
  8536. #define CAN_F3R2_FB3_Pos (3U)
  8537. #define CAN_F3R2_FB3_Msk (0x1UL << CAN_F3R2_FB3_Pos) /*!< 0x00000008 */
  8538. #define CAN_F3R2_FB3 CAN_F3R2_FB3_Msk /*!< Filter bit 3 */
  8539. #define CAN_F3R2_FB4_Pos (4U)
  8540. #define CAN_F3R2_FB4_Msk (0x1UL << CAN_F3R2_FB4_Pos) /*!< 0x00000010 */
  8541. #define CAN_F3R2_FB4 CAN_F3R2_FB4_Msk /*!< Filter bit 4 */
  8542. #define CAN_F3R2_FB5_Pos (5U)
  8543. #define CAN_F3R2_FB5_Msk (0x1UL << CAN_F3R2_FB5_Pos) /*!< 0x00000020 */
  8544. #define CAN_F3R2_FB5 CAN_F3R2_FB5_Msk /*!< Filter bit 5 */
  8545. #define CAN_F3R2_FB6_Pos (6U)
  8546. #define CAN_F3R2_FB6_Msk (0x1UL << CAN_F3R2_FB6_Pos) /*!< 0x00000040 */
  8547. #define CAN_F3R2_FB6 CAN_F3R2_FB6_Msk /*!< Filter bit 6 */
  8548. #define CAN_F3R2_FB7_Pos (7U)
  8549. #define CAN_F3R2_FB7_Msk (0x1UL << CAN_F3R2_FB7_Pos) /*!< 0x00000080 */
  8550. #define CAN_F3R2_FB7 CAN_F3R2_FB7_Msk /*!< Filter bit 7 */
  8551. #define CAN_F3R2_FB8_Pos (8U)
  8552. #define CAN_F3R2_FB8_Msk (0x1UL << CAN_F3R2_FB8_Pos) /*!< 0x00000100 */
  8553. #define CAN_F3R2_FB8 CAN_F3R2_FB8_Msk /*!< Filter bit 8 */
  8554. #define CAN_F3R2_FB9_Pos (9U)
  8555. #define CAN_F3R2_FB9_Msk (0x1UL << CAN_F3R2_FB9_Pos) /*!< 0x00000200 */
  8556. #define CAN_F3R2_FB9 CAN_F3R2_FB9_Msk /*!< Filter bit 9 */
  8557. #define CAN_F3R2_FB10_Pos (10U)
  8558. #define CAN_F3R2_FB10_Msk (0x1UL << CAN_F3R2_FB10_Pos) /*!< 0x00000400 */
  8559. #define CAN_F3R2_FB10 CAN_F3R2_FB10_Msk /*!< Filter bit 10 */
  8560. #define CAN_F3R2_FB11_Pos (11U)
  8561. #define CAN_F3R2_FB11_Msk (0x1UL << CAN_F3R2_FB11_Pos) /*!< 0x00000800 */
  8562. #define CAN_F3R2_FB11 CAN_F3R2_FB11_Msk /*!< Filter bit 11 */
  8563. #define CAN_F3R2_FB12_Pos (12U)
  8564. #define CAN_F3R2_FB12_Msk (0x1UL << CAN_F3R2_FB12_Pos) /*!< 0x00001000 */
  8565. #define CAN_F3R2_FB12 CAN_F3R2_FB12_Msk /*!< Filter bit 12 */
  8566. #define CAN_F3R2_FB13_Pos (13U)
  8567. #define CAN_F3R2_FB13_Msk (0x1UL << CAN_F3R2_FB13_Pos) /*!< 0x00002000 */
  8568. #define CAN_F3R2_FB13 CAN_F3R2_FB13_Msk /*!< Filter bit 13 */
  8569. #define CAN_F3R2_FB14_Pos (14U)
  8570. #define CAN_F3R2_FB14_Msk (0x1UL << CAN_F3R2_FB14_Pos) /*!< 0x00004000 */
  8571. #define CAN_F3R2_FB14 CAN_F3R2_FB14_Msk /*!< Filter bit 14 */
  8572. #define CAN_F3R2_FB15_Pos (15U)
  8573. #define CAN_F3R2_FB15_Msk (0x1UL << CAN_F3R2_FB15_Pos) /*!< 0x00008000 */
  8574. #define CAN_F3R2_FB15 CAN_F3R2_FB15_Msk /*!< Filter bit 15 */
  8575. #define CAN_F3R2_FB16_Pos (16U)
  8576. #define CAN_F3R2_FB16_Msk (0x1UL << CAN_F3R2_FB16_Pos) /*!< 0x00010000 */
  8577. #define CAN_F3R2_FB16 CAN_F3R2_FB16_Msk /*!< Filter bit 16 */
  8578. #define CAN_F3R2_FB17_Pos (17U)
  8579. #define CAN_F3R2_FB17_Msk (0x1UL << CAN_F3R2_FB17_Pos) /*!< 0x00020000 */
  8580. #define CAN_F3R2_FB17 CAN_F3R2_FB17_Msk /*!< Filter bit 17 */
  8581. #define CAN_F3R2_FB18_Pos (18U)
  8582. #define CAN_F3R2_FB18_Msk (0x1UL << CAN_F3R2_FB18_Pos) /*!< 0x00040000 */
  8583. #define CAN_F3R2_FB18 CAN_F3R2_FB18_Msk /*!< Filter bit 18 */
  8584. #define CAN_F3R2_FB19_Pos (19U)
  8585. #define CAN_F3R2_FB19_Msk (0x1UL << CAN_F3R2_FB19_Pos) /*!< 0x00080000 */
  8586. #define CAN_F3R2_FB19 CAN_F3R2_FB19_Msk /*!< Filter bit 19 */
  8587. #define CAN_F3R2_FB20_Pos (20U)
  8588. #define CAN_F3R2_FB20_Msk (0x1UL << CAN_F3R2_FB20_Pos) /*!< 0x00100000 */
  8589. #define CAN_F3R2_FB20 CAN_F3R2_FB20_Msk /*!< Filter bit 20 */
  8590. #define CAN_F3R2_FB21_Pos (21U)
  8591. #define CAN_F3R2_FB21_Msk (0x1UL << CAN_F3R2_FB21_Pos) /*!< 0x00200000 */
  8592. #define CAN_F3R2_FB21 CAN_F3R2_FB21_Msk /*!< Filter bit 21 */
  8593. #define CAN_F3R2_FB22_Pos (22U)
  8594. #define CAN_F3R2_FB22_Msk (0x1UL << CAN_F3R2_FB22_Pos) /*!< 0x00400000 */
  8595. #define CAN_F3R2_FB22 CAN_F3R2_FB22_Msk /*!< Filter bit 22 */
  8596. #define CAN_F3R2_FB23_Pos (23U)
  8597. #define CAN_F3R2_FB23_Msk (0x1UL << CAN_F3R2_FB23_Pos) /*!< 0x00800000 */
  8598. #define CAN_F3R2_FB23 CAN_F3R2_FB23_Msk /*!< Filter bit 23 */
  8599. #define CAN_F3R2_FB24_Pos (24U)
  8600. #define CAN_F3R2_FB24_Msk (0x1UL << CAN_F3R2_FB24_Pos) /*!< 0x01000000 */
  8601. #define CAN_F3R2_FB24 CAN_F3R2_FB24_Msk /*!< Filter bit 24 */
  8602. #define CAN_F3R2_FB25_Pos (25U)
  8603. #define CAN_F3R2_FB25_Msk (0x1UL << CAN_F3R2_FB25_Pos) /*!< 0x02000000 */
  8604. #define CAN_F3R2_FB25 CAN_F3R2_FB25_Msk /*!< Filter bit 25 */
  8605. #define CAN_F3R2_FB26_Pos (26U)
  8606. #define CAN_F3R2_FB26_Msk (0x1UL << CAN_F3R2_FB26_Pos) /*!< 0x04000000 */
  8607. #define CAN_F3R2_FB26 CAN_F3R2_FB26_Msk /*!< Filter bit 26 */
  8608. #define CAN_F3R2_FB27_Pos (27U)
  8609. #define CAN_F3R2_FB27_Msk (0x1UL << CAN_F3R2_FB27_Pos) /*!< 0x08000000 */
  8610. #define CAN_F3R2_FB27 CAN_F3R2_FB27_Msk /*!< Filter bit 27 */
  8611. #define CAN_F3R2_FB28_Pos (28U)
  8612. #define CAN_F3R2_FB28_Msk (0x1UL << CAN_F3R2_FB28_Pos) /*!< 0x10000000 */
  8613. #define CAN_F3R2_FB28 CAN_F3R2_FB28_Msk /*!< Filter bit 28 */
  8614. #define CAN_F3R2_FB29_Pos (29U)
  8615. #define CAN_F3R2_FB29_Msk (0x1UL << CAN_F3R2_FB29_Pos) /*!< 0x20000000 */
  8616. #define CAN_F3R2_FB29 CAN_F3R2_FB29_Msk /*!< Filter bit 29 */
  8617. #define CAN_F3R2_FB30_Pos (30U)
  8618. #define CAN_F3R2_FB30_Msk (0x1UL << CAN_F3R2_FB30_Pos) /*!< 0x40000000 */
  8619. #define CAN_F3R2_FB30 CAN_F3R2_FB30_Msk /*!< Filter bit 30 */
  8620. #define CAN_F3R2_FB31_Pos (31U)
  8621. #define CAN_F3R2_FB31_Msk (0x1UL << CAN_F3R2_FB31_Pos) /*!< 0x80000000 */
  8622. #define CAN_F3R2_FB31 CAN_F3R2_FB31_Msk /*!< Filter bit 31 */
  8623. /******************* Bit definition for CAN_F4R2 register *******************/
  8624. #define CAN_F4R2_FB0_Pos (0U)
  8625. #define CAN_F4R2_FB0_Msk (0x1UL << CAN_F4R2_FB0_Pos) /*!< 0x00000001 */
  8626. #define CAN_F4R2_FB0 CAN_F4R2_FB0_Msk /*!< Filter bit 0 */
  8627. #define CAN_F4R2_FB1_Pos (1U)
  8628. #define CAN_F4R2_FB1_Msk (0x1UL << CAN_F4R2_FB1_Pos) /*!< 0x00000002 */
  8629. #define CAN_F4R2_FB1 CAN_F4R2_FB1_Msk /*!< Filter bit 1 */
  8630. #define CAN_F4R2_FB2_Pos (2U)
  8631. #define CAN_F4R2_FB2_Msk (0x1UL << CAN_F4R2_FB2_Pos) /*!< 0x00000004 */
  8632. #define CAN_F4R2_FB2 CAN_F4R2_FB2_Msk /*!< Filter bit 2 */
  8633. #define CAN_F4R2_FB3_Pos (3U)
  8634. #define CAN_F4R2_FB3_Msk (0x1UL << CAN_F4R2_FB3_Pos) /*!< 0x00000008 */
  8635. #define CAN_F4R2_FB3 CAN_F4R2_FB3_Msk /*!< Filter bit 3 */
  8636. #define CAN_F4R2_FB4_Pos (4U)
  8637. #define CAN_F4R2_FB4_Msk (0x1UL << CAN_F4R2_FB4_Pos) /*!< 0x00000010 */
  8638. #define CAN_F4R2_FB4 CAN_F4R2_FB4_Msk /*!< Filter bit 4 */
  8639. #define CAN_F4R2_FB5_Pos (5U)
  8640. #define CAN_F4R2_FB5_Msk (0x1UL << CAN_F4R2_FB5_Pos) /*!< 0x00000020 */
  8641. #define CAN_F4R2_FB5 CAN_F4R2_FB5_Msk /*!< Filter bit 5 */
  8642. #define CAN_F4R2_FB6_Pos (6U)
  8643. #define CAN_F4R2_FB6_Msk (0x1UL << CAN_F4R2_FB6_Pos) /*!< 0x00000040 */
  8644. #define CAN_F4R2_FB6 CAN_F4R2_FB6_Msk /*!< Filter bit 6 */
  8645. #define CAN_F4R2_FB7_Pos (7U)
  8646. #define CAN_F4R2_FB7_Msk (0x1UL << CAN_F4R2_FB7_Pos) /*!< 0x00000080 */
  8647. #define CAN_F4R2_FB7 CAN_F4R2_FB7_Msk /*!< Filter bit 7 */
  8648. #define CAN_F4R2_FB8_Pos (8U)
  8649. #define CAN_F4R2_FB8_Msk (0x1UL << CAN_F4R2_FB8_Pos) /*!< 0x00000100 */
  8650. #define CAN_F4R2_FB8 CAN_F4R2_FB8_Msk /*!< Filter bit 8 */
  8651. #define CAN_F4R2_FB9_Pos (9U)
  8652. #define CAN_F4R2_FB9_Msk (0x1UL << CAN_F4R2_FB9_Pos) /*!< 0x00000200 */
  8653. #define CAN_F4R2_FB9 CAN_F4R2_FB9_Msk /*!< Filter bit 9 */
  8654. #define CAN_F4R2_FB10_Pos (10U)
  8655. #define CAN_F4R2_FB10_Msk (0x1UL << CAN_F4R2_FB10_Pos) /*!< 0x00000400 */
  8656. #define CAN_F4R2_FB10 CAN_F4R2_FB10_Msk /*!< Filter bit 10 */
  8657. #define CAN_F4R2_FB11_Pos (11U)
  8658. #define CAN_F4R2_FB11_Msk (0x1UL << CAN_F4R2_FB11_Pos) /*!< 0x00000800 */
  8659. #define CAN_F4R2_FB11 CAN_F4R2_FB11_Msk /*!< Filter bit 11 */
  8660. #define CAN_F4R2_FB12_Pos (12U)
  8661. #define CAN_F4R2_FB12_Msk (0x1UL << CAN_F4R2_FB12_Pos) /*!< 0x00001000 */
  8662. #define CAN_F4R2_FB12 CAN_F4R2_FB12_Msk /*!< Filter bit 12 */
  8663. #define CAN_F4R2_FB13_Pos (13U)
  8664. #define CAN_F4R2_FB13_Msk (0x1UL << CAN_F4R2_FB13_Pos) /*!< 0x00002000 */
  8665. #define CAN_F4R2_FB13 CAN_F4R2_FB13_Msk /*!< Filter bit 13 */
  8666. #define CAN_F4R2_FB14_Pos (14U)
  8667. #define CAN_F4R2_FB14_Msk (0x1UL << CAN_F4R2_FB14_Pos) /*!< 0x00004000 */
  8668. #define CAN_F4R2_FB14 CAN_F4R2_FB14_Msk /*!< Filter bit 14 */
  8669. #define CAN_F4R2_FB15_Pos (15U)
  8670. #define CAN_F4R2_FB15_Msk (0x1UL << CAN_F4R2_FB15_Pos) /*!< 0x00008000 */
  8671. #define CAN_F4R2_FB15 CAN_F4R2_FB15_Msk /*!< Filter bit 15 */
  8672. #define CAN_F4R2_FB16_Pos (16U)
  8673. #define CAN_F4R2_FB16_Msk (0x1UL << CAN_F4R2_FB16_Pos) /*!< 0x00010000 */
  8674. #define CAN_F4R2_FB16 CAN_F4R2_FB16_Msk /*!< Filter bit 16 */
  8675. #define CAN_F4R2_FB17_Pos (17U)
  8676. #define CAN_F4R2_FB17_Msk (0x1UL << CAN_F4R2_FB17_Pos) /*!< 0x00020000 */
  8677. #define CAN_F4R2_FB17 CAN_F4R2_FB17_Msk /*!< Filter bit 17 */
  8678. #define CAN_F4R2_FB18_Pos (18U)
  8679. #define CAN_F4R2_FB18_Msk (0x1UL << CAN_F4R2_FB18_Pos) /*!< 0x00040000 */
  8680. #define CAN_F4R2_FB18 CAN_F4R2_FB18_Msk /*!< Filter bit 18 */
  8681. #define CAN_F4R2_FB19_Pos (19U)
  8682. #define CAN_F4R2_FB19_Msk (0x1UL << CAN_F4R2_FB19_Pos) /*!< 0x00080000 */
  8683. #define CAN_F4R2_FB19 CAN_F4R2_FB19_Msk /*!< Filter bit 19 */
  8684. #define CAN_F4R2_FB20_Pos (20U)
  8685. #define CAN_F4R2_FB20_Msk (0x1UL << CAN_F4R2_FB20_Pos) /*!< 0x00100000 */
  8686. #define CAN_F4R2_FB20 CAN_F4R2_FB20_Msk /*!< Filter bit 20 */
  8687. #define CAN_F4R2_FB21_Pos (21U)
  8688. #define CAN_F4R2_FB21_Msk (0x1UL << CAN_F4R2_FB21_Pos) /*!< 0x00200000 */
  8689. #define CAN_F4R2_FB21 CAN_F4R2_FB21_Msk /*!< Filter bit 21 */
  8690. #define CAN_F4R2_FB22_Pos (22U)
  8691. #define CAN_F4R2_FB22_Msk (0x1UL << CAN_F4R2_FB22_Pos) /*!< 0x00400000 */
  8692. #define CAN_F4R2_FB22 CAN_F4R2_FB22_Msk /*!< Filter bit 22 */
  8693. #define CAN_F4R2_FB23_Pos (23U)
  8694. #define CAN_F4R2_FB23_Msk (0x1UL << CAN_F4R2_FB23_Pos) /*!< 0x00800000 */
  8695. #define CAN_F4R2_FB23 CAN_F4R2_FB23_Msk /*!< Filter bit 23 */
  8696. #define CAN_F4R2_FB24_Pos (24U)
  8697. #define CAN_F4R2_FB24_Msk (0x1UL << CAN_F4R2_FB24_Pos) /*!< 0x01000000 */
  8698. #define CAN_F4R2_FB24 CAN_F4R2_FB24_Msk /*!< Filter bit 24 */
  8699. #define CAN_F4R2_FB25_Pos (25U)
  8700. #define CAN_F4R2_FB25_Msk (0x1UL << CAN_F4R2_FB25_Pos) /*!< 0x02000000 */
  8701. #define CAN_F4R2_FB25 CAN_F4R2_FB25_Msk /*!< Filter bit 25 */
  8702. #define CAN_F4R2_FB26_Pos (26U)
  8703. #define CAN_F4R2_FB26_Msk (0x1UL << CAN_F4R2_FB26_Pos) /*!< 0x04000000 */
  8704. #define CAN_F4R2_FB26 CAN_F4R2_FB26_Msk /*!< Filter bit 26 */
  8705. #define CAN_F4R2_FB27_Pos (27U)
  8706. #define CAN_F4R2_FB27_Msk (0x1UL << CAN_F4R2_FB27_Pos) /*!< 0x08000000 */
  8707. #define CAN_F4R2_FB27 CAN_F4R2_FB27_Msk /*!< Filter bit 27 */
  8708. #define CAN_F4R2_FB28_Pos (28U)
  8709. #define CAN_F4R2_FB28_Msk (0x1UL << CAN_F4R2_FB28_Pos) /*!< 0x10000000 */
  8710. #define CAN_F4R2_FB28 CAN_F4R2_FB28_Msk /*!< Filter bit 28 */
  8711. #define CAN_F4R2_FB29_Pos (29U)
  8712. #define CAN_F4R2_FB29_Msk (0x1UL << CAN_F4R2_FB29_Pos) /*!< 0x20000000 */
  8713. #define CAN_F4R2_FB29 CAN_F4R2_FB29_Msk /*!< Filter bit 29 */
  8714. #define CAN_F4R2_FB30_Pos (30U)
  8715. #define CAN_F4R2_FB30_Msk (0x1UL << CAN_F4R2_FB30_Pos) /*!< 0x40000000 */
  8716. #define CAN_F4R2_FB30 CAN_F4R2_FB30_Msk /*!< Filter bit 30 */
  8717. #define CAN_F4R2_FB31_Pos (31U)
  8718. #define CAN_F4R2_FB31_Msk (0x1UL << CAN_F4R2_FB31_Pos) /*!< 0x80000000 */
  8719. #define CAN_F4R2_FB31 CAN_F4R2_FB31_Msk /*!< Filter bit 31 */
  8720. /******************* Bit definition for CAN_F5R2 register *******************/
  8721. #define CAN_F5R2_FB0_Pos (0U)
  8722. #define CAN_F5R2_FB0_Msk (0x1UL << CAN_F5R2_FB0_Pos) /*!< 0x00000001 */
  8723. #define CAN_F5R2_FB0 CAN_F5R2_FB0_Msk /*!< Filter bit 0 */
  8724. #define CAN_F5R2_FB1_Pos (1U)
  8725. #define CAN_F5R2_FB1_Msk (0x1UL << CAN_F5R2_FB1_Pos) /*!< 0x00000002 */
  8726. #define CAN_F5R2_FB1 CAN_F5R2_FB1_Msk /*!< Filter bit 1 */
  8727. #define CAN_F5R2_FB2_Pos (2U)
  8728. #define CAN_F5R2_FB2_Msk (0x1UL << CAN_F5R2_FB2_Pos) /*!< 0x00000004 */
  8729. #define CAN_F5R2_FB2 CAN_F5R2_FB2_Msk /*!< Filter bit 2 */
  8730. #define CAN_F5R2_FB3_Pos (3U)
  8731. #define CAN_F5R2_FB3_Msk (0x1UL << CAN_F5R2_FB3_Pos) /*!< 0x00000008 */
  8732. #define CAN_F5R2_FB3 CAN_F5R2_FB3_Msk /*!< Filter bit 3 */
  8733. #define CAN_F5R2_FB4_Pos (4U)
  8734. #define CAN_F5R2_FB4_Msk (0x1UL << CAN_F5R2_FB4_Pos) /*!< 0x00000010 */
  8735. #define CAN_F5R2_FB4 CAN_F5R2_FB4_Msk /*!< Filter bit 4 */
  8736. #define CAN_F5R2_FB5_Pos (5U)
  8737. #define CAN_F5R2_FB5_Msk (0x1UL << CAN_F5R2_FB5_Pos) /*!< 0x00000020 */
  8738. #define CAN_F5R2_FB5 CAN_F5R2_FB5_Msk /*!< Filter bit 5 */
  8739. #define CAN_F5R2_FB6_Pos (6U)
  8740. #define CAN_F5R2_FB6_Msk (0x1UL << CAN_F5R2_FB6_Pos) /*!< 0x00000040 */
  8741. #define CAN_F5R2_FB6 CAN_F5R2_FB6_Msk /*!< Filter bit 6 */
  8742. #define CAN_F5R2_FB7_Pos (7U)
  8743. #define CAN_F5R2_FB7_Msk (0x1UL << CAN_F5R2_FB7_Pos) /*!< 0x00000080 */
  8744. #define CAN_F5R2_FB7 CAN_F5R2_FB7_Msk /*!< Filter bit 7 */
  8745. #define CAN_F5R2_FB8_Pos (8U)
  8746. #define CAN_F5R2_FB8_Msk (0x1UL << CAN_F5R2_FB8_Pos) /*!< 0x00000100 */
  8747. #define CAN_F5R2_FB8 CAN_F5R2_FB8_Msk /*!< Filter bit 8 */
  8748. #define CAN_F5R2_FB9_Pos (9U)
  8749. #define CAN_F5R2_FB9_Msk (0x1UL << CAN_F5R2_FB9_Pos) /*!< 0x00000200 */
  8750. #define CAN_F5R2_FB9 CAN_F5R2_FB9_Msk /*!< Filter bit 9 */
  8751. #define CAN_F5R2_FB10_Pos (10U)
  8752. #define CAN_F5R2_FB10_Msk (0x1UL << CAN_F5R2_FB10_Pos) /*!< 0x00000400 */
  8753. #define CAN_F5R2_FB10 CAN_F5R2_FB10_Msk /*!< Filter bit 10 */
  8754. #define CAN_F5R2_FB11_Pos (11U)
  8755. #define CAN_F5R2_FB11_Msk (0x1UL << CAN_F5R2_FB11_Pos) /*!< 0x00000800 */
  8756. #define CAN_F5R2_FB11 CAN_F5R2_FB11_Msk /*!< Filter bit 11 */
  8757. #define CAN_F5R2_FB12_Pos (12U)
  8758. #define CAN_F5R2_FB12_Msk (0x1UL << CAN_F5R2_FB12_Pos) /*!< 0x00001000 */
  8759. #define CAN_F5R2_FB12 CAN_F5R2_FB12_Msk /*!< Filter bit 12 */
  8760. #define CAN_F5R2_FB13_Pos (13U)
  8761. #define CAN_F5R2_FB13_Msk (0x1UL << CAN_F5R2_FB13_Pos) /*!< 0x00002000 */
  8762. #define CAN_F5R2_FB13 CAN_F5R2_FB13_Msk /*!< Filter bit 13 */
  8763. #define CAN_F5R2_FB14_Pos (14U)
  8764. #define CAN_F5R2_FB14_Msk (0x1UL << CAN_F5R2_FB14_Pos) /*!< 0x00004000 */
  8765. #define CAN_F5R2_FB14 CAN_F5R2_FB14_Msk /*!< Filter bit 14 */
  8766. #define CAN_F5R2_FB15_Pos (15U)
  8767. #define CAN_F5R2_FB15_Msk (0x1UL << CAN_F5R2_FB15_Pos) /*!< 0x00008000 */
  8768. #define CAN_F5R2_FB15 CAN_F5R2_FB15_Msk /*!< Filter bit 15 */
  8769. #define CAN_F5R2_FB16_Pos (16U)
  8770. #define CAN_F5R2_FB16_Msk (0x1UL << CAN_F5R2_FB16_Pos) /*!< 0x00010000 */
  8771. #define CAN_F5R2_FB16 CAN_F5R2_FB16_Msk /*!< Filter bit 16 */
  8772. #define CAN_F5R2_FB17_Pos (17U)
  8773. #define CAN_F5R2_FB17_Msk (0x1UL << CAN_F5R2_FB17_Pos) /*!< 0x00020000 */
  8774. #define CAN_F5R2_FB17 CAN_F5R2_FB17_Msk /*!< Filter bit 17 */
  8775. #define CAN_F5R2_FB18_Pos (18U)
  8776. #define CAN_F5R2_FB18_Msk (0x1UL << CAN_F5R2_FB18_Pos) /*!< 0x00040000 */
  8777. #define CAN_F5R2_FB18 CAN_F5R2_FB18_Msk /*!< Filter bit 18 */
  8778. #define CAN_F5R2_FB19_Pos (19U)
  8779. #define CAN_F5R2_FB19_Msk (0x1UL << CAN_F5R2_FB19_Pos) /*!< 0x00080000 */
  8780. #define CAN_F5R2_FB19 CAN_F5R2_FB19_Msk /*!< Filter bit 19 */
  8781. #define CAN_F5R2_FB20_Pos (20U)
  8782. #define CAN_F5R2_FB20_Msk (0x1UL << CAN_F5R2_FB20_Pos) /*!< 0x00100000 */
  8783. #define CAN_F5R2_FB20 CAN_F5R2_FB20_Msk /*!< Filter bit 20 */
  8784. #define CAN_F5R2_FB21_Pos (21U)
  8785. #define CAN_F5R2_FB21_Msk (0x1UL << CAN_F5R2_FB21_Pos) /*!< 0x00200000 */
  8786. #define CAN_F5R2_FB21 CAN_F5R2_FB21_Msk /*!< Filter bit 21 */
  8787. #define CAN_F5R2_FB22_Pos (22U)
  8788. #define CAN_F5R2_FB22_Msk (0x1UL << CAN_F5R2_FB22_Pos) /*!< 0x00400000 */
  8789. #define CAN_F5R2_FB22 CAN_F5R2_FB22_Msk /*!< Filter bit 22 */
  8790. #define CAN_F5R2_FB23_Pos (23U)
  8791. #define CAN_F5R2_FB23_Msk (0x1UL << CAN_F5R2_FB23_Pos) /*!< 0x00800000 */
  8792. #define CAN_F5R2_FB23 CAN_F5R2_FB23_Msk /*!< Filter bit 23 */
  8793. #define CAN_F5R2_FB24_Pos (24U)
  8794. #define CAN_F5R2_FB24_Msk (0x1UL << CAN_F5R2_FB24_Pos) /*!< 0x01000000 */
  8795. #define CAN_F5R2_FB24 CAN_F5R2_FB24_Msk /*!< Filter bit 24 */
  8796. #define CAN_F5R2_FB25_Pos (25U)
  8797. #define CAN_F5R2_FB25_Msk (0x1UL << CAN_F5R2_FB25_Pos) /*!< 0x02000000 */
  8798. #define CAN_F5R2_FB25 CAN_F5R2_FB25_Msk /*!< Filter bit 25 */
  8799. #define CAN_F5R2_FB26_Pos (26U)
  8800. #define CAN_F5R2_FB26_Msk (0x1UL << CAN_F5R2_FB26_Pos) /*!< 0x04000000 */
  8801. #define CAN_F5R2_FB26 CAN_F5R2_FB26_Msk /*!< Filter bit 26 */
  8802. #define CAN_F5R2_FB27_Pos (27U)
  8803. #define CAN_F5R2_FB27_Msk (0x1UL << CAN_F5R2_FB27_Pos) /*!< 0x08000000 */
  8804. #define CAN_F5R2_FB27 CAN_F5R2_FB27_Msk /*!< Filter bit 27 */
  8805. #define CAN_F5R2_FB28_Pos (28U)
  8806. #define CAN_F5R2_FB28_Msk (0x1UL << CAN_F5R2_FB28_Pos) /*!< 0x10000000 */
  8807. #define CAN_F5R2_FB28 CAN_F5R2_FB28_Msk /*!< Filter bit 28 */
  8808. #define CAN_F5R2_FB29_Pos (29U)
  8809. #define CAN_F5R2_FB29_Msk (0x1UL << CAN_F5R2_FB29_Pos) /*!< 0x20000000 */
  8810. #define CAN_F5R2_FB29 CAN_F5R2_FB29_Msk /*!< Filter bit 29 */
  8811. #define CAN_F5R2_FB30_Pos (30U)
  8812. #define CAN_F5R2_FB30_Msk (0x1UL << CAN_F5R2_FB30_Pos) /*!< 0x40000000 */
  8813. #define CAN_F5R2_FB30 CAN_F5R2_FB30_Msk /*!< Filter bit 30 */
  8814. #define CAN_F5R2_FB31_Pos (31U)
  8815. #define CAN_F5R2_FB31_Msk (0x1UL << CAN_F5R2_FB31_Pos) /*!< 0x80000000 */
  8816. #define CAN_F5R2_FB31 CAN_F5R2_FB31_Msk /*!< Filter bit 31 */
  8817. /******************* Bit definition for CAN_F6R2 register *******************/
  8818. #define CAN_F6R2_FB0_Pos (0U)
  8819. #define CAN_F6R2_FB0_Msk (0x1UL << CAN_F6R2_FB0_Pos) /*!< 0x00000001 */
  8820. #define CAN_F6R2_FB0 CAN_F6R2_FB0_Msk /*!< Filter bit 0 */
  8821. #define CAN_F6R2_FB1_Pos (1U)
  8822. #define CAN_F6R2_FB1_Msk (0x1UL << CAN_F6R2_FB1_Pos) /*!< 0x00000002 */
  8823. #define CAN_F6R2_FB1 CAN_F6R2_FB1_Msk /*!< Filter bit 1 */
  8824. #define CAN_F6R2_FB2_Pos (2U)
  8825. #define CAN_F6R2_FB2_Msk (0x1UL << CAN_F6R2_FB2_Pos) /*!< 0x00000004 */
  8826. #define CAN_F6R2_FB2 CAN_F6R2_FB2_Msk /*!< Filter bit 2 */
  8827. #define CAN_F6R2_FB3_Pos (3U)
  8828. #define CAN_F6R2_FB3_Msk (0x1UL << CAN_F6R2_FB3_Pos) /*!< 0x00000008 */
  8829. #define CAN_F6R2_FB3 CAN_F6R2_FB3_Msk /*!< Filter bit 3 */
  8830. #define CAN_F6R2_FB4_Pos (4U)
  8831. #define CAN_F6R2_FB4_Msk (0x1UL << CAN_F6R2_FB4_Pos) /*!< 0x00000010 */
  8832. #define CAN_F6R2_FB4 CAN_F6R2_FB4_Msk /*!< Filter bit 4 */
  8833. #define CAN_F6R2_FB5_Pos (5U)
  8834. #define CAN_F6R2_FB5_Msk (0x1UL << CAN_F6R2_FB5_Pos) /*!< 0x00000020 */
  8835. #define CAN_F6R2_FB5 CAN_F6R2_FB5_Msk /*!< Filter bit 5 */
  8836. #define CAN_F6R2_FB6_Pos (6U)
  8837. #define CAN_F6R2_FB6_Msk (0x1UL << CAN_F6R2_FB6_Pos) /*!< 0x00000040 */
  8838. #define CAN_F6R2_FB6 CAN_F6R2_FB6_Msk /*!< Filter bit 6 */
  8839. #define CAN_F6R2_FB7_Pos (7U)
  8840. #define CAN_F6R2_FB7_Msk (0x1UL << CAN_F6R2_FB7_Pos) /*!< 0x00000080 */
  8841. #define CAN_F6R2_FB7 CAN_F6R2_FB7_Msk /*!< Filter bit 7 */
  8842. #define CAN_F6R2_FB8_Pos (8U)
  8843. #define CAN_F6R2_FB8_Msk (0x1UL << CAN_F6R2_FB8_Pos) /*!< 0x00000100 */
  8844. #define CAN_F6R2_FB8 CAN_F6R2_FB8_Msk /*!< Filter bit 8 */
  8845. #define CAN_F6R2_FB9_Pos (9U)
  8846. #define CAN_F6R2_FB9_Msk (0x1UL << CAN_F6R2_FB9_Pos) /*!< 0x00000200 */
  8847. #define CAN_F6R2_FB9 CAN_F6R2_FB9_Msk /*!< Filter bit 9 */
  8848. #define CAN_F6R2_FB10_Pos (10U)
  8849. #define CAN_F6R2_FB10_Msk (0x1UL << CAN_F6R2_FB10_Pos) /*!< 0x00000400 */
  8850. #define CAN_F6R2_FB10 CAN_F6R2_FB10_Msk /*!< Filter bit 10 */
  8851. #define CAN_F6R2_FB11_Pos (11U)
  8852. #define CAN_F6R2_FB11_Msk (0x1UL << CAN_F6R2_FB11_Pos) /*!< 0x00000800 */
  8853. #define CAN_F6R2_FB11 CAN_F6R2_FB11_Msk /*!< Filter bit 11 */
  8854. #define CAN_F6R2_FB12_Pos (12U)
  8855. #define CAN_F6R2_FB12_Msk (0x1UL << CAN_F6R2_FB12_Pos) /*!< 0x00001000 */
  8856. #define CAN_F6R2_FB12 CAN_F6R2_FB12_Msk /*!< Filter bit 12 */
  8857. #define CAN_F6R2_FB13_Pos (13U)
  8858. #define CAN_F6R2_FB13_Msk (0x1UL << CAN_F6R2_FB13_Pos) /*!< 0x00002000 */
  8859. #define CAN_F6R2_FB13 CAN_F6R2_FB13_Msk /*!< Filter bit 13 */
  8860. #define CAN_F6R2_FB14_Pos (14U)
  8861. #define CAN_F6R2_FB14_Msk (0x1UL << CAN_F6R2_FB14_Pos) /*!< 0x00004000 */
  8862. #define CAN_F6R2_FB14 CAN_F6R2_FB14_Msk /*!< Filter bit 14 */
  8863. #define CAN_F6R2_FB15_Pos (15U)
  8864. #define CAN_F6R2_FB15_Msk (0x1UL << CAN_F6R2_FB15_Pos) /*!< 0x00008000 */
  8865. #define CAN_F6R2_FB15 CAN_F6R2_FB15_Msk /*!< Filter bit 15 */
  8866. #define CAN_F6R2_FB16_Pos (16U)
  8867. #define CAN_F6R2_FB16_Msk (0x1UL << CAN_F6R2_FB16_Pos) /*!< 0x00010000 */
  8868. #define CAN_F6R2_FB16 CAN_F6R2_FB16_Msk /*!< Filter bit 16 */
  8869. #define CAN_F6R2_FB17_Pos (17U)
  8870. #define CAN_F6R2_FB17_Msk (0x1UL << CAN_F6R2_FB17_Pos) /*!< 0x00020000 */
  8871. #define CAN_F6R2_FB17 CAN_F6R2_FB17_Msk /*!< Filter bit 17 */
  8872. #define CAN_F6R2_FB18_Pos (18U)
  8873. #define CAN_F6R2_FB18_Msk (0x1UL << CAN_F6R2_FB18_Pos) /*!< 0x00040000 */
  8874. #define CAN_F6R2_FB18 CAN_F6R2_FB18_Msk /*!< Filter bit 18 */
  8875. #define CAN_F6R2_FB19_Pos (19U)
  8876. #define CAN_F6R2_FB19_Msk (0x1UL << CAN_F6R2_FB19_Pos) /*!< 0x00080000 */
  8877. #define CAN_F6R2_FB19 CAN_F6R2_FB19_Msk /*!< Filter bit 19 */
  8878. #define CAN_F6R2_FB20_Pos (20U)
  8879. #define CAN_F6R2_FB20_Msk (0x1UL << CAN_F6R2_FB20_Pos) /*!< 0x00100000 */
  8880. #define CAN_F6R2_FB20 CAN_F6R2_FB20_Msk /*!< Filter bit 20 */
  8881. #define CAN_F6R2_FB21_Pos (21U)
  8882. #define CAN_F6R2_FB21_Msk (0x1UL << CAN_F6R2_FB21_Pos) /*!< 0x00200000 */
  8883. #define CAN_F6R2_FB21 CAN_F6R2_FB21_Msk /*!< Filter bit 21 */
  8884. #define CAN_F6R2_FB22_Pos (22U)
  8885. #define CAN_F6R2_FB22_Msk (0x1UL << CAN_F6R2_FB22_Pos) /*!< 0x00400000 */
  8886. #define CAN_F6R2_FB22 CAN_F6R2_FB22_Msk /*!< Filter bit 22 */
  8887. #define CAN_F6R2_FB23_Pos (23U)
  8888. #define CAN_F6R2_FB23_Msk (0x1UL << CAN_F6R2_FB23_Pos) /*!< 0x00800000 */
  8889. #define CAN_F6R2_FB23 CAN_F6R2_FB23_Msk /*!< Filter bit 23 */
  8890. #define CAN_F6R2_FB24_Pos (24U)
  8891. #define CAN_F6R2_FB24_Msk (0x1UL << CAN_F6R2_FB24_Pos) /*!< 0x01000000 */
  8892. #define CAN_F6R2_FB24 CAN_F6R2_FB24_Msk /*!< Filter bit 24 */
  8893. #define CAN_F6R2_FB25_Pos (25U)
  8894. #define CAN_F6R2_FB25_Msk (0x1UL << CAN_F6R2_FB25_Pos) /*!< 0x02000000 */
  8895. #define CAN_F6R2_FB25 CAN_F6R2_FB25_Msk /*!< Filter bit 25 */
  8896. #define CAN_F6R2_FB26_Pos (26U)
  8897. #define CAN_F6R2_FB26_Msk (0x1UL << CAN_F6R2_FB26_Pos) /*!< 0x04000000 */
  8898. #define CAN_F6R2_FB26 CAN_F6R2_FB26_Msk /*!< Filter bit 26 */
  8899. #define CAN_F6R2_FB27_Pos (27U)
  8900. #define CAN_F6R2_FB27_Msk (0x1UL << CAN_F6R2_FB27_Pos) /*!< 0x08000000 */
  8901. #define CAN_F6R2_FB27 CAN_F6R2_FB27_Msk /*!< Filter bit 27 */
  8902. #define CAN_F6R2_FB28_Pos (28U)
  8903. #define CAN_F6R2_FB28_Msk (0x1UL << CAN_F6R2_FB28_Pos) /*!< 0x10000000 */
  8904. #define CAN_F6R2_FB28 CAN_F6R2_FB28_Msk /*!< Filter bit 28 */
  8905. #define CAN_F6R2_FB29_Pos (29U)
  8906. #define CAN_F6R2_FB29_Msk (0x1UL << CAN_F6R2_FB29_Pos) /*!< 0x20000000 */
  8907. #define CAN_F6R2_FB29 CAN_F6R2_FB29_Msk /*!< Filter bit 29 */
  8908. #define CAN_F6R2_FB30_Pos (30U)
  8909. #define CAN_F6R2_FB30_Msk (0x1UL << CAN_F6R2_FB30_Pos) /*!< 0x40000000 */
  8910. #define CAN_F6R2_FB30 CAN_F6R2_FB30_Msk /*!< Filter bit 30 */
  8911. #define CAN_F6R2_FB31_Pos (31U)
  8912. #define CAN_F6R2_FB31_Msk (0x1UL << CAN_F6R2_FB31_Pos) /*!< 0x80000000 */
  8913. #define CAN_F6R2_FB31 CAN_F6R2_FB31_Msk /*!< Filter bit 31 */
  8914. /******************* Bit definition for CAN_F7R2 register *******************/
  8915. #define CAN_F7R2_FB0_Pos (0U)
  8916. #define CAN_F7R2_FB0_Msk (0x1UL << CAN_F7R2_FB0_Pos) /*!< 0x00000001 */
  8917. #define CAN_F7R2_FB0 CAN_F7R2_FB0_Msk /*!< Filter bit 0 */
  8918. #define CAN_F7R2_FB1_Pos (1U)
  8919. #define CAN_F7R2_FB1_Msk (0x1UL << CAN_F7R2_FB1_Pos) /*!< 0x00000002 */
  8920. #define CAN_F7R2_FB1 CAN_F7R2_FB1_Msk /*!< Filter bit 1 */
  8921. #define CAN_F7R2_FB2_Pos (2U)
  8922. #define CAN_F7R2_FB2_Msk (0x1UL << CAN_F7R2_FB2_Pos) /*!< 0x00000004 */
  8923. #define CAN_F7R2_FB2 CAN_F7R2_FB2_Msk /*!< Filter bit 2 */
  8924. #define CAN_F7R2_FB3_Pos (3U)
  8925. #define CAN_F7R2_FB3_Msk (0x1UL << CAN_F7R2_FB3_Pos) /*!< 0x00000008 */
  8926. #define CAN_F7R2_FB3 CAN_F7R2_FB3_Msk /*!< Filter bit 3 */
  8927. #define CAN_F7R2_FB4_Pos (4U)
  8928. #define CAN_F7R2_FB4_Msk (0x1UL << CAN_F7R2_FB4_Pos) /*!< 0x00000010 */
  8929. #define CAN_F7R2_FB4 CAN_F7R2_FB4_Msk /*!< Filter bit 4 */
  8930. #define CAN_F7R2_FB5_Pos (5U)
  8931. #define CAN_F7R2_FB5_Msk (0x1UL << CAN_F7R2_FB5_Pos) /*!< 0x00000020 */
  8932. #define CAN_F7R2_FB5 CAN_F7R2_FB5_Msk /*!< Filter bit 5 */
  8933. #define CAN_F7R2_FB6_Pos (6U)
  8934. #define CAN_F7R2_FB6_Msk (0x1UL << CAN_F7R2_FB6_Pos) /*!< 0x00000040 */
  8935. #define CAN_F7R2_FB6 CAN_F7R2_FB6_Msk /*!< Filter bit 6 */
  8936. #define CAN_F7R2_FB7_Pos (7U)
  8937. #define CAN_F7R2_FB7_Msk (0x1UL << CAN_F7R2_FB7_Pos) /*!< 0x00000080 */
  8938. #define CAN_F7R2_FB7 CAN_F7R2_FB7_Msk /*!< Filter bit 7 */
  8939. #define CAN_F7R2_FB8_Pos (8U)
  8940. #define CAN_F7R2_FB8_Msk (0x1UL << CAN_F7R2_FB8_Pos) /*!< 0x00000100 */
  8941. #define CAN_F7R2_FB8 CAN_F7R2_FB8_Msk /*!< Filter bit 8 */
  8942. #define CAN_F7R2_FB9_Pos (9U)
  8943. #define CAN_F7R2_FB9_Msk (0x1UL << CAN_F7R2_FB9_Pos) /*!< 0x00000200 */
  8944. #define CAN_F7R2_FB9 CAN_F7R2_FB9_Msk /*!< Filter bit 9 */
  8945. #define CAN_F7R2_FB10_Pos (10U)
  8946. #define CAN_F7R2_FB10_Msk (0x1UL << CAN_F7R2_FB10_Pos) /*!< 0x00000400 */
  8947. #define CAN_F7R2_FB10 CAN_F7R2_FB10_Msk /*!< Filter bit 10 */
  8948. #define CAN_F7R2_FB11_Pos (11U)
  8949. #define CAN_F7R2_FB11_Msk (0x1UL << CAN_F7R2_FB11_Pos) /*!< 0x00000800 */
  8950. #define CAN_F7R2_FB11 CAN_F7R2_FB11_Msk /*!< Filter bit 11 */
  8951. #define CAN_F7R2_FB12_Pos (12U)
  8952. #define CAN_F7R2_FB12_Msk (0x1UL << CAN_F7R2_FB12_Pos) /*!< 0x00001000 */
  8953. #define CAN_F7R2_FB12 CAN_F7R2_FB12_Msk /*!< Filter bit 12 */
  8954. #define CAN_F7R2_FB13_Pos (13U)
  8955. #define CAN_F7R2_FB13_Msk (0x1UL << CAN_F7R2_FB13_Pos) /*!< 0x00002000 */
  8956. #define CAN_F7R2_FB13 CAN_F7R2_FB13_Msk /*!< Filter bit 13 */
  8957. #define CAN_F7R2_FB14_Pos (14U)
  8958. #define CAN_F7R2_FB14_Msk (0x1UL << CAN_F7R2_FB14_Pos) /*!< 0x00004000 */
  8959. #define CAN_F7R2_FB14 CAN_F7R2_FB14_Msk /*!< Filter bit 14 */
  8960. #define CAN_F7R2_FB15_Pos (15U)
  8961. #define CAN_F7R2_FB15_Msk (0x1UL << CAN_F7R2_FB15_Pos) /*!< 0x00008000 */
  8962. #define CAN_F7R2_FB15 CAN_F7R2_FB15_Msk /*!< Filter bit 15 */
  8963. #define CAN_F7R2_FB16_Pos (16U)
  8964. #define CAN_F7R2_FB16_Msk (0x1UL << CAN_F7R2_FB16_Pos) /*!< 0x00010000 */
  8965. #define CAN_F7R2_FB16 CAN_F7R2_FB16_Msk /*!< Filter bit 16 */
  8966. #define CAN_F7R2_FB17_Pos (17U)
  8967. #define CAN_F7R2_FB17_Msk (0x1UL << CAN_F7R2_FB17_Pos) /*!< 0x00020000 */
  8968. #define CAN_F7R2_FB17 CAN_F7R2_FB17_Msk /*!< Filter bit 17 */
  8969. #define CAN_F7R2_FB18_Pos (18U)
  8970. #define CAN_F7R2_FB18_Msk (0x1UL << CAN_F7R2_FB18_Pos) /*!< 0x00040000 */
  8971. #define CAN_F7R2_FB18 CAN_F7R2_FB18_Msk /*!< Filter bit 18 */
  8972. #define CAN_F7R2_FB19_Pos (19U)
  8973. #define CAN_F7R2_FB19_Msk (0x1UL << CAN_F7R2_FB19_Pos) /*!< 0x00080000 */
  8974. #define CAN_F7R2_FB19 CAN_F7R2_FB19_Msk /*!< Filter bit 19 */
  8975. #define CAN_F7R2_FB20_Pos (20U)
  8976. #define CAN_F7R2_FB20_Msk (0x1UL << CAN_F7R2_FB20_Pos) /*!< 0x00100000 */
  8977. #define CAN_F7R2_FB20 CAN_F7R2_FB20_Msk /*!< Filter bit 20 */
  8978. #define CAN_F7R2_FB21_Pos (21U)
  8979. #define CAN_F7R2_FB21_Msk (0x1UL << CAN_F7R2_FB21_Pos) /*!< 0x00200000 */
  8980. #define CAN_F7R2_FB21 CAN_F7R2_FB21_Msk /*!< Filter bit 21 */
  8981. #define CAN_F7R2_FB22_Pos (22U)
  8982. #define CAN_F7R2_FB22_Msk (0x1UL << CAN_F7R2_FB22_Pos) /*!< 0x00400000 */
  8983. #define CAN_F7R2_FB22 CAN_F7R2_FB22_Msk /*!< Filter bit 22 */
  8984. #define CAN_F7R2_FB23_Pos (23U)
  8985. #define CAN_F7R2_FB23_Msk (0x1UL << CAN_F7R2_FB23_Pos) /*!< 0x00800000 */
  8986. #define CAN_F7R2_FB23 CAN_F7R2_FB23_Msk /*!< Filter bit 23 */
  8987. #define CAN_F7R2_FB24_Pos (24U)
  8988. #define CAN_F7R2_FB24_Msk (0x1UL << CAN_F7R2_FB24_Pos) /*!< 0x01000000 */
  8989. #define CAN_F7R2_FB24 CAN_F7R2_FB24_Msk /*!< Filter bit 24 */
  8990. #define CAN_F7R2_FB25_Pos (25U)
  8991. #define CAN_F7R2_FB25_Msk (0x1UL << CAN_F7R2_FB25_Pos) /*!< 0x02000000 */
  8992. #define CAN_F7R2_FB25 CAN_F7R2_FB25_Msk /*!< Filter bit 25 */
  8993. #define CAN_F7R2_FB26_Pos (26U)
  8994. #define CAN_F7R2_FB26_Msk (0x1UL << CAN_F7R2_FB26_Pos) /*!< 0x04000000 */
  8995. #define CAN_F7R2_FB26 CAN_F7R2_FB26_Msk /*!< Filter bit 26 */
  8996. #define CAN_F7R2_FB27_Pos (27U)
  8997. #define CAN_F7R2_FB27_Msk (0x1UL << CAN_F7R2_FB27_Pos) /*!< 0x08000000 */
  8998. #define CAN_F7R2_FB27 CAN_F7R2_FB27_Msk /*!< Filter bit 27 */
  8999. #define CAN_F7R2_FB28_Pos (28U)
  9000. #define CAN_F7R2_FB28_Msk (0x1UL << CAN_F7R2_FB28_Pos) /*!< 0x10000000 */
  9001. #define CAN_F7R2_FB28 CAN_F7R2_FB28_Msk /*!< Filter bit 28 */
  9002. #define CAN_F7R2_FB29_Pos (29U)
  9003. #define CAN_F7R2_FB29_Msk (0x1UL << CAN_F7R2_FB29_Pos) /*!< 0x20000000 */
  9004. #define CAN_F7R2_FB29 CAN_F7R2_FB29_Msk /*!< Filter bit 29 */
  9005. #define CAN_F7R2_FB30_Pos (30U)
  9006. #define CAN_F7R2_FB30_Msk (0x1UL << CAN_F7R2_FB30_Pos) /*!< 0x40000000 */
  9007. #define CAN_F7R2_FB30 CAN_F7R2_FB30_Msk /*!< Filter bit 30 */
  9008. #define CAN_F7R2_FB31_Pos (31U)
  9009. #define CAN_F7R2_FB31_Msk (0x1UL << CAN_F7R2_FB31_Pos) /*!< 0x80000000 */
  9010. #define CAN_F7R2_FB31 CAN_F7R2_FB31_Msk /*!< Filter bit 31 */
  9011. /******************* Bit definition for CAN_F8R2 register *******************/
  9012. #define CAN_F8R2_FB0_Pos (0U)
  9013. #define CAN_F8R2_FB0_Msk (0x1UL << CAN_F8R2_FB0_Pos) /*!< 0x00000001 */
  9014. #define CAN_F8R2_FB0 CAN_F8R2_FB0_Msk /*!< Filter bit 0 */
  9015. #define CAN_F8R2_FB1_Pos (1U)
  9016. #define CAN_F8R2_FB1_Msk (0x1UL << CAN_F8R2_FB1_Pos) /*!< 0x00000002 */
  9017. #define CAN_F8R2_FB1 CAN_F8R2_FB1_Msk /*!< Filter bit 1 */
  9018. #define CAN_F8R2_FB2_Pos (2U)
  9019. #define CAN_F8R2_FB2_Msk (0x1UL << CAN_F8R2_FB2_Pos) /*!< 0x00000004 */
  9020. #define CAN_F8R2_FB2 CAN_F8R2_FB2_Msk /*!< Filter bit 2 */
  9021. #define CAN_F8R2_FB3_Pos (3U)
  9022. #define CAN_F8R2_FB3_Msk (0x1UL << CAN_F8R2_FB3_Pos) /*!< 0x00000008 */
  9023. #define CAN_F8R2_FB3 CAN_F8R2_FB3_Msk /*!< Filter bit 3 */
  9024. #define CAN_F8R2_FB4_Pos (4U)
  9025. #define CAN_F8R2_FB4_Msk (0x1UL << CAN_F8R2_FB4_Pos) /*!< 0x00000010 */
  9026. #define CAN_F8R2_FB4 CAN_F8R2_FB4_Msk /*!< Filter bit 4 */
  9027. #define CAN_F8R2_FB5_Pos (5U)
  9028. #define CAN_F8R2_FB5_Msk (0x1UL << CAN_F8R2_FB5_Pos) /*!< 0x00000020 */
  9029. #define CAN_F8R2_FB5 CAN_F8R2_FB5_Msk /*!< Filter bit 5 */
  9030. #define CAN_F8R2_FB6_Pos (6U)
  9031. #define CAN_F8R2_FB6_Msk (0x1UL << CAN_F8R2_FB6_Pos) /*!< 0x00000040 */
  9032. #define CAN_F8R2_FB6 CAN_F8R2_FB6_Msk /*!< Filter bit 6 */
  9033. #define CAN_F8R2_FB7_Pos (7U)
  9034. #define CAN_F8R2_FB7_Msk (0x1UL << CAN_F8R2_FB7_Pos) /*!< 0x00000080 */
  9035. #define CAN_F8R2_FB7 CAN_F8R2_FB7_Msk /*!< Filter bit 7 */
  9036. #define CAN_F8R2_FB8_Pos (8U)
  9037. #define CAN_F8R2_FB8_Msk (0x1UL << CAN_F8R2_FB8_Pos) /*!< 0x00000100 */
  9038. #define CAN_F8R2_FB8 CAN_F8R2_FB8_Msk /*!< Filter bit 8 */
  9039. #define CAN_F8R2_FB9_Pos (9U)
  9040. #define CAN_F8R2_FB9_Msk (0x1UL << CAN_F8R2_FB9_Pos) /*!< 0x00000200 */
  9041. #define CAN_F8R2_FB9 CAN_F8R2_FB9_Msk /*!< Filter bit 9 */
  9042. #define CAN_F8R2_FB10_Pos (10U)
  9043. #define CAN_F8R2_FB10_Msk (0x1UL << CAN_F8R2_FB10_Pos) /*!< 0x00000400 */
  9044. #define CAN_F8R2_FB10 CAN_F8R2_FB10_Msk /*!< Filter bit 10 */
  9045. #define CAN_F8R2_FB11_Pos (11U)
  9046. #define CAN_F8R2_FB11_Msk (0x1UL << CAN_F8R2_FB11_Pos) /*!< 0x00000800 */
  9047. #define CAN_F8R2_FB11 CAN_F8R2_FB11_Msk /*!< Filter bit 11 */
  9048. #define CAN_F8R2_FB12_Pos (12U)
  9049. #define CAN_F8R2_FB12_Msk (0x1UL << CAN_F8R2_FB12_Pos) /*!< 0x00001000 */
  9050. #define CAN_F8R2_FB12 CAN_F8R2_FB12_Msk /*!< Filter bit 12 */
  9051. #define CAN_F8R2_FB13_Pos (13U)
  9052. #define CAN_F8R2_FB13_Msk (0x1UL << CAN_F8R2_FB13_Pos) /*!< 0x00002000 */
  9053. #define CAN_F8R2_FB13 CAN_F8R2_FB13_Msk /*!< Filter bit 13 */
  9054. #define CAN_F8R2_FB14_Pos (14U)
  9055. #define CAN_F8R2_FB14_Msk (0x1UL << CAN_F8R2_FB14_Pos) /*!< 0x00004000 */
  9056. #define CAN_F8R2_FB14 CAN_F8R2_FB14_Msk /*!< Filter bit 14 */
  9057. #define CAN_F8R2_FB15_Pos (15U)
  9058. #define CAN_F8R2_FB15_Msk (0x1UL << CAN_F8R2_FB15_Pos) /*!< 0x00008000 */
  9059. #define CAN_F8R2_FB15 CAN_F8R2_FB15_Msk /*!< Filter bit 15 */
  9060. #define CAN_F8R2_FB16_Pos (16U)
  9061. #define CAN_F8R2_FB16_Msk (0x1UL << CAN_F8R2_FB16_Pos) /*!< 0x00010000 */
  9062. #define CAN_F8R2_FB16 CAN_F8R2_FB16_Msk /*!< Filter bit 16 */
  9063. #define CAN_F8R2_FB17_Pos (17U)
  9064. #define CAN_F8R2_FB17_Msk (0x1UL << CAN_F8R2_FB17_Pos) /*!< 0x00020000 */
  9065. #define CAN_F8R2_FB17 CAN_F8R2_FB17_Msk /*!< Filter bit 17 */
  9066. #define CAN_F8R2_FB18_Pos (18U)
  9067. #define CAN_F8R2_FB18_Msk (0x1UL << CAN_F8R2_FB18_Pos) /*!< 0x00040000 */
  9068. #define CAN_F8R2_FB18 CAN_F8R2_FB18_Msk /*!< Filter bit 18 */
  9069. #define CAN_F8R2_FB19_Pos (19U)
  9070. #define CAN_F8R2_FB19_Msk (0x1UL << CAN_F8R2_FB19_Pos) /*!< 0x00080000 */
  9071. #define CAN_F8R2_FB19 CAN_F8R2_FB19_Msk /*!< Filter bit 19 */
  9072. #define CAN_F8R2_FB20_Pos (20U)
  9073. #define CAN_F8R2_FB20_Msk (0x1UL << CAN_F8R2_FB20_Pos) /*!< 0x00100000 */
  9074. #define CAN_F8R2_FB20 CAN_F8R2_FB20_Msk /*!< Filter bit 20 */
  9075. #define CAN_F8R2_FB21_Pos (21U)
  9076. #define CAN_F8R2_FB21_Msk (0x1UL << CAN_F8R2_FB21_Pos) /*!< 0x00200000 */
  9077. #define CAN_F8R2_FB21 CAN_F8R2_FB21_Msk /*!< Filter bit 21 */
  9078. #define CAN_F8R2_FB22_Pos (22U)
  9079. #define CAN_F8R2_FB22_Msk (0x1UL << CAN_F8R2_FB22_Pos) /*!< 0x00400000 */
  9080. #define CAN_F8R2_FB22 CAN_F8R2_FB22_Msk /*!< Filter bit 22 */
  9081. #define CAN_F8R2_FB23_Pos (23U)
  9082. #define CAN_F8R2_FB23_Msk (0x1UL << CAN_F8R2_FB23_Pos) /*!< 0x00800000 */
  9083. #define CAN_F8R2_FB23 CAN_F8R2_FB23_Msk /*!< Filter bit 23 */
  9084. #define CAN_F8R2_FB24_Pos (24U)
  9085. #define CAN_F8R2_FB24_Msk (0x1UL << CAN_F8R2_FB24_Pos) /*!< 0x01000000 */
  9086. #define CAN_F8R2_FB24 CAN_F8R2_FB24_Msk /*!< Filter bit 24 */
  9087. #define CAN_F8R2_FB25_Pos (25U)
  9088. #define CAN_F8R2_FB25_Msk (0x1UL << CAN_F8R2_FB25_Pos) /*!< 0x02000000 */
  9089. #define CAN_F8R2_FB25 CAN_F8R2_FB25_Msk /*!< Filter bit 25 */
  9090. #define CAN_F8R2_FB26_Pos (26U)
  9091. #define CAN_F8R2_FB26_Msk (0x1UL << CAN_F8R2_FB26_Pos) /*!< 0x04000000 */
  9092. #define CAN_F8R2_FB26 CAN_F8R2_FB26_Msk /*!< Filter bit 26 */
  9093. #define CAN_F8R2_FB27_Pos (27U)
  9094. #define CAN_F8R2_FB27_Msk (0x1UL << CAN_F8R2_FB27_Pos) /*!< 0x08000000 */
  9095. #define CAN_F8R2_FB27 CAN_F8R2_FB27_Msk /*!< Filter bit 27 */
  9096. #define CAN_F8R2_FB28_Pos (28U)
  9097. #define CAN_F8R2_FB28_Msk (0x1UL << CAN_F8R2_FB28_Pos) /*!< 0x10000000 */
  9098. #define CAN_F8R2_FB28 CAN_F8R2_FB28_Msk /*!< Filter bit 28 */
  9099. #define CAN_F8R2_FB29_Pos (29U)
  9100. #define CAN_F8R2_FB29_Msk (0x1UL << CAN_F8R2_FB29_Pos) /*!< 0x20000000 */
  9101. #define CAN_F8R2_FB29 CAN_F8R2_FB29_Msk /*!< Filter bit 29 */
  9102. #define CAN_F8R2_FB30_Pos (30U)
  9103. #define CAN_F8R2_FB30_Msk (0x1UL << CAN_F8R2_FB30_Pos) /*!< 0x40000000 */
  9104. #define CAN_F8R2_FB30 CAN_F8R2_FB30_Msk /*!< Filter bit 30 */
  9105. #define CAN_F8R2_FB31_Pos (31U)
  9106. #define CAN_F8R2_FB31_Msk (0x1UL << CAN_F8R2_FB31_Pos) /*!< 0x80000000 */
  9107. #define CAN_F8R2_FB31 CAN_F8R2_FB31_Msk /*!< Filter bit 31 */
  9108. /******************* Bit definition for CAN_F9R2 register *******************/
  9109. #define CAN_F9R2_FB0_Pos (0U)
  9110. #define CAN_F9R2_FB0_Msk (0x1UL << CAN_F9R2_FB0_Pos) /*!< 0x00000001 */
  9111. #define CAN_F9R2_FB0 CAN_F9R2_FB0_Msk /*!< Filter bit 0 */
  9112. #define CAN_F9R2_FB1_Pos (1U)
  9113. #define CAN_F9R2_FB1_Msk (0x1UL << CAN_F9R2_FB1_Pos) /*!< 0x00000002 */
  9114. #define CAN_F9R2_FB1 CAN_F9R2_FB1_Msk /*!< Filter bit 1 */
  9115. #define CAN_F9R2_FB2_Pos (2U)
  9116. #define CAN_F9R2_FB2_Msk (0x1UL << CAN_F9R2_FB2_Pos) /*!< 0x00000004 */
  9117. #define CAN_F9R2_FB2 CAN_F9R2_FB2_Msk /*!< Filter bit 2 */
  9118. #define CAN_F9R2_FB3_Pos (3U)
  9119. #define CAN_F9R2_FB3_Msk (0x1UL << CAN_F9R2_FB3_Pos) /*!< 0x00000008 */
  9120. #define CAN_F9R2_FB3 CAN_F9R2_FB3_Msk /*!< Filter bit 3 */
  9121. #define CAN_F9R2_FB4_Pos (4U)
  9122. #define CAN_F9R2_FB4_Msk (0x1UL << CAN_F9R2_FB4_Pos) /*!< 0x00000010 */
  9123. #define CAN_F9R2_FB4 CAN_F9R2_FB4_Msk /*!< Filter bit 4 */
  9124. #define CAN_F9R2_FB5_Pos (5U)
  9125. #define CAN_F9R2_FB5_Msk (0x1UL << CAN_F9R2_FB5_Pos) /*!< 0x00000020 */
  9126. #define CAN_F9R2_FB5 CAN_F9R2_FB5_Msk /*!< Filter bit 5 */
  9127. #define CAN_F9R2_FB6_Pos (6U)
  9128. #define CAN_F9R2_FB6_Msk (0x1UL << CAN_F9R2_FB6_Pos) /*!< 0x00000040 */
  9129. #define CAN_F9R2_FB6 CAN_F9R2_FB6_Msk /*!< Filter bit 6 */
  9130. #define CAN_F9R2_FB7_Pos (7U)
  9131. #define CAN_F9R2_FB7_Msk (0x1UL << CAN_F9R2_FB7_Pos) /*!< 0x00000080 */
  9132. #define CAN_F9R2_FB7 CAN_F9R2_FB7_Msk /*!< Filter bit 7 */
  9133. #define CAN_F9R2_FB8_Pos (8U)
  9134. #define CAN_F9R2_FB8_Msk (0x1UL << CAN_F9R2_FB8_Pos) /*!< 0x00000100 */
  9135. #define CAN_F9R2_FB8 CAN_F9R2_FB8_Msk /*!< Filter bit 8 */
  9136. #define CAN_F9R2_FB9_Pos (9U)
  9137. #define CAN_F9R2_FB9_Msk (0x1UL << CAN_F9R2_FB9_Pos) /*!< 0x00000200 */
  9138. #define CAN_F9R2_FB9 CAN_F9R2_FB9_Msk /*!< Filter bit 9 */
  9139. #define CAN_F9R2_FB10_Pos (10U)
  9140. #define CAN_F9R2_FB10_Msk (0x1UL << CAN_F9R2_FB10_Pos) /*!< 0x00000400 */
  9141. #define CAN_F9R2_FB10 CAN_F9R2_FB10_Msk /*!< Filter bit 10 */
  9142. #define CAN_F9R2_FB11_Pos (11U)
  9143. #define CAN_F9R2_FB11_Msk (0x1UL << CAN_F9R2_FB11_Pos) /*!< 0x00000800 */
  9144. #define CAN_F9R2_FB11 CAN_F9R2_FB11_Msk /*!< Filter bit 11 */
  9145. #define CAN_F9R2_FB12_Pos (12U)
  9146. #define CAN_F9R2_FB12_Msk (0x1UL << CAN_F9R2_FB12_Pos) /*!< 0x00001000 */
  9147. #define CAN_F9R2_FB12 CAN_F9R2_FB12_Msk /*!< Filter bit 12 */
  9148. #define CAN_F9R2_FB13_Pos (13U)
  9149. #define CAN_F9R2_FB13_Msk (0x1UL << CAN_F9R2_FB13_Pos) /*!< 0x00002000 */
  9150. #define CAN_F9R2_FB13 CAN_F9R2_FB13_Msk /*!< Filter bit 13 */
  9151. #define CAN_F9R2_FB14_Pos (14U)
  9152. #define CAN_F9R2_FB14_Msk (0x1UL << CAN_F9R2_FB14_Pos) /*!< 0x00004000 */
  9153. #define CAN_F9R2_FB14 CAN_F9R2_FB14_Msk /*!< Filter bit 14 */
  9154. #define CAN_F9R2_FB15_Pos (15U)
  9155. #define CAN_F9R2_FB15_Msk (0x1UL << CAN_F9R2_FB15_Pos) /*!< 0x00008000 */
  9156. #define CAN_F9R2_FB15 CAN_F9R2_FB15_Msk /*!< Filter bit 15 */
  9157. #define CAN_F9R2_FB16_Pos (16U)
  9158. #define CAN_F9R2_FB16_Msk (0x1UL << CAN_F9R2_FB16_Pos) /*!< 0x00010000 */
  9159. #define CAN_F9R2_FB16 CAN_F9R2_FB16_Msk /*!< Filter bit 16 */
  9160. #define CAN_F9R2_FB17_Pos (17U)
  9161. #define CAN_F9R2_FB17_Msk (0x1UL << CAN_F9R2_FB17_Pos) /*!< 0x00020000 */
  9162. #define CAN_F9R2_FB17 CAN_F9R2_FB17_Msk /*!< Filter bit 17 */
  9163. #define CAN_F9R2_FB18_Pos (18U)
  9164. #define CAN_F9R2_FB18_Msk (0x1UL << CAN_F9R2_FB18_Pos) /*!< 0x00040000 */
  9165. #define CAN_F9R2_FB18 CAN_F9R2_FB18_Msk /*!< Filter bit 18 */
  9166. #define CAN_F9R2_FB19_Pos (19U)
  9167. #define CAN_F9R2_FB19_Msk (0x1UL << CAN_F9R2_FB19_Pos) /*!< 0x00080000 */
  9168. #define CAN_F9R2_FB19 CAN_F9R2_FB19_Msk /*!< Filter bit 19 */
  9169. #define CAN_F9R2_FB20_Pos (20U)
  9170. #define CAN_F9R2_FB20_Msk (0x1UL << CAN_F9R2_FB20_Pos) /*!< 0x00100000 */
  9171. #define CAN_F9R2_FB20 CAN_F9R2_FB20_Msk /*!< Filter bit 20 */
  9172. #define CAN_F9R2_FB21_Pos (21U)
  9173. #define CAN_F9R2_FB21_Msk (0x1UL << CAN_F9R2_FB21_Pos) /*!< 0x00200000 */
  9174. #define CAN_F9R2_FB21 CAN_F9R2_FB21_Msk /*!< Filter bit 21 */
  9175. #define CAN_F9R2_FB22_Pos (22U)
  9176. #define CAN_F9R2_FB22_Msk (0x1UL << CAN_F9R2_FB22_Pos) /*!< 0x00400000 */
  9177. #define CAN_F9R2_FB22 CAN_F9R2_FB22_Msk /*!< Filter bit 22 */
  9178. #define CAN_F9R2_FB23_Pos (23U)
  9179. #define CAN_F9R2_FB23_Msk (0x1UL << CAN_F9R2_FB23_Pos) /*!< 0x00800000 */
  9180. #define CAN_F9R2_FB23 CAN_F9R2_FB23_Msk /*!< Filter bit 23 */
  9181. #define CAN_F9R2_FB24_Pos (24U)
  9182. #define CAN_F9R2_FB24_Msk (0x1UL << CAN_F9R2_FB24_Pos) /*!< 0x01000000 */
  9183. #define CAN_F9R2_FB24 CAN_F9R2_FB24_Msk /*!< Filter bit 24 */
  9184. #define CAN_F9R2_FB25_Pos (25U)
  9185. #define CAN_F9R2_FB25_Msk (0x1UL << CAN_F9R2_FB25_Pos) /*!< 0x02000000 */
  9186. #define CAN_F9R2_FB25 CAN_F9R2_FB25_Msk /*!< Filter bit 25 */
  9187. #define CAN_F9R2_FB26_Pos (26U)
  9188. #define CAN_F9R2_FB26_Msk (0x1UL << CAN_F9R2_FB26_Pos) /*!< 0x04000000 */
  9189. #define CAN_F9R2_FB26 CAN_F9R2_FB26_Msk /*!< Filter bit 26 */
  9190. #define CAN_F9R2_FB27_Pos (27U)
  9191. #define CAN_F9R2_FB27_Msk (0x1UL << CAN_F9R2_FB27_Pos) /*!< 0x08000000 */
  9192. #define CAN_F9R2_FB27 CAN_F9R2_FB27_Msk /*!< Filter bit 27 */
  9193. #define CAN_F9R2_FB28_Pos (28U)
  9194. #define CAN_F9R2_FB28_Msk (0x1UL << CAN_F9R2_FB28_Pos) /*!< 0x10000000 */
  9195. #define CAN_F9R2_FB28 CAN_F9R2_FB28_Msk /*!< Filter bit 28 */
  9196. #define CAN_F9R2_FB29_Pos (29U)
  9197. #define CAN_F9R2_FB29_Msk (0x1UL << CAN_F9R2_FB29_Pos) /*!< 0x20000000 */
  9198. #define CAN_F9R2_FB29 CAN_F9R2_FB29_Msk /*!< Filter bit 29 */
  9199. #define CAN_F9R2_FB30_Pos (30U)
  9200. #define CAN_F9R2_FB30_Msk (0x1UL << CAN_F9R2_FB30_Pos) /*!< 0x40000000 */
  9201. #define CAN_F9R2_FB30 CAN_F9R2_FB30_Msk /*!< Filter bit 30 */
  9202. #define CAN_F9R2_FB31_Pos (31U)
  9203. #define CAN_F9R2_FB31_Msk (0x1UL << CAN_F9R2_FB31_Pos) /*!< 0x80000000 */
  9204. #define CAN_F9R2_FB31 CAN_F9R2_FB31_Msk /*!< Filter bit 31 */
  9205. /******************* Bit definition for CAN_F10R2 register ******************/
  9206. #define CAN_F10R2_FB0_Pos (0U)
  9207. #define CAN_F10R2_FB0_Msk (0x1UL << CAN_F10R2_FB0_Pos) /*!< 0x00000001 */
  9208. #define CAN_F10R2_FB0 CAN_F10R2_FB0_Msk /*!< Filter bit 0 */
  9209. #define CAN_F10R2_FB1_Pos (1U)
  9210. #define CAN_F10R2_FB1_Msk (0x1UL << CAN_F10R2_FB1_Pos) /*!< 0x00000002 */
  9211. #define CAN_F10R2_FB1 CAN_F10R2_FB1_Msk /*!< Filter bit 1 */
  9212. #define CAN_F10R2_FB2_Pos (2U)
  9213. #define CAN_F10R2_FB2_Msk (0x1UL << CAN_F10R2_FB2_Pos) /*!< 0x00000004 */
  9214. #define CAN_F10R2_FB2 CAN_F10R2_FB2_Msk /*!< Filter bit 2 */
  9215. #define CAN_F10R2_FB3_Pos (3U)
  9216. #define CAN_F10R2_FB3_Msk (0x1UL << CAN_F10R2_FB3_Pos) /*!< 0x00000008 */
  9217. #define CAN_F10R2_FB3 CAN_F10R2_FB3_Msk /*!< Filter bit 3 */
  9218. #define CAN_F10R2_FB4_Pos (4U)
  9219. #define CAN_F10R2_FB4_Msk (0x1UL << CAN_F10R2_FB4_Pos) /*!< 0x00000010 */
  9220. #define CAN_F10R2_FB4 CAN_F10R2_FB4_Msk /*!< Filter bit 4 */
  9221. #define CAN_F10R2_FB5_Pos (5U)
  9222. #define CAN_F10R2_FB5_Msk (0x1UL << CAN_F10R2_FB5_Pos) /*!< 0x00000020 */
  9223. #define CAN_F10R2_FB5 CAN_F10R2_FB5_Msk /*!< Filter bit 5 */
  9224. #define CAN_F10R2_FB6_Pos (6U)
  9225. #define CAN_F10R2_FB6_Msk (0x1UL << CAN_F10R2_FB6_Pos) /*!< 0x00000040 */
  9226. #define CAN_F10R2_FB6 CAN_F10R2_FB6_Msk /*!< Filter bit 6 */
  9227. #define CAN_F10R2_FB7_Pos (7U)
  9228. #define CAN_F10R2_FB7_Msk (0x1UL << CAN_F10R2_FB7_Pos) /*!< 0x00000080 */
  9229. #define CAN_F10R2_FB7 CAN_F10R2_FB7_Msk /*!< Filter bit 7 */
  9230. #define CAN_F10R2_FB8_Pos (8U)
  9231. #define CAN_F10R2_FB8_Msk (0x1UL << CAN_F10R2_FB8_Pos) /*!< 0x00000100 */
  9232. #define CAN_F10R2_FB8 CAN_F10R2_FB8_Msk /*!< Filter bit 8 */
  9233. #define CAN_F10R2_FB9_Pos (9U)
  9234. #define CAN_F10R2_FB9_Msk (0x1UL << CAN_F10R2_FB9_Pos) /*!< 0x00000200 */
  9235. #define CAN_F10R2_FB9 CAN_F10R2_FB9_Msk /*!< Filter bit 9 */
  9236. #define CAN_F10R2_FB10_Pos (10U)
  9237. #define CAN_F10R2_FB10_Msk (0x1UL << CAN_F10R2_FB10_Pos) /*!< 0x00000400 */
  9238. #define CAN_F10R2_FB10 CAN_F10R2_FB10_Msk /*!< Filter bit 10 */
  9239. #define CAN_F10R2_FB11_Pos (11U)
  9240. #define CAN_F10R2_FB11_Msk (0x1UL << CAN_F10R2_FB11_Pos) /*!< 0x00000800 */
  9241. #define CAN_F10R2_FB11 CAN_F10R2_FB11_Msk /*!< Filter bit 11 */
  9242. #define CAN_F10R2_FB12_Pos (12U)
  9243. #define CAN_F10R2_FB12_Msk (0x1UL << CAN_F10R2_FB12_Pos) /*!< 0x00001000 */
  9244. #define CAN_F10R2_FB12 CAN_F10R2_FB12_Msk /*!< Filter bit 12 */
  9245. #define CAN_F10R2_FB13_Pos (13U)
  9246. #define CAN_F10R2_FB13_Msk (0x1UL << CAN_F10R2_FB13_Pos) /*!< 0x00002000 */
  9247. #define CAN_F10R2_FB13 CAN_F10R2_FB13_Msk /*!< Filter bit 13 */
  9248. #define CAN_F10R2_FB14_Pos (14U)
  9249. #define CAN_F10R2_FB14_Msk (0x1UL << CAN_F10R2_FB14_Pos) /*!< 0x00004000 */
  9250. #define CAN_F10R2_FB14 CAN_F10R2_FB14_Msk /*!< Filter bit 14 */
  9251. #define CAN_F10R2_FB15_Pos (15U)
  9252. #define CAN_F10R2_FB15_Msk (0x1UL << CAN_F10R2_FB15_Pos) /*!< 0x00008000 */
  9253. #define CAN_F10R2_FB15 CAN_F10R2_FB15_Msk /*!< Filter bit 15 */
  9254. #define CAN_F10R2_FB16_Pos (16U)
  9255. #define CAN_F10R2_FB16_Msk (0x1UL << CAN_F10R2_FB16_Pos) /*!< 0x00010000 */
  9256. #define CAN_F10R2_FB16 CAN_F10R2_FB16_Msk /*!< Filter bit 16 */
  9257. #define CAN_F10R2_FB17_Pos (17U)
  9258. #define CAN_F10R2_FB17_Msk (0x1UL << CAN_F10R2_FB17_Pos) /*!< 0x00020000 */
  9259. #define CAN_F10R2_FB17 CAN_F10R2_FB17_Msk /*!< Filter bit 17 */
  9260. #define CAN_F10R2_FB18_Pos (18U)
  9261. #define CAN_F10R2_FB18_Msk (0x1UL << CAN_F10R2_FB18_Pos) /*!< 0x00040000 */
  9262. #define CAN_F10R2_FB18 CAN_F10R2_FB18_Msk /*!< Filter bit 18 */
  9263. #define CAN_F10R2_FB19_Pos (19U)
  9264. #define CAN_F10R2_FB19_Msk (0x1UL << CAN_F10R2_FB19_Pos) /*!< 0x00080000 */
  9265. #define CAN_F10R2_FB19 CAN_F10R2_FB19_Msk /*!< Filter bit 19 */
  9266. #define CAN_F10R2_FB20_Pos (20U)
  9267. #define CAN_F10R2_FB20_Msk (0x1UL << CAN_F10R2_FB20_Pos) /*!< 0x00100000 */
  9268. #define CAN_F10R2_FB20 CAN_F10R2_FB20_Msk /*!< Filter bit 20 */
  9269. #define CAN_F10R2_FB21_Pos (21U)
  9270. #define CAN_F10R2_FB21_Msk (0x1UL << CAN_F10R2_FB21_Pos) /*!< 0x00200000 */
  9271. #define CAN_F10R2_FB21 CAN_F10R2_FB21_Msk /*!< Filter bit 21 */
  9272. #define CAN_F10R2_FB22_Pos (22U)
  9273. #define CAN_F10R2_FB22_Msk (0x1UL << CAN_F10R2_FB22_Pos) /*!< 0x00400000 */
  9274. #define CAN_F10R2_FB22 CAN_F10R2_FB22_Msk /*!< Filter bit 22 */
  9275. #define CAN_F10R2_FB23_Pos (23U)
  9276. #define CAN_F10R2_FB23_Msk (0x1UL << CAN_F10R2_FB23_Pos) /*!< 0x00800000 */
  9277. #define CAN_F10R2_FB23 CAN_F10R2_FB23_Msk /*!< Filter bit 23 */
  9278. #define CAN_F10R2_FB24_Pos (24U)
  9279. #define CAN_F10R2_FB24_Msk (0x1UL << CAN_F10R2_FB24_Pos) /*!< 0x01000000 */
  9280. #define CAN_F10R2_FB24 CAN_F10R2_FB24_Msk /*!< Filter bit 24 */
  9281. #define CAN_F10R2_FB25_Pos (25U)
  9282. #define CAN_F10R2_FB25_Msk (0x1UL << CAN_F10R2_FB25_Pos) /*!< 0x02000000 */
  9283. #define CAN_F10R2_FB25 CAN_F10R2_FB25_Msk /*!< Filter bit 25 */
  9284. #define CAN_F10R2_FB26_Pos (26U)
  9285. #define CAN_F10R2_FB26_Msk (0x1UL << CAN_F10R2_FB26_Pos) /*!< 0x04000000 */
  9286. #define CAN_F10R2_FB26 CAN_F10R2_FB26_Msk /*!< Filter bit 26 */
  9287. #define CAN_F10R2_FB27_Pos (27U)
  9288. #define CAN_F10R2_FB27_Msk (0x1UL << CAN_F10R2_FB27_Pos) /*!< 0x08000000 */
  9289. #define CAN_F10R2_FB27 CAN_F10R2_FB27_Msk /*!< Filter bit 27 */
  9290. #define CAN_F10R2_FB28_Pos (28U)
  9291. #define CAN_F10R2_FB28_Msk (0x1UL << CAN_F10R2_FB28_Pos) /*!< 0x10000000 */
  9292. #define CAN_F10R2_FB28 CAN_F10R2_FB28_Msk /*!< Filter bit 28 */
  9293. #define CAN_F10R2_FB29_Pos (29U)
  9294. #define CAN_F10R2_FB29_Msk (0x1UL << CAN_F10R2_FB29_Pos) /*!< 0x20000000 */
  9295. #define CAN_F10R2_FB29 CAN_F10R2_FB29_Msk /*!< Filter bit 29 */
  9296. #define CAN_F10R2_FB30_Pos (30U)
  9297. #define CAN_F10R2_FB30_Msk (0x1UL << CAN_F10R2_FB30_Pos) /*!< 0x40000000 */
  9298. #define CAN_F10R2_FB30 CAN_F10R2_FB30_Msk /*!< Filter bit 30 */
  9299. #define CAN_F10R2_FB31_Pos (31U)
  9300. #define CAN_F10R2_FB31_Msk (0x1UL << CAN_F10R2_FB31_Pos) /*!< 0x80000000 */
  9301. #define CAN_F10R2_FB31 CAN_F10R2_FB31_Msk /*!< Filter bit 31 */
  9302. /******************* Bit definition for CAN_F11R2 register ******************/
  9303. #define CAN_F11R2_FB0_Pos (0U)
  9304. #define CAN_F11R2_FB0_Msk (0x1UL << CAN_F11R2_FB0_Pos) /*!< 0x00000001 */
  9305. #define CAN_F11R2_FB0 CAN_F11R2_FB0_Msk /*!< Filter bit 0 */
  9306. #define CAN_F11R2_FB1_Pos (1U)
  9307. #define CAN_F11R2_FB1_Msk (0x1UL << CAN_F11R2_FB1_Pos) /*!< 0x00000002 */
  9308. #define CAN_F11R2_FB1 CAN_F11R2_FB1_Msk /*!< Filter bit 1 */
  9309. #define CAN_F11R2_FB2_Pos (2U)
  9310. #define CAN_F11R2_FB2_Msk (0x1UL << CAN_F11R2_FB2_Pos) /*!< 0x00000004 */
  9311. #define CAN_F11R2_FB2 CAN_F11R2_FB2_Msk /*!< Filter bit 2 */
  9312. #define CAN_F11R2_FB3_Pos (3U)
  9313. #define CAN_F11R2_FB3_Msk (0x1UL << CAN_F11R2_FB3_Pos) /*!< 0x00000008 */
  9314. #define CAN_F11R2_FB3 CAN_F11R2_FB3_Msk /*!< Filter bit 3 */
  9315. #define CAN_F11R2_FB4_Pos (4U)
  9316. #define CAN_F11R2_FB4_Msk (0x1UL << CAN_F11R2_FB4_Pos) /*!< 0x00000010 */
  9317. #define CAN_F11R2_FB4 CAN_F11R2_FB4_Msk /*!< Filter bit 4 */
  9318. #define CAN_F11R2_FB5_Pos (5U)
  9319. #define CAN_F11R2_FB5_Msk (0x1UL << CAN_F11R2_FB5_Pos) /*!< 0x00000020 */
  9320. #define CAN_F11R2_FB5 CAN_F11R2_FB5_Msk /*!< Filter bit 5 */
  9321. #define CAN_F11R2_FB6_Pos (6U)
  9322. #define CAN_F11R2_FB6_Msk (0x1UL << CAN_F11R2_FB6_Pos) /*!< 0x00000040 */
  9323. #define CAN_F11R2_FB6 CAN_F11R2_FB6_Msk /*!< Filter bit 6 */
  9324. #define CAN_F11R2_FB7_Pos (7U)
  9325. #define CAN_F11R2_FB7_Msk (0x1UL << CAN_F11R2_FB7_Pos) /*!< 0x00000080 */
  9326. #define CAN_F11R2_FB7 CAN_F11R2_FB7_Msk /*!< Filter bit 7 */
  9327. #define CAN_F11R2_FB8_Pos (8U)
  9328. #define CAN_F11R2_FB8_Msk (0x1UL << CAN_F11R2_FB8_Pos) /*!< 0x00000100 */
  9329. #define CAN_F11R2_FB8 CAN_F11R2_FB8_Msk /*!< Filter bit 8 */
  9330. #define CAN_F11R2_FB9_Pos (9U)
  9331. #define CAN_F11R2_FB9_Msk (0x1UL << CAN_F11R2_FB9_Pos) /*!< 0x00000200 */
  9332. #define CAN_F11R2_FB9 CAN_F11R2_FB9_Msk /*!< Filter bit 9 */
  9333. #define CAN_F11R2_FB10_Pos (10U)
  9334. #define CAN_F11R2_FB10_Msk (0x1UL << CAN_F11R2_FB10_Pos) /*!< 0x00000400 */
  9335. #define CAN_F11R2_FB10 CAN_F11R2_FB10_Msk /*!< Filter bit 10 */
  9336. #define CAN_F11R2_FB11_Pos (11U)
  9337. #define CAN_F11R2_FB11_Msk (0x1UL << CAN_F11R2_FB11_Pos) /*!< 0x00000800 */
  9338. #define CAN_F11R2_FB11 CAN_F11R2_FB11_Msk /*!< Filter bit 11 */
  9339. #define CAN_F11R2_FB12_Pos (12U)
  9340. #define CAN_F11R2_FB12_Msk (0x1UL << CAN_F11R2_FB12_Pos) /*!< 0x00001000 */
  9341. #define CAN_F11R2_FB12 CAN_F11R2_FB12_Msk /*!< Filter bit 12 */
  9342. #define CAN_F11R2_FB13_Pos (13U)
  9343. #define CAN_F11R2_FB13_Msk (0x1UL << CAN_F11R2_FB13_Pos) /*!< 0x00002000 */
  9344. #define CAN_F11R2_FB13 CAN_F11R2_FB13_Msk /*!< Filter bit 13 */
  9345. #define CAN_F11R2_FB14_Pos (14U)
  9346. #define CAN_F11R2_FB14_Msk (0x1UL << CAN_F11R2_FB14_Pos) /*!< 0x00004000 */
  9347. #define CAN_F11R2_FB14 CAN_F11R2_FB14_Msk /*!< Filter bit 14 */
  9348. #define CAN_F11R2_FB15_Pos (15U)
  9349. #define CAN_F11R2_FB15_Msk (0x1UL << CAN_F11R2_FB15_Pos) /*!< 0x00008000 */
  9350. #define CAN_F11R2_FB15 CAN_F11R2_FB15_Msk /*!< Filter bit 15 */
  9351. #define CAN_F11R2_FB16_Pos (16U)
  9352. #define CAN_F11R2_FB16_Msk (0x1UL << CAN_F11R2_FB16_Pos) /*!< 0x00010000 */
  9353. #define CAN_F11R2_FB16 CAN_F11R2_FB16_Msk /*!< Filter bit 16 */
  9354. #define CAN_F11R2_FB17_Pos (17U)
  9355. #define CAN_F11R2_FB17_Msk (0x1UL << CAN_F11R2_FB17_Pos) /*!< 0x00020000 */
  9356. #define CAN_F11R2_FB17 CAN_F11R2_FB17_Msk /*!< Filter bit 17 */
  9357. #define CAN_F11R2_FB18_Pos (18U)
  9358. #define CAN_F11R2_FB18_Msk (0x1UL << CAN_F11R2_FB18_Pos) /*!< 0x00040000 */
  9359. #define CAN_F11R2_FB18 CAN_F11R2_FB18_Msk /*!< Filter bit 18 */
  9360. #define CAN_F11R2_FB19_Pos (19U)
  9361. #define CAN_F11R2_FB19_Msk (0x1UL << CAN_F11R2_FB19_Pos) /*!< 0x00080000 */
  9362. #define CAN_F11R2_FB19 CAN_F11R2_FB19_Msk /*!< Filter bit 19 */
  9363. #define CAN_F11R2_FB20_Pos (20U)
  9364. #define CAN_F11R2_FB20_Msk (0x1UL << CAN_F11R2_FB20_Pos) /*!< 0x00100000 */
  9365. #define CAN_F11R2_FB20 CAN_F11R2_FB20_Msk /*!< Filter bit 20 */
  9366. #define CAN_F11R2_FB21_Pos (21U)
  9367. #define CAN_F11R2_FB21_Msk (0x1UL << CAN_F11R2_FB21_Pos) /*!< 0x00200000 */
  9368. #define CAN_F11R2_FB21 CAN_F11R2_FB21_Msk /*!< Filter bit 21 */
  9369. #define CAN_F11R2_FB22_Pos (22U)
  9370. #define CAN_F11R2_FB22_Msk (0x1UL << CAN_F11R2_FB22_Pos) /*!< 0x00400000 */
  9371. #define CAN_F11R2_FB22 CAN_F11R2_FB22_Msk /*!< Filter bit 22 */
  9372. #define CAN_F11R2_FB23_Pos (23U)
  9373. #define CAN_F11R2_FB23_Msk (0x1UL << CAN_F11R2_FB23_Pos) /*!< 0x00800000 */
  9374. #define CAN_F11R2_FB23 CAN_F11R2_FB23_Msk /*!< Filter bit 23 */
  9375. #define CAN_F11R2_FB24_Pos (24U)
  9376. #define CAN_F11R2_FB24_Msk (0x1UL << CAN_F11R2_FB24_Pos) /*!< 0x01000000 */
  9377. #define CAN_F11R2_FB24 CAN_F11R2_FB24_Msk /*!< Filter bit 24 */
  9378. #define CAN_F11R2_FB25_Pos (25U)
  9379. #define CAN_F11R2_FB25_Msk (0x1UL << CAN_F11R2_FB25_Pos) /*!< 0x02000000 */
  9380. #define CAN_F11R2_FB25 CAN_F11R2_FB25_Msk /*!< Filter bit 25 */
  9381. #define CAN_F11R2_FB26_Pos (26U)
  9382. #define CAN_F11R2_FB26_Msk (0x1UL << CAN_F11R2_FB26_Pos) /*!< 0x04000000 */
  9383. #define CAN_F11R2_FB26 CAN_F11R2_FB26_Msk /*!< Filter bit 26 */
  9384. #define CAN_F11R2_FB27_Pos (27U)
  9385. #define CAN_F11R2_FB27_Msk (0x1UL << CAN_F11R2_FB27_Pos) /*!< 0x08000000 */
  9386. #define CAN_F11R2_FB27 CAN_F11R2_FB27_Msk /*!< Filter bit 27 */
  9387. #define CAN_F11R2_FB28_Pos (28U)
  9388. #define CAN_F11R2_FB28_Msk (0x1UL << CAN_F11R2_FB28_Pos) /*!< 0x10000000 */
  9389. #define CAN_F11R2_FB28 CAN_F11R2_FB28_Msk /*!< Filter bit 28 */
  9390. #define CAN_F11R2_FB29_Pos (29U)
  9391. #define CAN_F11R2_FB29_Msk (0x1UL << CAN_F11R2_FB29_Pos) /*!< 0x20000000 */
  9392. #define CAN_F11R2_FB29 CAN_F11R2_FB29_Msk /*!< Filter bit 29 */
  9393. #define CAN_F11R2_FB30_Pos (30U)
  9394. #define CAN_F11R2_FB30_Msk (0x1UL << CAN_F11R2_FB30_Pos) /*!< 0x40000000 */
  9395. #define CAN_F11R2_FB30 CAN_F11R2_FB30_Msk /*!< Filter bit 30 */
  9396. #define CAN_F11R2_FB31_Pos (31U)
  9397. #define CAN_F11R2_FB31_Msk (0x1UL << CAN_F11R2_FB31_Pos) /*!< 0x80000000 */
  9398. #define CAN_F11R2_FB31 CAN_F11R2_FB31_Msk /*!< Filter bit 31 */
  9399. /******************* Bit definition for CAN_F12R2 register ******************/
  9400. #define CAN_F12R2_FB0_Pos (0U)
  9401. #define CAN_F12R2_FB0_Msk (0x1UL << CAN_F12R2_FB0_Pos) /*!< 0x00000001 */
  9402. #define CAN_F12R2_FB0 CAN_F12R2_FB0_Msk /*!< Filter bit 0 */
  9403. #define CAN_F12R2_FB1_Pos (1U)
  9404. #define CAN_F12R2_FB1_Msk (0x1UL << CAN_F12R2_FB1_Pos) /*!< 0x00000002 */
  9405. #define CAN_F12R2_FB1 CAN_F12R2_FB1_Msk /*!< Filter bit 1 */
  9406. #define CAN_F12R2_FB2_Pos (2U)
  9407. #define CAN_F12R2_FB2_Msk (0x1UL << CAN_F12R2_FB2_Pos) /*!< 0x00000004 */
  9408. #define CAN_F12R2_FB2 CAN_F12R2_FB2_Msk /*!< Filter bit 2 */
  9409. #define CAN_F12R2_FB3_Pos (3U)
  9410. #define CAN_F12R2_FB3_Msk (0x1UL << CAN_F12R2_FB3_Pos) /*!< 0x00000008 */
  9411. #define CAN_F12R2_FB3 CAN_F12R2_FB3_Msk /*!< Filter bit 3 */
  9412. #define CAN_F12R2_FB4_Pos (4U)
  9413. #define CAN_F12R2_FB4_Msk (0x1UL << CAN_F12R2_FB4_Pos) /*!< 0x00000010 */
  9414. #define CAN_F12R2_FB4 CAN_F12R2_FB4_Msk /*!< Filter bit 4 */
  9415. #define CAN_F12R2_FB5_Pos (5U)
  9416. #define CAN_F12R2_FB5_Msk (0x1UL << CAN_F12R2_FB5_Pos) /*!< 0x00000020 */
  9417. #define CAN_F12R2_FB5 CAN_F12R2_FB5_Msk /*!< Filter bit 5 */
  9418. #define CAN_F12R2_FB6_Pos (6U)
  9419. #define CAN_F12R2_FB6_Msk (0x1UL << CAN_F12R2_FB6_Pos) /*!< 0x00000040 */
  9420. #define CAN_F12R2_FB6 CAN_F12R2_FB6_Msk /*!< Filter bit 6 */
  9421. #define CAN_F12R2_FB7_Pos (7U)
  9422. #define CAN_F12R2_FB7_Msk (0x1UL << CAN_F12R2_FB7_Pos) /*!< 0x00000080 */
  9423. #define CAN_F12R2_FB7 CAN_F12R2_FB7_Msk /*!< Filter bit 7 */
  9424. #define CAN_F12R2_FB8_Pos (8U)
  9425. #define CAN_F12R2_FB8_Msk (0x1UL << CAN_F12R2_FB8_Pos) /*!< 0x00000100 */
  9426. #define CAN_F12R2_FB8 CAN_F12R2_FB8_Msk /*!< Filter bit 8 */
  9427. #define CAN_F12R2_FB9_Pos (9U)
  9428. #define CAN_F12R2_FB9_Msk (0x1UL << CAN_F12R2_FB9_Pos) /*!< 0x00000200 */
  9429. #define CAN_F12R2_FB9 CAN_F12R2_FB9_Msk /*!< Filter bit 9 */
  9430. #define CAN_F12R2_FB10_Pos (10U)
  9431. #define CAN_F12R2_FB10_Msk (0x1UL << CAN_F12R2_FB10_Pos) /*!< 0x00000400 */
  9432. #define CAN_F12R2_FB10 CAN_F12R2_FB10_Msk /*!< Filter bit 10 */
  9433. #define CAN_F12R2_FB11_Pos (11U)
  9434. #define CAN_F12R2_FB11_Msk (0x1UL << CAN_F12R2_FB11_Pos) /*!< 0x00000800 */
  9435. #define CAN_F12R2_FB11 CAN_F12R2_FB11_Msk /*!< Filter bit 11 */
  9436. #define CAN_F12R2_FB12_Pos (12U)
  9437. #define CAN_F12R2_FB12_Msk (0x1UL << CAN_F12R2_FB12_Pos) /*!< 0x00001000 */
  9438. #define CAN_F12R2_FB12 CAN_F12R2_FB12_Msk /*!< Filter bit 12 */
  9439. #define CAN_F12R2_FB13_Pos (13U)
  9440. #define CAN_F12R2_FB13_Msk (0x1UL << CAN_F12R2_FB13_Pos) /*!< 0x00002000 */
  9441. #define CAN_F12R2_FB13 CAN_F12R2_FB13_Msk /*!< Filter bit 13 */
  9442. #define CAN_F12R2_FB14_Pos (14U)
  9443. #define CAN_F12R2_FB14_Msk (0x1UL << CAN_F12R2_FB14_Pos) /*!< 0x00004000 */
  9444. #define CAN_F12R2_FB14 CAN_F12R2_FB14_Msk /*!< Filter bit 14 */
  9445. #define CAN_F12R2_FB15_Pos (15U)
  9446. #define CAN_F12R2_FB15_Msk (0x1UL << CAN_F12R2_FB15_Pos) /*!< 0x00008000 */
  9447. #define CAN_F12R2_FB15 CAN_F12R2_FB15_Msk /*!< Filter bit 15 */
  9448. #define CAN_F12R2_FB16_Pos (16U)
  9449. #define CAN_F12R2_FB16_Msk (0x1UL << CAN_F12R2_FB16_Pos) /*!< 0x00010000 */
  9450. #define CAN_F12R2_FB16 CAN_F12R2_FB16_Msk /*!< Filter bit 16 */
  9451. #define CAN_F12R2_FB17_Pos (17U)
  9452. #define CAN_F12R2_FB17_Msk (0x1UL << CAN_F12R2_FB17_Pos) /*!< 0x00020000 */
  9453. #define CAN_F12R2_FB17 CAN_F12R2_FB17_Msk /*!< Filter bit 17 */
  9454. #define CAN_F12R2_FB18_Pos (18U)
  9455. #define CAN_F12R2_FB18_Msk (0x1UL << CAN_F12R2_FB18_Pos) /*!< 0x00040000 */
  9456. #define CAN_F12R2_FB18 CAN_F12R2_FB18_Msk /*!< Filter bit 18 */
  9457. #define CAN_F12R2_FB19_Pos (19U)
  9458. #define CAN_F12R2_FB19_Msk (0x1UL << CAN_F12R2_FB19_Pos) /*!< 0x00080000 */
  9459. #define CAN_F12R2_FB19 CAN_F12R2_FB19_Msk /*!< Filter bit 19 */
  9460. #define CAN_F12R2_FB20_Pos (20U)
  9461. #define CAN_F12R2_FB20_Msk (0x1UL << CAN_F12R2_FB20_Pos) /*!< 0x00100000 */
  9462. #define CAN_F12R2_FB20 CAN_F12R2_FB20_Msk /*!< Filter bit 20 */
  9463. #define CAN_F12R2_FB21_Pos (21U)
  9464. #define CAN_F12R2_FB21_Msk (0x1UL << CAN_F12R2_FB21_Pos) /*!< 0x00200000 */
  9465. #define CAN_F12R2_FB21 CAN_F12R2_FB21_Msk /*!< Filter bit 21 */
  9466. #define CAN_F12R2_FB22_Pos (22U)
  9467. #define CAN_F12R2_FB22_Msk (0x1UL << CAN_F12R2_FB22_Pos) /*!< 0x00400000 */
  9468. #define CAN_F12R2_FB22 CAN_F12R2_FB22_Msk /*!< Filter bit 22 */
  9469. #define CAN_F12R2_FB23_Pos (23U)
  9470. #define CAN_F12R2_FB23_Msk (0x1UL << CAN_F12R2_FB23_Pos) /*!< 0x00800000 */
  9471. #define CAN_F12R2_FB23 CAN_F12R2_FB23_Msk /*!< Filter bit 23 */
  9472. #define CAN_F12R2_FB24_Pos (24U)
  9473. #define CAN_F12R2_FB24_Msk (0x1UL << CAN_F12R2_FB24_Pos) /*!< 0x01000000 */
  9474. #define CAN_F12R2_FB24 CAN_F12R2_FB24_Msk /*!< Filter bit 24 */
  9475. #define CAN_F12R2_FB25_Pos (25U)
  9476. #define CAN_F12R2_FB25_Msk (0x1UL << CAN_F12R2_FB25_Pos) /*!< 0x02000000 */
  9477. #define CAN_F12R2_FB25 CAN_F12R2_FB25_Msk /*!< Filter bit 25 */
  9478. #define CAN_F12R2_FB26_Pos (26U)
  9479. #define CAN_F12R2_FB26_Msk (0x1UL << CAN_F12R2_FB26_Pos) /*!< 0x04000000 */
  9480. #define CAN_F12R2_FB26 CAN_F12R2_FB26_Msk /*!< Filter bit 26 */
  9481. #define CAN_F12R2_FB27_Pos (27U)
  9482. #define CAN_F12R2_FB27_Msk (0x1UL << CAN_F12R2_FB27_Pos) /*!< 0x08000000 */
  9483. #define CAN_F12R2_FB27 CAN_F12R2_FB27_Msk /*!< Filter bit 27 */
  9484. #define CAN_F12R2_FB28_Pos (28U)
  9485. #define CAN_F12R2_FB28_Msk (0x1UL << CAN_F12R2_FB28_Pos) /*!< 0x10000000 */
  9486. #define CAN_F12R2_FB28 CAN_F12R2_FB28_Msk /*!< Filter bit 28 */
  9487. #define CAN_F12R2_FB29_Pos (29U)
  9488. #define CAN_F12R2_FB29_Msk (0x1UL << CAN_F12R2_FB29_Pos) /*!< 0x20000000 */
  9489. #define CAN_F12R2_FB29 CAN_F12R2_FB29_Msk /*!< Filter bit 29 */
  9490. #define CAN_F12R2_FB30_Pos (30U)
  9491. #define CAN_F12R2_FB30_Msk (0x1UL << CAN_F12R2_FB30_Pos) /*!< 0x40000000 */
  9492. #define CAN_F12R2_FB30 CAN_F12R2_FB30_Msk /*!< Filter bit 30 */
  9493. #define CAN_F12R2_FB31_Pos (31U)
  9494. #define CAN_F12R2_FB31_Msk (0x1UL << CAN_F12R2_FB31_Pos) /*!< 0x80000000 */
  9495. #define CAN_F12R2_FB31 CAN_F12R2_FB31_Msk /*!< Filter bit 31 */
  9496. /******************* Bit definition for CAN_F13R2 register ******************/
  9497. #define CAN_F13R2_FB0_Pos (0U)
  9498. #define CAN_F13R2_FB0_Msk (0x1UL << CAN_F13R2_FB0_Pos) /*!< 0x00000001 */
  9499. #define CAN_F13R2_FB0 CAN_F13R2_FB0_Msk /*!< Filter bit 0 */
  9500. #define CAN_F13R2_FB1_Pos (1U)
  9501. #define CAN_F13R2_FB1_Msk (0x1UL << CAN_F13R2_FB1_Pos) /*!< 0x00000002 */
  9502. #define CAN_F13R2_FB1 CAN_F13R2_FB1_Msk /*!< Filter bit 1 */
  9503. #define CAN_F13R2_FB2_Pos (2U)
  9504. #define CAN_F13R2_FB2_Msk (0x1UL << CAN_F13R2_FB2_Pos) /*!< 0x00000004 */
  9505. #define CAN_F13R2_FB2 CAN_F13R2_FB2_Msk /*!< Filter bit 2 */
  9506. #define CAN_F13R2_FB3_Pos (3U)
  9507. #define CAN_F13R2_FB3_Msk (0x1UL << CAN_F13R2_FB3_Pos) /*!< 0x00000008 */
  9508. #define CAN_F13R2_FB3 CAN_F13R2_FB3_Msk /*!< Filter bit 3 */
  9509. #define CAN_F13R2_FB4_Pos (4U)
  9510. #define CAN_F13R2_FB4_Msk (0x1UL << CAN_F13R2_FB4_Pos) /*!< 0x00000010 */
  9511. #define CAN_F13R2_FB4 CAN_F13R2_FB4_Msk /*!< Filter bit 4 */
  9512. #define CAN_F13R2_FB5_Pos (5U)
  9513. #define CAN_F13R2_FB5_Msk (0x1UL << CAN_F13R2_FB5_Pos) /*!< 0x00000020 */
  9514. #define CAN_F13R2_FB5 CAN_F13R2_FB5_Msk /*!< Filter bit 5 */
  9515. #define CAN_F13R2_FB6_Pos (6U)
  9516. #define CAN_F13R2_FB6_Msk (0x1UL << CAN_F13R2_FB6_Pos) /*!< 0x00000040 */
  9517. #define CAN_F13R2_FB6 CAN_F13R2_FB6_Msk /*!< Filter bit 6 */
  9518. #define CAN_F13R2_FB7_Pos (7U)
  9519. #define CAN_F13R2_FB7_Msk (0x1UL << CAN_F13R2_FB7_Pos) /*!< 0x00000080 */
  9520. #define CAN_F13R2_FB7 CAN_F13R2_FB7_Msk /*!< Filter bit 7 */
  9521. #define CAN_F13R2_FB8_Pos (8U)
  9522. #define CAN_F13R2_FB8_Msk (0x1UL << CAN_F13R2_FB8_Pos) /*!< 0x00000100 */
  9523. #define CAN_F13R2_FB8 CAN_F13R2_FB8_Msk /*!< Filter bit 8 */
  9524. #define CAN_F13R2_FB9_Pos (9U)
  9525. #define CAN_F13R2_FB9_Msk (0x1UL << CAN_F13R2_FB9_Pos) /*!< 0x00000200 */
  9526. #define CAN_F13R2_FB9 CAN_F13R2_FB9_Msk /*!< Filter bit 9 */
  9527. #define CAN_F13R2_FB10_Pos (10U)
  9528. #define CAN_F13R2_FB10_Msk (0x1UL << CAN_F13R2_FB10_Pos) /*!< 0x00000400 */
  9529. #define CAN_F13R2_FB10 CAN_F13R2_FB10_Msk /*!< Filter bit 10 */
  9530. #define CAN_F13R2_FB11_Pos (11U)
  9531. #define CAN_F13R2_FB11_Msk (0x1UL << CAN_F13R2_FB11_Pos) /*!< 0x00000800 */
  9532. #define CAN_F13R2_FB11 CAN_F13R2_FB11_Msk /*!< Filter bit 11 */
  9533. #define CAN_F13R2_FB12_Pos (12U)
  9534. #define CAN_F13R2_FB12_Msk (0x1UL << CAN_F13R2_FB12_Pos) /*!< 0x00001000 */
  9535. #define CAN_F13R2_FB12 CAN_F13R2_FB12_Msk /*!< Filter bit 12 */
  9536. #define CAN_F13R2_FB13_Pos (13U)
  9537. #define CAN_F13R2_FB13_Msk (0x1UL << CAN_F13R2_FB13_Pos) /*!< 0x00002000 */
  9538. #define CAN_F13R2_FB13 CAN_F13R2_FB13_Msk /*!< Filter bit 13 */
  9539. #define CAN_F13R2_FB14_Pos (14U)
  9540. #define CAN_F13R2_FB14_Msk (0x1UL << CAN_F13R2_FB14_Pos) /*!< 0x00004000 */
  9541. #define CAN_F13R2_FB14 CAN_F13R2_FB14_Msk /*!< Filter bit 14 */
  9542. #define CAN_F13R2_FB15_Pos (15U)
  9543. #define CAN_F13R2_FB15_Msk (0x1UL << CAN_F13R2_FB15_Pos) /*!< 0x00008000 */
  9544. #define CAN_F13R2_FB15 CAN_F13R2_FB15_Msk /*!< Filter bit 15 */
  9545. #define CAN_F13R2_FB16_Pos (16U)
  9546. #define CAN_F13R2_FB16_Msk (0x1UL << CAN_F13R2_FB16_Pos) /*!< 0x00010000 */
  9547. #define CAN_F13R2_FB16 CAN_F13R2_FB16_Msk /*!< Filter bit 16 */
  9548. #define CAN_F13R2_FB17_Pos (17U)
  9549. #define CAN_F13R2_FB17_Msk (0x1UL << CAN_F13R2_FB17_Pos) /*!< 0x00020000 */
  9550. #define CAN_F13R2_FB17 CAN_F13R2_FB17_Msk /*!< Filter bit 17 */
  9551. #define CAN_F13R2_FB18_Pos (18U)
  9552. #define CAN_F13R2_FB18_Msk (0x1UL << CAN_F13R2_FB18_Pos) /*!< 0x00040000 */
  9553. #define CAN_F13R2_FB18 CAN_F13R2_FB18_Msk /*!< Filter bit 18 */
  9554. #define CAN_F13R2_FB19_Pos (19U)
  9555. #define CAN_F13R2_FB19_Msk (0x1UL << CAN_F13R2_FB19_Pos) /*!< 0x00080000 */
  9556. #define CAN_F13R2_FB19 CAN_F13R2_FB19_Msk /*!< Filter bit 19 */
  9557. #define CAN_F13R2_FB20_Pos (20U)
  9558. #define CAN_F13R2_FB20_Msk (0x1UL << CAN_F13R2_FB20_Pos) /*!< 0x00100000 */
  9559. #define CAN_F13R2_FB20 CAN_F13R2_FB20_Msk /*!< Filter bit 20 */
  9560. #define CAN_F13R2_FB21_Pos (21U)
  9561. #define CAN_F13R2_FB21_Msk (0x1UL << CAN_F13R2_FB21_Pos) /*!< 0x00200000 */
  9562. #define CAN_F13R2_FB21 CAN_F13R2_FB21_Msk /*!< Filter bit 21 */
  9563. #define CAN_F13R2_FB22_Pos (22U)
  9564. #define CAN_F13R2_FB22_Msk (0x1UL << CAN_F13R2_FB22_Pos) /*!< 0x00400000 */
  9565. #define CAN_F13R2_FB22 CAN_F13R2_FB22_Msk /*!< Filter bit 22 */
  9566. #define CAN_F13R2_FB23_Pos (23U)
  9567. #define CAN_F13R2_FB23_Msk (0x1UL << CAN_F13R2_FB23_Pos) /*!< 0x00800000 */
  9568. #define CAN_F13R2_FB23 CAN_F13R2_FB23_Msk /*!< Filter bit 23 */
  9569. #define CAN_F13R2_FB24_Pos (24U)
  9570. #define CAN_F13R2_FB24_Msk (0x1UL << CAN_F13R2_FB24_Pos) /*!< 0x01000000 */
  9571. #define CAN_F13R2_FB24 CAN_F13R2_FB24_Msk /*!< Filter bit 24 */
  9572. #define CAN_F13R2_FB25_Pos (25U)
  9573. #define CAN_F13R2_FB25_Msk (0x1UL << CAN_F13R2_FB25_Pos) /*!< 0x02000000 */
  9574. #define CAN_F13R2_FB25 CAN_F13R2_FB25_Msk /*!< Filter bit 25 */
  9575. #define CAN_F13R2_FB26_Pos (26U)
  9576. #define CAN_F13R2_FB26_Msk (0x1UL << CAN_F13R2_FB26_Pos) /*!< 0x04000000 */
  9577. #define CAN_F13R2_FB26 CAN_F13R2_FB26_Msk /*!< Filter bit 26 */
  9578. #define CAN_F13R2_FB27_Pos (27U)
  9579. #define CAN_F13R2_FB27_Msk (0x1UL << CAN_F13R2_FB27_Pos) /*!< 0x08000000 */
  9580. #define CAN_F13R2_FB27 CAN_F13R2_FB27_Msk /*!< Filter bit 27 */
  9581. #define CAN_F13R2_FB28_Pos (28U)
  9582. #define CAN_F13R2_FB28_Msk (0x1UL << CAN_F13R2_FB28_Pos) /*!< 0x10000000 */
  9583. #define CAN_F13R2_FB28 CAN_F13R2_FB28_Msk /*!< Filter bit 28 */
  9584. #define CAN_F13R2_FB29_Pos (29U)
  9585. #define CAN_F13R2_FB29_Msk (0x1UL << CAN_F13R2_FB29_Pos) /*!< 0x20000000 */
  9586. #define CAN_F13R2_FB29 CAN_F13R2_FB29_Msk /*!< Filter bit 29 */
  9587. #define CAN_F13R2_FB30_Pos (30U)
  9588. #define CAN_F13R2_FB30_Msk (0x1UL << CAN_F13R2_FB30_Pos) /*!< 0x40000000 */
  9589. #define CAN_F13R2_FB30 CAN_F13R2_FB30_Msk /*!< Filter bit 30 */
  9590. #define CAN_F13R2_FB31_Pos (31U)
  9591. #define CAN_F13R2_FB31_Msk (0x1UL << CAN_F13R2_FB31_Pos) /*!< 0x80000000 */
  9592. #define CAN_F13R2_FB31 CAN_F13R2_FB31_Msk /*!< Filter bit 31 */
  9593. /******************************************************************************/
  9594. /* */
  9595. /* Serial Peripheral Interface */
  9596. /* */
  9597. /******************************************************************************/
  9598. /*
  9599. * @brief Specific device feature definitions (not present on all devices in the STM32F1 serie)
  9600. */
  9601. #define SPI_I2S_SUPPORT /*!< I2S support */
  9602. #define SPI_CRC_ERROR_WORKAROUND_FEATURE
  9603. /******************* Bit definition for SPI_CR1 register ********************/
  9604. #define SPI_CR1_CPHA_Pos (0U)
  9605. #define SPI_CR1_CPHA_Msk (0x1UL << SPI_CR1_CPHA_Pos) /*!< 0x00000001 */
  9606. #define SPI_CR1_CPHA SPI_CR1_CPHA_Msk /*!< Clock Phase */
  9607. #define SPI_CR1_CPOL_Pos (1U)
  9608. #define SPI_CR1_CPOL_Msk (0x1UL << SPI_CR1_CPOL_Pos) /*!< 0x00000002 */
  9609. #define SPI_CR1_CPOL SPI_CR1_CPOL_Msk /*!< Clock Polarity */
  9610. #define SPI_CR1_MSTR_Pos (2U)
  9611. #define SPI_CR1_MSTR_Msk (0x1UL << SPI_CR1_MSTR_Pos) /*!< 0x00000004 */
  9612. #define SPI_CR1_MSTR SPI_CR1_MSTR_Msk /*!< Master Selection */
  9613. #define SPI_CR1_BR_Pos (3U)
  9614. #define SPI_CR1_BR_Msk (0x7UL << SPI_CR1_BR_Pos) /*!< 0x00000038 */
  9615. #define SPI_CR1_BR SPI_CR1_BR_Msk /*!< BR[2:0] bits (Baud Rate Control) */
  9616. #define SPI_CR1_BR_0 (0x1UL << SPI_CR1_BR_Pos) /*!< 0x00000008 */
  9617. #define SPI_CR1_BR_1 (0x2UL << SPI_CR1_BR_Pos) /*!< 0x00000010 */
  9618. #define SPI_CR1_BR_2 (0x4UL << SPI_CR1_BR_Pos) /*!< 0x00000020 */
  9619. #define SPI_CR1_SPE_Pos (6U)
  9620. #define SPI_CR1_SPE_Msk (0x1UL << SPI_CR1_SPE_Pos) /*!< 0x00000040 */
  9621. #define SPI_CR1_SPE SPI_CR1_SPE_Msk /*!< SPI Enable */
  9622. #define SPI_CR1_LSBFIRST_Pos (7U)
  9623. #define SPI_CR1_LSBFIRST_Msk (0x1UL << SPI_CR1_LSBFIRST_Pos) /*!< 0x00000080 */
  9624. #define SPI_CR1_LSBFIRST SPI_CR1_LSBFIRST_Msk /*!< Frame Format */
  9625. #define SPI_CR1_SSI_Pos (8U)
  9626. #define SPI_CR1_SSI_Msk (0x1UL << SPI_CR1_SSI_Pos) /*!< 0x00000100 */
  9627. #define SPI_CR1_SSI SPI_CR1_SSI_Msk /*!< Internal slave select */
  9628. #define SPI_CR1_SSM_Pos (9U)
  9629. #define SPI_CR1_SSM_Msk (0x1UL << SPI_CR1_SSM_Pos) /*!< 0x00000200 */
  9630. #define SPI_CR1_SSM SPI_CR1_SSM_Msk /*!< Software slave management */
  9631. #define SPI_CR1_RXONLY_Pos (10U)
  9632. #define SPI_CR1_RXONLY_Msk (0x1UL << SPI_CR1_RXONLY_Pos) /*!< 0x00000400 */
  9633. #define SPI_CR1_RXONLY SPI_CR1_RXONLY_Msk /*!< Receive only */
  9634. #define SPI_CR1_DFF_Pos (11U)
  9635. #define SPI_CR1_DFF_Msk (0x1UL << SPI_CR1_DFF_Pos) /*!< 0x00000800 */
  9636. #define SPI_CR1_DFF SPI_CR1_DFF_Msk /*!< Data Frame Format */
  9637. #define SPI_CR1_CRCNEXT_Pos (12U)
  9638. #define SPI_CR1_CRCNEXT_Msk (0x1UL << SPI_CR1_CRCNEXT_Pos) /*!< 0x00001000 */
  9639. #define SPI_CR1_CRCNEXT SPI_CR1_CRCNEXT_Msk /*!< Transmit CRC next */
  9640. #define SPI_CR1_CRCEN_Pos (13U)
  9641. #define SPI_CR1_CRCEN_Msk (0x1UL << SPI_CR1_CRCEN_Pos) /*!< 0x00002000 */
  9642. #define SPI_CR1_CRCEN SPI_CR1_CRCEN_Msk /*!< Hardware CRC calculation enable */
  9643. #define SPI_CR1_BIDIOE_Pos (14U)
  9644. #define SPI_CR1_BIDIOE_Msk (0x1UL << SPI_CR1_BIDIOE_Pos) /*!< 0x00004000 */
  9645. #define SPI_CR1_BIDIOE SPI_CR1_BIDIOE_Msk /*!< Output enable in bidirectional mode */
  9646. #define SPI_CR1_BIDIMODE_Pos (15U)
  9647. #define SPI_CR1_BIDIMODE_Msk (0x1UL << SPI_CR1_BIDIMODE_Pos) /*!< 0x00008000 */
  9648. #define SPI_CR1_BIDIMODE SPI_CR1_BIDIMODE_Msk /*!< Bidirectional data mode enable */
  9649. /******************* Bit definition for SPI_CR2 register ********************/
  9650. #define SPI_CR2_RXDMAEN_Pos (0U)
  9651. #define SPI_CR2_RXDMAEN_Msk (0x1UL << SPI_CR2_RXDMAEN_Pos) /*!< 0x00000001 */
  9652. #define SPI_CR2_RXDMAEN SPI_CR2_RXDMAEN_Msk /*!< Rx Buffer DMA Enable */
  9653. #define SPI_CR2_TXDMAEN_Pos (1U)
  9654. #define SPI_CR2_TXDMAEN_Msk (0x1UL << SPI_CR2_TXDMAEN_Pos) /*!< 0x00000002 */
  9655. #define SPI_CR2_TXDMAEN SPI_CR2_TXDMAEN_Msk /*!< Tx Buffer DMA Enable */
  9656. #define SPI_CR2_SSOE_Pos (2U)
  9657. #define SPI_CR2_SSOE_Msk (0x1UL << SPI_CR2_SSOE_Pos) /*!< 0x00000004 */
  9658. #define SPI_CR2_SSOE SPI_CR2_SSOE_Msk /*!< SS Output Enable */
  9659. #define SPI_CR2_ERRIE_Pos (5U)
  9660. #define SPI_CR2_ERRIE_Msk (0x1UL << SPI_CR2_ERRIE_Pos) /*!< 0x00000020 */
  9661. #define SPI_CR2_ERRIE SPI_CR2_ERRIE_Msk /*!< Error Interrupt Enable */
  9662. #define SPI_CR2_RXNEIE_Pos (6U)
  9663. #define SPI_CR2_RXNEIE_Msk (0x1UL << SPI_CR2_RXNEIE_Pos) /*!< 0x00000040 */
  9664. #define SPI_CR2_RXNEIE SPI_CR2_RXNEIE_Msk /*!< RX buffer Not Empty Interrupt Enable */
  9665. #define SPI_CR2_TXEIE_Pos (7U)
  9666. #define SPI_CR2_TXEIE_Msk (0x1UL << SPI_CR2_TXEIE_Pos) /*!< 0x00000080 */
  9667. #define SPI_CR2_TXEIE SPI_CR2_TXEIE_Msk /*!< Tx buffer Empty Interrupt Enable */
  9668. /******************** Bit definition for SPI_SR register ********************/
  9669. #define SPI_SR_RXNE_Pos (0U)
  9670. #define SPI_SR_RXNE_Msk (0x1UL << SPI_SR_RXNE_Pos) /*!< 0x00000001 */
  9671. #define SPI_SR_RXNE SPI_SR_RXNE_Msk /*!< Receive buffer Not Empty */
  9672. #define SPI_SR_TXE_Pos (1U)
  9673. #define SPI_SR_TXE_Msk (0x1UL << SPI_SR_TXE_Pos) /*!< 0x00000002 */
  9674. #define SPI_SR_TXE SPI_SR_TXE_Msk /*!< Transmit buffer Empty */
  9675. #define SPI_SR_CHSIDE_Pos (2U)
  9676. #define SPI_SR_CHSIDE_Msk (0x1UL << SPI_SR_CHSIDE_Pos) /*!< 0x00000004 */
  9677. #define SPI_SR_CHSIDE SPI_SR_CHSIDE_Msk /*!< Channel side */
  9678. #define SPI_SR_UDR_Pos (3U)
  9679. #define SPI_SR_UDR_Msk (0x1UL << SPI_SR_UDR_Pos) /*!< 0x00000008 */
  9680. #define SPI_SR_UDR SPI_SR_UDR_Msk /*!< Underrun flag */
  9681. #define SPI_SR_CRCERR_Pos (4U)
  9682. #define SPI_SR_CRCERR_Msk (0x1UL << SPI_SR_CRCERR_Pos) /*!< 0x00000010 */
  9683. #define SPI_SR_CRCERR SPI_SR_CRCERR_Msk /*!< CRC Error flag */
  9684. #define SPI_SR_MODF_Pos (5U)
  9685. #define SPI_SR_MODF_Msk (0x1UL << SPI_SR_MODF_Pos) /*!< 0x00000020 */
  9686. #define SPI_SR_MODF SPI_SR_MODF_Msk /*!< Mode fault */
  9687. #define SPI_SR_OVR_Pos (6U)
  9688. #define SPI_SR_OVR_Msk (0x1UL << SPI_SR_OVR_Pos) /*!< 0x00000040 */
  9689. #define SPI_SR_OVR SPI_SR_OVR_Msk /*!< Overrun flag */
  9690. #define SPI_SR_BSY_Pos (7U)
  9691. #define SPI_SR_BSY_Msk (0x1UL << SPI_SR_BSY_Pos) /*!< 0x00000080 */
  9692. #define SPI_SR_BSY SPI_SR_BSY_Msk /*!< Busy flag */
  9693. /******************** Bit definition for SPI_DR register ********************/
  9694. #define SPI_DR_DR_Pos (0U)
  9695. #define SPI_DR_DR_Msk (0xFFFFUL << SPI_DR_DR_Pos) /*!< 0x0000FFFF */
  9696. #define SPI_DR_DR SPI_DR_DR_Msk /*!< Data Register */
  9697. /******************* Bit definition for SPI_CRCPR register ******************/
  9698. #define SPI_CRCPR_CRCPOLY_Pos (0U)
  9699. #define SPI_CRCPR_CRCPOLY_Msk (0xFFFFUL << SPI_CRCPR_CRCPOLY_Pos) /*!< 0x0000FFFF */
  9700. #define SPI_CRCPR_CRCPOLY SPI_CRCPR_CRCPOLY_Msk /*!< CRC polynomial register */
  9701. /****************** Bit definition for SPI_RXCRCR register ******************/
  9702. #define SPI_RXCRCR_RXCRC_Pos (0U)
  9703. #define SPI_RXCRCR_RXCRC_Msk (0xFFFFUL << SPI_RXCRCR_RXCRC_Pos) /*!< 0x0000FFFF */
  9704. #define SPI_RXCRCR_RXCRC SPI_RXCRCR_RXCRC_Msk /*!< Rx CRC Register */
  9705. /****************** Bit definition for SPI_TXCRCR register ******************/
  9706. #define SPI_TXCRCR_TXCRC_Pos (0U)
  9707. #define SPI_TXCRCR_TXCRC_Msk (0xFFFFUL << SPI_TXCRCR_TXCRC_Pos) /*!< 0x0000FFFF */
  9708. #define SPI_TXCRCR_TXCRC SPI_TXCRCR_TXCRC_Msk /*!< Tx CRC Register */
  9709. /****************** Bit definition for SPI_I2SCFGR register *****************/
  9710. #define SPI_I2SCFGR_CHLEN_Pos (0U)
  9711. #define SPI_I2SCFGR_CHLEN_Msk (0x1UL << SPI_I2SCFGR_CHLEN_Pos) /*!< 0x00000001 */
  9712. #define SPI_I2SCFGR_CHLEN SPI_I2SCFGR_CHLEN_Msk /*!< Channel length (number of bits per audio channel) */
  9713. #define SPI_I2SCFGR_DATLEN_Pos (1U)
  9714. #define SPI_I2SCFGR_DATLEN_Msk (0x3UL << SPI_I2SCFGR_DATLEN_Pos) /*!< 0x00000006 */
  9715. #define SPI_I2SCFGR_DATLEN SPI_I2SCFGR_DATLEN_Msk /*!< DATLEN[1:0] bits (Data length to be transferred) */
  9716. #define SPI_I2SCFGR_DATLEN_0 (0x1UL << SPI_I2SCFGR_DATLEN_Pos) /*!< 0x00000002 */
  9717. #define SPI_I2SCFGR_DATLEN_1 (0x2UL << SPI_I2SCFGR_DATLEN_Pos) /*!< 0x00000004 */
  9718. #define SPI_I2SCFGR_CKPOL_Pos (3U)
  9719. #define SPI_I2SCFGR_CKPOL_Msk (0x1UL << SPI_I2SCFGR_CKPOL_Pos) /*!< 0x00000008 */
  9720. #define SPI_I2SCFGR_CKPOL SPI_I2SCFGR_CKPOL_Msk /*!< steady state clock polarity */
  9721. #define SPI_I2SCFGR_I2SSTD_Pos (4U)
  9722. #define SPI_I2SCFGR_I2SSTD_Msk (0x3UL << SPI_I2SCFGR_I2SSTD_Pos) /*!< 0x00000030 */
  9723. #define SPI_I2SCFGR_I2SSTD SPI_I2SCFGR_I2SSTD_Msk /*!< I2SSTD[1:0] bits (I2S standard selection) */
  9724. #define SPI_I2SCFGR_I2SSTD_0 (0x1UL << SPI_I2SCFGR_I2SSTD_Pos) /*!< 0x00000010 */
  9725. #define SPI_I2SCFGR_I2SSTD_1 (0x2UL << SPI_I2SCFGR_I2SSTD_Pos) /*!< 0x00000020 */
  9726. #define SPI_I2SCFGR_PCMSYNC_Pos (7U)
  9727. #define SPI_I2SCFGR_PCMSYNC_Msk (0x1UL << SPI_I2SCFGR_PCMSYNC_Pos) /*!< 0x00000080 */
  9728. #define SPI_I2SCFGR_PCMSYNC SPI_I2SCFGR_PCMSYNC_Msk /*!< PCM frame synchronization */
  9729. #define SPI_I2SCFGR_I2SCFG_Pos (8U)
  9730. #define SPI_I2SCFGR_I2SCFG_Msk (0x3UL << SPI_I2SCFGR_I2SCFG_Pos) /*!< 0x00000300 */
  9731. #define SPI_I2SCFGR_I2SCFG SPI_I2SCFGR_I2SCFG_Msk /*!< I2SCFG[1:0] bits (I2S configuration mode) */
  9732. #define SPI_I2SCFGR_I2SCFG_0 (0x1UL << SPI_I2SCFGR_I2SCFG_Pos) /*!< 0x00000100 */
  9733. #define SPI_I2SCFGR_I2SCFG_1 (0x2UL << SPI_I2SCFGR_I2SCFG_Pos) /*!< 0x00000200 */
  9734. #define SPI_I2SCFGR_I2SE_Pos (10U)
  9735. #define SPI_I2SCFGR_I2SE_Msk (0x1UL << SPI_I2SCFGR_I2SE_Pos) /*!< 0x00000400 */
  9736. #define SPI_I2SCFGR_I2SE SPI_I2SCFGR_I2SE_Msk /*!< I2S Enable */
  9737. #define SPI_I2SCFGR_I2SMOD_Pos (11U)
  9738. #define SPI_I2SCFGR_I2SMOD_Msk (0x1UL << SPI_I2SCFGR_I2SMOD_Pos) /*!< 0x00000800 */
  9739. #define SPI_I2SCFGR_I2SMOD SPI_I2SCFGR_I2SMOD_Msk /*!< I2S mode selection */
  9740. /****************** Bit definition for SPI_I2SPR register *******************/
  9741. #define SPI_I2SPR_I2SDIV_Pos (0U)
  9742. #define SPI_I2SPR_I2SDIV_Msk (0xFFUL << SPI_I2SPR_I2SDIV_Pos) /*!< 0x000000FF */
  9743. #define SPI_I2SPR_I2SDIV SPI_I2SPR_I2SDIV_Msk /*!< I2S Linear prescaler */
  9744. #define SPI_I2SPR_ODD_Pos (8U)
  9745. #define SPI_I2SPR_ODD_Msk (0x1UL << SPI_I2SPR_ODD_Pos) /*!< 0x00000100 */
  9746. #define SPI_I2SPR_ODD SPI_I2SPR_ODD_Msk /*!< Odd factor for the prescaler */
  9747. #define SPI_I2SPR_MCKOE_Pos (9U)
  9748. #define SPI_I2SPR_MCKOE_Msk (0x1UL << SPI_I2SPR_MCKOE_Pos) /*!< 0x00000200 */
  9749. #define SPI_I2SPR_MCKOE SPI_I2SPR_MCKOE_Msk /*!< Master Clock Output Enable */
  9750. /******************************************************************************/
  9751. /* */
  9752. /* Inter-integrated Circuit Interface */
  9753. /* */
  9754. /******************************************************************************/
  9755. /******************* Bit definition for I2C_CR1 register ********************/
  9756. #define I2C_CR1_PE_Pos (0U)
  9757. #define I2C_CR1_PE_Msk (0x1UL << I2C_CR1_PE_Pos) /*!< 0x00000001 */
  9758. #define I2C_CR1_PE I2C_CR1_PE_Msk /*!< Peripheral Enable */
  9759. #define I2C_CR1_SMBUS_Pos (1U)
  9760. #define I2C_CR1_SMBUS_Msk (0x1UL << I2C_CR1_SMBUS_Pos) /*!< 0x00000002 */
  9761. #define I2C_CR1_SMBUS I2C_CR1_SMBUS_Msk /*!< SMBus Mode */
  9762. #define I2C_CR1_SMBTYPE_Pos (3U)
  9763. #define I2C_CR1_SMBTYPE_Msk (0x1UL << I2C_CR1_SMBTYPE_Pos) /*!< 0x00000008 */
  9764. #define I2C_CR1_SMBTYPE I2C_CR1_SMBTYPE_Msk /*!< SMBus Type */
  9765. #define I2C_CR1_ENARP_Pos (4U)
  9766. #define I2C_CR1_ENARP_Msk (0x1UL << I2C_CR1_ENARP_Pos) /*!< 0x00000010 */
  9767. #define I2C_CR1_ENARP I2C_CR1_ENARP_Msk /*!< ARP Enable */
  9768. #define I2C_CR1_ENPEC_Pos (5U)
  9769. #define I2C_CR1_ENPEC_Msk (0x1UL << I2C_CR1_ENPEC_Pos) /*!< 0x00000020 */
  9770. #define I2C_CR1_ENPEC I2C_CR1_ENPEC_Msk /*!< PEC Enable */
  9771. #define I2C_CR1_ENGC_Pos (6U)
  9772. #define I2C_CR1_ENGC_Msk (0x1UL << I2C_CR1_ENGC_Pos) /*!< 0x00000040 */
  9773. #define I2C_CR1_ENGC I2C_CR1_ENGC_Msk /*!< General Call Enable */
  9774. #define I2C_CR1_NOSTRETCH_Pos (7U)
  9775. #define I2C_CR1_NOSTRETCH_Msk (0x1UL << I2C_CR1_NOSTRETCH_Pos) /*!< 0x00000080 */
  9776. #define I2C_CR1_NOSTRETCH I2C_CR1_NOSTRETCH_Msk /*!< Clock Stretching Disable (Slave mode) */
  9777. #define I2C_CR1_START_Pos (8U)
  9778. #define I2C_CR1_START_Msk (0x1UL << I2C_CR1_START_Pos) /*!< 0x00000100 */
  9779. #define I2C_CR1_START I2C_CR1_START_Msk /*!< Start Generation */
  9780. #define I2C_CR1_STOP_Pos (9U)
  9781. #define I2C_CR1_STOP_Msk (0x1UL << I2C_CR1_STOP_Pos) /*!< 0x00000200 */
  9782. #define I2C_CR1_STOP I2C_CR1_STOP_Msk /*!< Stop Generation */
  9783. #define I2C_CR1_ACK_Pos (10U)
  9784. #define I2C_CR1_ACK_Msk (0x1UL << I2C_CR1_ACK_Pos) /*!< 0x00000400 */
  9785. #define I2C_CR1_ACK I2C_CR1_ACK_Msk /*!< Acknowledge Enable */
  9786. #define I2C_CR1_POS_Pos (11U)
  9787. #define I2C_CR1_POS_Msk (0x1UL << I2C_CR1_POS_Pos) /*!< 0x00000800 */
  9788. #define I2C_CR1_POS I2C_CR1_POS_Msk /*!< Acknowledge/PEC Position (for data reception) */
  9789. #define I2C_CR1_PEC_Pos (12U)
  9790. #define I2C_CR1_PEC_Msk (0x1UL << I2C_CR1_PEC_Pos) /*!< 0x00001000 */
  9791. #define I2C_CR1_PEC I2C_CR1_PEC_Msk /*!< Packet Error Checking */
  9792. #define I2C_CR1_ALERT_Pos (13U)
  9793. #define I2C_CR1_ALERT_Msk (0x1UL << I2C_CR1_ALERT_Pos) /*!< 0x00002000 */
  9794. #define I2C_CR1_ALERT I2C_CR1_ALERT_Msk /*!< SMBus Alert */
  9795. #define I2C_CR1_SWRST_Pos (15U)
  9796. #define I2C_CR1_SWRST_Msk (0x1UL << I2C_CR1_SWRST_Pos) /*!< 0x00008000 */
  9797. #define I2C_CR1_SWRST I2C_CR1_SWRST_Msk /*!< Software Reset */
  9798. /******************* Bit definition for I2C_CR2 register ********************/
  9799. #define I2C_CR2_FREQ_Pos (0U)
  9800. #define I2C_CR2_FREQ_Msk (0x3FUL << I2C_CR2_FREQ_Pos) /*!< 0x0000003F */
  9801. #define I2C_CR2_FREQ I2C_CR2_FREQ_Msk /*!< FREQ[5:0] bits (Peripheral Clock Frequency) */
  9802. #define I2C_CR2_FREQ_0 (0x01UL << I2C_CR2_FREQ_Pos) /*!< 0x00000001 */
  9803. #define I2C_CR2_FREQ_1 (0x02UL << I2C_CR2_FREQ_Pos) /*!< 0x00000002 */
  9804. #define I2C_CR2_FREQ_2 (0x04UL << I2C_CR2_FREQ_Pos) /*!< 0x00000004 */
  9805. #define I2C_CR2_FREQ_3 (0x08UL << I2C_CR2_FREQ_Pos) /*!< 0x00000008 */
  9806. #define I2C_CR2_FREQ_4 (0x10UL << I2C_CR2_FREQ_Pos) /*!< 0x00000010 */
  9807. #define I2C_CR2_FREQ_5 (0x20UL << I2C_CR2_FREQ_Pos) /*!< 0x00000020 */
  9808. #define I2C_CR2_ITERREN_Pos (8U)
  9809. #define I2C_CR2_ITERREN_Msk (0x1UL << I2C_CR2_ITERREN_Pos) /*!< 0x00000100 */
  9810. #define I2C_CR2_ITERREN I2C_CR2_ITERREN_Msk /*!< Error Interrupt Enable */
  9811. #define I2C_CR2_ITEVTEN_Pos (9U)
  9812. #define I2C_CR2_ITEVTEN_Msk (0x1UL << I2C_CR2_ITEVTEN_Pos) /*!< 0x00000200 */
  9813. #define I2C_CR2_ITEVTEN I2C_CR2_ITEVTEN_Msk /*!< Event Interrupt Enable */
  9814. #define I2C_CR2_ITBUFEN_Pos (10U)
  9815. #define I2C_CR2_ITBUFEN_Msk (0x1UL << I2C_CR2_ITBUFEN_Pos) /*!< 0x00000400 */
  9816. #define I2C_CR2_ITBUFEN I2C_CR2_ITBUFEN_Msk /*!< Buffer Interrupt Enable */
  9817. #define I2C_CR2_DMAEN_Pos (11U)
  9818. #define I2C_CR2_DMAEN_Msk (0x1UL << I2C_CR2_DMAEN_Pos) /*!< 0x00000800 */
  9819. #define I2C_CR2_DMAEN I2C_CR2_DMAEN_Msk /*!< DMA Requests Enable */
  9820. #define I2C_CR2_LAST_Pos (12U)
  9821. #define I2C_CR2_LAST_Msk (0x1UL << I2C_CR2_LAST_Pos) /*!< 0x00001000 */
  9822. #define I2C_CR2_LAST I2C_CR2_LAST_Msk /*!< DMA Last Transfer */
  9823. /******************* Bit definition for I2C_OAR1 register *******************/
  9824. #define I2C_OAR1_ADD1_7 0x000000FEU /*!< Interface Address */
  9825. #define I2C_OAR1_ADD8_9 0x00000300U /*!< Interface Address */
  9826. #define I2C_OAR1_ADD0_Pos (0U)
  9827. #define I2C_OAR1_ADD0_Msk (0x1UL << I2C_OAR1_ADD0_Pos) /*!< 0x00000001 */
  9828. #define I2C_OAR1_ADD0 I2C_OAR1_ADD0_Msk /*!< Bit 0 */
  9829. #define I2C_OAR1_ADD1_Pos (1U)
  9830. #define I2C_OAR1_ADD1_Msk (0x1UL << I2C_OAR1_ADD1_Pos) /*!< 0x00000002 */
  9831. #define I2C_OAR1_ADD1 I2C_OAR1_ADD1_Msk /*!< Bit 1 */
  9832. #define I2C_OAR1_ADD2_Pos (2U)
  9833. #define I2C_OAR1_ADD2_Msk (0x1UL << I2C_OAR1_ADD2_Pos) /*!< 0x00000004 */
  9834. #define I2C_OAR1_ADD2 I2C_OAR1_ADD2_Msk /*!< Bit 2 */
  9835. #define I2C_OAR1_ADD3_Pos (3U)
  9836. #define I2C_OAR1_ADD3_Msk (0x1UL << I2C_OAR1_ADD3_Pos) /*!< 0x00000008 */
  9837. #define I2C_OAR1_ADD3 I2C_OAR1_ADD3_Msk /*!< Bit 3 */
  9838. #define I2C_OAR1_ADD4_Pos (4U)
  9839. #define I2C_OAR1_ADD4_Msk (0x1UL << I2C_OAR1_ADD4_Pos) /*!< 0x00000010 */
  9840. #define I2C_OAR1_ADD4 I2C_OAR1_ADD4_Msk /*!< Bit 4 */
  9841. #define I2C_OAR1_ADD5_Pos (5U)
  9842. #define I2C_OAR1_ADD5_Msk (0x1UL << I2C_OAR1_ADD5_Pos) /*!< 0x00000020 */
  9843. #define I2C_OAR1_ADD5 I2C_OAR1_ADD5_Msk /*!< Bit 5 */
  9844. #define I2C_OAR1_ADD6_Pos (6U)
  9845. #define I2C_OAR1_ADD6_Msk (0x1UL << I2C_OAR1_ADD6_Pos) /*!< 0x00000040 */
  9846. #define I2C_OAR1_ADD6 I2C_OAR1_ADD6_Msk /*!< Bit 6 */
  9847. #define I2C_OAR1_ADD7_Pos (7U)
  9848. #define I2C_OAR1_ADD7_Msk (0x1UL << I2C_OAR1_ADD7_Pos) /*!< 0x00000080 */
  9849. #define I2C_OAR1_ADD7 I2C_OAR1_ADD7_Msk /*!< Bit 7 */
  9850. #define I2C_OAR1_ADD8_Pos (8U)
  9851. #define I2C_OAR1_ADD8_Msk (0x1UL << I2C_OAR1_ADD8_Pos) /*!< 0x00000100 */
  9852. #define I2C_OAR1_ADD8 I2C_OAR1_ADD8_Msk /*!< Bit 8 */
  9853. #define I2C_OAR1_ADD9_Pos (9U)
  9854. #define I2C_OAR1_ADD9_Msk (0x1UL << I2C_OAR1_ADD9_Pos) /*!< 0x00000200 */
  9855. #define I2C_OAR1_ADD9 I2C_OAR1_ADD9_Msk /*!< Bit 9 */
  9856. #define I2C_OAR1_ADDMODE_Pos (15U)
  9857. #define I2C_OAR1_ADDMODE_Msk (0x1UL << I2C_OAR1_ADDMODE_Pos) /*!< 0x00008000 */
  9858. #define I2C_OAR1_ADDMODE I2C_OAR1_ADDMODE_Msk /*!< Addressing Mode (Slave mode) */
  9859. /******************* Bit definition for I2C_OAR2 register *******************/
  9860. #define I2C_OAR2_ENDUAL_Pos (0U)
  9861. #define I2C_OAR2_ENDUAL_Msk (0x1UL << I2C_OAR2_ENDUAL_Pos) /*!< 0x00000001 */
  9862. #define I2C_OAR2_ENDUAL I2C_OAR2_ENDUAL_Msk /*!< Dual addressing mode enable */
  9863. #define I2C_OAR2_ADD2_Pos (1U)
  9864. #define I2C_OAR2_ADD2_Msk (0x7FUL << I2C_OAR2_ADD2_Pos) /*!< 0x000000FE */
  9865. #define I2C_OAR2_ADD2 I2C_OAR2_ADD2_Msk /*!< Interface address */
  9866. /******************** Bit definition for I2C_DR register ********************/
  9867. #define I2C_DR_DR_Pos (0U)
  9868. #define I2C_DR_DR_Msk (0xFFUL << I2C_DR_DR_Pos) /*!< 0x000000FF */
  9869. #define I2C_DR_DR I2C_DR_DR_Msk /*!< 8-bit Data Register */
  9870. /******************* Bit definition for I2C_SR1 register ********************/
  9871. #define I2C_SR1_SB_Pos (0U)
  9872. #define I2C_SR1_SB_Msk (0x1UL << I2C_SR1_SB_Pos) /*!< 0x00000001 */
  9873. #define I2C_SR1_SB I2C_SR1_SB_Msk /*!< Start Bit (Master mode) */
  9874. #define I2C_SR1_ADDR_Pos (1U)
  9875. #define I2C_SR1_ADDR_Msk (0x1UL << I2C_SR1_ADDR_Pos) /*!< 0x00000002 */
  9876. #define I2C_SR1_ADDR I2C_SR1_ADDR_Msk /*!< Address sent (master mode)/matched (slave mode) */
  9877. #define I2C_SR1_BTF_Pos (2U)
  9878. #define I2C_SR1_BTF_Msk (0x1UL << I2C_SR1_BTF_Pos) /*!< 0x00000004 */
  9879. #define I2C_SR1_BTF I2C_SR1_BTF_Msk /*!< Byte Transfer Finished */
  9880. #define I2C_SR1_ADD10_Pos (3U)
  9881. #define I2C_SR1_ADD10_Msk (0x1UL << I2C_SR1_ADD10_Pos) /*!< 0x00000008 */
  9882. #define I2C_SR1_ADD10 I2C_SR1_ADD10_Msk /*!< 10-bit header sent (Master mode) */
  9883. #define I2C_SR1_STOPF_Pos (4U)
  9884. #define I2C_SR1_STOPF_Msk (0x1UL << I2C_SR1_STOPF_Pos) /*!< 0x00000010 */
  9885. #define I2C_SR1_STOPF I2C_SR1_STOPF_Msk /*!< Stop detection (Slave mode) */
  9886. #define I2C_SR1_RXNE_Pos (6U)
  9887. #define I2C_SR1_RXNE_Msk (0x1UL << I2C_SR1_RXNE_Pos) /*!< 0x00000040 */
  9888. #define I2C_SR1_RXNE I2C_SR1_RXNE_Msk /*!< Data Register not Empty (receivers) */
  9889. #define I2C_SR1_TXE_Pos (7U)
  9890. #define I2C_SR1_TXE_Msk (0x1UL << I2C_SR1_TXE_Pos) /*!< 0x00000080 */
  9891. #define I2C_SR1_TXE I2C_SR1_TXE_Msk /*!< Data Register Empty (transmitters) */
  9892. #define I2C_SR1_BERR_Pos (8U)
  9893. #define I2C_SR1_BERR_Msk (0x1UL << I2C_SR1_BERR_Pos) /*!< 0x00000100 */
  9894. #define I2C_SR1_BERR I2C_SR1_BERR_Msk /*!< Bus Error */
  9895. #define I2C_SR1_ARLO_Pos (9U)
  9896. #define I2C_SR1_ARLO_Msk (0x1UL << I2C_SR1_ARLO_Pos) /*!< 0x00000200 */
  9897. #define I2C_SR1_ARLO I2C_SR1_ARLO_Msk /*!< Arbitration Lost (master mode) */
  9898. #define I2C_SR1_AF_Pos (10U)
  9899. #define I2C_SR1_AF_Msk (0x1UL << I2C_SR1_AF_Pos) /*!< 0x00000400 */
  9900. #define I2C_SR1_AF I2C_SR1_AF_Msk /*!< Acknowledge Failure */
  9901. #define I2C_SR1_OVR_Pos (11U)
  9902. #define I2C_SR1_OVR_Msk (0x1UL << I2C_SR1_OVR_Pos) /*!< 0x00000800 */
  9903. #define I2C_SR1_OVR I2C_SR1_OVR_Msk /*!< Overrun/Underrun */
  9904. #define I2C_SR1_PECERR_Pos (12U)
  9905. #define I2C_SR1_PECERR_Msk (0x1UL << I2C_SR1_PECERR_Pos) /*!< 0x00001000 */
  9906. #define I2C_SR1_PECERR I2C_SR1_PECERR_Msk /*!< PEC Error in reception */
  9907. #define I2C_SR1_TIMEOUT_Pos (14U)
  9908. #define I2C_SR1_TIMEOUT_Msk (0x1UL << I2C_SR1_TIMEOUT_Pos) /*!< 0x00004000 */
  9909. #define I2C_SR1_TIMEOUT I2C_SR1_TIMEOUT_Msk /*!< Timeout or Tlow Error */
  9910. #define I2C_SR1_SMBALERT_Pos (15U)
  9911. #define I2C_SR1_SMBALERT_Msk (0x1UL << I2C_SR1_SMBALERT_Pos) /*!< 0x00008000 */
  9912. #define I2C_SR1_SMBALERT I2C_SR1_SMBALERT_Msk /*!< SMBus Alert */
  9913. /******************* Bit definition for I2C_SR2 register ********************/
  9914. #define I2C_SR2_MSL_Pos (0U)
  9915. #define I2C_SR2_MSL_Msk (0x1UL << I2C_SR2_MSL_Pos) /*!< 0x00000001 */
  9916. #define I2C_SR2_MSL I2C_SR2_MSL_Msk /*!< Master/Slave */
  9917. #define I2C_SR2_BUSY_Pos (1U)
  9918. #define I2C_SR2_BUSY_Msk (0x1UL << I2C_SR2_BUSY_Pos) /*!< 0x00000002 */
  9919. #define I2C_SR2_BUSY I2C_SR2_BUSY_Msk /*!< Bus Busy */
  9920. #define I2C_SR2_TRA_Pos (2U)
  9921. #define I2C_SR2_TRA_Msk (0x1UL << I2C_SR2_TRA_Pos) /*!< 0x00000004 */
  9922. #define I2C_SR2_TRA I2C_SR2_TRA_Msk /*!< Transmitter/Receiver */
  9923. #define I2C_SR2_GENCALL_Pos (4U)
  9924. #define I2C_SR2_GENCALL_Msk (0x1UL << I2C_SR2_GENCALL_Pos) /*!< 0x00000010 */
  9925. #define I2C_SR2_GENCALL I2C_SR2_GENCALL_Msk /*!< General Call Address (Slave mode) */
  9926. #define I2C_SR2_SMBDEFAULT_Pos (5U)
  9927. #define I2C_SR2_SMBDEFAULT_Msk (0x1UL << I2C_SR2_SMBDEFAULT_Pos) /*!< 0x00000020 */
  9928. #define I2C_SR2_SMBDEFAULT I2C_SR2_SMBDEFAULT_Msk /*!< SMBus Device Default Address (Slave mode) */
  9929. #define I2C_SR2_SMBHOST_Pos (6U)
  9930. #define I2C_SR2_SMBHOST_Msk (0x1UL << I2C_SR2_SMBHOST_Pos) /*!< 0x00000040 */
  9931. #define I2C_SR2_SMBHOST I2C_SR2_SMBHOST_Msk /*!< SMBus Host Header (Slave mode) */
  9932. #define I2C_SR2_DUALF_Pos (7U)
  9933. #define I2C_SR2_DUALF_Msk (0x1UL << I2C_SR2_DUALF_Pos) /*!< 0x00000080 */
  9934. #define I2C_SR2_DUALF I2C_SR2_DUALF_Msk /*!< Dual Flag (Slave mode) */
  9935. #define I2C_SR2_PEC_Pos (8U)
  9936. #define I2C_SR2_PEC_Msk (0xFFUL << I2C_SR2_PEC_Pos) /*!< 0x0000FF00 */
  9937. #define I2C_SR2_PEC I2C_SR2_PEC_Msk /*!< Packet Error Checking Register */
  9938. /******************* Bit definition for I2C_CCR register ********************/
  9939. #define I2C_CCR_CCR_Pos (0U)
  9940. #define I2C_CCR_CCR_Msk (0xFFFUL << I2C_CCR_CCR_Pos) /*!< 0x00000FFF */
  9941. #define I2C_CCR_CCR I2C_CCR_CCR_Msk /*!< Clock Control Register in Fast/Standard mode (Master mode) */
  9942. #define I2C_CCR_DUTY_Pos (14U)
  9943. #define I2C_CCR_DUTY_Msk (0x1UL << I2C_CCR_DUTY_Pos) /*!< 0x00004000 */
  9944. #define I2C_CCR_DUTY I2C_CCR_DUTY_Msk /*!< Fast Mode Duty Cycle */
  9945. #define I2C_CCR_FS_Pos (15U)
  9946. #define I2C_CCR_FS_Msk (0x1UL << I2C_CCR_FS_Pos) /*!< 0x00008000 */
  9947. #define I2C_CCR_FS I2C_CCR_FS_Msk /*!< I2C Master Mode Selection */
  9948. /****************** Bit definition for I2C_TRISE register *******************/
  9949. #define I2C_TRISE_TRISE_Pos (0U)
  9950. #define I2C_TRISE_TRISE_Msk (0x3FUL << I2C_TRISE_TRISE_Pos) /*!< 0x0000003F */
  9951. #define I2C_TRISE_TRISE I2C_TRISE_TRISE_Msk /*!< Maximum Rise Time in Fast/Standard mode (Master mode) */
  9952. /******************************************************************************/
  9953. /* */
  9954. /* Universal Synchronous Asynchronous Receiver Transmitter */
  9955. /* */
  9956. /******************************************************************************/
  9957. /******************* Bit definition for USART_SR register *******************/
  9958. #define USART_SR_PE_Pos (0U)
  9959. #define USART_SR_PE_Msk (0x1UL << USART_SR_PE_Pos) /*!< 0x00000001 */
  9960. #define USART_SR_PE USART_SR_PE_Msk /*!< Parity Error */
  9961. #define USART_SR_FE_Pos (1U)
  9962. #define USART_SR_FE_Msk (0x1UL << USART_SR_FE_Pos) /*!< 0x00000002 */
  9963. #define USART_SR_FE USART_SR_FE_Msk /*!< Framing Error */
  9964. #define USART_SR_NE_Pos (2U)
  9965. #define USART_SR_NE_Msk (0x1UL << USART_SR_NE_Pos) /*!< 0x00000004 */
  9966. #define USART_SR_NE USART_SR_NE_Msk /*!< Noise Error Flag */
  9967. #define USART_SR_ORE_Pos (3U)
  9968. #define USART_SR_ORE_Msk (0x1UL << USART_SR_ORE_Pos) /*!< 0x00000008 */
  9969. #define USART_SR_ORE USART_SR_ORE_Msk /*!< OverRun Error */
  9970. #define USART_SR_IDLE_Pos (4U)
  9971. #define USART_SR_IDLE_Msk (0x1UL << USART_SR_IDLE_Pos) /*!< 0x00000010 */
  9972. #define USART_SR_IDLE USART_SR_IDLE_Msk /*!< IDLE line detected */
  9973. #define USART_SR_RXNE_Pos (5U)
  9974. #define USART_SR_RXNE_Msk (0x1UL << USART_SR_RXNE_Pos) /*!< 0x00000020 */
  9975. #define USART_SR_RXNE USART_SR_RXNE_Msk /*!< Read Data Register Not Empty */
  9976. #define USART_SR_TC_Pos (6U)
  9977. #define USART_SR_TC_Msk (0x1UL << USART_SR_TC_Pos) /*!< 0x00000040 */
  9978. #define USART_SR_TC USART_SR_TC_Msk /*!< Transmission Complete */
  9979. #define USART_SR_TXE_Pos (7U)
  9980. #define USART_SR_TXE_Msk (0x1UL << USART_SR_TXE_Pos) /*!< 0x00000080 */
  9981. #define USART_SR_TXE USART_SR_TXE_Msk /*!< Transmit Data Register Empty */
  9982. #define USART_SR_LBD_Pos (8U)
  9983. #define USART_SR_LBD_Msk (0x1UL << USART_SR_LBD_Pos) /*!< 0x00000100 */
  9984. #define USART_SR_LBD USART_SR_LBD_Msk /*!< LIN Break Detection Flag */
  9985. #define USART_SR_CTS_Pos (9U)
  9986. #define USART_SR_CTS_Msk (0x1UL << USART_SR_CTS_Pos) /*!< 0x00000200 */
  9987. #define USART_SR_CTS USART_SR_CTS_Msk /*!< CTS Flag */
  9988. /******************* Bit definition for USART_DR register *******************/
  9989. #define USART_DR_DR_Pos (0U)
  9990. #define USART_DR_DR_Msk (0x1FFUL << USART_DR_DR_Pos) /*!< 0x000001FF */
  9991. #define USART_DR_DR USART_DR_DR_Msk /*!< Data value */
  9992. /****************** Bit definition for USART_BRR register *******************/
  9993. #define USART_BRR_DIV_Fraction_Pos (0U)
  9994. #define USART_BRR_DIV_Fraction_Msk (0xFUL << USART_BRR_DIV_Fraction_Pos) /*!< 0x0000000F */
  9995. #define USART_BRR_DIV_Fraction USART_BRR_DIV_Fraction_Msk /*!< Fraction of USARTDIV */
  9996. #define USART_BRR_DIV_Mantissa_Pos (4U)
  9997. #define USART_BRR_DIV_Mantissa_Msk (0xFFFUL << USART_BRR_DIV_Mantissa_Pos) /*!< 0x0000FFF0 */
  9998. #define USART_BRR_DIV_Mantissa USART_BRR_DIV_Mantissa_Msk /*!< Mantissa of USARTDIV */
  9999. /****************** Bit definition for USART_CR1 register *******************/
  10000. #define USART_CR1_SBK_Pos (0U)
  10001. #define USART_CR1_SBK_Msk (0x1UL << USART_CR1_SBK_Pos) /*!< 0x00000001 */
  10002. #define USART_CR1_SBK USART_CR1_SBK_Msk /*!< Send Break */
  10003. #define USART_CR1_RWU_Pos (1U)
  10004. #define USART_CR1_RWU_Msk (0x1UL << USART_CR1_RWU_Pos) /*!< 0x00000002 */
  10005. #define USART_CR1_RWU USART_CR1_RWU_Msk /*!< Receiver wakeup */
  10006. #define USART_CR1_RE_Pos (2U)
  10007. #define USART_CR1_RE_Msk (0x1UL << USART_CR1_RE_Pos) /*!< 0x00000004 */
  10008. #define USART_CR1_RE USART_CR1_RE_Msk /*!< Receiver Enable */
  10009. #define USART_CR1_TE_Pos (3U)
  10010. #define USART_CR1_TE_Msk (0x1UL << USART_CR1_TE_Pos) /*!< 0x00000008 */
  10011. #define USART_CR1_TE USART_CR1_TE_Msk /*!< Transmitter Enable */
  10012. #define USART_CR1_IDLEIE_Pos (4U)
  10013. #define USART_CR1_IDLEIE_Msk (0x1UL << USART_CR1_IDLEIE_Pos) /*!< 0x00000010 */
  10014. #define USART_CR1_IDLEIE USART_CR1_IDLEIE_Msk /*!< IDLE Interrupt Enable */
  10015. #define USART_CR1_RXNEIE_Pos (5U)
  10016. #define USART_CR1_RXNEIE_Msk (0x1UL << USART_CR1_RXNEIE_Pos) /*!< 0x00000020 */
  10017. #define USART_CR1_RXNEIE USART_CR1_RXNEIE_Msk /*!< RXNE Interrupt Enable */
  10018. #define USART_CR1_TCIE_Pos (6U)
  10019. #define USART_CR1_TCIE_Msk (0x1UL << USART_CR1_TCIE_Pos) /*!< 0x00000040 */
  10020. #define USART_CR1_TCIE USART_CR1_TCIE_Msk /*!< Transmission Complete Interrupt Enable */
  10021. #define USART_CR1_TXEIE_Pos (7U)
  10022. #define USART_CR1_TXEIE_Msk (0x1UL << USART_CR1_TXEIE_Pos) /*!< 0x00000080 */
  10023. #define USART_CR1_TXEIE USART_CR1_TXEIE_Msk /*!< PE Interrupt Enable */
  10024. #define USART_CR1_PEIE_Pos (8U)
  10025. #define USART_CR1_PEIE_Msk (0x1UL << USART_CR1_PEIE_Pos) /*!< 0x00000100 */
  10026. #define USART_CR1_PEIE USART_CR1_PEIE_Msk /*!< PE Interrupt Enable */
  10027. #define USART_CR1_PS_Pos (9U)
  10028. #define USART_CR1_PS_Msk (0x1UL << USART_CR1_PS_Pos) /*!< 0x00000200 */
  10029. #define USART_CR1_PS USART_CR1_PS_Msk /*!< Parity Selection */
  10030. #define USART_CR1_PCE_Pos (10U)
  10031. #define USART_CR1_PCE_Msk (0x1UL << USART_CR1_PCE_Pos) /*!< 0x00000400 */
  10032. #define USART_CR1_PCE USART_CR1_PCE_Msk /*!< Parity Control Enable */
  10033. #define USART_CR1_WAKE_Pos (11U)
  10034. #define USART_CR1_WAKE_Msk (0x1UL << USART_CR1_WAKE_Pos) /*!< 0x00000800 */
  10035. #define USART_CR1_WAKE USART_CR1_WAKE_Msk /*!< Wakeup method */
  10036. #define USART_CR1_M_Pos (12U)
  10037. #define USART_CR1_M_Msk (0x1UL << USART_CR1_M_Pos) /*!< 0x00001000 */
  10038. #define USART_CR1_M USART_CR1_M_Msk /*!< Word length */
  10039. #define USART_CR1_UE_Pos (13U)
  10040. #define USART_CR1_UE_Msk (0x1UL << USART_CR1_UE_Pos) /*!< 0x00002000 */
  10041. #define USART_CR1_UE USART_CR1_UE_Msk /*!< USART Enable */
  10042. /****************** Bit definition for USART_CR2 register *******************/
  10043. #define USART_CR2_ADD_Pos (0U)
  10044. #define USART_CR2_ADD_Msk (0xFUL << USART_CR2_ADD_Pos) /*!< 0x0000000F */
  10045. #define USART_CR2_ADD USART_CR2_ADD_Msk /*!< Address of the USART node */
  10046. #define USART_CR2_LBDL_Pos (5U)
  10047. #define USART_CR2_LBDL_Msk (0x1UL << USART_CR2_LBDL_Pos) /*!< 0x00000020 */
  10048. #define USART_CR2_LBDL USART_CR2_LBDL_Msk /*!< LIN Break Detection Length */
  10049. #define USART_CR2_LBDIE_Pos (6U)
  10050. #define USART_CR2_LBDIE_Msk (0x1UL << USART_CR2_LBDIE_Pos) /*!< 0x00000040 */
  10051. #define USART_CR2_LBDIE USART_CR2_LBDIE_Msk /*!< LIN Break Detection Interrupt Enable */
  10052. #define USART_CR2_LBCL_Pos (8U)
  10053. #define USART_CR2_LBCL_Msk (0x1UL << USART_CR2_LBCL_Pos) /*!< 0x00000100 */
  10054. #define USART_CR2_LBCL USART_CR2_LBCL_Msk /*!< Last Bit Clock pulse */
  10055. #define USART_CR2_CPHA_Pos (9U)
  10056. #define USART_CR2_CPHA_Msk (0x1UL << USART_CR2_CPHA_Pos) /*!< 0x00000200 */
  10057. #define USART_CR2_CPHA USART_CR2_CPHA_Msk /*!< Clock Phase */
  10058. #define USART_CR2_CPOL_Pos (10U)
  10059. #define USART_CR2_CPOL_Msk (0x1UL << USART_CR2_CPOL_Pos) /*!< 0x00000400 */
  10060. #define USART_CR2_CPOL USART_CR2_CPOL_Msk /*!< Clock Polarity */
  10061. #define USART_CR2_CLKEN_Pos (11U)
  10062. #define USART_CR2_CLKEN_Msk (0x1UL << USART_CR2_CLKEN_Pos) /*!< 0x00000800 */
  10063. #define USART_CR2_CLKEN USART_CR2_CLKEN_Msk /*!< Clock Enable */
  10064. #define USART_CR2_STOP_Pos (12U)
  10065. #define USART_CR2_STOP_Msk (0x3UL << USART_CR2_STOP_Pos) /*!< 0x00003000 */
  10066. #define USART_CR2_STOP USART_CR2_STOP_Msk /*!< STOP[1:0] bits (STOP bits) */
  10067. #define USART_CR2_STOP_0 (0x1UL << USART_CR2_STOP_Pos) /*!< 0x00001000 */
  10068. #define USART_CR2_STOP_1 (0x2UL << USART_CR2_STOP_Pos) /*!< 0x00002000 */
  10069. #define USART_CR2_LINEN_Pos (14U)
  10070. #define USART_CR2_LINEN_Msk (0x1UL << USART_CR2_LINEN_Pos) /*!< 0x00004000 */
  10071. #define USART_CR2_LINEN USART_CR2_LINEN_Msk /*!< LIN mode enable */
  10072. /****************** Bit definition for USART_CR3 register *******************/
  10073. #define USART_CR3_EIE_Pos (0U)
  10074. #define USART_CR3_EIE_Msk (0x1UL << USART_CR3_EIE_Pos) /*!< 0x00000001 */
  10075. #define USART_CR3_EIE USART_CR3_EIE_Msk /*!< Error Interrupt Enable */
  10076. #define USART_CR3_IREN_Pos (1U)
  10077. #define USART_CR3_IREN_Msk (0x1UL << USART_CR3_IREN_Pos) /*!< 0x00000002 */
  10078. #define USART_CR3_IREN USART_CR3_IREN_Msk /*!< IrDA mode Enable */
  10079. #define USART_CR3_IRLP_Pos (2U)
  10080. #define USART_CR3_IRLP_Msk (0x1UL << USART_CR3_IRLP_Pos) /*!< 0x00000004 */
  10081. #define USART_CR3_IRLP USART_CR3_IRLP_Msk /*!< IrDA Low-Power */
  10082. #define USART_CR3_HDSEL_Pos (3U)
  10083. #define USART_CR3_HDSEL_Msk (0x1UL << USART_CR3_HDSEL_Pos) /*!< 0x00000008 */
  10084. #define USART_CR3_HDSEL USART_CR3_HDSEL_Msk /*!< Half-Duplex Selection */
  10085. #define USART_CR3_NACK_Pos (4U)
  10086. #define USART_CR3_NACK_Msk (0x1UL << USART_CR3_NACK_Pos) /*!< 0x00000010 */
  10087. #define USART_CR3_NACK USART_CR3_NACK_Msk /*!< Smartcard NACK enable */
  10088. #define USART_CR3_SCEN_Pos (5U)
  10089. #define USART_CR3_SCEN_Msk (0x1UL << USART_CR3_SCEN_Pos) /*!< 0x00000020 */
  10090. #define USART_CR3_SCEN USART_CR3_SCEN_Msk /*!< Smartcard mode enable */
  10091. #define USART_CR3_DMAR_Pos (6U)
  10092. #define USART_CR3_DMAR_Msk (0x1UL << USART_CR3_DMAR_Pos) /*!< 0x00000040 */
  10093. #define USART_CR3_DMAR USART_CR3_DMAR_Msk /*!< DMA Enable Receiver */
  10094. #define USART_CR3_DMAT_Pos (7U)
  10095. #define USART_CR3_DMAT_Msk (0x1UL << USART_CR3_DMAT_Pos) /*!< 0x00000080 */
  10096. #define USART_CR3_DMAT USART_CR3_DMAT_Msk /*!< DMA Enable Transmitter */
  10097. #define USART_CR3_RTSE_Pos (8U)
  10098. #define USART_CR3_RTSE_Msk (0x1UL << USART_CR3_RTSE_Pos) /*!< 0x00000100 */
  10099. #define USART_CR3_RTSE USART_CR3_RTSE_Msk /*!< RTS Enable */
  10100. #define USART_CR3_CTSE_Pos (9U)
  10101. #define USART_CR3_CTSE_Msk (0x1UL << USART_CR3_CTSE_Pos) /*!< 0x00000200 */
  10102. #define USART_CR3_CTSE USART_CR3_CTSE_Msk /*!< CTS Enable */
  10103. #define USART_CR3_CTSIE_Pos (10U)
  10104. #define USART_CR3_CTSIE_Msk (0x1UL << USART_CR3_CTSIE_Pos) /*!< 0x00000400 */
  10105. #define USART_CR3_CTSIE USART_CR3_CTSIE_Msk /*!< CTS Interrupt Enable */
  10106. /****************** Bit definition for USART_GTPR register ******************/
  10107. #define USART_GTPR_PSC_Pos (0U)
  10108. #define USART_GTPR_PSC_Msk (0xFFUL << USART_GTPR_PSC_Pos) /*!< 0x000000FF */
  10109. #define USART_GTPR_PSC USART_GTPR_PSC_Msk /*!< PSC[7:0] bits (Prescaler value) */
  10110. #define USART_GTPR_PSC_0 (0x01UL << USART_GTPR_PSC_Pos) /*!< 0x00000001 */
  10111. #define USART_GTPR_PSC_1 (0x02UL << USART_GTPR_PSC_Pos) /*!< 0x00000002 */
  10112. #define USART_GTPR_PSC_2 (0x04UL << USART_GTPR_PSC_Pos) /*!< 0x00000004 */
  10113. #define USART_GTPR_PSC_3 (0x08UL << USART_GTPR_PSC_Pos) /*!< 0x00000008 */
  10114. #define USART_GTPR_PSC_4 (0x10UL << USART_GTPR_PSC_Pos) /*!< 0x00000010 */
  10115. #define USART_GTPR_PSC_5 (0x20UL << USART_GTPR_PSC_Pos) /*!< 0x00000020 */
  10116. #define USART_GTPR_PSC_6 (0x40UL << USART_GTPR_PSC_Pos) /*!< 0x00000040 */
  10117. #define USART_GTPR_PSC_7 (0x80UL << USART_GTPR_PSC_Pos) /*!< 0x00000080 */
  10118. #define USART_GTPR_GT_Pos (8U)
  10119. #define USART_GTPR_GT_Msk (0xFFUL << USART_GTPR_GT_Pos) /*!< 0x0000FF00 */
  10120. #define USART_GTPR_GT USART_GTPR_GT_Msk /*!< Guard time value */
  10121. /******************************************************************************/
  10122. /* */
  10123. /* Debug MCU */
  10124. /* */
  10125. /******************************************************************************/
  10126. /**************** Bit definition for DBGMCU_IDCODE register *****************/
  10127. #define DBGMCU_IDCODE_DEV_ID_Pos (0U)
  10128. #define DBGMCU_IDCODE_DEV_ID_Msk (0xFFFUL << DBGMCU_IDCODE_DEV_ID_Pos) /*!< 0x00000FFF */
  10129. #define DBGMCU_IDCODE_DEV_ID DBGMCU_IDCODE_DEV_ID_Msk /*!< Device Identifier */
  10130. #define DBGMCU_IDCODE_REV_ID_Pos (16U)
  10131. #define DBGMCU_IDCODE_REV_ID_Msk (0xFFFFUL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0xFFFF0000 */
  10132. #define DBGMCU_IDCODE_REV_ID DBGMCU_IDCODE_REV_ID_Msk /*!< REV_ID[15:0] bits (Revision Identifier) */
  10133. #define DBGMCU_IDCODE_REV_ID_0 (0x0001UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x00010000 */
  10134. #define DBGMCU_IDCODE_REV_ID_1 (0x0002UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x00020000 */
  10135. #define DBGMCU_IDCODE_REV_ID_2 (0x0004UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x00040000 */
  10136. #define DBGMCU_IDCODE_REV_ID_3 (0x0008UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x00080000 */
  10137. #define DBGMCU_IDCODE_REV_ID_4 (0x0010UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x00100000 */
  10138. #define DBGMCU_IDCODE_REV_ID_5 (0x0020UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x00200000 */
  10139. #define DBGMCU_IDCODE_REV_ID_6 (0x0040UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x00400000 */
  10140. #define DBGMCU_IDCODE_REV_ID_7 (0x0080UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x00800000 */
  10141. #define DBGMCU_IDCODE_REV_ID_8 (0x0100UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x01000000 */
  10142. #define DBGMCU_IDCODE_REV_ID_9 (0x0200UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x02000000 */
  10143. #define DBGMCU_IDCODE_REV_ID_10 (0x0400UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x04000000 */
  10144. #define DBGMCU_IDCODE_REV_ID_11 (0x0800UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x08000000 */
  10145. #define DBGMCU_IDCODE_REV_ID_12 (0x1000UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x10000000 */
  10146. #define DBGMCU_IDCODE_REV_ID_13 (0x2000UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x20000000 */
  10147. #define DBGMCU_IDCODE_REV_ID_14 (0x4000UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x40000000 */
  10148. #define DBGMCU_IDCODE_REV_ID_15 (0x8000UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x80000000 */
  10149. /****************** Bit definition for DBGMCU_CR register *******************/
  10150. #define DBGMCU_CR_DBG_SLEEP_Pos (0U)
  10151. #define DBGMCU_CR_DBG_SLEEP_Msk (0x1UL << DBGMCU_CR_DBG_SLEEP_Pos) /*!< 0x00000001 */
  10152. #define DBGMCU_CR_DBG_SLEEP DBGMCU_CR_DBG_SLEEP_Msk /*!< Debug Sleep Mode */
  10153. #define DBGMCU_CR_DBG_STOP_Pos (1U)
  10154. #define DBGMCU_CR_DBG_STOP_Msk (0x1UL << DBGMCU_CR_DBG_STOP_Pos) /*!< 0x00000002 */
  10155. #define DBGMCU_CR_DBG_STOP DBGMCU_CR_DBG_STOP_Msk /*!< Debug Stop Mode */
  10156. #define DBGMCU_CR_DBG_STANDBY_Pos (2U)
  10157. #define DBGMCU_CR_DBG_STANDBY_Msk (0x1UL << DBGMCU_CR_DBG_STANDBY_Pos) /*!< 0x00000004 */
  10158. #define DBGMCU_CR_DBG_STANDBY DBGMCU_CR_DBG_STANDBY_Msk /*!< Debug Standby mode */
  10159. #define DBGMCU_CR_TRACE_IOEN_Pos (5U)
  10160. #define DBGMCU_CR_TRACE_IOEN_Msk (0x1UL << DBGMCU_CR_TRACE_IOEN_Pos) /*!< 0x00000020 */
  10161. #define DBGMCU_CR_TRACE_IOEN DBGMCU_CR_TRACE_IOEN_Msk /*!< Trace Pin Assignment Control */
  10162. #define DBGMCU_CR_TRACE_MODE_Pos (6U)
  10163. #define DBGMCU_CR_TRACE_MODE_Msk (0x3UL << DBGMCU_CR_TRACE_MODE_Pos) /*!< 0x000000C0 */
  10164. #define DBGMCU_CR_TRACE_MODE DBGMCU_CR_TRACE_MODE_Msk /*!< TRACE_MODE[1:0] bits (Trace Pin Assignment Control) */
  10165. #define DBGMCU_CR_TRACE_MODE_0 (0x1UL << DBGMCU_CR_TRACE_MODE_Pos) /*!< 0x00000040 */
  10166. #define DBGMCU_CR_TRACE_MODE_1 (0x2UL << DBGMCU_CR_TRACE_MODE_Pos) /*!< 0x00000080 */
  10167. #define DBGMCU_CR_DBG_IWDG_STOP_Pos (8U)
  10168. #define DBGMCU_CR_DBG_IWDG_STOP_Msk (0x1UL << DBGMCU_CR_DBG_IWDG_STOP_Pos) /*!< 0x00000100 */
  10169. #define DBGMCU_CR_DBG_IWDG_STOP DBGMCU_CR_DBG_IWDG_STOP_Msk /*!< Debug Independent Watchdog stopped when Core is halted */
  10170. #define DBGMCU_CR_DBG_WWDG_STOP_Pos (9U)
  10171. #define DBGMCU_CR_DBG_WWDG_STOP_Msk (0x1UL << DBGMCU_CR_DBG_WWDG_STOP_Pos) /*!< 0x00000200 */
  10172. #define DBGMCU_CR_DBG_WWDG_STOP DBGMCU_CR_DBG_WWDG_STOP_Msk /*!< Debug Window Watchdog stopped when Core is halted */
  10173. #define DBGMCU_CR_DBG_TIM1_STOP_Pos (10U)
  10174. #define DBGMCU_CR_DBG_TIM1_STOP_Msk (0x1UL << DBGMCU_CR_DBG_TIM1_STOP_Pos) /*!< 0x00000400 */
  10175. #define DBGMCU_CR_DBG_TIM1_STOP DBGMCU_CR_DBG_TIM1_STOP_Msk /*!< TIM1 counter stopped when core is halted */
  10176. #define DBGMCU_CR_DBG_TIM2_STOP_Pos (11U)
  10177. #define DBGMCU_CR_DBG_TIM2_STOP_Msk (0x1UL << DBGMCU_CR_DBG_TIM2_STOP_Pos) /*!< 0x00000800 */
  10178. #define DBGMCU_CR_DBG_TIM2_STOP DBGMCU_CR_DBG_TIM2_STOP_Msk /*!< TIM2 counter stopped when core is halted */
  10179. #define DBGMCU_CR_DBG_TIM3_STOP_Pos (12U)
  10180. #define DBGMCU_CR_DBG_TIM3_STOP_Msk (0x1UL << DBGMCU_CR_DBG_TIM3_STOP_Pos) /*!< 0x00001000 */
  10181. #define DBGMCU_CR_DBG_TIM3_STOP DBGMCU_CR_DBG_TIM3_STOP_Msk /*!< TIM3 counter stopped when core is halted */
  10182. #define DBGMCU_CR_DBG_TIM4_STOP_Pos (13U)
  10183. #define DBGMCU_CR_DBG_TIM4_STOP_Msk (0x1UL << DBGMCU_CR_DBG_TIM4_STOP_Pos) /*!< 0x00002000 */
  10184. #define DBGMCU_CR_DBG_TIM4_STOP DBGMCU_CR_DBG_TIM4_STOP_Msk /*!< TIM4 counter stopped when core is halted */
  10185. #define DBGMCU_CR_DBG_CAN1_STOP_Pos (14U)
  10186. #define DBGMCU_CR_DBG_CAN1_STOP_Msk (0x1UL << DBGMCU_CR_DBG_CAN1_STOP_Pos) /*!< 0x00004000 */
  10187. #define DBGMCU_CR_DBG_CAN1_STOP DBGMCU_CR_DBG_CAN1_STOP_Msk /*!< Debug CAN1 stopped when Core is halted */
  10188. #define DBGMCU_CR_DBG_I2C1_SMBUS_TIMEOUT_Pos (15U)
  10189. #define DBGMCU_CR_DBG_I2C1_SMBUS_TIMEOUT_Msk (0x1UL << DBGMCU_CR_DBG_I2C1_SMBUS_TIMEOUT_Pos) /*!< 0x00008000 */
  10190. #define DBGMCU_CR_DBG_I2C1_SMBUS_TIMEOUT DBGMCU_CR_DBG_I2C1_SMBUS_TIMEOUT_Msk /*!< SMBUS timeout mode stopped when Core is halted */
  10191. #define DBGMCU_CR_DBG_I2C2_SMBUS_TIMEOUT_Pos (16U)
  10192. #define DBGMCU_CR_DBG_I2C2_SMBUS_TIMEOUT_Msk (0x1UL << DBGMCU_CR_DBG_I2C2_SMBUS_TIMEOUT_Pos) /*!< 0x00010000 */
  10193. #define DBGMCU_CR_DBG_I2C2_SMBUS_TIMEOUT DBGMCU_CR_DBG_I2C2_SMBUS_TIMEOUT_Msk /*!< SMBUS timeout mode stopped when Core is halted */
  10194. #define DBGMCU_CR_DBG_TIM8_STOP_Pos (17U)
  10195. #define DBGMCU_CR_DBG_TIM8_STOP_Msk (0x1UL << DBGMCU_CR_DBG_TIM8_STOP_Pos) /*!< 0x00020000 */
  10196. #define DBGMCU_CR_DBG_TIM8_STOP DBGMCU_CR_DBG_TIM8_STOP_Msk /*!< TIM8 counter stopped when core is halted */
  10197. #define DBGMCU_CR_DBG_TIM5_STOP_Pos (18U)
  10198. #define DBGMCU_CR_DBG_TIM5_STOP_Msk (0x1UL << DBGMCU_CR_DBG_TIM5_STOP_Pos) /*!< 0x00040000 */
  10199. #define DBGMCU_CR_DBG_TIM5_STOP DBGMCU_CR_DBG_TIM5_STOP_Msk /*!< TIM5 counter stopped when core is halted */
  10200. #define DBGMCU_CR_DBG_TIM6_STOP_Pos (19U)
  10201. #define DBGMCU_CR_DBG_TIM6_STOP_Msk (0x1UL << DBGMCU_CR_DBG_TIM6_STOP_Pos) /*!< 0x00080000 */
  10202. #define DBGMCU_CR_DBG_TIM6_STOP DBGMCU_CR_DBG_TIM6_STOP_Msk /*!< TIM6 counter stopped when core is halted */
  10203. #define DBGMCU_CR_DBG_TIM7_STOP_Pos (20U)
  10204. #define DBGMCU_CR_DBG_TIM7_STOP_Msk (0x1UL << DBGMCU_CR_DBG_TIM7_STOP_Pos) /*!< 0x00100000 */
  10205. #define DBGMCU_CR_DBG_TIM7_STOP DBGMCU_CR_DBG_TIM7_STOP_Msk /*!< TIM7 counter stopped when core is halted */
  10206. /******************************************************************************/
  10207. /* */
  10208. /* FLASH and Option Bytes Registers */
  10209. /* */
  10210. /******************************************************************************/
  10211. /******************* Bit definition for FLASH_ACR register ******************/
  10212. #define FLASH_ACR_LATENCY_Pos (0U)
  10213. #define FLASH_ACR_LATENCY_Msk (0x7UL << FLASH_ACR_LATENCY_Pos) /*!< 0x00000007 */
  10214. #define FLASH_ACR_LATENCY FLASH_ACR_LATENCY_Msk /*!< LATENCY[2:0] bits (Latency) */
  10215. #define FLASH_ACR_LATENCY_0 (0x1UL << FLASH_ACR_LATENCY_Pos) /*!< 0x00000001 */
  10216. #define FLASH_ACR_LATENCY_1 (0x2UL << FLASH_ACR_LATENCY_Pos) /*!< 0x00000002 */
  10217. #define FLASH_ACR_LATENCY_2 (0x4UL << FLASH_ACR_LATENCY_Pos) /*!< 0x00000004 */
  10218. #define FLASH_ACR_HLFCYA_Pos (3U)
  10219. #define FLASH_ACR_HLFCYA_Msk (0x1UL << FLASH_ACR_HLFCYA_Pos) /*!< 0x00000008 */
  10220. #define FLASH_ACR_HLFCYA FLASH_ACR_HLFCYA_Msk /*!< Flash Half Cycle Access Enable */
  10221. #define FLASH_ACR_PRFTBE_Pos (4U)
  10222. #define FLASH_ACR_PRFTBE_Msk (0x1UL << FLASH_ACR_PRFTBE_Pos) /*!< 0x00000010 */
  10223. #define FLASH_ACR_PRFTBE FLASH_ACR_PRFTBE_Msk /*!< Prefetch Buffer Enable */
  10224. #define FLASH_ACR_PRFTBS_Pos (5U)
  10225. #define FLASH_ACR_PRFTBS_Msk (0x1UL << FLASH_ACR_PRFTBS_Pos) /*!< 0x00000020 */
  10226. #define FLASH_ACR_PRFTBS FLASH_ACR_PRFTBS_Msk /*!< Prefetch Buffer Status */
  10227. /****************** Bit definition for FLASH_KEYR register ******************/
  10228. #define FLASH_KEYR_FKEYR_Pos (0U)
  10229. #define FLASH_KEYR_FKEYR_Msk (0xFFFFFFFFUL << FLASH_KEYR_FKEYR_Pos) /*!< 0xFFFFFFFF */
  10230. #define FLASH_KEYR_FKEYR FLASH_KEYR_FKEYR_Msk /*!< FPEC Key */
  10231. #define RDP_KEY_Pos (0U)
  10232. #define RDP_KEY_Msk (0xA5UL << RDP_KEY_Pos) /*!< 0x000000A5 */
  10233. #define RDP_KEY RDP_KEY_Msk /*!< RDP Key */
  10234. #define FLASH_KEY1_Pos (0U)
  10235. #define FLASH_KEY1_Msk (0x45670123UL << FLASH_KEY1_Pos) /*!< 0x45670123 */
  10236. #define FLASH_KEY1 FLASH_KEY1_Msk /*!< FPEC Key1 */
  10237. #define FLASH_KEY2_Pos (0U)
  10238. #define FLASH_KEY2_Msk (0xCDEF89ABUL << FLASH_KEY2_Pos) /*!< 0xCDEF89AB */
  10239. #define FLASH_KEY2 FLASH_KEY2_Msk /*!< FPEC Key2 */
  10240. /***************** Bit definition for FLASH_OPTKEYR register ****************/
  10241. #define FLASH_OPTKEYR_OPTKEYR_Pos (0U)
  10242. #define FLASH_OPTKEYR_OPTKEYR_Msk (0xFFFFFFFFUL << FLASH_OPTKEYR_OPTKEYR_Pos) /*!< 0xFFFFFFFF */
  10243. #define FLASH_OPTKEYR_OPTKEYR FLASH_OPTKEYR_OPTKEYR_Msk /*!< Option Byte Key */
  10244. #define FLASH_OPTKEY1 FLASH_KEY1 /*!< Option Byte Key1 */
  10245. #define FLASH_OPTKEY2 FLASH_KEY2 /*!< Option Byte Key2 */
  10246. /****************** Bit definition for FLASH_SR register ********************/
  10247. #define FLASH_SR_BSY_Pos (0U)
  10248. #define FLASH_SR_BSY_Msk (0x1UL << FLASH_SR_BSY_Pos) /*!< 0x00000001 */
  10249. #define FLASH_SR_BSY FLASH_SR_BSY_Msk /*!< Busy */
  10250. #define FLASH_SR_PGERR_Pos (2U)
  10251. #define FLASH_SR_PGERR_Msk (0x1UL << FLASH_SR_PGERR_Pos) /*!< 0x00000004 */
  10252. #define FLASH_SR_PGERR FLASH_SR_PGERR_Msk /*!< Programming Error */
  10253. #define FLASH_SR_WRPRTERR_Pos (4U)
  10254. #define FLASH_SR_WRPRTERR_Msk (0x1UL << FLASH_SR_WRPRTERR_Pos) /*!< 0x00000010 */
  10255. #define FLASH_SR_WRPRTERR FLASH_SR_WRPRTERR_Msk /*!< Write Protection Error */
  10256. #define FLASH_SR_EOP_Pos (5U)
  10257. #define FLASH_SR_EOP_Msk (0x1UL << FLASH_SR_EOP_Pos) /*!< 0x00000020 */
  10258. #define FLASH_SR_EOP FLASH_SR_EOP_Msk /*!< End of operation */
  10259. /******************* Bit definition for FLASH_CR register *******************/
  10260. #define FLASH_CR_PG_Pos (0U)
  10261. #define FLASH_CR_PG_Msk (0x1UL << FLASH_CR_PG_Pos) /*!< 0x00000001 */
  10262. #define FLASH_CR_PG FLASH_CR_PG_Msk /*!< Programming */
  10263. #define FLASH_CR_PER_Pos (1U)
  10264. #define FLASH_CR_PER_Msk (0x1UL << FLASH_CR_PER_Pos) /*!< 0x00000002 */
  10265. #define FLASH_CR_PER FLASH_CR_PER_Msk /*!< Page Erase */
  10266. #define FLASH_CR_MER_Pos (2U)
  10267. #define FLASH_CR_MER_Msk (0x1UL << FLASH_CR_MER_Pos) /*!< 0x00000004 */
  10268. #define FLASH_CR_MER FLASH_CR_MER_Msk /*!< Mass Erase */
  10269. #define FLASH_CR_OPTPG_Pos (4U)
  10270. #define FLASH_CR_OPTPG_Msk (0x1UL << FLASH_CR_OPTPG_Pos) /*!< 0x00000010 */
  10271. #define FLASH_CR_OPTPG FLASH_CR_OPTPG_Msk /*!< Option Byte Programming */
  10272. #define FLASH_CR_OPTER_Pos (5U)
  10273. #define FLASH_CR_OPTER_Msk (0x1UL << FLASH_CR_OPTER_Pos) /*!< 0x00000020 */
  10274. #define FLASH_CR_OPTER FLASH_CR_OPTER_Msk /*!< Option Byte Erase */
  10275. #define FLASH_CR_STRT_Pos (6U)
  10276. #define FLASH_CR_STRT_Msk (0x1UL << FLASH_CR_STRT_Pos) /*!< 0x00000040 */
  10277. #define FLASH_CR_STRT FLASH_CR_STRT_Msk /*!< Start */
  10278. #define FLASH_CR_LOCK_Pos (7U)
  10279. #define FLASH_CR_LOCK_Msk (0x1UL << FLASH_CR_LOCK_Pos) /*!< 0x00000080 */
  10280. #define FLASH_CR_LOCK FLASH_CR_LOCK_Msk /*!< Lock */
  10281. #define FLASH_CR_OPTWRE_Pos (9U)
  10282. #define FLASH_CR_OPTWRE_Msk (0x1UL << FLASH_CR_OPTWRE_Pos) /*!< 0x00000200 */
  10283. #define FLASH_CR_OPTWRE FLASH_CR_OPTWRE_Msk /*!< Option Bytes Write Enable */
  10284. #define FLASH_CR_ERRIE_Pos (10U)
  10285. #define FLASH_CR_ERRIE_Msk (0x1UL << FLASH_CR_ERRIE_Pos) /*!< 0x00000400 */
  10286. #define FLASH_CR_ERRIE FLASH_CR_ERRIE_Msk /*!< Error Interrupt Enable */
  10287. #define FLASH_CR_EOPIE_Pos (12U)
  10288. #define FLASH_CR_EOPIE_Msk (0x1UL << FLASH_CR_EOPIE_Pos) /*!< 0x00001000 */
  10289. #define FLASH_CR_EOPIE FLASH_CR_EOPIE_Msk /*!< End of operation interrupt enable */
  10290. /******************* Bit definition for FLASH_AR register *******************/
  10291. #define FLASH_AR_FAR_Pos (0U)
  10292. #define FLASH_AR_FAR_Msk (0xFFFFFFFFUL << FLASH_AR_FAR_Pos) /*!< 0xFFFFFFFF */
  10293. #define FLASH_AR_FAR FLASH_AR_FAR_Msk /*!< Flash Address */
  10294. /****************** Bit definition for FLASH_OBR register *******************/
  10295. #define FLASH_OBR_OPTERR_Pos (0U)
  10296. #define FLASH_OBR_OPTERR_Msk (0x1UL << FLASH_OBR_OPTERR_Pos) /*!< 0x00000001 */
  10297. #define FLASH_OBR_OPTERR FLASH_OBR_OPTERR_Msk /*!< Option Byte Error */
  10298. #define FLASH_OBR_RDPRT_Pos (1U)
  10299. #define FLASH_OBR_RDPRT_Msk (0x1UL << FLASH_OBR_RDPRT_Pos) /*!< 0x00000002 */
  10300. #define FLASH_OBR_RDPRT FLASH_OBR_RDPRT_Msk /*!< Read protection */
  10301. #define FLASH_OBR_IWDG_SW_Pos (2U)
  10302. #define FLASH_OBR_IWDG_SW_Msk (0x1UL << FLASH_OBR_IWDG_SW_Pos) /*!< 0x00000004 */
  10303. #define FLASH_OBR_IWDG_SW FLASH_OBR_IWDG_SW_Msk /*!< IWDG SW */
  10304. #define FLASH_OBR_nRST_STOP_Pos (3U)
  10305. #define FLASH_OBR_nRST_STOP_Msk (0x1UL << FLASH_OBR_nRST_STOP_Pos) /*!< 0x00000008 */
  10306. #define FLASH_OBR_nRST_STOP FLASH_OBR_nRST_STOP_Msk /*!< nRST_STOP */
  10307. #define FLASH_OBR_nRST_STDBY_Pos (4U)
  10308. #define FLASH_OBR_nRST_STDBY_Msk (0x1UL << FLASH_OBR_nRST_STDBY_Pos) /*!< 0x00000010 */
  10309. #define FLASH_OBR_nRST_STDBY FLASH_OBR_nRST_STDBY_Msk /*!< nRST_STDBY */
  10310. #define FLASH_OBR_USER_Pos (2U)
  10311. #define FLASH_OBR_USER_Msk (0x7UL << FLASH_OBR_USER_Pos) /*!< 0x0000001C */
  10312. #define FLASH_OBR_USER FLASH_OBR_USER_Msk /*!< User Option Bytes */
  10313. #define FLASH_OBR_DATA0_Pos (10U)
  10314. #define FLASH_OBR_DATA0_Msk (0xFFUL << FLASH_OBR_DATA0_Pos) /*!< 0x0003FC00 */
  10315. #define FLASH_OBR_DATA0 FLASH_OBR_DATA0_Msk /*!< Data0 */
  10316. #define FLASH_OBR_DATA1_Pos (18U)
  10317. #define FLASH_OBR_DATA1_Msk (0xFFUL << FLASH_OBR_DATA1_Pos) /*!< 0x03FC0000 */
  10318. #define FLASH_OBR_DATA1 FLASH_OBR_DATA1_Msk /*!< Data1 */
  10319. /****************** Bit definition for FLASH_WRPR register ******************/
  10320. #define FLASH_WRPR_WRP_Pos (0U)
  10321. #define FLASH_WRPR_WRP_Msk (0xFFFFFFFFUL << FLASH_WRPR_WRP_Pos) /*!< 0xFFFFFFFF */
  10322. #define FLASH_WRPR_WRP FLASH_WRPR_WRP_Msk /*!< Write Protect */
  10323. /*----------------------------------------------------------------------------*/
  10324. /****************** Bit definition for FLASH_RDP register *******************/
  10325. #define FLASH_RDP_RDP_Pos (0U)
  10326. #define FLASH_RDP_RDP_Msk (0xFFUL << FLASH_RDP_RDP_Pos) /*!< 0x000000FF */
  10327. #define FLASH_RDP_RDP FLASH_RDP_RDP_Msk /*!< Read protection option byte */
  10328. #define FLASH_RDP_nRDP_Pos (8U)
  10329. #define FLASH_RDP_nRDP_Msk (0xFFUL << FLASH_RDP_nRDP_Pos) /*!< 0x0000FF00 */
  10330. #define FLASH_RDP_nRDP FLASH_RDP_nRDP_Msk /*!< Read protection complemented option byte */
  10331. /****************** Bit definition for FLASH_USER register ******************/
  10332. #define FLASH_USER_USER_Pos (16U)
  10333. #define FLASH_USER_USER_Msk (0xFFUL << FLASH_USER_USER_Pos) /*!< 0x00FF0000 */
  10334. #define FLASH_USER_USER FLASH_USER_USER_Msk /*!< User option byte */
  10335. #define FLASH_USER_nUSER_Pos (24U)
  10336. #define FLASH_USER_nUSER_Msk (0xFFUL << FLASH_USER_nUSER_Pos) /*!< 0xFF000000 */
  10337. #define FLASH_USER_nUSER FLASH_USER_nUSER_Msk /*!< User complemented option byte */
  10338. /****************** Bit definition for FLASH_Data0 register *****************/
  10339. #define FLASH_DATA0_DATA0_Pos (0U)
  10340. #define FLASH_DATA0_DATA0_Msk (0xFFUL << FLASH_DATA0_DATA0_Pos) /*!< 0x000000FF */
  10341. #define FLASH_DATA0_DATA0 FLASH_DATA0_DATA0_Msk /*!< User data storage option byte */
  10342. #define FLASH_DATA0_nDATA0_Pos (8U)
  10343. #define FLASH_DATA0_nDATA0_Msk (0xFFUL << FLASH_DATA0_nDATA0_Pos) /*!< 0x0000FF00 */
  10344. #define FLASH_DATA0_nDATA0 FLASH_DATA0_nDATA0_Msk /*!< User data storage complemented option byte */
  10345. /****************** Bit definition for FLASH_Data1 register *****************/
  10346. #define FLASH_DATA1_DATA1_Pos (16U)
  10347. #define FLASH_DATA1_DATA1_Msk (0xFFUL << FLASH_DATA1_DATA1_Pos) /*!< 0x00FF0000 */
  10348. #define FLASH_DATA1_DATA1 FLASH_DATA1_DATA1_Msk /*!< User data storage option byte */
  10349. #define FLASH_DATA1_nDATA1_Pos (24U)
  10350. #define FLASH_DATA1_nDATA1_Msk (0xFFUL << FLASH_DATA1_nDATA1_Pos) /*!< 0xFF000000 */
  10351. #define FLASH_DATA1_nDATA1 FLASH_DATA1_nDATA1_Msk /*!< User data storage complemented option byte */
  10352. /****************** Bit definition for FLASH_WRP0 register ******************/
  10353. #define FLASH_WRP0_WRP0_Pos (0U)
  10354. #define FLASH_WRP0_WRP0_Msk (0xFFUL << FLASH_WRP0_WRP0_Pos) /*!< 0x000000FF */
  10355. #define FLASH_WRP0_WRP0 FLASH_WRP0_WRP0_Msk /*!< Flash memory write protection option bytes */
  10356. #define FLASH_WRP0_nWRP0_Pos (8U)
  10357. #define FLASH_WRP0_nWRP0_Msk (0xFFUL << FLASH_WRP0_nWRP0_Pos) /*!< 0x0000FF00 */
  10358. #define FLASH_WRP0_nWRP0 FLASH_WRP0_nWRP0_Msk /*!< Flash memory write protection complemented option bytes */
  10359. /****************** Bit definition for FLASH_WRP1 register ******************/
  10360. #define FLASH_WRP1_WRP1_Pos (16U)
  10361. #define FLASH_WRP1_WRP1_Msk (0xFFUL << FLASH_WRP1_WRP1_Pos) /*!< 0x00FF0000 */
  10362. #define FLASH_WRP1_WRP1 FLASH_WRP1_WRP1_Msk /*!< Flash memory write protection option bytes */
  10363. #define FLASH_WRP1_nWRP1_Pos (24U)
  10364. #define FLASH_WRP1_nWRP1_Msk (0xFFUL << FLASH_WRP1_nWRP1_Pos) /*!< 0xFF000000 */
  10365. #define FLASH_WRP1_nWRP1 FLASH_WRP1_nWRP1_Msk /*!< Flash memory write protection complemented option bytes */
  10366. /****************** Bit definition for FLASH_WRP2 register ******************/
  10367. #define FLASH_WRP2_WRP2_Pos (0U)
  10368. #define FLASH_WRP2_WRP2_Msk (0xFFUL << FLASH_WRP2_WRP2_Pos) /*!< 0x000000FF */
  10369. #define FLASH_WRP2_WRP2 FLASH_WRP2_WRP2_Msk /*!< Flash memory write protection option bytes */
  10370. #define FLASH_WRP2_nWRP2_Pos (8U)
  10371. #define FLASH_WRP2_nWRP2_Msk (0xFFUL << FLASH_WRP2_nWRP2_Pos) /*!< 0x0000FF00 */
  10372. #define FLASH_WRP2_nWRP2 FLASH_WRP2_nWRP2_Msk /*!< Flash memory write protection complemented option bytes */
  10373. /****************** Bit definition for FLASH_WRP3 register ******************/
  10374. #define FLASH_WRP3_WRP3_Pos (16U)
  10375. #define FLASH_WRP3_WRP3_Msk (0xFFUL << FLASH_WRP3_WRP3_Pos) /*!< 0x00FF0000 */
  10376. #define FLASH_WRP3_WRP3 FLASH_WRP3_WRP3_Msk /*!< Flash memory write protection option bytes */
  10377. #define FLASH_WRP3_nWRP3_Pos (24U)
  10378. #define FLASH_WRP3_nWRP3_Msk (0xFFUL << FLASH_WRP3_nWRP3_Pos) /*!< 0xFF000000 */
  10379. #define FLASH_WRP3_nWRP3 FLASH_WRP3_nWRP3_Msk /*!< Flash memory write protection complemented option bytes */
  10380. /**
  10381. * @}
  10382. */
  10383. /**
  10384. * @}
  10385. */
  10386. /** @addtogroup Exported_macro
  10387. * @{
  10388. */
  10389. /****************************** ADC Instances *********************************/
  10390. #define IS_ADC_ALL_INSTANCE(INSTANCE) (((INSTANCE) == ADC1) || \
  10391. ((INSTANCE) == ADC2) || \
  10392. ((INSTANCE) == ADC3))
  10393. #define IS_ADC_MULTIMODE_MASTER_INSTANCE(INSTANCE) ((INSTANCE) == ADC1)
  10394. #define IS_ADC_COMMON_INSTANCE(INSTANCE) ((INSTANCE) == ADC12_COMMON)
  10395. #define IS_ADC_DMA_CAPABILITY_INSTANCE(INSTANCE) (((INSTANCE) == ADC1) || \
  10396. ((INSTANCE) == ADC3))
  10397. /****************************** CAN Instances *********************************/
  10398. #define IS_CAN_ALL_INSTANCE(INSTANCE) ((INSTANCE) == CAN1)
  10399. /****************************** CRC Instances *********************************/
  10400. #define IS_CRC_ALL_INSTANCE(INSTANCE) ((INSTANCE) == CRC)
  10401. /****************************** DAC Instances *********************************/
  10402. #define IS_DAC_ALL_INSTANCE(INSTANCE) ((INSTANCE) == DAC1)
  10403. /****************************** DMA Instances *********************************/
  10404. #define IS_DMA_ALL_INSTANCE(INSTANCE) (((INSTANCE) == DMA1_Channel1) || \
  10405. ((INSTANCE) == DMA1_Channel2) || \
  10406. ((INSTANCE) == DMA1_Channel3) || \
  10407. ((INSTANCE) == DMA1_Channel4) || \
  10408. ((INSTANCE) == DMA1_Channel5) || \
  10409. ((INSTANCE) == DMA1_Channel6) || \
  10410. ((INSTANCE) == DMA1_Channel7) || \
  10411. ((INSTANCE) == DMA2_Channel1) || \
  10412. ((INSTANCE) == DMA2_Channel2) || \
  10413. ((INSTANCE) == DMA2_Channel3) || \
  10414. ((INSTANCE) == DMA2_Channel4) || \
  10415. ((INSTANCE) == DMA2_Channel5))
  10416. /******************************* GPIO Instances *******************************/
  10417. #define IS_GPIO_ALL_INSTANCE(INSTANCE) (((INSTANCE) == GPIOA) || \
  10418. ((INSTANCE) == GPIOB) || \
  10419. ((INSTANCE) == GPIOC) || \
  10420. ((INSTANCE) == GPIOD) || \
  10421. ((INSTANCE) == GPIOE) || \
  10422. ((INSTANCE) == GPIOF) || \
  10423. ((INSTANCE) == GPIOG))
  10424. /**************************** GPIO Alternate Function Instances ***************/
  10425. #define IS_GPIO_AF_INSTANCE(INSTANCE) IS_GPIO_ALL_INSTANCE(INSTANCE)
  10426. /**************************** GPIO Lock Instances *****************************/
  10427. #define IS_GPIO_LOCK_INSTANCE(INSTANCE) IS_GPIO_ALL_INSTANCE(INSTANCE)
  10428. /******************************** I2C Instances *******************************/
  10429. #define IS_I2C_ALL_INSTANCE(INSTANCE) (((INSTANCE) == I2C1) || \
  10430. ((INSTANCE) == I2C2))
  10431. /******************************* SMBUS Instances ******************************/
  10432. #define IS_SMBUS_ALL_INSTANCE IS_I2C_ALL_INSTANCE
  10433. /******************************** I2S Instances *******************************/
  10434. #define IS_I2S_ALL_INSTANCE(INSTANCE) (((INSTANCE) == SPI2) || \
  10435. ((INSTANCE) == SPI3))
  10436. /****************************** IWDG Instances ********************************/
  10437. #define IS_IWDG_ALL_INSTANCE(INSTANCE) ((INSTANCE) == IWDG)
  10438. /****************************** SDIO Instances *********************************/
  10439. #define IS_SDIO_ALL_INSTANCE(INSTANCE) ((INSTANCE) == SDIO)
  10440. /******************************** SPI Instances *******************************/
  10441. #define IS_SPI_ALL_INSTANCE(INSTANCE) (((INSTANCE) == SPI1) || \
  10442. ((INSTANCE) == SPI2) || \
  10443. ((INSTANCE) == SPI3))
  10444. /****************************** START TIM Instances ***************************/
  10445. /****************************** TIM Instances *********************************/
  10446. #define IS_TIM_INSTANCE(INSTANCE)\
  10447. (((INSTANCE) == TIM1) || \
  10448. ((INSTANCE) == TIM8) || \
  10449. ((INSTANCE) == TIM2) || \
  10450. ((INSTANCE) == TIM3) || \
  10451. ((INSTANCE) == TIM4) || \
  10452. ((INSTANCE) == TIM5) || \
  10453. ((INSTANCE) == TIM6) || \
  10454. ((INSTANCE) == TIM7))
  10455. #define IS_TIM_ADVANCED_INSTANCE(INSTANCE)\
  10456. (((INSTANCE) == TIM1) || \
  10457. ((INSTANCE) == TIM8))
  10458. #define IS_TIM_CC1_INSTANCE(INSTANCE)\
  10459. (((INSTANCE) == TIM1) || \
  10460. ((INSTANCE) == TIM8) || \
  10461. ((INSTANCE) == TIM2) || \
  10462. ((INSTANCE) == TIM3) || \
  10463. ((INSTANCE) == TIM4) || \
  10464. ((INSTANCE) == TIM5))
  10465. #define IS_TIM_CC2_INSTANCE(INSTANCE)\
  10466. (((INSTANCE) == TIM1) || \
  10467. ((INSTANCE) == TIM8) || \
  10468. ((INSTANCE) == TIM2) || \
  10469. ((INSTANCE) == TIM3) || \
  10470. ((INSTANCE) == TIM4) || \
  10471. ((INSTANCE) == TIM5))
  10472. #define IS_TIM_CC3_INSTANCE(INSTANCE)\
  10473. (((INSTANCE) == TIM1) || \
  10474. ((INSTANCE) == TIM8) || \
  10475. ((INSTANCE) == TIM2) || \
  10476. ((INSTANCE) == TIM3) || \
  10477. ((INSTANCE) == TIM4) || \
  10478. ((INSTANCE) == TIM5))
  10479. #define IS_TIM_CC4_INSTANCE(INSTANCE)\
  10480. (((INSTANCE) == TIM1) || \
  10481. ((INSTANCE) == TIM8) || \
  10482. ((INSTANCE) == TIM2) || \
  10483. ((INSTANCE) == TIM3) || \
  10484. ((INSTANCE) == TIM4) || \
  10485. ((INSTANCE) == TIM5))
  10486. #define IS_TIM_CLOCKSOURCE_ETRMODE1_INSTANCE(INSTANCE)\
  10487. (((INSTANCE) == TIM1) || \
  10488. ((INSTANCE) == TIM8) || \
  10489. ((INSTANCE) == TIM2) || \
  10490. ((INSTANCE) == TIM3) || \
  10491. ((INSTANCE) == TIM4) || \
  10492. ((INSTANCE) == TIM5))
  10493. #define IS_TIM_CLOCKSOURCE_ETRMODE2_INSTANCE(INSTANCE)\
  10494. (((INSTANCE) == TIM1) || \
  10495. ((INSTANCE) == TIM8) || \
  10496. ((INSTANCE) == TIM2) || \
  10497. ((INSTANCE) == TIM3) || \
  10498. ((INSTANCE) == TIM4) || \
  10499. ((INSTANCE) == TIM5))
  10500. #define IS_TIM_CLOCKSOURCE_TIX_INSTANCE(INSTANCE)\
  10501. (((INSTANCE) == TIM1) || \
  10502. ((INSTANCE) == TIM8) || \
  10503. ((INSTANCE) == TIM2) || \
  10504. ((INSTANCE) == TIM3) || \
  10505. ((INSTANCE) == TIM4) || \
  10506. ((INSTANCE) == TIM5))
  10507. #define IS_TIM_CLOCKSOURCE_ITRX_INSTANCE(INSTANCE)\
  10508. (((INSTANCE) == TIM1) || \
  10509. ((INSTANCE) == TIM8) || \
  10510. ((INSTANCE) == TIM2) || \
  10511. ((INSTANCE) == TIM3) || \
  10512. ((INSTANCE) == TIM4) || \
  10513. ((INSTANCE) == TIM5))
  10514. #define IS_TIM_OCXREF_CLEAR_INSTANCE(INSTANCE)\
  10515. (((INSTANCE) == TIM1) || \
  10516. ((INSTANCE) == TIM8) || \
  10517. ((INSTANCE) == TIM2) || \
  10518. ((INSTANCE) == TIM3) || \
  10519. ((INSTANCE) == TIM4) || \
  10520. ((INSTANCE) == TIM5))
  10521. #define IS_TIM_ENCODER_INTERFACE_INSTANCE(INSTANCE)\
  10522. (((INSTANCE) == TIM1) || \
  10523. ((INSTANCE) == TIM8) || \
  10524. ((INSTANCE) == TIM2) || \
  10525. ((INSTANCE) == TIM3) || \
  10526. ((INSTANCE) == TIM4) || \
  10527. ((INSTANCE) == TIM5))
  10528. #define IS_TIM_XOR_INSTANCE(INSTANCE)\
  10529. (((INSTANCE) == TIM1) || \
  10530. ((INSTANCE) == TIM8) || \
  10531. ((INSTANCE) == TIM2) || \
  10532. ((INSTANCE) == TIM3) || \
  10533. ((INSTANCE) == TIM4) || \
  10534. ((INSTANCE) == TIM5))
  10535. #define IS_TIM_MASTER_INSTANCE(INSTANCE)\
  10536. (((INSTANCE) == TIM1) || \
  10537. ((INSTANCE) == TIM8) || \
  10538. ((INSTANCE) == TIM2) || \
  10539. ((INSTANCE) == TIM3) || \
  10540. ((INSTANCE) == TIM4) || \
  10541. ((INSTANCE) == TIM5) || \
  10542. ((INSTANCE) == TIM6) || \
  10543. ((INSTANCE) == TIM7))
  10544. #define IS_TIM_SLAVE_INSTANCE(INSTANCE)\
  10545. (((INSTANCE) == TIM1) || \
  10546. ((INSTANCE) == TIM8) || \
  10547. ((INSTANCE) == TIM2) || \
  10548. ((INSTANCE) == TIM3) || \
  10549. ((INSTANCE) == TIM4) || \
  10550. ((INSTANCE) == TIM5))
  10551. #define IS_TIM_DMABURST_INSTANCE(INSTANCE)\
  10552. (((INSTANCE) == TIM1) || \
  10553. ((INSTANCE) == TIM8) || \
  10554. ((INSTANCE) == TIM2) || \
  10555. ((INSTANCE) == TIM3) || \
  10556. ((INSTANCE) == TIM4) || \
  10557. ((INSTANCE) == TIM5))
  10558. #define IS_TIM_BREAK_INSTANCE(INSTANCE)\
  10559. (((INSTANCE) == TIM1) || \
  10560. ((INSTANCE) == TIM8))
  10561. #define IS_TIM_CCX_INSTANCE(INSTANCE, CHANNEL) \
  10562. ((((INSTANCE) == TIM1) && \
  10563. (((CHANNEL) == TIM_CHANNEL_1) || \
  10564. ((CHANNEL) == TIM_CHANNEL_2) || \
  10565. ((CHANNEL) == TIM_CHANNEL_3) || \
  10566. ((CHANNEL) == TIM_CHANNEL_4))) \
  10567. || \
  10568. (((INSTANCE) == TIM8) && \
  10569. (((CHANNEL) == TIM_CHANNEL_1) || \
  10570. ((CHANNEL) == TIM_CHANNEL_2) || \
  10571. ((CHANNEL) == TIM_CHANNEL_3) || \
  10572. ((CHANNEL) == TIM_CHANNEL_4))) \
  10573. || \
  10574. (((INSTANCE) == TIM2) && \
  10575. (((CHANNEL) == TIM_CHANNEL_1) || \
  10576. ((CHANNEL) == TIM_CHANNEL_2) || \
  10577. ((CHANNEL) == TIM_CHANNEL_3) || \
  10578. ((CHANNEL) == TIM_CHANNEL_4))) \
  10579. || \
  10580. (((INSTANCE) == TIM3) && \
  10581. (((CHANNEL) == TIM_CHANNEL_1) || \
  10582. ((CHANNEL) == TIM_CHANNEL_2) || \
  10583. ((CHANNEL) == TIM_CHANNEL_3) || \
  10584. ((CHANNEL) == TIM_CHANNEL_4))) \
  10585. || \
  10586. (((INSTANCE) == TIM4) && \
  10587. (((CHANNEL) == TIM_CHANNEL_1) || \
  10588. ((CHANNEL) == TIM_CHANNEL_2) || \
  10589. ((CHANNEL) == TIM_CHANNEL_3) || \
  10590. ((CHANNEL) == TIM_CHANNEL_4))) \
  10591. || \
  10592. (((INSTANCE) == TIM5) && \
  10593. (((CHANNEL) == TIM_CHANNEL_1) || \
  10594. ((CHANNEL) == TIM_CHANNEL_2) || \
  10595. ((CHANNEL) == TIM_CHANNEL_3) || \
  10596. ((CHANNEL) == TIM_CHANNEL_4))))
  10597. #define IS_TIM_CCXN_INSTANCE(INSTANCE, CHANNEL) \
  10598. ((((INSTANCE) == TIM1) && \
  10599. (((CHANNEL) == TIM_CHANNEL_1) || \
  10600. ((CHANNEL) == TIM_CHANNEL_2) || \
  10601. ((CHANNEL) == TIM_CHANNEL_3))) \
  10602. || \
  10603. (((INSTANCE) == TIM8) && \
  10604. (((CHANNEL) == TIM_CHANNEL_1) || \
  10605. ((CHANNEL) == TIM_CHANNEL_2) || \
  10606. ((CHANNEL) == TIM_CHANNEL_3))))
  10607. #define IS_TIM_COUNTER_MODE_SELECT_INSTANCE(INSTANCE)\
  10608. (((INSTANCE) == TIM1) || \
  10609. ((INSTANCE) == TIM8) || \
  10610. ((INSTANCE) == TIM2) || \
  10611. ((INSTANCE) == TIM3) || \
  10612. ((INSTANCE) == TIM4) || \
  10613. ((INSTANCE) == TIM5))
  10614. #define IS_TIM_REPETITION_COUNTER_INSTANCE(INSTANCE)\
  10615. (((INSTANCE) == TIM1) || \
  10616. ((INSTANCE) == TIM8))
  10617. #define IS_TIM_CLOCK_DIVISION_INSTANCE(INSTANCE)\
  10618. (((INSTANCE) == TIM1) || \
  10619. ((INSTANCE) == TIM8) || \
  10620. ((INSTANCE) == TIM2) || \
  10621. ((INSTANCE) == TIM3) || \
  10622. ((INSTANCE) == TIM4) || \
  10623. ((INSTANCE) == TIM5))
  10624. #define IS_TIM_DMA_INSTANCE(INSTANCE)\
  10625. (((INSTANCE) == TIM1) || \
  10626. ((INSTANCE) == TIM8) || \
  10627. ((INSTANCE) == TIM2) || \
  10628. ((INSTANCE) == TIM3) || \
  10629. ((INSTANCE) == TIM4) || \
  10630. ((INSTANCE) == TIM5) || \
  10631. ((INSTANCE) == TIM6) || \
  10632. ((INSTANCE) == TIM7))
  10633. #define IS_TIM_DMA_CC_INSTANCE(INSTANCE)\
  10634. (((INSTANCE) == TIM1) || \
  10635. ((INSTANCE) == TIM8) || \
  10636. ((INSTANCE) == TIM2) || \
  10637. ((INSTANCE) == TIM3) || \
  10638. ((INSTANCE) == TIM4) || \
  10639. ((INSTANCE) == TIM5))
  10640. #define IS_TIM_COMMUTATION_EVENT_INSTANCE(INSTANCE)\
  10641. (((INSTANCE) == TIM1) || \
  10642. ((INSTANCE) == TIM8))
  10643. #define IS_TIM_ETR_INSTANCE(INSTANCE) (((INSTANCE) == TIM1) || \
  10644. ((INSTANCE) == TIM2) || \
  10645. ((INSTANCE) == TIM3) || \
  10646. ((INSTANCE) == TIM4) || \
  10647. ((INSTANCE) == TIM5) || \
  10648. ((INSTANCE) == TIM8))
  10649. #define IS_TIM_HALL_SENSOR_INTERFACE_INSTANCE(INSTANCE) (((INSTANCE) == TIM1) || \
  10650. ((INSTANCE) == TIM2) || \
  10651. ((INSTANCE) == TIM3) || \
  10652. ((INSTANCE) == TIM4) || \
  10653. ((INSTANCE) == TIM5) || \
  10654. ((INSTANCE) == TIM8))
  10655. #define IS_TIM_32B_COUNTER_INSTANCE(INSTANCE) 0U
  10656. /****************************** END TIM Instances *****************************/
  10657. /******************** USART Instances : Synchronous mode **********************/
  10658. #define IS_USART_INSTANCE(INSTANCE) (((INSTANCE) == USART1) || \
  10659. ((INSTANCE) == USART2) || \
  10660. ((INSTANCE) == USART3))
  10661. /******************** UART Instances : Asynchronous mode **********************/
  10662. #define IS_UART_INSTANCE(INSTANCE) (((INSTANCE) == USART1) || \
  10663. ((INSTANCE) == USART2) || \
  10664. ((INSTANCE) == USART3) || \
  10665. ((INSTANCE) == UART4) || \
  10666. ((INSTANCE) == UART5))
  10667. /******************** UART Instances : Half-Duplex mode **********************/
  10668. #define IS_UART_HALFDUPLEX_INSTANCE(INSTANCE) (((INSTANCE) == USART1) || \
  10669. ((INSTANCE) == USART2) || \
  10670. ((INSTANCE) == USART3) || \
  10671. ((INSTANCE) == UART4) || \
  10672. ((INSTANCE) == UART5))
  10673. /******************** UART Instances : LIN mode **********************/
  10674. #define IS_UART_LIN_INSTANCE(INSTANCE) (((INSTANCE) == USART1) || \
  10675. ((INSTANCE) == USART2) || \
  10676. ((INSTANCE) == USART3) || \
  10677. ((INSTANCE) == UART4) || \
  10678. ((INSTANCE) == UART5))
  10679. /****************** UART Instances : Hardware Flow control ********************/
  10680. #define IS_UART_HWFLOW_INSTANCE(INSTANCE) (((INSTANCE) == USART1) || \
  10681. ((INSTANCE) == USART2) || \
  10682. ((INSTANCE) == USART3))
  10683. /********************* UART Instances : Smard card mode ***********************/
  10684. #define IS_SMARTCARD_INSTANCE(INSTANCE) (((INSTANCE) == USART1) || \
  10685. ((INSTANCE) == USART2) || \
  10686. ((INSTANCE) == USART3))
  10687. /*********************** UART Instances : IRDA mode ***************************/
  10688. #define IS_IRDA_INSTANCE(INSTANCE) (((INSTANCE) == USART1) || \
  10689. ((INSTANCE) == USART2) || \
  10690. ((INSTANCE) == USART3) || \
  10691. ((INSTANCE) == UART4) || \
  10692. ((INSTANCE) == UART5))
  10693. /***************** UART Instances : Multi-Processor mode **********************/
  10694. #define IS_UART_MULTIPROCESSOR_INSTANCE(INSTANCE) (((INSTANCE) == USART1) || \
  10695. ((INSTANCE) == USART2) || \
  10696. ((INSTANCE) == USART3) || \
  10697. ((INSTANCE) == UART4) || \
  10698. ((INSTANCE) == UART5))
  10699. /***************** UART Instances : DMA mode available **********************/
  10700. #define IS_UART_DMA_INSTANCE(INSTANCE) (((INSTANCE) == USART1) || \
  10701. ((INSTANCE) == USART2) || \
  10702. ((INSTANCE) == USART3) || \
  10703. ((INSTANCE) == UART4))
  10704. /****************************** RTC Instances *********************************/
  10705. #define IS_RTC_ALL_INSTANCE(INSTANCE) ((INSTANCE) == RTC)
  10706. /**************************** WWDG Instances *****************************/
  10707. #define IS_WWDG_ALL_INSTANCE(INSTANCE) ((INSTANCE) == WWDG)
  10708. /****************************** USB Instances ********************************/
  10709. #define IS_PCD_ALL_INSTANCE(INSTANCE) ((INSTANCE) == USB)
  10710. #define RCC_HSE_MIN 4000000U
  10711. #define RCC_HSE_MAX 16000000U
  10712. #define RCC_MAX_FREQUENCY 72000000U
  10713. /**
  10714. * @}
  10715. */
  10716. /******************************************************************************/
  10717. /* For a painless codes migration between the STM32F1xx device product */
  10718. /* lines, the aliases defined below are put in place to overcome the */
  10719. /* differences in the interrupt handlers and IRQn definitions. */
  10720. /* No need to update developed interrupt code when moving across */
  10721. /* product lines within the same STM32F1 Family */
  10722. /******************************************************************************/
  10723. /* Aliases for __IRQn */
  10724. #define ADC1_IRQn ADC1_2_IRQn
  10725. #define DMA2_Channel4_IRQn DMA2_Channel4_5_IRQn
  10726. #define TIM1_BRK_TIM9_IRQn TIM1_BRK_IRQn
  10727. #define TIM9_IRQn TIM1_BRK_IRQn
  10728. #define TIM1_BRK_TIM15_IRQn TIM1_BRK_IRQn
  10729. #define TIM11_IRQn TIM1_TRG_COM_IRQn
  10730. #define TIM1_TRG_COM_TIM11_IRQn TIM1_TRG_COM_IRQn
  10731. #define TIM1_TRG_COM_TIM17_IRQn TIM1_TRG_COM_IRQn
  10732. #define TIM1_UP_TIM10_IRQn TIM1_UP_IRQn
  10733. #define TIM1_UP_TIM16_IRQn TIM1_UP_IRQn
  10734. #define TIM10_IRQn TIM1_UP_IRQn
  10735. #define TIM6_DAC_IRQn TIM6_IRQn
  10736. #define TIM8_BRK_TIM12_IRQn TIM8_BRK_IRQn
  10737. #define TIM12_IRQn TIM8_BRK_IRQn
  10738. #define TIM14_IRQn TIM8_TRG_COM_IRQn
  10739. #define TIM8_TRG_COM_TIM14_IRQn TIM8_TRG_COM_IRQn
  10740. #define TIM8_UP_TIM13_IRQn TIM8_UP_IRQn
  10741. #define TIM13_IRQn TIM8_UP_IRQn
  10742. #define CEC_IRQn USBWakeUp_IRQn
  10743. #define OTG_FS_WKUP_IRQn USBWakeUp_IRQn
  10744. #define USB_HP_IRQn USB_HP_CAN1_TX_IRQn
  10745. #define CAN1_TX_IRQn USB_HP_CAN1_TX_IRQn
  10746. #define USB_LP_IRQn USB_LP_CAN1_RX0_IRQn
  10747. #define CAN1_RX0_IRQn USB_LP_CAN1_RX0_IRQn
  10748. /* Aliases for __IRQHandler */
  10749. #define ADC1_IRQHandler ADC1_2_IRQHandler
  10750. #define DMA2_Channel4_IRQHandler DMA2_Channel4_5_IRQHandler
  10751. #define TIM1_BRK_TIM9_IRQHandler TIM1_BRK_IRQHandler
  10752. #define TIM9_IRQHandler TIM1_BRK_IRQHandler
  10753. #define TIM1_BRK_TIM15_IRQHandler TIM1_BRK_IRQHandler
  10754. #define TIM11_IRQHandler TIM1_TRG_COM_IRQHandler
  10755. #define TIM1_TRG_COM_TIM11_IRQHandler TIM1_TRG_COM_IRQHandler
  10756. #define TIM1_TRG_COM_TIM17_IRQHandler TIM1_TRG_COM_IRQHandler
  10757. #define TIM1_UP_TIM10_IRQHandler TIM1_UP_IRQHandler
  10758. #define TIM1_UP_TIM16_IRQHandler TIM1_UP_IRQHandler
  10759. #define TIM10_IRQHandler TIM1_UP_IRQHandler
  10760. #define TIM6_DAC_IRQHandler TIM6_IRQHandler
  10761. #define TIM8_BRK_TIM12_IRQHandler TIM8_BRK_IRQHandler
  10762. #define TIM12_IRQHandler TIM8_BRK_IRQHandler
  10763. #define TIM14_IRQHandler TIM8_TRG_COM_IRQHandler
  10764. #define TIM8_TRG_COM_TIM14_IRQHandler TIM8_TRG_COM_IRQHandler
  10765. #define TIM8_UP_TIM13_IRQHandler TIM8_UP_IRQHandler
  10766. #define TIM13_IRQHandler TIM8_UP_IRQHandler
  10767. #define CEC_IRQHandler USBWakeUp_IRQHandler
  10768. #define OTG_FS_WKUP_IRQHandler USBWakeUp_IRQHandler
  10769. #define USB_HP_IRQHandler USB_HP_CAN1_TX_IRQHandler
  10770. #define CAN1_TX_IRQHandler USB_HP_CAN1_TX_IRQHandler
  10771. #define USB_LP_IRQHandler USB_LP_CAN1_RX0_IRQHandler
  10772. #define CAN1_RX0_IRQHandler USB_LP_CAN1_RX0_IRQHandler
  10773. /**
  10774. * @}
  10775. */
  10776. /**
  10777. * @}
  10778. */
  10779. #ifdef __cplusplus
  10780. }
  10781. #endif /* __cplusplus */
  10782. #endif /* __STM32F103xE_H */
  10783. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/