stm32f101xb.h 412 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446
  1. /**
  2. ******************************************************************************
  3. * @file stm32f101xb.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. * Copyright (c) 2017-2021 STMicroelectronics.
  18. * All rights reserved.
  19. *
  20. * This software is licensed under terms that can be found in the LICENSE file
  21. * in the root directory of this software component.
  22. * If no LICENSE file comes with this software, it is provided AS-IS.
  23. *
  24. ******************************************************************************
  25. */
  26. /** @addtogroup CMSIS
  27. * @{
  28. */
  29. /** @addtogroup stm32f101xb
  30. * @{
  31. */
  32. #ifndef __STM32F101xB_H
  33. #define __STM32F101xB_H
  34. #ifdef __cplusplus
  35. extern "C" {
  36. #endif
  37. /** @addtogroup Configuration_section_for_CMSIS
  38. * @{
  39. */
  40. /**
  41. * @brief Configuration of the Cortex-M3 Processor and Core Peripherals
  42. */
  43. #define __CM3_REV 0x0200U /*!< Core Revision r2p0 */
  44. #define __MPU_PRESENT 0U /*!< Other STM32 devices does not provide an MPU */
  45. #define __NVIC_PRIO_BITS 4U /*!< STM32 uses 4 Bits for the Priority Levels */
  46. #define __Vendor_SysTickConfig 0U /*!< Set to 1 if different SysTick Config is used */
  47. /**
  48. * @}
  49. */
  50. /** @addtogroup Peripheral_interrupt_number_definition
  51. * @{
  52. */
  53. /**
  54. * @brief STM32F10x Interrupt Number Definition, according to the selected device
  55. * in @ref Library_configuration_section
  56. */
  57. /*!< Interrupt Number Definition */
  58. typedef enum
  59. {
  60. /****** Cortex-M3 Processor Exceptions Numbers ***************************************************/
  61. NonMaskableInt_IRQn = -14, /*!< 2 Non Maskable Interrupt */
  62. HardFault_IRQn = -13, /*!< 3 Cortex-M3 Hard Fault Interrupt */
  63. MemoryManagement_IRQn = -12, /*!< 4 Cortex-M3 Memory Management Interrupt */
  64. BusFault_IRQn = -11, /*!< 5 Cortex-M3 Bus Fault Interrupt */
  65. UsageFault_IRQn = -10, /*!< 6 Cortex-M3 Usage Fault Interrupt */
  66. SVCall_IRQn = -5, /*!< 11 Cortex-M3 SV Call Interrupt */
  67. DebugMonitor_IRQn = -4, /*!< 12 Cortex-M3 Debug Monitor Interrupt */
  68. PendSV_IRQn = -2, /*!< 14 Cortex-M3 Pend SV Interrupt */
  69. SysTick_IRQn = -1, /*!< 15 Cortex-M3 System Tick Interrupt */
  70. /****** STM32 specific Interrupt Numbers *********************************************************/
  71. WWDG_IRQn = 0, /*!< Window WatchDog Interrupt */
  72. PVD_IRQn = 1, /*!< PVD through EXTI Line detection Interrupt */
  73. TAMPER_IRQn = 2, /*!< Tamper Interrupt */
  74. RTC_IRQn = 3, /*!< RTC global Interrupt */
  75. FLASH_IRQn = 4, /*!< FLASH global Interrupt */
  76. RCC_IRQn = 5, /*!< RCC global Interrupt */
  77. EXTI0_IRQn = 6, /*!< EXTI Line0 Interrupt */
  78. EXTI1_IRQn = 7, /*!< EXTI Line1 Interrupt */
  79. EXTI2_IRQn = 8, /*!< EXTI Line2 Interrupt */
  80. EXTI3_IRQn = 9, /*!< EXTI Line3 Interrupt */
  81. EXTI4_IRQn = 10, /*!< EXTI Line4 Interrupt */
  82. DMA1_Channel1_IRQn = 11, /*!< DMA1 Channel 1 global Interrupt */
  83. DMA1_Channel2_IRQn = 12, /*!< DMA1 Channel 2 global Interrupt */
  84. DMA1_Channel3_IRQn = 13, /*!< DMA1 Channel 3 global Interrupt */
  85. DMA1_Channel4_IRQn = 14, /*!< DMA1 Channel 4 global Interrupt */
  86. DMA1_Channel5_IRQn = 15, /*!< DMA1 Channel 5 global Interrupt */
  87. DMA1_Channel6_IRQn = 16, /*!< DMA1 Channel 6 global Interrupt */
  88. DMA1_Channel7_IRQn = 17, /*!< DMA1 Channel 7 global Interrupt */
  89. ADC1_IRQn = 18, /*!< ADC1 global Interrupt */
  90. EXTI9_5_IRQn = 23, /*!< External Line[9:5] Interrupts */
  91. TIM2_IRQn = 28, /*!< TIM2 global Interrupt */
  92. TIM3_IRQn = 29, /*!< TIM3 global Interrupt */
  93. TIM4_IRQn = 30, /*!< TIM4 global Interrupt */
  94. I2C1_EV_IRQn = 31, /*!< I2C1 Event Interrupt */
  95. I2C1_ER_IRQn = 32, /*!< I2C1 Error Interrupt */
  96. I2C2_EV_IRQn = 33, /*!< I2C2 Event Interrupt */
  97. I2C2_ER_IRQn = 34, /*!< I2C2 Error Interrupt */
  98. SPI1_IRQn = 35, /*!< SPI1 global Interrupt */
  99. SPI2_IRQn = 36, /*!< SPI2 global Interrupt */
  100. USART1_IRQn = 37, /*!< USART1 global Interrupt */
  101. USART2_IRQn = 38, /*!< USART2 global Interrupt */
  102. USART3_IRQn = 39, /*!< USART3 global Interrupt */
  103. EXTI15_10_IRQn = 40, /*!< External Line[15:10] Interrupts */
  104. RTC_Alarm_IRQn = 41, /*!< RTC Alarm through EXTI Line Interrupt */
  105. } IRQn_Type;
  106. /**
  107. * @}
  108. */
  109. #include "core_cm3.h"
  110. #include "system_stm32f1xx.h"
  111. #include <stdint.h>
  112. /** @addtogroup Peripheral_registers_structures
  113. * @{
  114. */
  115. /**
  116. * @brief Analog to Digital Converter
  117. */
  118. typedef struct
  119. {
  120. __IO uint32_t SR;
  121. __IO uint32_t CR1;
  122. __IO uint32_t CR2;
  123. __IO uint32_t SMPR1;
  124. __IO uint32_t SMPR2;
  125. __IO uint32_t JOFR1;
  126. __IO uint32_t JOFR2;
  127. __IO uint32_t JOFR3;
  128. __IO uint32_t JOFR4;
  129. __IO uint32_t HTR;
  130. __IO uint32_t LTR;
  131. __IO uint32_t SQR1;
  132. __IO uint32_t SQR2;
  133. __IO uint32_t SQR3;
  134. __IO uint32_t JSQR;
  135. __IO uint32_t JDR1;
  136. __IO uint32_t JDR2;
  137. __IO uint32_t JDR3;
  138. __IO uint32_t JDR4;
  139. __IO uint32_t DR;
  140. } ADC_TypeDef;
  141. typedef struct
  142. {
  143. __IO uint32_t SR; /*!< ADC status register, used for ADC multimode (bits common to several ADC instances). Address offset: ADC1 base address */
  144. __IO uint32_t CR1; /*!< ADC control register 1, used for ADC multimode (bits common to several ADC instances). Address offset: ADC1 base address + 0x04 */
  145. __IO uint32_t CR2; /*!< ADC control register 2, used for ADC multimode (bits common to several ADC instances). Address offset: ADC1 base address + 0x08 */
  146. uint32_t RESERVED[16];
  147. __IO uint32_t DR; /*!< ADC data register, used for ADC multimode (bits common to several ADC instances). Address offset: ADC1 base address + 0x4C */
  148. } ADC_Common_TypeDef;
  149. /**
  150. * @brief Backup Registers
  151. */
  152. typedef struct
  153. {
  154. uint32_t RESERVED0;
  155. __IO uint32_t DR1;
  156. __IO uint32_t DR2;
  157. __IO uint32_t DR3;
  158. __IO uint32_t DR4;
  159. __IO uint32_t DR5;
  160. __IO uint32_t DR6;
  161. __IO uint32_t DR7;
  162. __IO uint32_t DR8;
  163. __IO uint32_t DR9;
  164. __IO uint32_t DR10;
  165. __IO uint32_t RTCCR;
  166. __IO uint32_t CR;
  167. __IO uint32_t CSR;
  168. } BKP_TypeDef;
  169. /**
  170. * @brief CRC calculation unit
  171. */
  172. typedef struct
  173. {
  174. __IO uint32_t DR; /*!< CRC Data register, Address offset: 0x00 */
  175. __IO uint8_t IDR; /*!< CRC Independent data register, Address offset: 0x04 */
  176. uint8_t RESERVED0; /*!< Reserved, Address offset: 0x05 */
  177. uint16_t RESERVED1; /*!< Reserved, Address offset: 0x06 */
  178. __IO uint32_t CR; /*!< CRC Control register, Address offset: 0x08 */
  179. } CRC_TypeDef;
  180. /**
  181. * @brief Debug MCU
  182. */
  183. typedef struct
  184. {
  185. __IO uint32_t IDCODE;
  186. __IO uint32_t CR;
  187. }DBGMCU_TypeDef;
  188. /**
  189. * @brief DMA Controller
  190. */
  191. typedef struct
  192. {
  193. __IO uint32_t CCR;
  194. __IO uint32_t CNDTR;
  195. __IO uint32_t CPAR;
  196. __IO uint32_t CMAR;
  197. } DMA_Channel_TypeDef;
  198. typedef struct
  199. {
  200. __IO uint32_t ISR;
  201. __IO uint32_t IFCR;
  202. } DMA_TypeDef;
  203. /**
  204. * @brief External Interrupt/Event Controller
  205. */
  206. typedef struct
  207. {
  208. __IO uint32_t IMR;
  209. __IO uint32_t EMR;
  210. __IO uint32_t RTSR;
  211. __IO uint32_t FTSR;
  212. __IO uint32_t SWIER;
  213. __IO uint32_t PR;
  214. } EXTI_TypeDef;
  215. /**
  216. * @brief FLASH Registers
  217. */
  218. typedef struct
  219. {
  220. __IO uint32_t ACR;
  221. __IO uint32_t KEYR;
  222. __IO uint32_t OPTKEYR;
  223. __IO uint32_t SR;
  224. __IO uint32_t CR;
  225. __IO uint32_t AR;
  226. __IO uint32_t RESERVED;
  227. __IO uint32_t OBR;
  228. __IO uint32_t WRPR;
  229. } FLASH_TypeDef;
  230. /**
  231. * @brief Option Bytes Registers
  232. */
  233. typedef struct
  234. {
  235. __IO uint16_t RDP;
  236. __IO uint16_t USER;
  237. __IO uint16_t Data0;
  238. __IO uint16_t Data1;
  239. __IO uint16_t WRP0;
  240. __IO uint16_t WRP1;
  241. __IO uint16_t WRP2;
  242. __IO uint16_t WRP3;
  243. } OB_TypeDef;
  244. /**
  245. * @brief General Purpose I/O
  246. */
  247. typedef struct
  248. {
  249. __IO uint32_t CRL;
  250. __IO uint32_t CRH;
  251. __IO uint32_t IDR;
  252. __IO uint32_t ODR;
  253. __IO uint32_t BSRR;
  254. __IO uint32_t BRR;
  255. __IO uint32_t LCKR;
  256. } GPIO_TypeDef;
  257. /**
  258. * @brief Alternate Function I/O
  259. */
  260. typedef struct
  261. {
  262. __IO uint32_t EVCR;
  263. __IO uint32_t MAPR;
  264. __IO uint32_t EXTICR[4];
  265. uint32_t RESERVED0;
  266. __IO uint32_t MAPR2;
  267. } AFIO_TypeDef;
  268. /**
  269. * @brief Inter Integrated Circuit Interface
  270. */
  271. typedef struct
  272. {
  273. __IO uint32_t CR1;
  274. __IO uint32_t CR2;
  275. __IO uint32_t OAR1;
  276. __IO uint32_t OAR2;
  277. __IO uint32_t DR;
  278. __IO uint32_t SR1;
  279. __IO uint32_t SR2;
  280. __IO uint32_t CCR;
  281. __IO uint32_t TRISE;
  282. } I2C_TypeDef;
  283. /**
  284. * @brief Independent WATCHDOG
  285. */
  286. typedef struct
  287. {
  288. __IO uint32_t KR; /*!< Key register, Address offset: 0x00 */
  289. __IO uint32_t PR; /*!< Prescaler register, Address offset: 0x04 */
  290. __IO uint32_t RLR; /*!< Reload register, Address offset: 0x08 */
  291. __IO uint32_t SR; /*!< Status register, Address offset: 0x0C */
  292. } IWDG_TypeDef;
  293. /**
  294. * @brief Power Control
  295. */
  296. typedef struct
  297. {
  298. __IO uint32_t CR;
  299. __IO uint32_t CSR;
  300. } PWR_TypeDef;
  301. /**
  302. * @brief Reset and Clock Control
  303. */
  304. typedef struct
  305. {
  306. __IO uint32_t CR;
  307. __IO uint32_t CFGR;
  308. __IO uint32_t CIR;
  309. __IO uint32_t APB2RSTR;
  310. __IO uint32_t APB1RSTR;
  311. __IO uint32_t AHBENR;
  312. __IO uint32_t APB2ENR;
  313. __IO uint32_t APB1ENR;
  314. __IO uint32_t BDCR;
  315. __IO uint32_t CSR;
  316. } RCC_TypeDef;
  317. /**
  318. * @brief Real-Time Clock
  319. */
  320. typedef struct
  321. {
  322. __IO uint32_t CRH;
  323. __IO uint32_t CRL;
  324. __IO uint32_t PRLH;
  325. __IO uint32_t PRLL;
  326. __IO uint32_t DIVH;
  327. __IO uint32_t DIVL;
  328. __IO uint32_t CNTH;
  329. __IO uint32_t CNTL;
  330. __IO uint32_t ALRH;
  331. __IO uint32_t ALRL;
  332. } RTC_TypeDef;
  333. /**
  334. * @brief Serial Peripheral Interface
  335. */
  336. typedef struct
  337. {
  338. __IO uint32_t CR1;
  339. __IO uint32_t CR2;
  340. __IO uint32_t SR;
  341. __IO uint32_t DR;
  342. __IO uint32_t CRCPR;
  343. __IO uint32_t RXCRCR;
  344. __IO uint32_t TXCRCR;
  345. __IO uint32_t I2SCFGR;
  346. } SPI_TypeDef;
  347. /**
  348. * @brief TIM Timers
  349. */
  350. typedef struct
  351. {
  352. __IO uint32_t CR1; /*!< TIM control register 1, Address offset: 0x00 */
  353. __IO uint32_t CR2; /*!< TIM control register 2, Address offset: 0x04 */
  354. __IO uint32_t SMCR; /*!< TIM slave Mode Control register, Address offset: 0x08 */
  355. __IO uint32_t DIER; /*!< TIM DMA/interrupt enable register, Address offset: 0x0C */
  356. __IO uint32_t SR; /*!< TIM status register, Address offset: 0x10 */
  357. __IO uint32_t EGR; /*!< TIM event generation register, Address offset: 0x14 */
  358. __IO uint32_t CCMR1; /*!< TIM capture/compare mode register 1, Address offset: 0x18 */
  359. __IO uint32_t CCMR2; /*!< TIM capture/compare mode register 2, Address offset: 0x1C */
  360. __IO uint32_t CCER; /*!< TIM capture/compare enable register, Address offset: 0x20 */
  361. __IO uint32_t CNT; /*!< TIM counter register, Address offset: 0x24 */
  362. __IO uint32_t PSC; /*!< TIM prescaler register, Address offset: 0x28 */
  363. __IO uint32_t ARR; /*!< TIM auto-reload register, Address offset: 0x2C */
  364. __IO uint32_t RCR; /*!< TIM repetition counter register, Address offset: 0x30 */
  365. __IO uint32_t CCR1; /*!< TIM capture/compare register 1, Address offset: 0x34 */
  366. __IO uint32_t CCR2; /*!< TIM capture/compare register 2, Address offset: 0x38 */
  367. __IO uint32_t CCR3; /*!< TIM capture/compare register 3, Address offset: 0x3C */
  368. __IO uint32_t CCR4; /*!< TIM capture/compare register 4, Address offset: 0x40 */
  369. __IO uint32_t BDTR; /*!< TIM break and dead-time register, Address offset: 0x44 */
  370. __IO uint32_t DCR; /*!< TIM DMA control register, Address offset: 0x48 */
  371. __IO uint32_t DMAR; /*!< TIM DMA address for full transfer register, Address offset: 0x4C */
  372. __IO uint32_t OR; /*!< TIM option register, Address offset: 0x50 */
  373. }TIM_TypeDef;
  374. /**
  375. * @brief Universal Synchronous Asynchronous Receiver Transmitter
  376. */
  377. typedef struct
  378. {
  379. __IO uint32_t SR; /*!< USART Status register, Address offset: 0x00 */
  380. __IO uint32_t DR; /*!< USART Data register, Address offset: 0x04 */
  381. __IO uint32_t BRR; /*!< USART Baud rate register, Address offset: 0x08 */
  382. __IO uint32_t CR1; /*!< USART Control register 1, Address offset: 0x0C */
  383. __IO uint32_t CR2; /*!< USART Control register 2, Address offset: 0x10 */
  384. __IO uint32_t CR3; /*!< USART Control register 3, Address offset: 0x14 */
  385. __IO uint32_t GTPR; /*!< USART Guard time and prescaler register, Address offset: 0x18 */
  386. } USART_TypeDef;
  387. /**
  388. * @brief Window WATCHDOG
  389. */
  390. typedef struct
  391. {
  392. __IO uint32_t CR; /*!< WWDG Control register, Address offset: 0x00 */
  393. __IO uint32_t CFR; /*!< WWDG Configuration register, Address offset: 0x04 */
  394. __IO uint32_t SR; /*!< WWDG Status register, Address offset: 0x08 */
  395. } WWDG_TypeDef;
  396. /**
  397. * @}
  398. */
  399. /** @addtogroup Peripheral_memory_map
  400. * @{
  401. */
  402. #define FLASH_BASE 0x08000000UL /*!< FLASH base address in the alias region */
  403. #define FLASH_BANK1_END 0x0801FFFFUL /*!< FLASH END address of bank1 */
  404. #define SRAM_BASE 0x20000000UL /*!< SRAM base address in the alias region */
  405. #define PERIPH_BASE 0x40000000UL /*!< Peripheral base address in the alias region */
  406. #define SRAM_BB_BASE 0x22000000UL /*!< SRAM base address in the bit-band region */
  407. #define PERIPH_BB_BASE 0x42000000UL /*!< Peripheral base address in the bit-band region */
  408. /*!< Peripheral memory map */
  409. #define APB1PERIPH_BASE PERIPH_BASE
  410. #define APB2PERIPH_BASE (PERIPH_BASE + 0x00010000UL)
  411. #define AHBPERIPH_BASE (PERIPH_BASE + 0x00020000UL)
  412. #define TIM2_BASE (APB1PERIPH_BASE + 0x00000000UL)
  413. #define TIM3_BASE (APB1PERIPH_BASE + 0x00000400UL)
  414. #define TIM4_BASE (APB1PERIPH_BASE + 0x00000800UL)
  415. #define RTC_BASE (APB1PERIPH_BASE + 0x00002800UL)
  416. #define WWDG_BASE (APB1PERIPH_BASE + 0x00002C00UL)
  417. #define IWDG_BASE (APB1PERIPH_BASE + 0x00003000UL)
  418. #define SPI2_BASE (APB1PERIPH_BASE + 0x00003800UL)
  419. #define USART2_BASE (APB1PERIPH_BASE + 0x00004400UL)
  420. #define USART3_BASE (APB1PERIPH_BASE + 0x00004800UL)
  421. #define I2C1_BASE (APB1PERIPH_BASE + 0x00005400UL)
  422. #define I2C2_BASE (APB1PERIPH_BASE + 0x00005800UL)
  423. #define BKP_BASE (APB1PERIPH_BASE + 0x00006C00UL)
  424. #define PWR_BASE (APB1PERIPH_BASE + 0x00007000UL)
  425. #define AFIO_BASE (APB2PERIPH_BASE + 0x00000000UL)
  426. #define EXTI_BASE (APB2PERIPH_BASE + 0x00000400UL)
  427. #define GPIOA_BASE (APB2PERIPH_BASE + 0x00000800UL)
  428. #define GPIOB_BASE (APB2PERIPH_BASE + 0x00000C00UL)
  429. #define GPIOC_BASE (APB2PERIPH_BASE + 0x00001000UL)
  430. #define GPIOD_BASE (APB2PERIPH_BASE + 0x00001400UL)
  431. #define GPIOE_BASE (APB2PERIPH_BASE + 0x00001800UL)
  432. #define ADC1_BASE (APB2PERIPH_BASE + 0x00002400UL)
  433. #define SPI1_BASE (APB2PERIPH_BASE + 0x00003000UL)
  434. #define USART1_BASE (APB2PERIPH_BASE + 0x00003800UL)
  435. #define DMA1_BASE (AHBPERIPH_BASE + 0x00000000UL)
  436. #define DMA1_Channel1_BASE (AHBPERIPH_BASE + 0x00000008UL)
  437. #define DMA1_Channel2_BASE (AHBPERIPH_BASE + 0x0000001CUL)
  438. #define DMA1_Channel3_BASE (AHBPERIPH_BASE + 0x00000030UL)
  439. #define DMA1_Channel4_BASE (AHBPERIPH_BASE + 0x00000044UL)
  440. #define DMA1_Channel5_BASE (AHBPERIPH_BASE + 0x00000058UL)
  441. #define DMA1_Channel6_BASE (AHBPERIPH_BASE + 0x0000006CUL)
  442. #define DMA1_Channel7_BASE (AHBPERIPH_BASE + 0x00000080UL)
  443. #define RCC_BASE (AHBPERIPH_BASE + 0x00001000UL)
  444. #define CRC_BASE (AHBPERIPH_BASE + 0x00003000UL)
  445. #define FLASH_R_BASE (AHBPERIPH_BASE + 0x00002000UL) /*!< Flash registers base address */
  446. #define FLASHSIZE_BASE 0x1FFFF7E0UL /*!< FLASH Size register base address */
  447. #define UID_BASE 0x1FFFF7E8UL /*!< Unique device ID register base address */
  448. #define OB_BASE 0x1FFFF800UL /*!< Flash Option Bytes base address */
  449. #define DBGMCU_BASE 0xE0042000UL /*!< Debug MCU registers base address */
  450. /**
  451. * @}
  452. */
  453. /** @addtogroup Peripheral_declaration
  454. * @{
  455. */
  456. #define TIM2 ((TIM_TypeDef *)TIM2_BASE)
  457. #define TIM3 ((TIM_TypeDef *)TIM3_BASE)
  458. #define TIM4 ((TIM_TypeDef *)TIM4_BASE)
  459. #define RTC ((RTC_TypeDef *)RTC_BASE)
  460. #define WWDG ((WWDG_TypeDef *)WWDG_BASE)
  461. #define IWDG ((IWDG_TypeDef *)IWDG_BASE)
  462. #define SPI2 ((SPI_TypeDef *)SPI2_BASE)
  463. #define USART2 ((USART_TypeDef *)USART2_BASE)
  464. #define USART3 ((USART_TypeDef *)USART3_BASE)
  465. #define I2C1 ((I2C_TypeDef *)I2C1_BASE)
  466. #define I2C2 ((I2C_TypeDef *)I2C2_BASE)
  467. #define BKP ((BKP_TypeDef *)BKP_BASE)
  468. #define PWR ((PWR_TypeDef *)PWR_BASE)
  469. #define AFIO ((AFIO_TypeDef *)AFIO_BASE)
  470. #define EXTI ((EXTI_TypeDef *)EXTI_BASE)
  471. #define GPIOA ((GPIO_TypeDef *)GPIOA_BASE)
  472. #define GPIOB ((GPIO_TypeDef *)GPIOB_BASE)
  473. #define GPIOC ((GPIO_TypeDef *)GPIOC_BASE)
  474. #define GPIOD ((GPIO_TypeDef *)GPIOD_BASE)
  475. #define GPIOE ((GPIO_TypeDef *)GPIOE_BASE)
  476. #define ADC1 ((ADC_TypeDef *)ADC1_BASE)
  477. #define ADC1_COMMON ((ADC_Common_TypeDef *)ADC1_BASE)
  478. #define SPI1 ((SPI_TypeDef *)SPI1_BASE)
  479. #define USART1 ((USART_TypeDef *)USART1_BASE)
  480. #define DMA1 ((DMA_TypeDef *)DMA1_BASE)
  481. #define DMA1_Channel1 ((DMA_Channel_TypeDef *)DMA1_Channel1_BASE)
  482. #define DMA1_Channel2 ((DMA_Channel_TypeDef *)DMA1_Channel2_BASE)
  483. #define DMA1_Channel3 ((DMA_Channel_TypeDef *)DMA1_Channel3_BASE)
  484. #define DMA1_Channel4 ((DMA_Channel_TypeDef *)DMA1_Channel4_BASE)
  485. #define DMA1_Channel5 ((DMA_Channel_TypeDef *)DMA1_Channel5_BASE)
  486. #define DMA1_Channel6 ((DMA_Channel_TypeDef *)DMA1_Channel6_BASE)
  487. #define DMA1_Channel7 ((DMA_Channel_TypeDef *)DMA1_Channel7_BASE)
  488. #define RCC ((RCC_TypeDef *)RCC_BASE)
  489. #define CRC ((CRC_TypeDef *)CRC_BASE)
  490. #define FLASH ((FLASH_TypeDef *)FLASH_R_BASE)
  491. #define OB ((OB_TypeDef *)OB_BASE)
  492. #define DBGMCU ((DBGMCU_TypeDef *)DBGMCU_BASE)
  493. /**
  494. * @}
  495. */
  496. /** @addtogroup Exported_constants
  497. * @{
  498. */
  499. /** @addtogroup Hardware_Constant_Definition
  500. * @{
  501. */
  502. #define LSI_STARTUP_TIME 85U /*!< LSI Maximum startup time in us */
  503. /**
  504. * @}
  505. */
  506. /** @addtogroup Peripheral_Registers_Bits_Definition
  507. * @{
  508. */
  509. /******************************************************************************/
  510. /* Peripheral Registers_Bits_Definition */
  511. /******************************************************************************/
  512. /******************************************************************************/
  513. /* */
  514. /* CRC calculation unit (CRC) */
  515. /* */
  516. /******************************************************************************/
  517. /******************* Bit definition for CRC_DR register *********************/
  518. #define CRC_DR_DR_Pos (0U)
  519. #define CRC_DR_DR_Msk (0xFFFFFFFFUL << CRC_DR_DR_Pos) /*!< 0xFFFFFFFF */
  520. #define CRC_DR_DR CRC_DR_DR_Msk /*!< Data register bits */
  521. /******************* Bit definition for CRC_IDR register ********************/
  522. #define CRC_IDR_IDR_Pos (0U)
  523. #define CRC_IDR_IDR_Msk (0xFFUL << CRC_IDR_IDR_Pos) /*!< 0x000000FF */
  524. #define CRC_IDR_IDR CRC_IDR_IDR_Msk /*!< General-purpose 8-bit data register bits */
  525. /******************** Bit definition for CRC_CR register ********************/
  526. #define CRC_CR_RESET_Pos (0U)
  527. #define CRC_CR_RESET_Msk (0x1UL << CRC_CR_RESET_Pos) /*!< 0x00000001 */
  528. #define CRC_CR_RESET CRC_CR_RESET_Msk /*!< RESET bit */
  529. /******************************************************************************/
  530. /* */
  531. /* Power Control */
  532. /* */
  533. /******************************************************************************/
  534. /******************** Bit definition for PWR_CR register ********************/
  535. #define PWR_CR_LPDS_Pos (0U)
  536. #define PWR_CR_LPDS_Msk (0x1UL << PWR_CR_LPDS_Pos) /*!< 0x00000001 */
  537. #define PWR_CR_LPDS PWR_CR_LPDS_Msk /*!< Low-Power Deepsleep */
  538. #define PWR_CR_PDDS_Pos (1U)
  539. #define PWR_CR_PDDS_Msk (0x1UL << PWR_CR_PDDS_Pos) /*!< 0x00000002 */
  540. #define PWR_CR_PDDS PWR_CR_PDDS_Msk /*!< Power Down Deepsleep */
  541. #define PWR_CR_CWUF_Pos (2U)
  542. #define PWR_CR_CWUF_Msk (0x1UL << PWR_CR_CWUF_Pos) /*!< 0x00000004 */
  543. #define PWR_CR_CWUF PWR_CR_CWUF_Msk /*!< Clear Wakeup Flag */
  544. #define PWR_CR_CSBF_Pos (3U)
  545. #define PWR_CR_CSBF_Msk (0x1UL << PWR_CR_CSBF_Pos) /*!< 0x00000008 */
  546. #define PWR_CR_CSBF PWR_CR_CSBF_Msk /*!< Clear Standby Flag */
  547. #define PWR_CR_PVDE_Pos (4U)
  548. #define PWR_CR_PVDE_Msk (0x1UL << PWR_CR_PVDE_Pos) /*!< 0x00000010 */
  549. #define PWR_CR_PVDE PWR_CR_PVDE_Msk /*!< Power Voltage Detector Enable */
  550. #define PWR_CR_PLS_Pos (5U)
  551. #define PWR_CR_PLS_Msk (0x7UL << PWR_CR_PLS_Pos) /*!< 0x000000E0 */
  552. #define PWR_CR_PLS PWR_CR_PLS_Msk /*!< PLS[2:0] bits (PVD Level Selection) */
  553. #define PWR_CR_PLS_0 (0x1UL << PWR_CR_PLS_Pos) /*!< 0x00000020 */
  554. #define PWR_CR_PLS_1 (0x2UL << PWR_CR_PLS_Pos) /*!< 0x00000040 */
  555. #define PWR_CR_PLS_2 (0x4UL << PWR_CR_PLS_Pos) /*!< 0x00000080 */
  556. /*!< PVD level configuration */
  557. #define PWR_CR_PLS_LEV0 0x00000000U /*!< PVD level 2.2V */
  558. #define PWR_CR_PLS_LEV1 0x00000020U /*!< PVD level 2.3V */
  559. #define PWR_CR_PLS_LEV2 0x00000040U /*!< PVD level 2.4V */
  560. #define PWR_CR_PLS_LEV3 0x00000060U /*!< PVD level 2.5V */
  561. #define PWR_CR_PLS_LEV4 0x00000080U /*!< PVD level 2.6V */
  562. #define PWR_CR_PLS_LEV5 0x000000A0U /*!< PVD level 2.7V */
  563. #define PWR_CR_PLS_LEV6 0x000000C0U /*!< PVD level 2.8V */
  564. #define PWR_CR_PLS_LEV7 0x000000E0U /*!< PVD level 2.9V */
  565. /* Legacy defines */
  566. #define PWR_CR_PLS_2V2 PWR_CR_PLS_LEV0
  567. #define PWR_CR_PLS_2V3 PWR_CR_PLS_LEV1
  568. #define PWR_CR_PLS_2V4 PWR_CR_PLS_LEV2
  569. #define PWR_CR_PLS_2V5 PWR_CR_PLS_LEV3
  570. #define PWR_CR_PLS_2V6 PWR_CR_PLS_LEV4
  571. #define PWR_CR_PLS_2V7 PWR_CR_PLS_LEV5
  572. #define PWR_CR_PLS_2V8 PWR_CR_PLS_LEV6
  573. #define PWR_CR_PLS_2V9 PWR_CR_PLS_LEV7
  574. #define PWR_CR_DBP_Pos (8U)
  575. #define PWR_CR_DBP_Msk (0x1UL << PWR_CR_DBP_Pos) /*!< 0x00000100 */
  576. #define PWR_CR_DBP PWR_CR_DBP_Msk /*!< Disable Backup Domain write protection */
  577. /******************* Bit definition for PWR_CSR register ********************/
  578. #define PWR_CSR_WUF_Pos (0U)
  579. #define PWR_CSR_WUF_Msk (0x1UL << PWR_CSR_WUF_Pos) /*!< 0x00000001 */
  580. #define PWR_CSR_WUF PWR_CSR_WUF_Msk /*!< Wakeup Flag */
  581. #define PWR_CSR_SBF_Pos (1U)
  582. #define PWR_CSR_SBF_Msk (0x1UL << PWR_CSR_SBF_Pos) /*!< 0x00000002 */
  583. #define PWR_CSR_SBF PWR_CSR_SBF_Msk /*!< Standby Flag */
  584. #define PWR_CSR_PVDO_Pos (2U)
  585. #define PWR_CSR_PVDO_Msk (0x1UL << PWR_CSR_PVDO_Pos) /*!< 0x00000004 */
  586. #define PWR_CSR_PVDO PWR_CSR_PVDO_Msk /*!< PVD Output */
  587. #define PWR_CSR_EWUP_Pos (8U)
  588. #define PWR_CSR_EWUP_Msk (0x1UL << PWR_CSR_EWUP_Pos) /*!< 0x00000100 */
  589. #define PWR_CSR_EWUP PWR_CSR_EWUP_Msk /*!< Enable WKUP pin */
  590. /******************************************************************************/
  591. /* */
  592. /* Backup registers */
  593. /* */
  594. /******************************************************************************/
  595. /******************* Bit definition for BKP_DR1 register ********************/
  596. #define BKP_DR1_D_Pos (0U)
  597. #define BKP_DR1_D_Msk (0xFFFFUL << BKP_DR1_D_Pos) /*!< 0x0000FFFF */
  598. #define BKP_DR1_D BKP_DR1_D_Msk /*!< Backup data */
  599. /******************* Bit definition for BKP_DR2 register ********************/
  600. #define BKP_DR2_D_Pos (0U)
  601. #define BKP_DR2_D_Msk (0xFFFFUL << BKP_DR2_D_Pos) /*!< 0x0000FFFF */
  602. #define BKP_DR2_D BKP_DR2_D_Msk /*!< Backup data */
  603. /******************* Bit definition for BKP_DR3 register ********************/
  604. #define BKP_DR3_D_Pos (0U)
  605. #define BKP_DR3_D_Msk (0xFFFFUL << BKP_DR3_D_Pos) /*!< 0x0000FFFF */
  606. #define BKP_DR3_D BKP_DR3_D_Msk /*!< Backup data */
  607. /******************* Bit definition for BKP_DR4 register ********************/
  608. #define BKP_DR4_D_Pos (0U)
  609. #define BKP_DR4_D_Msk (0xFFFFUL << BKP_DR4_D_Pos) /*!< 0x0000FFFF */
  610. #define BKP_DR4_D BKP_DR4_D_Msk /*!< Backup data */
  611. /******************* Bit definition for BKP_DR5 register ********************/
  612. #define BKP_DR5_D_Pos (0U)
  613. #define BKP_DR5_D_Msk (0xFFFFUL << BKP_DR5_D_Pos) /*!< 0x0000FFFF */
  614. #define BKP_DR5_D BKP_DR5_D_Msk /*!< Backup data */
  615. /******************* Bit definition for BKP_DR6 register ********************/
  616. #define BKP_DR6_D_Pos (0U)
  617. #define BKP_DR6_D_Msk (0xFFFFUL << BKP_DR6_D_Pos) /*!< 0x0000FFFF */
  618. #define BKP_DR6_D BKP_DR6_D_Msk /*!< Backup data */
  619. /******************* Bit definition for BKP_DR7 register ********************/
  620. #define BKP_DR7_D_Pos (0U)
  621. #define BKP_DR7_D_Msk (0xFFFFUL << BKP_DR7_D_Pos) /*!< 0x0000FFFF */
  622. #define BKP_DR7_D BKP_DR7_D_Msk /*!< Backup data */
  623. /******************* Bit definition for BKP_DR8 register ********************/
  624. #define BKP_DR8_D_Pos (0U)
  625. #define BKP_DR8_D_Msk (0xFFFFUL << BKP_DR8_D_Pos) /*!< 0x0000FFFF */
  626. #define BKP_DR8_D BKP_DR8_D_Msk /*!< Backup data */
  627. /******************* Bit definition for BKP_DR9 register ********************/
  628. #define BKP_DR9_D_Pos (0U)
  629. #define BKP_DR9_D_Msk (0xFFFFUL << BKP_DR9_D_Pos) /*!< 0x0000FFFF */
  630. #define BKP_DR9_D BKP_DR9_D_Msk /*!< Backup data */
  631. /******************* Bit definition for BKP_DR10 register *******************/
  632. #define BKP_DR10_D_Pos (0U)
  633. #define BKP_DR10_D_Msk (0xFFFFUL << BKP_DR10_D_Pos) /*!< 0x0000FFFF */
  634. #define BKP_DR10_D BKP_DR10_D_Msk /*!< Backup data */
  635. #define RTC_BKP_NUMBER 10
  636. /****************** Bit definition for BKP_RTCCR register *******************/
  637. #define BKP_RTCCR_CAL_Pos (0U)
  638. #define BKP_RTCCR_CAL_Msk (0x7FUL << BKP_RTCCR_CAL_Pos) /*!< 0x0000007F */
  639. #define BKP_RTCCR_CAL BKP_RTCCR_CAL_Msk /*!< Calibration value */
  640. #define BKP_RTCCR_CCO_Pos (7U)
  641. #define BKP_RTCCR_CCO_Msk (0x1UL << BKP_RTCCR_CCO_Pos) /*!< 0x00000080 */
  642. #define BKP_RTCCR_CCO BKP_RTCCR_CCO_Msk /*!< Calibration Clock Output */
  643. #define BKP_RTCCR_ASOE_Pos (8U)
  644. #define BKP_RTCCR_ASOE_Msk (0x1UL << BKP_RTCCR_ASOE_Pos) /*!< 0x00000100 */
  645. #define BKP_RTCCR_ASOE BKP_RTCCR_ASOE_Msk /*!< Alarm or Second Output Enable */
  646. #define BKP_RTCCR_ASOS_Pos (9U)
  647. #define BKP_RTCCR_ASOS_Msk (0x1UL << BKP_RTCCR_ASOS_Pos) /*!< 0x00000200 */
  648. #define BKP_RTCCR_ASOS BKP_RTCCR_ASOS_Msk /*!< Alarm or Second Output Selection */
  649. /******************** Bit definition for BKP_CR register ********************/
  650. #define BKP_CR_TPE_Pos (0U)
  651. #define BKP_CR_TPE_Msk (0x1UL << BKP_CR_TPE_Pos) /*!< 0x00000001 */
  652. #define BKP_CR_TPE BKP_CR_TPE_Msk /*!< TAMPER pin enable */
  653. #define BKP_CR_TPAL_Pos (1U)
  654. #define BKP_CR_TPAL_Msk (0x1UL << BKP_CR_TPAL_Pos) /*!< 0x00000002 */
  655. #define BKP_CR_TPAL BKP_CR_TPAL_Msk /*!< TAMPER pin active level */
  656. /******************* Bit definition for BKP_CSR register ********************/
  657. #define BKP_CSR_CTE_Pos (0U)
  658. #define BKP_CSR_CTE_Msk (0x1UL << BKP_CSR_CTE_Pos) /*!< 0x00000001 */
  659. #define BKP_CSR_CTE BKP_CSR_CTE_Msk /*!< Clear Tamper event */
  660. #define BKP_CSR_CTI_Pos (1U)
  661. #define BKP_CSR_CTI_Msk (0x1UL << BKP_CSR_CTI_Pos) /*!< 0x00000002 */
  662. #define BKP_CSR_CTI BKP_CSR_CTI_Msk /*!< Clear Tamper Interrupt */
  663. #define BKP_CSR_TPIE_Pos (2U)
  664. #define BKP_CSR_TPIE_Msk (0x1UL << BKP_CSR_TPIE_Pos) /*!< 0x00000004 */
  665. #define BKP_CSR_TPIE BKP_CSR_TPIE_Msk /*!< TAMPER Pin interrupt enable */
  666. #define BKP_CSR_TEF_Pos (8U)
  667. #define BKP_CSR_TEF_Msk (0x1UL << BKP_CSR_TEF_Pos) /*!< 0x00000100 */
  668. #define BKP_CSR_TEF BKP_CSR_TEF_Msk /*!< Tamper Event Flag */
  669. #define BKP_CSR_TIF_Pos (9U)
  670. #define BKP_CSR_TIF_Msk (0x1UL << BKP_CSR_TIF_Pos) /*!< 0x00000200 */
  671. #define BKP_CSR_TIF BKP_CSR_TIF_Msk /*!< Tamper Interrupt Flag */
  672. /******************************************************************************/
  673. /* */
  674. /* Reset and Clock Control */
  675. /* */
  676. /******************************************************************************/
  677. /******************** Bit definition for RCC_CR register ********************/
  678. #define RCC_CR_HSION_Pos (0U)
  679. #define RCC_CR_HSION_Msk (0x1UL << RCC_CR_HSION_Pos) /*!< 0x00000001 */
  680. #define RCC_CR_HSION RCC_CR_HSION_Msk /*!< Internal High Speed clock enable */
  681. #define RCC_CR_HSIRDY_Pos (1U)
  682. #define RCC_CR_HSIRDY_Msk (0x1UL << RCC_CR_HSIRDY_Pos) /*!< 0x00000002 */
  683. #define RCC_CR_HSIRDY RCC_CR_HSIRDY_Msk /*!< Internal High Speed clock ready flag */
  684. #define RCC_CR_HSITRIM_Pos (3U)
  685. #define RCC_CR_HSITRIM_Msk (0x1FUL << RCC_CR_HSITRIM_Pos) /*!< 0x000000F8 */
  686. #define RCC_CR_HSITRIM RCC_CR_HSITRIM_Msk /*!< Internal High Speed clock trimming */
  687. #define RCC_CR_HSICAL_Pos (8U)
  688. #define RCC_CR_HSICAL_Msk (0xFFUL << RCC_CR_HSICAL_Pos) /*!< 0x0000FF00 */
  689. #define RCC_CR_HSICAL RCC_CR_HSICAL_Msk /*!< Internal High Speed clock Calibration */
  690. #define RCC_CR_HSEON_Pos (16U)
  691. #define RCC_CR_HSEON_Msk (0x1UL << RCC_CR_HSEON_Pos) /*!< 0x00010000 */
  692. #define RCC_CR_HSEON RCC_CR_HSEON_Msk /*!< External High Speed clock enable */
  693. #define RCC_CR_HSERDY_Pos (17U)
  694. #define RCC_CR_HSERDY_Msk (0x1UL << RCC_CR_HSERDY_Pos) /*!< 0x00020000 */
  695. #define RCC_CR_HSERDY RCC_CR_HSERDY_Msk /*!< External High Speed clock ready flag */
  696. #define RCC_CR_HSEBYP_Pos (18U)
  697. #define RCC_CR_HSEBYP_Msk (0x1UL << RCC_CR_HSEBYP_Pos) /*!< 0x00040000 */
  698. #define RCC_CR_HSEBYP RCC_CR_HSEBYP_Msk /*!< External High Speed clock Bypass */
  699. #define RCC_CR_CSSON_Pos (19U)
  700. #define RCC_CR_CSSON_Msk (0x1UL << RCC_CR_CSSON_Pos) /*!< 0x00080000 */
  701. #define RCC_CR_CSSON RCC_CR_CSSON_Msk /*!< Clock Security System enable */
  702. #define RCC_CR_PLLON_Pos (24U)
  703. #define RCC_CR_PLLON_Msk (0x1UL << RCC_CR_PLLON_Pos) /*!< 0x01000000 */
  704. #define RCC_CR_PLLON RCC_CR_PLLON_Msk /*!< PLL enable */
  705. #define RCC_CR_PLLRDY_Pos (25U)
  706. #define RCC_CR_PLLRDY_Msk (0x1UL << RCC_CR_PLLRDY_Pos) /*!< 0x02000000 */
  707. #define RCC_CR_PLLRDY RCC_CR_PLLRDY_Msk /*!< PLL clock ready flag */
  708. /******************* Bit definition for RCC_CFGR register *******************/
  709. /*!< SW configuration */
  710. #define RCC_CFGR_SW_Pos (0U)
  711. #define RCC_CFGR_SW_Msk (0x3UL << RCC_CFGR_SW_Pos) /*!< 0x00000003 */
  712. #define RCC_CFGR_SW RCC_CFGR_SW_Msk /*!< SW[1:0] bits (System clock Switch) */
  713. #define RCC_CFGR_SW_0 (0x1UL << RCC_CFGR_SW_Pos) /*!< 0x00000001 */
  714. #define RCC_CFGR_SW_1 (0x2UL << RCC_CFGR_SW_Pos) /*!< 0x00000002 */
  715. #define RCC_CFGR_SW_HSI 0x00000000U /*!< HSI selected as system clock */
  716. #define RCC_CFGR_SW_HSE 0x00000001U /*!< HSE selected as system clock */
  717. #define RCC_CFGR_SW_PLL 0x00000002U /*!< PLL selected as system clock */
  718. /*!< SWS configuration */
  719. #define RCC_CFGR_SWS_Pos (2U)
  720. #define RCC_CFGR_SWS_Msk (0x3UL << RCC_CFGR_SWS_Pos) /*!< 0x0000000C */
  721. #define RCC_CFGR_SWS RCC_CFGR_SWS_Msk /*!< SWS[1:0] bits (System Clock Switch Status) */
  722. #define RCC_CFGR_SWS_0 (0x1UL << RCC_CFGR_SWS_Pos) /*!< 0x00000004 */
  723. #define RCC_CFGR_SWS_1 (0x2UL << RCC_CFGR_SWS_Pos) /*!< 0x00000008 */
  724. #define RCC_CFGR_SWS_HSI 0x00000000U /*!< HSI oscillator used as system clock */
  725. #define RCC_CFGR_SWS_HSE 0x00000004U /*!< HSE oscillator used as system clock */
  726. #define RCC_CFGR_SWS_PLL 0x00000008U /*!< PLL used as system clock */
  727. /*!< HPRE configuration */
  728. #define RCC_CFGR_HPRE_Pos (4U)
  729. #define RCC_CFGR_HPRE_Msk (0xFUL << RCC_CFGR_HPRE_Pos) /*!< 0x000000F0 */
  730. #define RCC_CFGR_HPRE RCC_CFGR_HPRE_Msk /*!< HPRE[3:0] bits (AHB prescaler) */
  731. #define RCC_CFGR_HPRE_0 (0x1UL << RCC_CFGR_HPRE_Pos) /*!< 0x00000010 */
  732. #define RCC_CFGR_HPRE_1 (0x2UL << RCC_CFGR_HPRE_Pos) /*!< 0x00000020 */
  733. #define RCC_CFGR_HPRE_2 (0x4UL << RCC_CFGR_HPRE_Pos) /*!< 0x00000040 */
  734. #define RCC_CFGR_HPRE_3 (0x8UL << RCC_CFGR_HPRE_Pos) /*!< 0x00000080 */
  735. #define RCC_CFGR_HPRE_DIV1 0x00000000U /*!< SYSCLK not divided */
  736. #define RCC_CFGR_HPRE_DIV2 0x00000080U /*!< SYSCLK divided by 2 */
  737. #define RCC_CFGR_HPRE_DIV4 0x00000090U /*!< SYSCLK divided by 4 */
  738. #define RCC_CFGR_HPRE_DIV8 0x000000A0U /*!< SYSCLK divided by 8 */
  739. #define RCC_CFGR_HPRE_DIV16 0x000000B0U /*!< SYSCLK divided by 16 */
  740. #define RCC_CFGR_HPRE_DIV64 0x000000C0U /*!< SYSCLK divided by 64 */
  741. #define RCC_CFGR_HPRE_DIV128 0x000000D0U /*!< SYSCLK divided by 128 */
  742. #define RCC_CFGR_HPRE_DIV256 0x000000E0U /*!< SYSCLK divided by 256 */
  743. #define RCC_CFGR_HPRE_DIV512 0x000000F0U /*!< SYSCLK divided by 512 */
  744. /*!< PPRE1 configuration */
  745. #define RCC_CFGR_PPRE1_Pos (8U)
  746. #define RCC_CFGR_PPRE1_Msk (0x7UL << RCC_CFGR_PPRE1_Pos) /*!< 0x00000700 */
  747. #define RCC_CFGR_PPRE1 RCC_CFGR_PPRE1_Msk /*!< PRE1[2:0] bits (APB1 prescaler) */
  748. #define RCC_CFGR_PPRE1_0 (0x1UL << RCC_CFGR_PPRE1_Pos) /*!< 0x00000100 */
  749. #define RCC_CFGR_PPRE1_1 (0x2UL << RCC_CFGR_PPRE1_Pos) /*!< 0x00000200 */
  750. #define RCC_CFGR_PPRE1_2 (0x4UL << RCC_CFGR_PPRE1_Pos) /*!< 0x00000400 */
  751. #define RCC_CFGR_PPRE1_DIV1 0x00000000U /*!< HCLK not divided */
  752. #define RCC_CFGR_PPRE1_DIV2 0x00000400U /*!< HCLK divided by 2 */
  753. #define RCC_CFGR_PPRE1_DIV4 0x00000500U /*!< HCLK divided by 4 */
  754. #define RCC_CFGR_PPRE1_DIV8 0x00000600U /*!< HCLK divided by 8 */
  755. #define RCC_CFGR_PPRE1_DIV16 0x00000700U /*!< HCLK divided by 16 */
  756. /*!< PPRE2 configuration */
  757. #define RCC_CFGR_PPRE2_Pos (11U)
  758. #define RCC_CFGR_PPRE2_Msk (0x7UL << RCC_CFGR_PPRE2_Pos) /*!< 0x00003800 */
  759. #define RCC_CFGR_PPRE2 RCC_CFGR_PPRE2_Msk /*!< PRE2[2:0] bits (APB2 prescaler) */
  760. #define RCC_CFGR_PPRE2_0 (0x1UL << RCC_CFGR_PPRE2_Pos) /*!< 0x00000800 */
  761. #define RCC_CFGR_PPRE2_1 (0x2UL << RCC_CFGR_PPRE2_Pos) /*!< 0x00001000 */
  762. #define RCC_CFGR_PPRE2_2 (0x4UL << RCC_CFGR_PPRE2_Pos) /*!< 0x00002000 */
  763. #define RCC_CFGR_PPRE2_DIV1 0x00000000U /*!< HCLK not divided */
  764. #define RCC_CFGR_PPRE2_DIV2 0x00002000U /*!< HCLK divided by 2 */
  765. #define RCC_CFGR_PPRE2_DIV4 0x00002800U /*!< HCLK divided by 4 */
  766. #define RCC_CFGR_PPRE2_DIV8 0x00003000U /*!< HCLK divided by 8 */
  767. #define RCC_CFGR_PPRE2_DIV16 0x00003800U /*!< HCLK divided by 16 */
  768. /*!< ADCPPRE configuration */
  769. #define RCC_CFGR_ADCPRE_Pos (14U)
  770. #define RCC_CFGR_ADCPRE_Msk (0x3UL << RCC_CFGR_ADCPRE_Pos) /*!< 0x0000C000 */
  771. #define RCC_CFGR_ADCPRE RCC_CFGR_ADCPRE_Msk /*!< ADCPRE[1:0] bits (ADC prescaler) */
  772. #define RCC_CFGR_ADCPRE_0 (0x1UL << RCC_CFGR_ADCPRE_Pos) /*!< 0x00004000 */
  773. #define RCC_CFGR_ADCPRE_1 (0x2UL << RCC_CFGR_ADCPRE_Pos) /*!< 0x00008000 */
  774. #define RCC_CFGR_ADCPRE_DIV2 0x00000000U /*!< PCLK2 divided by 2 */
  775. #define RCC_CFGR_ADCPRE_DIV4 0x00004000U /*!< PCLK2 divided by 4 */
  776. #define RCC_CFGR_ADCPRE_DIV6 0x00008000U /*!< PCLK2 divided by 6 */
  777. #define RCC_CFGR_ADCPRE_DIV8 0x0000C000U /*!< PCLK2 divided by 8 */
  778. #define RCC_CFGR_PLLSRC_Pos (16U)
  779. #define RCC_CFGR_PLLSRC_Msk (0x1UL << RCC_CFGR_PLLSRC_Pos) /*!< 0x00010000 */
  780. #define RCC_CFGR_PLLSRC RCC_CFGR_PLLSRC_Msk /*!< PLL entry clock source */
  781. #define RCC_CFGR_PLLXTPRE_Pos (17U)
  782. #define RCC_CFGR_PLLXTPRE_Msk (0x1UL << RCC_CFGR_PLLXTPRE_Pos) /*!< 0x00020000 */
  783. #define RCC_CFGR_PLLXTPRE RCC_CFGR_PLLXTPRE_Msk /*!< HSE divider for PLL entry */
  784. /*!< PLLMUL configuration */
  785. #define RCC_CFGR_PLLMULL_Pos (18U)
  786. #define RCC_CFGR_PLLMULL_Msk (0xFUL << RCC_CFGR_PLLMULL_Pos) /*!< 0x003C0000 */
  787. #define RCC_CFGR_PLLMULL RCC_CFGR_PLLMULL_Msk /*!< PLLMUL[3:0] bits (PLL multiplication factor) */
  788. #define RCC_CFGR_PLLMULL_0 (0x1UL << RCC_CFGR_PLLMULL_Pos) /*!< 0x00040000 */
  789. #define RCC_CFGR_PLLMULL_1 (0x2UL << RCC_CFGR_PLLMULL_Pos) /*!< 0x00080000 */
  790. #define RCC_CFGR_PLLMULL_2 (0x4UL << RCC_CFGR_PLLMULL_Pos) /*!< 0x00100000 */
  791. #define RCC_CFGR_PLLMULL_3 (0x8UL << RCC_CFGR_PLLMULL_Pos) /*!< 0x00200000 */
  792. #define RCC_CFGR_PLLXTPRE_HSE 0x00000000U /*!< HSE clock not divided for PLL entry */
  793. #define RCC_CFGR_PLLXTPRE_HSE_DIV2 0x00020000U /*!< HSE clock divided by 2 for PLL entry */
  794. #define RCC_CFGR_PLLMULL2 0x00000000U /*!< PLL input clock*2 */
  795. #define RCC_CFGR_PLLMULL3_Pos (18U)
  796. #define RCC_CFGR_PLLMULL3_Msk (0x1UL << RCC_CFGR_PLLMULL3_Pos) /*!< 0x00040000 */
  797. #define RCC_CFGR_PLLMULL3 RCC_CFGR_PLLMULL3_Msk /*!< PLL input clock*3 */
  798. #define RCC_CFGR_PLLMULL4_Pos (19U)
  799. #define RCC_CFGR_PLLMULL4_Msk (0x1UL << RCC_CFGR_PLLMULL4_Pos) /*!< 0x00080000 */
  800. #define RCC_CFGR_PLLMULL4 RCC_CFGR_PLLMULL4_Msk /*!< PLL input clock*4 */
  801. #define RCC_CFGR_PLLMULL5_Pos (18U)
  802. #define RCC_CFGR_PLLMULL5_Msk (0x3UL << RCC_CFGR_PLLMULL5_Pos) /*!< 0x000C0000 */
  803. #define RCC_CFGR_PLLMULL5 RCC_CFGR_PLLMULL5_Msk /*!< PLL input clock*5 */
  804. #define RCC_CFGR_PLLMULL6_Pos (20U)
  805. #define RCC_CFGR_PLLMULL6_Msk (0x1UL << RCC_CFGR_PLLMULL6_Pos) /*!< 0x00100000 */
  806. #define RCC_CFGR_PLLMULL6 RCC_CFGR_PLLMULL6_Msk /*!< PLL input clock*6 */
  807. #define RCC_CFGR_PLLMULL7_Pos (18U)
  808. #define RCC_CFGR_PLLMULL7_Msk (0x5UL << RCC_CFGR_PLLMULL7_Pos) /*!< 0x00140000 */
  809. #define RCC_CFGR_PLLMULL7 RCC_CFGR_PLLMULL7_Msk /*!< PLL input clock*7 */
  810. #define RCC_CFGR_PLLMULL8_Pos (19U)
  811. #define RCC_CFGR_PLLMULL8_Msk (0x3UL << RCC_CFGR_PLLMULL8_Pos) /*!< 0x00180000 */
  812. #define RCC_CFGR_PLLMULL8 RCC_CFGR_PLLMULL8_Msk /*!< PLL input clock*8 */
  813. #define RCC_CFGR_PLLMULL9_Pos (18U)
  814. #define RCC_CFGR_PLLMULL9_Msk (0x7UL << RCC_CFGR_PLLMULL9_Pos) /*!< 0x001C0000 */
  815. #define RCC_CFGR_PLLMULL9 RCC_CFGR_PLLMULL9_Msk /*!< PLL input clock*9 */
  816. #define RCC_CFGR_PLLMULL10_Pos (21U)
  817. #define RCC_CFGR_PLLMULL10_Msk (0x1UL << RCC_CFGR_PLLMULL10_Pos) /*!< 0x00200000 */
  818. #define RCC_CFGR_PLLMULL10 RCC_CFGR_PLLMULL10_Msk /*!< PLL input clock10 */
  819. #define RCC_CFGR_PLLMULL11_Pos (18U)
  820. #define RCC_CFGR_PLLMULL11_Msk (0x9UL << RCC_CFGR_PLLMULL11_Pos) /*!< 0x00240000 */
  821. #define RCC_CFGR_PLLMULL11 RCC_CFGR_PLLMULL11_Msk /*!< PLL input clock*11 */
  822. #define RCC_CFGR_PLLMULL12_Pos (19U)
  823. #define RCC_CFGR_PLLMULL12_Msk (0x5UL << RCC_CFGR_PLLMULL12_Pos) /*!< 0x00280000 */
  824. #define RCC_CFGR_PLLMULL12 RCC_CFGR_PLLMULL12_Msk /*!< PLL input clock*12 */
  825. #define RCC_CFGR_PLLMULL13_Pos (18U)
  826. #define RCC_CFGR_PLLMULL13_Msk (0xBUL << RCC_CFGR_PLLMULL13_Pos) /*!< 0x002C0000 */
  827. #define RCC_CFGR_PLLMULL13 RCC_CFGR_PLLMULL13_Msk /*!< PLL input clock*13 */
  828. #define RCC_CFGR_PLLMULL14_Pos (20U)
  829. #define RCC_CFGR_PLLMULL14_Msk (0x3UL << RCC_CFGR_PLLMULL14_Pos) /*!< 0x00300000 */
  830. #define RCC_CFGR_PLLMULL14 RCC_CFGR_PLLMULL14_Msk /*!< PLL input clock*14 */
  831. #define RCC_CFGR_PLLMULL15_Pos (18U)
  832. #define RCC_CFGR_PLLMULL15_Msk (0xDUL << RCC_CFGR_PLLMULL15_Pos) /*!< 0x00340000 */
  833. #define RCC_CFGR_PLLMULL15 RCC_CFGR_PLLMULL15_Msk /*!< PLL input clock*15 */
  834. #define RCC_CFGR_PLLMULL16_Pos (19U)
  835. #define RCC_CFGR_PLLMULL16_Msk (0x7UL << RCC_CFGR_PLLMULL16_Pos) /*!< 0x00380000 */
  836. #define RCC_CFGR_PLLMULL16 RCC_CFGR_PLLMULL16_Msk /*!< PLL input clock*16 */
  837. /*!< MCO configuration */
  838. #define RCC_CFGR_MCO_Pos (24U)
  839. #define RCC_CFGR_MCO_Msk (0x7UL << RCC_CFGR_MCO_Pos) /*!< 0x07000000 */
  840. #define RCC_CFGR_MCO RCC_CFGR_MCO_Msk /*!< MCO[2:0] bits (Microcontroller Clock Output) */
  841. #define RCC_CFGR_MCO_0 (0x1UL << RCC_CFGR_MCO_Pos) /*!< 0x01000000 */
  842. #define RCC_CFGR_MCO_1 (0x2UL << RCC_CFGR_MCO_Pos) /*!< 0x02000000 */
  843. #define RCC_CFGR_MCO_2 (0x4UL << RCC_CFGR_MCO_Pos) /*!< 0x04000000 */
  844. #define RCC_CFGR_MCO_NOCLOCK 0x00000000U /*!< No clock */
  845. #define RCC_CFGR_MCO_SYSCLK 0x04000000U /*!< System clock selected as MCO source */
  846. #define RCC_CFGR_MCO_HSI 0x05000000U /*!< HSI clock selected as MCO source */
  847. #define RCC_CFGR_MCO_HSE 0x06000000U /*!< HSE clock selected as MCO source */
  848. #define RCC_CFGR_MCO_PLLCLK_DIV2 0x07000000U /*!< PLL clock divided by 2 selected as MCO source */
  849. /* Reference defines */
  850. #define RCC_CFGR_MCOSEL RCC_CFGR_MCO
  851. #define RCC_CFGR_MCOSEL_0 RCC_CFGR_MCO_0
  852. #define RCC_CFGR_MCOSEL_1 RCC_CFGR_MCO_1
  853. #define RCC_CFGR_MCOSEL_2 RCC_CFGR_MCO_2
  854. #define RCC_CFGR_MCOSEL_NOCLOCK RCC_CFGR_MCO_NOCLOCK
  855. #define RCC_CFGR_MCOSEL_SYSCLK RCC_CFGR_MCO_SYSCLK
  856. #define RCC_CFGR_MCOSEL_HSI RCC_CFGR_MCO_HSI
  857. #define RCC_CFGR_MCOSEL_HSE RCC_CFGR_MCO_HSE
  858. #define RCC_CFGR_MCOSEL_PLL_DIV2 RCC_CFGR_MCO_PLLCLK_DIV2
  859. /*!<****************** Bit definition for RCC_CIR register ********************/
  860. #define RCC_CIR_LSIRDYF_Pos (0U)
  861. #define RCC_CIR_LSIRDYF_Msk (0x1UL << RCC_CIR_LSIRDYF_Pos) /*!< 0x00000001 */
  862. #define RCC_CIR_LSIRDYF RCC_CIR_LSIRDYF_Msk /*!< LSI Ready Interrupt flag */
  863. #define RCC_CIR_LSERDYF_Pos (1U)
  864. #define RCC_CIR_LSERDYF_Msk (0x1UL << RCC_CIR_LSERDYF_Pos) /*!< 0x00000002 */
  865. #define RCC_CIR_LSERDYF RCC_CIR_LSERDYF_Msk /*!< LSE Ready Interrupt flag */
  866. #define RCC_CIR_HSIRDYF_Pos (2U)
  867. #define RCC_CIR_HSIRDYF_Msk (0x1UL << RCC_CIR_HSIRDYF_Pos) /*!< 0x00000004 */
  868. #define RCC_CIR_HSIRDYF RCC_CIR_HSIRDYF_Msk /*!< HSI Ready Interrupt flag */
  869. #define RCC_CIR_HSERDYF_Pos (3U)
  870. #define RCC_CIR_HSERDYF_Msk (0x1UL << RCC_CIR_HSERDYF_Pos) /*!< 0x00000008 */
  871. #define RCC_CIR_HSERDYF RCC_CIR_HSERDYF_Msk /*!< HSE Ready Interrupt flag */
  872. #define RCC_CIR_PLLRDYF_Pos (4U)
  873. #define RCC_CIR_PLLRDYF_Msk (0x1UL << RCC_CIR_PLLRDYF_Pos) /*!< 0x00000010 */
  874. #define RCC_CIR_PLLRDYF RCC_CIR_PLLRDYF_Msk /*!< PLL Ready Interrupt flag */
  875. #define RCC_CIR_CSSF_Pos (7U)
  876. #define RCC_CIR_CSSF_Msk (0x1UL << RCC_CIR_CSSF_Pos) /*!< 0x00000080 */
  877. #define RCC_CIR_CSSF RCC_CIR_CSSF_Msk /*!< Clock Security System Interrupt flag */
  878. #define RCC_CIR_LSIRDYIE_Pos (8U)
  879. #define RCC_CIR_LSIRDYIE_Msk (0x1UL << RCC_CIR_LSIRDYIE_Pos) /*!< 0x00000100 */
  880. #define RCC_CIR_LSIRDYIE RCC_CIR_LSIRDYIE_Msk /*!< LSI Ready Interrupt Enable */
  881. #define RCC_CIR_LSERDYIE_Pos (9U)
  882. #define RCC_CIR_LSERDYIE_Msk (0x1UL << RCC_CIR_LSERDYIE_Pos) /*!< 0x00000200 */
  883. #define RCC_CIR_LSERDYIE RCC_CIR_LSERDYIE_Msk /*!< LSE Ready Interrupt Enable */
  884. #define RCC_CIR_HSIRDYIE_Pos (10U)
  885. #define RCC_CIR_HSIRDYIE_Msk (0x1UL << RCC_CIR_HSIRDYIE_Pos) /*!< 0x00000400 */
  886. #define RCC_CIR_HSIRDYIE RCC_CIR_HSIRDYIE_Msk /*!< HSI Ready Interrupt Enable */
  887. #define RCC_CIR_HSERDYIE_Pos (11U)
  888. #define RCC_CIR_HSERDYIE_Msk (0x1UL << RCC_CIR_HSERDYIE_Pos) /*!< 0x00000800 */
  889. #define RCC_CIR_HSERDYIE RCC_CIR_HSERDYIE_Msk /*!< HSE Ready Interrupt Enable */
  890. #define RCC_CIR_PLLRDYIE_Pos (12U)
  891. #define RCC_CIR_PLLRDYIE_Msk (0x1UL << RCC_CIR_PLLRDYIE_Pos) /*!< 0x00001000 */
  892. #define RCC_CIR_PLLRDYIE RCC_CIR_PLLRDYIE_Msk /*!< PLL Ready Interrupt Enable */
  893. #define RCC_CIR_LSIRDYC_Pos (16U)
  894. #define RCC_CIR_LSIRDYC_Msk (0x1UL << RCC_CIR_LSIRDYC_Pos) /*!< 0x00010000 */
  895. #define RCC_CIR_LSIRDYC RCC_CIR_LSIRDYC_Msk /*!< LSI Ready Interrupt Clear */
  896. #define RCC_CIR_LSERDYC_Pos (17U)
  897. #define RCC_CIR_LSERDYC_Msk (0x1UL << RCC_CIR_LSERDYC_Pos) /*!< 0x00020000 */
  898. #define RCC_CIR_LSERDYC RCC_CIR_LSERDYC_Msk /*!< LSE Ready Interrupt Clear */
  899. #define RCC_CIR_HSIRDYC_Pos (18U)
  900. #define RCC_CIR_HSIRDYC_Msk (0x1UL << RCC_CIR_HSIRDYC_Pos) /*!< 0x00040000 */
  901. #define RCC_CIR_HSIRDYC RCC_CIR_HSIRDYC_Msk /*!< HSI Ready Interrupt Clear */
  902. #define RCC_CIR_HSERDYC_Pos (19U)
  903. #define RCC_CIR_HSERDYC_Msk (0x1UL << RCC_CIR_HSERDYC_Pos) /*!< 0x00080000 */
  904. #define RCC_CIR_HSERDYC RCC_CIR_HSERDYC_Msk /*!< HSE Ready Interrupt Clear */
  905. #define RCC_CIR_PLLRDYC_Pos (20U)
  906. #define RCC_CIR_PLLRDYC_Msk (0x1UL << RCC_CIR_PLLRDYC_Pos) /*!< 0x00100000 */
  907. #define RCC_CIR_PLLRDYC RCC_CIR_PLLRDYC_Msk /*!< PLL Ready Interrupt Clear */
  908. #define RCC_CIR_CSSC_Pos (23U)
  909. #define RCC_CIR_CSSC_Msk (0x1UL << RCC_CIR_CSSC_Pos) /*!< 0x00800000 */
  910. #define RCC_CIR_CSSC RCC_CIR_CSSC_Msk /*!< Clock Security System Interrupt Clear */
  911. /***************** Bit definition for RCC_APB2RSTR register *****************/
  912. #define RCC_APB2RSTR_AFIORST_Pos (0U)
  913. #define RCC_APB2RSTR_AFIORST_Msk (0x1UL << RCC_APB2RSTR_AFIORST_Pos) /*!< 0x00000001 */
  914. #define RCC_APB2RSTR_AFIORST RCC_APB2RSTR_AFIORST_Msk /*!< Alternate Function I/O reset */
  915. #define RCC_APB2RSTR_IOPARST_Pos (2U)
  916. #define RCC_APB2RSTR_IOPARST_Msk (0x1UL << RCC_APB2RSTR_IOPARST_Pos) /*!< 0x00000004 */
  917. #define RCC_APB2RSTR_IOPARST RCC_APB2RSTR_IOPARST_Msk /*!< I/O port A reset */
  918. #define RCC_APB2RSTR_IOPBRST_Pos (3U)
  919. #define RCC_APB2RSTR_IOPBRST_Msk (0x1UL << RCC_APB2RSTR_IOPBRST_Pos) /*!< 0x00000008 */
  920. #define RCC_APB2RSTR_IOPBRST RCC_APB2RSTR_IOPBRST_Msk /*!< I/O port B reset */
  921. #define RCC_APB2RSTR_IOPCRST_Pos (4U)
  922. #define RCC_APB2RSTR_IOPCRST_Msk (0x1UL << RCC_APB2RSTR_IOPCRST_Pos) /*!< 0x00000010 */
  923. #define RCC_APB2RSTR_IOPCRST RCC_APB2RSTR_IOPCRST_Msk /*!< I/O port C reset */
  924. #define RCC_APB2RSTR_IOPDRST_Pos (5U)
  925. #define RCC_APB2RSTR_IOPDRST_Msk (0x1UL << RCC_APB2RSTR_IOPDRST_Pos) /*!< 0x00000020 */
  926. #define RCC_APB2RSTR_IOPDRST RCC_APB2RSTR_IOPDRST_Msk /*!< I/O port D reset */
  927. #define RCC_APB2RSTR_ADC1RST_Pos (9U)
  928. #define RCC_APB2RSTR_ADC1RST_Msk (0x1UL << RCC_APB2RSTR_ADC1RST_Pos) /*!< 0x00000200 */
  929. #define RCC_APB2RSTR_ADC1RST RCC_APB2RSTR_ADC1RST_Msk /*!< ADC 1 interface reset */
  930. #define RCC_APB2RSTR_TIM1RST_Pos (11U)
  931. #define RCC_APB2RSTR_TIM1RST_Msk (0x1UL << RCC_APB2RSTR_TIM1RST_Pos) /*!< 0x00000800 */
  932. #define RCC_APB2RSTR_TIM1RST RCC_APB2RSTR_TIM1RST_Msk /*!< TIM1 Timer reset */
  933. #define RCC_APB2RSTR_SPI1RST_Pos (12U)
  934. #define RCC_APB2RSTR_SPI1RST_Msk (0x1UL << RCC_APB2RSTR_SPI1RST_Pos) /*!< 0x00001000 */
  935. #define RCC_APB2RSTR_SPI1RST RCC_APB2RSTR_SPI1RST_Msk /*!< SPI 1 reset */
  936. #define RCC_APB2RSTR_USART1RST_Pos (14U)
  937. #define RCC_APB2RSTR_USART1RST_Msk (0x1UL << RCC_APB2RSTR_USART1RST_Pos) /*!< 0x00004000 */
  938. #define RCC_APB2RSTR_USART1RST RCC_APB2RSTR_USART1RST_Msk /*!< USART1 reset */
  939. #define RCC_APB2RSTR_IOPERST_Pos (6U)
  940. #define RCC_APB2RSTR_IOPERST_Msk (0x1UL << RCC_APB2RSTR_IOPERST_Pos) /*!< 0x00000040 */
  941. #define RCC_APB2RSTR_IOPERST RCC_APB2RSTR_IOPERST_Msk /*!< I/O port E reset */
  942. /***************** Bit definition for RCC_APB1RSTR register *****************/
  943. #define RCC_APB1RSTR_TIM2RST_Pos (0U)
  944. #define RCC_APB1RSTR_TIM2RST_Msk (0x1UL << RCC_APB1RSTR_TIM2RST_Pos) /*!< 0x00000001 */
  945. #define RCC_APB1RSTR_TIM2RST RCC_APB1RSTR_TIM2RST_Msk /*!< Timer 2 reset */
  946. #define RCC_APB1RSTR_TIM3RST_Pos (1U)
  947. #define RCC_APB1RSTR_TIM3RST_Msk (0x1UL << RCC_APB1RSTR_TIM3RST_Pos) /*!< 0x00000002 */
  948. #define RCC_APB1RSTR_TIM3RST RCC_APB1RSTR_TIM3RST_Msk /*!< Timer 3 reset */
  949. #define RCC_APB1RSTR_WWDGRST_Pos (11U)
  950. #define RCC_APB1RSTR_WWDGRST_Msk (0x1UL << RCC_APB1RSTR_WWDGRST_Pos) /*!< 0x00000800 */
  951. #define RCC_APB1RSTR_WWDGRST RCC_APB1RSTR_WWDGRST_Msk /*!< Window Watchdog reset */
  952. #define RCC_APB1RSTR_USART2RST_Pos (17U)
  953. #define RCC_APB1RSTR_USART2RST_Msk (0x1UL << RCC_APB1RSTR_USART2RST_Pos) /*!< 0x00020000 */
  954. #define RCC_APB1RSTR_USART2RST RCC_APB1RSTR_USART2RST_Msk /*!< USART 2 reset */
  955. #define RCC_APB1RSTR_I2C1RST_Pos (21U)
  956. #define RCC_APB1RSTR_I2C1RST_Msk (0x1UL << RCC_APB1RSTR_I2C1RST_Pos) /*!< 0x00200000 */
  957. #define RCC_APB1RSTR_I2C1RST RCC_APB1RSTR_I2C1RST_Msk /*!< I2C 1 reset */
  958. #define RCC_APB1RSTR_BKPRST_Pos (27U)
  959. #define RCC_APB1RSTR_BKPRST_Msk (0x1UL << RCC_APB1RSTR_BKPRST_Pos) /*!< 0x08000000 */
  960. #define RCC_APB1RSTR_BKPRST RCC_APB1RSTR_BKPRST_Msk /*!< Backup interface reset */
  961. #define RCC_APB1RSTR_PWRRST_Pos (28U)
  962. #define RCC_APB1RSTR_PWRRST_Msk (0x1UL << RCC_APB1RSTR_PWRRST_Pos) /*!< 0x10000000 */
  963. #define RCC_APB1RSTR_PWRRST RCC_APB1RSTR_PWRRST_Msk /*!< Power interface reset */
  964. #define RCC_APB1RSTR_TIM4RST_Pos (2U)
  965. #define RCC_APB1RSTR_TIM4RST_Msk (0x1UL << RCC_APB1RSTR_TIM4RST_Pos) /*!< 0x00000004 */
  966. #define RCC_APB1RSTR_TIM4RST RCC_APB1RSTR_TIM4RST_Msk /*!< Timer 4 reset */
  967. #define RCC_APB1RSTR_SPI2RST_Pos (14U)
  968. #define RCC_APB1RSTR_SPI2RST_Msk (0x1UL << RCC_APB1RSTR_SPI2RST_Pos) /*!< 0x00004000 */
  969. #define RCC_APB1RSTR_SPI2RST RCC_APB1RSTR_SPI2RST_Msk /*!< SPI 2 reset */
  970. #define RCC_APB1RSTR_USART3RST_Pos (18U)
  971. #define RCC_APB1RSTR_USART3RST_Msk (0x1UL << RCC_APB1RSTR_USART3RST_Pos) /*!< 0x00040000 */
  972. #define RCC_APB1RSTR_USART3RST RCC_APB1RSTR_USART3RST_Msk /*!< USART 3 reset */
  973. #define RCC_APB1RSTR_I2C2RST_Pos (22U)
  974. #define RCC_APB1RSTR_I2C2RST_Msk (0x1UL << RCC_APB1RSTR_I2C2RST_Pos) /*!< 0x00400000 */
  975. #define RCC_APB1RSTR_I2C2RST RCC_APB1RSTR_I2C2RST_Msk /*!< I2C 2 reset */
  976. /****************** Bit definition for RCC_AHBENR register ******************/
  977. #define RCC_AHBENR_DMA1EN_Pos (0U)
  978. #define RCC_AHBENR_DMA1EN_Msk (0x1UL << RCC_AHBENR_DMA1EN_Pos) /*!< 0x00000001 */
  979. #define RCC_AHBENR_DMA1EN RCC_AHBENR_DMA1EN_Msk /*!< DMA1 clock enable */
  980. #define RCC_AHBENR_SRAMEN_Pos (2U)
  981. #define RCC_AHBENR_SRAMEN_Msk (0x1UL << RCC_AHBENR_SRAMEN_Pos) /*!< 0x00000004 */
  982. #define RCC_AHBENR_SRAMEN RCC_AHBENR_SRAMEN_Msk /*!< SRAM interface clock enable */
  983. #define RCC_AHBENR_FLITFEN_Pos (4U)
  984. #define RCC_AHBENR_FLITFEN_Msk (0x1UL << RCC_AHBENR_FLITFEN_Pos) /*!< 0x00000010 */
  985. #define RCC_AHBENR_FLITFEN RCC_AHBENR_FLITFEN_Msk /*!< FLITF clock enable */
  986. #define RCC_AHBENR_CRCEN_Pos (6U)
  987. #define RCC_AHBENR_CRCEN_Msk (0x1UL << RCC_AHBENR_CRCEN_Pos) /*!< 0x00000040 */
  988. #define RCC_AHBENR_CRCEN RCC_AHBENR_CRCEN_Msk /*!< CRC clock enable */
  989. /****************** Bit definition for RCC_APB2ENR register *****************/
  990. #define RCC_APB2ENR_AFIOEN_Pos (0U)
  991. #define RCC_APB2ENR_AFIOEN_Msk (0x1UL << RCC_APB2ENR_AFIOEN_Pos) /*!< 0x00000001 */
  992. #define RCC_APB2ENR_AFIOEN RCC_APB2ENR_AFIOEN_Msk /*!< Alternate Function I/O clock enable */
  993. #define RCC_APB2ENR_IOPAEN_Pos (2U)
  994. #define RCC_APB2ENR_IOPAEN_Msk (0x1UL << RCC_APB2ENR_IOPAEN_Pos) /*!< 0x00000004 */
  995. #define RCC_APB2ENR_IOPAEN RCC_APB2ENR_IOPAEN_Msk /*!< I/O port A clock enable */
  996. #define RCC_APB2ENR_IOPBEN_Pos (3U)
  997. #define RCC_APB2ENR_IOPBEN_Msk (0x1UL << RCC_APB2ENR_IOPBEN_Pos) /*!< 0x00000008 */
  998. #define RCC_APB2ENR_IOPBEN RCC_APB2ENR_IOPBEN_Msk /*!< I/O port B clock enable */
  999. #define RCC_APB2ENR_IOPCEN_Pos (4U)
  1000. #define RCC_APB2ENR_IOPCEN_Msk (0x1UL << RCC_APB2ENR_IOPCEN_Pos) /*!< 0x00000010 */
  1001. #define RCC_APB2ENR_IOPCEN RCC_APB2ENR_IOPCEN_Msk /*!< I/O port C clock enable */
  1002. #define RCC_APB2ENR_IOPDEN_Pos (5U)
  1003. #define RCC_APB2ENR_IOPDEN_Msk (0x1UL << RCC_APB2ENR_IOPDEN_Pos) /*!< 0x00000020 */
  1004. #define RCC_APB2ENR_IOPDEN RCC_APB2ENR_IOPDEN_Msk /*!< I/O port D clock enable */
  1005. #define RCC_APB2ENR_ADC1EN_Pos (9U)
  1006. #define RCC_APB2ENR_ADC1EN_Msk (0x1UL << RCC_APB2ENR_ADC1EN_Pos) /*!< 0x00000200 */
  1007. #define RCC_APB2ENR_ADC1EN RCC_APB2ENR_ADC1EN_Msk /*!< ADC 1 interface clock enable */
  1008. #define RCC_APB2ENR_TIM1EN_Pos (11U)
  1009. #define RCC_APB2ENR_TIM1EN_Msk (0x1UL << RCC_APB2ENR_TIM1EN_Pos) /*!< 0x00000800 */
  1010. #define RCC_APB2ENR_TIM1EN RCC_APB2ENR_TIM1EN_Msk /*!< TIM1 Timer clock enable */
  1011. #define RCC_APB2ENR_SPI1EN_Pos (12U)
  1012. #define RCC_APB2ENR_SPI1EN_Msk (0x1UL << RCC_APB2ENR_SPI1EN_Pos) /*!< 0x00001000 */
  1013. #define RCC_APB2ENR_SPI1EN RCC_APB2ENR_SPI1EN_Msk /*!< SPI 1 clock enable */
  1014. #define RCC_APB2ENR_USART1EN_Pos (14U)
  1015. #define RCC_APB2ENR_USART1EN_Msk (0x1UL << RCC_APB2ENR_USART1EN_Pos) /*!< 0x00004000 */
  1016. #define RCC_APB2ENR_USART1EN RCC_APB2ENR_USART1EN_Msk /*!< USART1 clock enable */
  1017. #define RCC_APB2ENR_IOPEEN_Pos (6U)
  1018. #define RCC_APB2ENR_IOPEEN_Msk (0x1UL << RCC_APB2ENR_IOPEEN_Pos) /*!< 0x00000040 */
  1019. #define RCC_APB2ENR_IOPEEN RCC_APB2ENR_IOPEEN_Msk /*!< I/O port E clock enable */
  1020. /***************** Bit definition for RCC_APB1ENR register ******************/
  1021. #define RCC_APB1ENR_TIM2EN_Pos (0U)
  1022. #define RCC_APB1ENR_TIM2EN_Msk (0x1UL << RCC_APB1ENR_TIM2EN_Pos) /*!< 0x00000001 */
  1023. #define RCC_APB1ENR_TIM2EN RCC_APB1ENR_TIM2EN_Msk /*!< Timer 2 clock enabled*/
  1024. #define RCC_APB1ENR_TIM3EN_Pos (1U)
  1025. #define RCC_APB1ENR_TIM3EN_Msk (0x1UL << RCC_APB1ENR_TIM3EN_Pos) /*!< 0x00000002 */
  1026. #define RCC_APB1ENR_TIM3EN RCC_APB1ENR_TIM3EN_Msk /*!< Timer 3 clock enable */
  1027. #define RCC_APB1ENR_WWDGEN_Pos (11U)
  1028. #define RCC_APB1ENR_WWDGEN_Msk (0x1UL << RCC_APB1ENR_WWDGEN_Pos) /*!< 0x00000800 */
  1029. #define RCC_APB1ENR_WWDGEN RCC_APB1ENR_WWDGEN_Msk /*!< Window Watchdog clock enable */
  1030. #define RCC_APB1ENR_USART2EN_Pos (17U)
  1031. #define RCC_APB1ENR_USART2EN_Msk (0x1UL << RCC_APB1ENR_USART2EN_Pos) /*!< 0x00020000 */
  1032. #define RCC_APB1ENR_USART2EN RCC_APB1ENR_USART2EN_Msk /*!< USART 2 clock enable */
  1033. #define RCC_APB1ENR_I2C1EN_Pos (21U)
  1034. #define RCC_APB1ENR_I2C1EN_Msk (0x1UL << RCC_APB1ENR_I2C1EN_Pos) /*!< 0x00200000 */
  1035. #define RCC_APB1ENR_I2C1EN RCC_APB1ENR_I2C1EN_Msk /*!< I2C 1 clock enable */
  1036. #define RCC_APB1ENR_BKPEN_Pos (27U)
  1037. #define RCC_APB1ENR_BKPEN_Msk (0x1UL << RCC_APB1ENR_BKPEN_Pos) /*!< 0x08000000 */
  1038. #define RCC_APB1ENR_BKPEN RCC_APB1ENR_BKPEN_Msk /*!< Backup interface clock enable */
  1039. #define RCC_APB1ENR_PWREN_Pos (28U)
  1040. #define RCC_APB1ENR_PWREN_Msk (0x1UL << RCC_APB1ENR_PWREN_Pos) /*!< 0x10000000 */
  1041. #define RCC_APB1ENR_PWREN RCC_APB1ENR_PWREN_Msk /*!< Power interface clock enable */
  1042. #define RCC_APB1ENR_TIM4EN_Pos (2U)
  1043. #define RCC_APB1ENR_TIM4EN_Msk (0x1UL << RCC_APB1ENR_TIM4EN_Pos) /*!< 0x00000004 */
  1044. #define RCC_APB1ENR_TIM4EN RCC_APB1ENR_TIM4EN_Msk /*!< Timer 4 clock enable */
  1045. #define RCC_APB1ENR_SPI2EN_Pos (14U)
  1046. #define RCC_APB1ENR_SPI2EN_Msk (0x1UL << RCC_APB1ENR_SPI2EN_Pos) /*!< 0x00004000 */
  1047. #define RCC_APB1ENR_SPI2EN RCC_APB1ENR_SPI2EN_Msk /*!< SPI 2 clock enable */
  1048. #define RCC_APB1ENR_USART3EN_Pos (18U)
  1049. #define RCC_APB1ENR_USART3EN_Msk (0x1UL << RCC_APB1ENR_USART3EN_Pos) /*!< 0x00040000 */
  1050. #define RCC_APB1ENR_USART3EN RCC_APB1ENR_USART3EN_Msk /*!< USART 3 clock enable */
  1051. #define RCC_APB1ENR_I2C2EN_Pos (22U)
  1052. #define RCC_APB1ENR_I2C2EN_Msk (0x1UL << RCC_APB1ENR_I2C2EN_Pos) /*!< 0x00400000 */
  1053. #define RCC_APB1ENR_I2C2EN RCC_APB1ENR_I2C2EN_Msk /*!< I2C 2 clock enable */
  1054. /******************* Bit definition for RCC_BDCR register *******************/
  1055. #define RCC_BDCR_LSEON_Pos (0U)
  1056. #define RCC_BDCR_LSEON_Msk (0x1UL << RCC_BDCR_LSEON_Pos) /*!< 0x00000001 */
  1057. #define RCC_BDCR_LSEON RCC_BDCR_LSEON_Msk /*!< External Low Speed oscillator enable */
  1058. #define RCC_BDCR_LSERDY_Pos (1U)
  1059. #define RCC_BDCR_LSERDY_Msk (0x1UL << RCC_BDCR_LSERDY_Pos) /*!< 0x00000002 */
  1060. #define RCC_BDCR_LSERDY RCC_BDCR_LSERDY_Msk /*!< External Low Speed oscillator Ready */
  1061. #define RCC_BDCR_LSEBYP_Pos (2U)
  1062. #define RCC_BDCR_LSEBYP_Msk (0x1UL << RCC_BDCR_LSEBYP_Pos) /*!< 0x00000004 */
  1063. #define RCC_BDCR_LSEBYP RCC_BDCR_LSEBYP_Msk /*!< External Low Speed oscillator Bypass */
  1064. #define RCC_BDCR_RTCSEL_Pos (8U)
  1065. #define RCC_BDCR_RTCSEL_Msk (0x3UL << RCC_BDCR_RTCSEL_Pos) /*!< 0x00000300 */
  1066. #define RCC_BDCR_RTCSEL RCC_BDCR_RTCSEL_Msk /*!< RTCSEL[1:0] bits (RTC clock source selection) */
  1067. #define RCC_BDCR_RTCSEL_0 (0x1UL << RCC_BDCR_RTCSEL_Pos) /*!< 0x00000100 */
  1068. #define RCC_BDCR_RTCSEL_1 (0x2UL << RCC_BDCR_RTCSEL_Pos) /*!< 0x00000200 */
  1069. /*!< RTC configuration */
  1070. #define RCC_BDCR_RTCSEL_NOCLOCK 0x00000000U /*!< No clock */
  1071. #define RCC_BDCR_RTCSEL_LSE 0x00000100U /*!< LSE oscillator clock used as RTC clock */
  1072. #define RCC_BDCR_RTCSEL_LSI 0x00000200U /*!< LSI oscillator clock used as RTC clock */
  1073. #define RCC_BDCR_RTCSEL_HSE 0x00000300U /*!< HSE oscillator clock divided by 128 used as RTC clock */
  1074. #define RCC_BDCR_RTCEN_Pos (15U)
  1075. #define RCC_BDCR_RTCEN_Msk (0x1UL << RCC_BDCR_RTCEN_Pos) /*!< 0x00008000 */
  1076. #define RCC_BDCR_RTCEN RCC_BDCR_RTCEN_Msk /*!< RTC clock enable */
  1077. #define RCC_BDCR_BDRST_Pos (16U)
  1078. #define RCC_BDCR_BDRST_Msk (0x1UL << RCC_BDCR_BDRST_Pos) /*!< 0x00010000 */
  1079. #define RCC_BDCR_BDRST RCC_BDCR_BDRST_Msk /*!< Backup domain software reset */
  1080. /******************* Bit definition for RCC_CSR register ********************/
  1081. #define RCC_CSR_LSION_Pos (0U)
  1082. #define RCC_CSR_LSION_Msk (0x1UL << RCC_CSR_LSION_Pos) /*!< 0x00000001 */
  1083. #define RCC_CSR_LSION RCC_CSR_LSION_Msk /*!< Internal Low Speed oscillator enable */
  1084. #define RCC_CSR_LSIRDY_Pos (1U)
  1085. #define RCC_CSR_LSIRDY_Msk (0x1UL << RCC_CSR_LSIRDY_Pos) /*!< 0x00000002 */
  1086. #define RCC_CSR_LSIRDY RCC_CSR_LSIRDY_Msk /*!< Internal Low Speed oscillator Ready */
  1087. #define RCC_CSR_RMVF_Pos (24U)
  1088. #define RCC_CSR_RMVF_Msk (0x1UL << RCC_CSR_RMVF_Pos) /*!< 0x01000000 */
  1089. #define RCC_CSR_RMVF RCC_CSR_RMVF_Msk /*!< Remove reset flag */
  1090. #define RCC_CSR_PINRSTF_Pos (26U)
  1091. #define RCC_CSR_PINRSTF_Msk (0x1UL << RCC_CSR_PINRSTF_Pos) /*!< 0x04000000 */
  1092. #define RCC_CSR_PINRSTF RCC_CSR_PINRSTF_Msk /*!< PIN reset flag */
  1093. #define RCC_CSR_PORRSTF_Pos (27U)
  1094. #define RCC_CSR_PORRSTF_Msk (0x1UL << RCC_CSR_PORRSTF_Pos) /*!< 0x08000000 */
  1095. #define RCC_CSR_PORRSTF RCC_CSR_PORRSTF_Msk /*!< POR/PDR reset flag */
  1096. #define RCC_CSR_SFTRSTF_Pos (28U)
  1097. #define RCC_CSR_SFTRSTF_Msk (0x1UL << RCC_CSR_SFTRSTF_Pos) /*!< 0x10000000 */
  1098. #define RCC_CSR_SFTRSTF RCC_CSR_SFTRSTF_Msk /*!< Software Reset flag */
  1099. #define RCC_CSR_IWDGRSTF_Pos (29U)
  1100. #define RCC_CSR_IWDGRSTF_Msk (0x1UL << RCC_CSR_IWDGRSTF_Pos) /*!< 0x20000000 */
  1101. #define RCC_CSR_IWDGRSTF RCC_CSR_IWDGRSTF_Msk /*!< Independent Watchdog reset flag */
  1102. #define RCC_CSR_WWDGRSTF_Pos (30U)
  1103. #define RCC_CSR_WWDGRSTF_Msk (0x1UL << RCC_CSR_WWDGRSTF_Pos) /*!< 0x40000000 */
  1104. #define RCC_CSR_WWDGRSTF RCC_CSR_WWDGRSTF_Msk /*!< Window watchdog reset flag */
  1105. #define RCC_CSR_LPWRRSTF_Pos (31U)
  1106. #define RCC_CSR_LPWRRSTF_Msk (0x1UL << RCC_CSR_LPWRRSTF_Pos) /*!< 0x80000000 */
  1107. #define RCC_CSR_LPWRRSTF RCC_CSR_LPWRRSTF_Msk /*!< Low-Power reset flag */
  1108. /******************************************************************************/
  1109. /* */
  1110. /* General Purpose and Alternate Function I/O */
  1111. /* */
  1112. /******************************************************************************/
  1113. /******************* Bit definition for GPIO_CRL register *******************/
  1114. #define GPIO_CRL_MODE_Pos (0U)
  1115. #define GPIO_CRL_MODE_Msk (0x33333333UL << GPIO_CRL_MODE_Pos) /*!< 0x33333333 */
  1116. #define GPIO_CRL_MODE GPIO_CRL_MODE_Msk /*!< Port x mode bits */
  1117. #define GPIO_CRL_MODE0_Pos (0U)
  1118. #define GPIO_CRL_MODE0_Msk (0x3UL << GPIO_CRL_MODE0_Pos) /*!< 0x00000003 */
  1119. #define GPIO_CRL_MODE0 GPIO_CRL_MODE0_Msk /*!< MODE0[1:0] bits (Port x mode bits, pin 0) */
  1120. #define GPIO_CRL_MODE0_0 (0x1UL << GPIO_CRL_MODE0_Pos) /*!< 0x00000001 */
  1121. #define GPIO_CRL_MODE0_1 (0x2UL << GPIO_CRL_MODE0_Pos) /*!< 0x00000002 */
  1122. #define GPIO_CRL_MODE1_Pos (4U)
  1123. #define GPIO_CRL_MODE1_Msk (0x3UL << GPIO_CRL_MODE1_Pos) /*!< 0x00000030 */
  1124. #define GPIO_CRL_MODE1 GPIO_CRL_MODE1_Msk /*!< MODE1[1:0] bits (Port x mode bits, pin 1) */
  1125. #define GPIO_CRL_MODE1_0 (0x1UL << GPIO_CRL_MODE1_Pos) /*!< 0x00000010 */
  1126. #define GPIO_CRL_MODE1_1 (0x2UL << GPIO_CRL_MODE1_Pos) /*!< 0x00000020 */
  1127. #define GPIO_CRL_MODE2_Pos (8U)
  1128. #define GPIO_CRL_MODE2_Msk (0x3UL << GPIO_CRL_MODE2_Pos) /*!< 0x00000300 */
  1129. #define GPIO_CRL_MODE2 GPIO_CRL_MODE2_Msk /*!< MODE2[1:0] bits (Port x mode bits, pin 2) */
  1130. #define GPIO_CRL_MODE2_0 (0x1UL << GPIO_CRL_MODE2_Pos) /*!< 0x00000100 */
  1131. #define GPIO_CRL_MODE2_1 (0x2UL << GPIO_CRL_MODE2_Pos) /*!< 0x00000200 */
  1132. #define GPIO_CRL_MODE3_Pos (12U)
  1133. #define GPIO_CRL_MODE3_Msk (0x3UL << GPIO_CRL_MODE3_Pos) /*!< 0x00003000 */
  1134. #define GPIO_CRL_MODE3 GPIO_CRL_MODE3_Msk /*!< MODE3[1:0] bits (Port x mode bits, pin 3) */
  1135. #define GPIO_CRL_MODE3_0 (0x1UL << GPIO_CRL_MODE3_Pos) /*!< 0x00001000 */
  1136. #define GPIO_CRL_MODE3_1 (0x2UL << GPIO_CRL_MODE3_Pos) /*!< 0x00002000 */
  1137. #define GPIO_CRL_MODE4_Pos (16U)
  1138. #define GPIO_CRL_MODE4_Msk (0x3UL << GPIO_CRL_MODE4_Pos) /*!< 0x00030000 */
  1139. #define GPIO_CRL_MODE4 GPIO_CRL_MODE4_Msk /*!< MODE4[1:0] bits (Port x mode bits, pin 4) */
  1140. #define GPIO_CRL_MODE4_0 (0x1UL << GPIO_CRL_MODE4_Pos) /*!< 0x00010000 */
  1141. #define GPIO_CRL_MODE4_1 (0x2UL << GPIO_CRL_MODE4_Pos) /*!< 0x00020000 */
  1142. #define GPIO_CRL_MODE5_Pos (20U)
  1143. #define GPIO_CRL_MODE5_Msk (0x3UL << GPIO_CRL_MODE5_Pos) /*!< 0x00300000 */
  1144. #define GPIO_CRL_MODE5 GPIO_CRL_MODE5_Msk /*!< MODE5[1:0] bits (Port x mode bits, pin 5) */
  1145. #define GPIO_CRL_MODE5_0 (0x1UL << GPIO_CRL_MODE5_Pos) /*!< 0x00100000 */
  1146. #define GPIO_CRL_MODE5_1 (0x2UL << GPIO_CRL_MODE5_Pos) /*!< 0x00200000 */
  1147. #define GPIO_CRL_MODE6_Pos (24U)
  1148. #define GPIO_CRL_MODE6_Msk (0x3UL << GPIO_CRL_MODE6_Pos) /*!< 0x03000000 */
  1149. #define GPIO_CRL_MODE6 GPIO_CRL_MODE6_Msk /*!< MODE6[1:0] bits (Port x mode bits, pin 6) */
  1150. #define GPIO_CRL_MODE6_0 (0x1UL << GPIO_CRL_MODE6_Pos) /*!< 0x01000000 */
  1151. #define GPIO_CRL_MODE6_1 (0x2UL << GPIO_CRL_MODE6_Pos) /*!< 0x02000000 */
  1152. #define GPIO_CRL_MODE7_Pos (28U)
  1153. #define GPIO_CRL_MODE7_Msk (0x3UL << GPIO_CRL_MODE7_Pos) /*!< 0x30000000 */
  1154. #define GPIO_CRL_MODE7 GPIO_CRL_MODE7_Msk /*!< MODE7[1:0] bits (Port x mode bits, pin 7) */
  1155. #define GPIO_CRL_MODE7_0 (0x1UL << GPIO_CRL_MODE7_Pos) /*!< 0x10000000 */
  1156. #define GPIO_CRL_MODE7_1 (0x2UL << GPIO_CRL_MODE7_Pos) /*!< 0x20000000 */
  1157. #define GPIO_CRL_CNF_Pos (2U)
  1158. #define GPIO_CRL_CNF_Msk (0x33333333UL << GPIO_CRL_CNF_Pos) /*!< 0xCCCCCCCC */
  1159. #define GPIO_CRL_CNF GPIO_CRL_CNF_Msk /*!< Port x configuration bits */
  1160. #define GPIO_CRL_CNF0_Pos (2U)
  1161. #define GPIO_CRL_CNF0_Msk (0x3UL << GPIO_CRL_CNF0_Pos) /*!< 0x0000000C */
  1162. #define GPIO_CRL_CNF0 GPIO_CRL_CNF0_Msk /*!< CNF0[1:0] bits (Port x configuration bits, pin 0) */
  1163. #define GPIO_CRL_CNF0_0 (0x1UL << GPIO_CRL_CNF0_Pos) /*!< 0x00000004 */
  1164. #define GPIO_CRL_CNF0_1 (0x2UL << GPIO_CRL_CNF0_Pos) /*!< 0x00000008 */
  1165. #define GPIO_CRL_CNF1_Pos (6U)
  1166. #define GPIO_CRL_CNF1_Msk (0x3UL << GPIO_CRL_CNF1_Pos) /*!< 0x000000C0 */
  1167. #define GPIO_CRL_CNF1 GPIO_CRL_CNF1_Msk /*!< CNF1[1:0] bits (Port x configuration bits, pin 1) */
  1168. #define GPIO_CRL_CNF1_0 (0x1UL << GPIO_CRL_CNF1_Pos) /*!< 0x00000040 */
  1169. #define GPIO_CRL_CNF1_1 (0x2UL << GPIO_CRL_CNF1_Pos) /*!< 0x00000080 */
  1170. #define GPIO_CRL_CNF2_Pos (10U)
  1171. #define GPIO_CRL_CNF2_Msk (0x3UL << GPIO_CRL_CNF2_Pos) /*!< 0x00000C00 */
  1172. #define GPIO_CRL_CNF2 GPIO_CRL_CNF2_Msk /*!< CNF2[1:0] bits (Port x configuration bits, pin 2) */
  1173. #define GPIO_CRL_CNF2_0 (0x1UL << GPIO_CRL_CNF2_Pos) /*!< 0x00000400 */
  1174. #define GPIO_CRL_CNF2_1 (0x2UL << GPIO_CRL_CNF2_Pos) /*!< 0x00000800 */
  1175. #define GPIO_CRL_CNF3_Pos (14U)
  1176. #define GPIO_CRL_CNF3_Msk (0x3UL << GPIO_CRL_CNF3_Pos) /*!< 0x0000C000 */
  1177. #define GPIO_CRL_CNF3 GPIO_CRL_CNF3_Msk /*!< CNF3[1:0] bits (Port x configuration bits, pin 3) */
  1178. #define GPIO_CRL_CNF3_0 (0x1UL << GPIO_CRL_CNF3_Pos) /*!< 0x00004000 */
  1179. #define GPIO_CRL_CNF3_1 (0x2UL << GPIO_CRL_CNF3_Pos) /*!< 0x00008000 */
  1180. #define GPIO_CRL_CNF4_Pos (18U)
  1181. #define GPIO_CRL_CNF4_Msk (0x3UL << GPIO_CRL_CNF4_Pos) /*!< 0x000C0000 */
  1182. #define GPIO_CRL_CNF4 GPIO_CRL_CNF4_Msk /*!< CNF4[1:0] bits (Port x configuration bits, pin 4) */
  1183. #define GPIO_CRL_CNF4_0 (0x1UL << GPIO_CRL_CNF4_Pos) /*!< 0x00040000 */
  1184. #define GPIO_CRL_CNF4_1 (0x2UL << GPIO_CRL_CNF4_Pos) /*!< 0x00080000 */
  1185. #define GPIO_CRL_CNF5_Pos (22U)
  1186. #define GPIO_CRL_CNF5_Msk (0x3UL << GPIO_CRL_CNF5_Pos) /*!< 0x00C00000 */
  1187. #define GPIO_CRL_CNF5 GPIO_CRL_CNF5_Msk /*!< CNF5[1:0] bits (Port x configuration bits, pin 5) */
  1188. #define GPIO_CRL_CNF5_0 (0x1UL << GPIO_CRL_CNF5_Pos) /*!< 0x00400000 */
  1189. #define GPIO_CRL_CNF5_1 (0x2UL << GPIO_CRL_CNF5_Pos) /*!< 0x00800000 */
  1190. #define GPIO_CRL_CNF6_Pos (26U)
  1191. #define GPIO_CRL_CNF6_Msk (0x3UL << GPIO_CRL_CNF6_Pos) /*!< 0x0C000000 */
  1192. #define GPIO_CRL_CNF6 GPIO_CRL_CNF6_Msk /*!< CNF6[1:0] bits (Port x configuration bits, pin 6) */
  1193. #define GPIO_CRL_CNF6_0 (0x1UL << GPIO_CRL_CNF6_Pos) /*!< 0x04000000 */
  1194. #define GPIO_CRL_CNF6_1 (0x2UL << GPIO_CRL_CNF6_Pos) /*!< 0x08000000 */
  1195. #define GPIO_CRL_CNF7_Pos (30U)
  1196. #define GPIO_CRL_CNF7_Msk (0x3UL << GPIO_CRL_CNF7_Pos) /*!< 0xC0000000 */
  1197. #define GPIO_CRL_CNF7 GPIO_CRL_CNF7_Msk /*!< CNF7[1:0] bits (Port x configuration bits, pin 7) */
  1198. #define GPIO_CRL_CNF7_0 (0x1UL << GPIO_CRL_CNF7_Pos) /*!< 0x40000000 */
  1199. #define GPIO_CRL_CNF7_1 (0x2UL << GPIO_CRL_CNF7_Pos) /*!< 0x80000000 */
  1200. /******************* Bit definition for GPIO_CRH register *******************/
  1201. #define GPIO_CRH_MODE_Pos (0U)
  1202. #define GPIO_CRH_MODE_Msk (0x33333333UL << GPIO_CRH_MODE_Pos) /*!< 0x33333333 */
  1203. #define GPIO_CRH_MODE GPIO_CRH_MODE_Msk /*!< Port x mode bits */
  1204. #define GPIO_CRH_MODE8_Pos (0U)
  1205. #define GPIO_CRH_MODE8_Msk (0x3UL << GPIO_CRH_MODE8_Pos) /*!< 0x00000003 */
  1206. #define GPIO_CRH_MODE8 GPIO_CRH_MODE8_Msk /*!< MODE8[1:0] bits (Port x mode bits, pin 8) */
  1207. #define GPIO_CRH_MODE8_0 (0x1UL << GPIO_CRH_MODE8_Pos) /*!< 0x00000001 */
  1208. #define GPIO_CRH_MODE8_1 (0x2UL << GPIO_CRH_MODE8_Pos) /*!< 0x00000002 */
  1209. #define GPIO_CRH_MODE9_Pos (4U)
  1210. #define GPIO_CRH_MODE9_Msk (0x3UL << GPIO_CRH_MODE9_Pos) /*!< 0x00000030 */
  1211. #define GPIO_CRH_MODE9 GPIO_CRH_MODE9_Msk /*!< MODE9[1:0] bits (Port x mode bits, pin 9) */
  1212. #define GPIO_CRH_MODE9_0 (0x1UL << GPIO_CRH_MODE9_Pos) /*!< 0x00000010 */
  1213. #define GPIO_CRH_MODE9_1 (0x2UL << GPIO_CRH_MODE9_Pos) /*!< 0x00000020 */
  1214. #define GPIO_CRH_MODE10_Pos (8U)
  1215. #define GPIO_CRH_MODE10_Msk (0x3UL << GPIO_CRH_MODE10_Pos) /*!< 0x00000300 */
  1216. #define GPIO_CRH_MODE10 GPIO_CRH_MODE10_Msk /*!< MODE10[1:0] bits (Port x mode bits, pin 10) */
  1217. #define GPIO_CRH_MODE10_0 (0x1UL << GPIO_CRH_MODE10_Pos) /*!< 0x00000100 */
  1218. #define GPIO_CRH_MODE10_1 (0x2UL << GPIO_CRH_MODE10_Pos) /*!< 0x00000200 */
  1219. #define GPIO_CRH_MODE11_Pos (12U)
  1220. #define GPIO_CRH_MODE11_Msk (0x3UL << GPIO_CRH_MODE11_Pos) /*!< 0x00003000 */
  1221. #define GPIO_CRH_MODE11 GPIO_CRH_MODE11_Msk /*!< MODE11[1:0] bits (Port x mode bits, pin 11) */
  1222. #define GPIO_CRH_MODE11_0 (0x1UL << GPIO_CRH_MODE11_Pos) /*!< 0x00001000 */
  1223. #define GPIO_CRH_MODE11_1 (0x2UL << GPIO_CRH_MODE11_Pos) /*!< 0x00002000 */
  1224. #define GPIO_CRH_MODE12_Pos (16U)
  1225. #define GPIO_CRH_MODE12_Msk (0x3UL << GPIO_CRH_MODE12_Pos) /*!< 0x00030000 */
  1226. #define GPIO_CRH_MODE12 GPIO_CRH_MODE12_Msk /*!< MODE12[1:0] bits (Port x mode bits, pin 12) */
  1227. #define GPIO_CRH_MODE12_0 (0x1UL << GPIO_CRH_MODE12_Pos) /*!< 0x00010000 */
  1228. #define GPIO_CRH_MODE12_1 (0x2UL << GPIO_CRH_MODE12_Pos) /*!< 0x00020000 */
  1229. #define GPIO_CRH_MODE13_Pos (20U)
  1230. #define GPIO_CRH_MODE13_Msk (0x3UL << GPIO_CRH_MODE13_Pos) /*!< 0x00300000 */
  1231. #define GPIO_CRH_MODE13 GPIO_CRH_MODE13_Msk /*!< MODE13[1:0] bits (Port x mode bits, pin 13) */
  1232. #define GPIO_CRH_MODE13_0 (0x1UL << GPIO_CRH_MODE13_Pos) /*!< 0x00100000 */
  1233. #define GPIO_CRH_MODE13_1 (0x2UL << GPIO_CRH_MODE13_Pos) /*!< 0x00200000 */
  1234. #define GPIO_CRH_MODE14_Pos (24U)
  1235. #define GPIO_CRH_MODE14_Msk (0x3UL << GPIO_CRH_MODE14_Pos) /*!< 0x03000000 */
  1236. #define GPIO_CRH_MODE14 GPIO_CRH_MODE14_Msk /*!< MODE14[1:0] bits (Port x mode bits, pin 14) */
  1237. #define GPIO_CRH_MODE14_0 (0x1UL << GPIO_CRH_MODE14_Pos) /*!< 0x01000000 */
  1238. #define GPIO_CRH_MODE14_1 (0x2UL << GPIO_CRH_MODE14_Pos) /*!< 0x02000000 */
  1239. #define GPIO_CRH_MODE15_Pos (28U)
  1240. #define GPIO_CRH_MODE15_Msk (0x3UL << GPIO_CRH_MODE15_Pos) /*!< 0x30000000 */
  1241. #define GPIO_CRH_MODE15 GPIO_CRH_MODE15_Msk /*!< MODE15[1:0] bits (Port x mode bits, pin 15) */
  1242. #define GPIO_CRH_MODE15_0 (0x1UL << GPIO_CRH_MODE15_Pos) /*!< 0x10000000 */
  1243. #define GPIO_CRH_MODE15_1 (0x2UL << GPIO_CRH_MODE15_Pos) /*!< 0x20000000 */
  1244. #define GPIO_CRH_CNF_Pos (2U)
  1245. #define GPIO_CRH_CNF_Msk (0x33333333UL << GPIO_CRH_CNF_Pos) /*!< 0xCCCCCCCC */
  1246. #define GPIO_CRH_CNF GPIO_CRH_CNF_Msk /*!< Port x configuration bits */
  1247. #define GPIO_CRH_CNF8_Pos (2U)
  1248. #define GPIO_CRH_CNF8_Msk (0x3UL << GPIO_CRH_CNF8_Pos) /*!< 0x0000000C */
  1249. #define GPIO_CRH_CNF8 GPIO_CRH_CNF8_Msk /*!< CNF8[1:0] bits (Port x configuration bits, pin 8) */
  1250. #define GPIO_CRH_CNF8_0 (0x1UL << GPIO_CRH_CNF8_Pos) /*!< 0x00000004 */
  1251. #define GPIO_CRH_CNF8_1 (0x2UL << GPIO_CRH_CNF8_Pos) /*!< 0x00000008 */
  1252. #define GPIO_CRH_CNF9_Pos (6U)
  1253. #define GPIO_CRH_CNF9_Msk (0x3UL << GPIO_CRH_CNF9_Pos) /*!< 0x000000C0 */
  1254. #define GPIO_CRH_CNF9 GPIO_CRH_CNF9_Msk /*!< CNF9[1:0] bits (Port x configuration bits, pin 9) */
  1255. #define GPIO_CRH_CNF9_0 (0x1UL << GPIO_CRH_CNF9_Pos) /*!< 0x00000040 */
  1256. #define GPIO_CRH_CNF9_1 (0x2UL << GPIO_CRH_CNF9_Pos) /*!< 0x00000080 */
  1257. #define GPIO_CRH_CNF10_Pos (10U)
  1258. #define GPIO_CRH_CNF10_Msk (0x3UL << GPIO_CRH_CNF10_Pos) /*!< 0x00000C00 */
  1259. #define GPIO_CRH_CNF10 GPIO_CRH_CNF10_Msk /*!< CNF10[1:0] bits (Port x configuration bits, pin 10) */
  1260. #define GPIO_CRH_CNF10_0 (0x1UL << GPIO_CRH_CNF10_Pos) /*!< 0x00000400 */
  1261. #define GPIO_CRH_CNF10_1 (0x2UL << GPIO_CRH_CNF10_Pos) /*!< 0x00000800 */
  1262. #define GPIO_CRH_CNF11_Pos (14U)
  1263. #define GPIO_CRH_CNF11_Msk (0x3UL << GPIO_CRH_CNF11_Pos) /*!< 0x0000C000 */
  1264. #define GPIO_CRH_CNF11 GPIO_CRH_CNF11_Msk /*!< CNF11[1:0] bits (Port x configuration bits, pin 11) */
  1265. #define GPIO_CRH_CNF11_0 (0x1UL << GPIO_CRH_CNF11_Pos) /*!< 0x00004000 */
  1266. #define GPIO_CRH_CNF11_1 (0x2UL << GPIO_CRH_CNF11_Pos) /*!< 0x00008000 */
  1267. #define GPIO_CRH_CNF12_Pos (18U)
  1268. #define GPIO_CRH_CNF12_Msk (0x3UL << GPIO_CRH_CNF12_Pos) /*!< 0x000C0000 */
  1269. #define GPIO_CRH_CNF12 GPIO_CRH_CNF12_Msk /*!< CNF12[1:0] bits (Port x configuration bits, pin 12) */
  1270. #define GPIO_CRH_CNF12_0 (0x1UL << GPIO_CRH_CNF12_Pos) /*!< 0x00040000 */
  1271. #define GPIO_CRH_CNF12_1 (0x2UL << GPIO_CRH_CNF12_Pos) /*!< 0x00080000 */
  1272. #define GPIO_CRH_CNF13_Pos (22U)
  1273. #define GPIO_CRH_CNF13_Msk (0x3UL << GPIO_CRH_CNF13_Pos) /*!< 0x00C00000 */
  1274. #define GPIO_CRH_CNF13 GPIO_CRH_CNF13_Msk /*!< CNF13[1:0] bits (Port x configuration bits, pin 13) */
  1275. #define GPIO_CRH_CNF13_0 (0x1UL << GPIO_CRH_CNF13_Pos) /*!< 0x00400000 */
  1276. #define GPIO_CRH_CNF13_1 (0x2UL << GPIO_CRH_CNF13_Pos) /*!< 0x00800000 */
  1277. #define GPIO_CRH_CNF14_Pos (26U)
  1278. #define GPIO_CRH_CNF14_Msk (0x3UL << GPIO_CRH_CNF14_Pos) /*!< 0x0C000000 */
  1279. #define GPIO_CRH_CNF14 GPIO_CRH_CNF14_Msk /*!< CNF14[1:0] bits (Port x configuration bits, pin 14) */
  1280. #define GPIO_CRH_CNF14_0 (0x1UL << GPIO_CRH_CNF14_Pos) /*!< 0x04000000 */
  1281. #define GPIO_CRH_CNF14_1 (0x2UL << GPIO_CRH_CNF14_Pos) /*!< 0x08000000 */
  1282. #define GPIO_CRH_CNF15_Pos (30U)
  1283. #define GPIO_CRH_CNF15_Msk (0x3UL << GPIO_CRH_CNF15_Pos) /*!< 0xC0000000 */
  1284. #define GPIO_CRH_CNF15 GPIO_CRH_CNF15_Msk /*!< CNF15[1:0] bits (Port x configuration bits, pin 15) */
  1285. #define GPIO_CRH_CNF15_0 (0x1UL << GPIO_CRH_CNF15_Pos) /*!< 0x40000000 */
  1286. #define GPIO_CRH_CNF15_1 (0x2UL << GPIO_CRH_CNF15_Pos) /*!< 0x80000000 */
  1287. /*!<****************** Bit definition for GPIO_IDR register *******************/
  1288. #define GPIO_IDR_IDR0_Pos (0U)
  1289. #define GPIO_IDR_IDR0_Msk (0x1UL << GPIO_IDR_IDR0_Pos) /*!< 0x00000001 */
  1290. #define GPIO_IDR_IDR0 GPIO_IDR_IDR0_Msk /*!< Port input data, bit 0 */
  1291. #define GPIO_IDR_IDR1_Pos (1U)
  1292. #define GPIO_IDR_IDR1_Msk (0x1UL << GPIO_IDR_IDR1_Pos) /*!< 0x00000002 */
  1293. #define GPIO_IDR_IDR1 GPIO_IDR_IDR1_Msk /*!< Port input data, bit 1 */
  1294. #define GPIO_IDR_IDR2_Pos (2U)
  1295. #define GPIO_IDR_IDR2_Msk (0x1UL << GPIO_IDR_IDR2_Pos) /*!< 0x00000004 */
  1296. #define GPIO_IDR_IDR2 GPIO_IDR_IDR2_Msk /*!< Port input data, bit 2 */
  1297. #define GPIO_IDR_IDR3_Pos (3U)
  1298. #define GPIO_IDR_IDR3_Msk (0x1UL << GPIO_IDR_IDR3_Pos) /*!< 0x00000008 */
  1299. #define GPIO_IDR_IDR3 GPIO_IDR_IDR3_Msk /*!< Port input data, bit 3 */
  1300. #define GPIO_IDR_IDR4_Pos (4U)
  1301. #define GPIO_IDR_IDR4_Msk (0x1UL << GPIO_IDR_IDR4_Pos) /*!< 0x00000010 */
  1302. #define GPIO_IDR_IDR4 GPIO_IDR_IDR4_Msk /*!< Port input data, bit 4 */
  1303. #define GPIO_IDR_IDR5_Pos (5U)
  1304. #define GPIO_IDR_IDR5_Msk (0x1UL << GPIO_IDR_IDR5_Pos) /*!< 0x00000020 */
  1305. #define GPIO_IDR_IDR5 GPIO_IDR_IDR5_Msk /*!< Port input data, bit 5 */
  1306. #define GPIO_IDR_IDR6_Pos (6U)
  1307. #define GPIO_IDR_IDR6_Msk (0x1UL << GPIO_IDR_IDR6_Pos) /*!< 0x00000040 */
  1308. #define GPIO_IDR_IDR6 GPIO_IDR_IDR6_Msk /*!< Port input data, bit 6 */
  1309. #define GPIO_IDR_IDR7_Pos (7U)
  1310. #define GPIO_IDR_IDR7_Msk (0x1UL << GPIO_IDR_IDR7_Pos) /*!< 0x00000080 */
  1311. #define GPIO_IDR_IDR7 GPIO_IDR_IDR7_Msk /*!< Port input data, bit 7 */
  1312. #define GPIO_IDR_IDR8_Pos (8U)
  1313. #define GPIO_IDR_IDR8_Msk (0x1UL << GPIO_IDR_IDR8_Pos) /*!< 0x00000100 */
  1314. #define GPIO_IDR_IDR8 GPIO_IDR_IDR8_Msk /*!< Port input data, bit 8 */
  1315. #define GPIO_IDR_IDR9_Pos (9U)
  1316. #define GPIO_IDR_IDR9_Msk (0x1UL << GPIO_IDR_IDR9_Pos) /*!< 0x00000200 */
  1317. #define GPIO_IDR_IDR9 GPIO_IDR_IDR9_Msk /*!< Port input data, bit 9 */
  1318. #define GPIO_IDR_IDR10_Pos (10U)
  1319. #define GPIO_IDR_IDR10_Msk (0x1UL << GPIO_IDR_IDR10_Pos) /*!< 0x00000400 */
  1320. #define GPIO_IDR_IDR10 GPIO_IDR_IDR10_Msk /*!< Port input data, bit 10 */
  1321. #define GPIO_IDR_IDR11_Pos (11U)
  1322. #define GPIO_IDR_IDR11_Msk (0x1UL << GPIO_IDR_IDR11_Pos) /*!< 0x00000800 */
  1323. #define GPIO_IDR_IDR11 GPIO_IDR_IDR11_Msk /*!< Port input data, bit 11 */
  1324. #define GPIO_IDR_IDR12_Pos (12U)
  1325. #define GPIO_IDR_IDR12_Msk (0x1UL << GPIO_IDR_IDR12_Pos) /*!< 0x00001000 */
  1326. #define GPIO_IDR_IDR12 GPIO_IDR_IDR12_Msk /*!< Port input data, bit 12 */
  1327. #define GPIO_IDR_IDR13_Pos (13U)
  1328. #define GPIO_IDR_IDR13_Msk (0x1UL << GPIO_IDR_IDR13_Pos) /*!< 0x00002000 */
  1329. #define GPIO_IDR_IDR13 GPIO_IDR_IDR13_Msk /*!< Port input data, bit 13 */
  1330. #define GPIO_IDR_IDR14_Pos (14U)
  1331. #define GPIO_IDR_IDR14_Msk (0x1UL << GPIO_IDR_IDR14_Pos) /*!< 0x00004000 */
  1332. #define GPIO_IDR_IDR14 GPIO_IDR_IDR14_Msk /*!< Port input data, bit 14 */
  1333. #define GPIO_IDR_IDR15_Pos (15U)
  1334. #define GPIO_IDR_IDR15_Msk (0x1UL << GPIO_IDR_IDR15_Pos) /*!< 0x00008000 */
  1335. #define GPIO_IDR_IDR15 GPIO_IDR_IDR15_Msk /*!< Port input data, bit 15 */
  1336. /******************* Bit definition for GPIO_ODR register *******************/
  1337. #define GPIO_ODR_ODR0_Pos (0U)
  1338. #define GPIO_ODR_ODR0_Msk (0x1UL << GPIO_ODR_ODR0_Pos) /*!< 0x00000001 */
  1339. #define GPIO_ODR_ODR0 GPIO_ODR_ODR0_Msk /*!< Port output data, bit 0 */
  1340. #define GPIO_ODR_ODR1_Pos (1U)
  1341. #define GPIO_ODR_ODR1_Msk (0x1UL << GPIO_ODR_ODR1_Pos) /*!< 0x00000002 */
  1342. #define GPIO_ODR_ODR1 GPIO_ODR_ODR1_Msk /*!< Port output data, bit 1 */
  1343. #define GPIO_ODR_ODR2_Pos (2U)
  1344. #define GPIO_ODR_ODR2_Msk (0x1UL << GPIO_ODR_ODR2_Pos) /*!< 0x00000004 */
  1345. #define GPIO_ODR_ODR2 GPIO_ODR_ODR2_Msk /*!< Port output data, bit 2 */
  1346. #define GPIO_ODR_ODR3_Pos (3U)
  1347. #define GPIO_ODR_ODR3_Msk (0x1UL << GPIO_ODR_ODR3_Pos) /*!< 0x00000008 */
  1348. #define GPIO_ODR_ODR3 GPIO_ODR_ODR3_Msk /*!< Port output data, bit 3 */
  1349. #define GPIO_ODR_ODR4_Pos (4U)
  1350. #define GPIO_ODR_ODR4_Msk (0x1UL << GPIO_ODR_ODR4_Pos) /*!< 0x00000010 */
  1351. #define GPIO_ODR_ODR4 GPIO_ODR_ODR4_Msk /*!< Port output data, bit 4 */
  1352. #define GPIO_ODR_ODR5_Pos (5U)
  1353. #define GPIO_ODR_ODR5_Msk (0x1UL << GPIO_ODR_ODR5_Pos) /*!< 0x00000020 */
  1354. #define GPIO_ODR_ODR5 GPIO_ODR_ODR5_Msk /*!< Port output data, bit 5 */
  1355. #define GPIO_ODR_ODR6_Pos (6U)
  1356. #define GPIO_ODR_ODR6_Msk (0x1UL << GPIO_ODR_ODR6_Pos) /*!< 0x00000040 */
  1357. #define GPIO_ODR_ODR6 GPIO_ODR_ODR6_Msk /*!< Port output data, bit 6 */
  1358. #define GPIO_ODR_ODR7_Pos (7U)
  1359. #define GPIO_ODR_ODR7_Msk (0x1UL << GPIO_ODR_ODR7_Pos) /*!< 0x00000080 */
  1360. #define GPIO_ODR_ODR7 GPIO_ODR_ODR7_Msk /*!< Port output data, bit 7 */
  1361. #define GPIO_ODR_ODR8_Pos (8U)
  1362. #define GPIO_ODR_ODR8_Msk (0x1UL << GPIO_ODR_ODR8_Pos) /*!< 0x00000100 */
  1363. #define GPIO_ODR_ODR8 GPIO_ODR_ODR8_Msk /*!< Port output data, bit 8 */
  1364. #define GPIO_ODR_ODR9_Pos (9U)
  1365. #define GPIO_ODR_ODR9_Msk (0x1UL << GPIO_ODR_ODR9_Pos) /*!< 0x00000200 */
  1366. #define GPIO_ODR_ODR9 GPIO_ODR_ODR9_Msk /*!< Port output data, bit 9 */
  1367. #define GPIO_ODR_ODR10_Pos (10U)
  1368. #define GPIO_ODR_ODR10_Msk (0x1UL << GPIO_ODR_ODR10_Pos) /*!< 0x00000400 */
  1369. #define GPIO_ODR_ODR10 GPIO_ODR_ODR10_Msk /*!< Port output data, bit 10 */
  1370. #define GPIO_ODR_ODR11_Pos (11U)
  1371. #define GPIO_ODR_ODR11_Msk (0x1UL << GPIO_ODR_ODR11_Pos) /*!< 0x00000800 */
  1372. #define GPIO_ODR_ODR11 GPIO_ODR_ODR11_Msk /*!< Port output data, bit 11 */
  1373. #define GPIO_ODR_ODR12_Pos (12U)
  1374. #define GPIO_ODR_ODR12_Msk (0x1UL << GPIO_ODR_ODR12_Pos) /*!< 0x00001000 */
  1375. #define GPIO_ODR_ODR12 GPIO_ODR_ODR12_Msk /*!< Port output data, bit 12 */
  1376. #define GPIO_ODR_ODR13_Pos (13U)
  1377. #define GPIO_ODR_ODR13_Msk (0x1UL << GPIO_ODR_ODR13_Pos) /*!< 0x00002000 */
  1378. #define GPIO_ODR_ODR13 GPIO_ODR_ODR13_Msk /*!< Port output data, bit 13 */
  1379. #define GPIO_ODR_ODR14_Pos (14U)
  1380. #define GPIO_ODR_ODR14_Msk (0x1UL << GPIO_ODR_ODR14_Pos) /*!< 0x00004000 */
  1381. #define GPIO_ODR_ODR14 GPIO_ODR_ODR14_Msk /*!< Port output data, bit 14 */
  1382. #define GPIO_ODR_ODR15_Pos (15U)
  1383. #define GPIO_ODR_ODR15_Msk (0x1UL << GPIO_ODR_ODR15_Pos) /*!< 0x00008000 */
  1384. #define GPIO_ODR_ODR15 GPIO_ODR_ODR15_Msk /*!< Port output data, bit 15 */
  1385. /****************** Bit definition for GPIO_BSRR register *******************/
  1386. #define GPIO_BSRR_BS0_Pos (0U)
  1387. #define GPIO_BSRR_BS0_Msk (0x1UL << GPIO_BSRR_BS0_Pos) /*!< 0x00000001 */
  1388. #define GPIO_BSRR_BS0 GPIO_BSRR_BS0_Msk /*!< Port x Set bit 0 */
  1389. #define GPIO_BSRR_BS1_Pos (1U)
  1390. #define GPIO_BSRR_BS1_Msk (0x1UL << GPIO_BSRR_BS1_Pos) /*!< 0x00000002 */
  1391. #define GPIO_BSRR_BS1 GPIO_BSRR_BS1_Msk /*!< Port x Set bit 1 */
  1392. #define GPIO_BSRR_BS2_Pos (2U)
  1393. #define GPIO_BSRR_BS2_Msk (0x1UL << GPIO_BSRR_BS2_Pos) /*!< 0x00000004 */
  1394. #define GPIO_BSRR_BS2 GPIO_BSRR_BS2_Msk /*!< Port x Set bit 2 */
  1395. #define GPIO_BSRR_BS3_Pos (3U)
  1396. #define GPIO_BSRR_BS3_Msk (0x1UL << GPIO_BSRR_BS3_Pos) /*!< 0x00000008 */
  1397. #define GPIO_BSRR_BS3 GPIO_BSRR_BS3_Msk /*!< Port x Set bit 3 */
  1398. #define GPIO_BSRR_BS4_Pos (4U)
  1399. #define GPIO_BSRR_BS4_Msk (0x1UL << GPIO_BSRR_BS4_Pos) /*!< 0x00000010 */
  1400. #define GPIO_BSRR_BS4 GPIO_BSRR_BS4_Msk /*!< Port x Set bit 4 */
  1401. #define GPIO_BSRR_BS5_Pos (5U)
  1402. #define GPIO_BSRR_BS5_Msk (0x1UL << GPIO_BSRR_BS5_Pos) /*!< 0x00000020 */
  1403. #define GPIO_BSRR_BS5 GPIO_BSRR_BS5_Msk /*!< Port x Set bit 5 */
  1404. #define GPIO_BSRR_BS6_Pos (6U)
  1405. #define GPIO_BSRR_BS6_Msk (0x1UL << GPIO_BSRR_BS6_Pos) /*!< 0x00000040 */
  1406. #define GPIO_BSRR_BS6 GPIO_BSRR_BS6_Msk /*!< Port x Set bit 6 */
  1407. #define GPIO_BSRR_BS7_Pos (7U)
  1408. #define GPIO_BSRR_BS7_Msk (0x1UL << GPIO_BSRR_BS7_Pos) /*!< 0x00000080 */
  1409. #define GPIO_BSRR_BS7 GPIO_BSRR_BS7_Msk /*!< Port x Set bit 7 */
  1410. #define GPIO_BSRR_BS8_Pos (8U)
  1411. #define GPIO_BSRR_BS8_Msk (0x1UL << GPIO_BSRR_BS8_Pos) /*!< 0x00000100 */
  1412. #define GPIO_BSRR_BS8 GPIO_BSRR_BS8_Msk /*!< Port x Set bit 8 */
  1413. #define GPIO_BSRR_BS9_Pos (9U)
  1414. #define GPIO_BSRR_BS9_Msk (0x1UL << GPIO_BSRR_BS9_Pos) /*!< 0x00000200 */
  1415. #define GPIO_BSRR_BS9 GPIO_BSRR_BS9_Msk /*!< Port x Set bit 9 */
  1416. #define GPIO_BSRR_BS10_Pos (10U)
  1417. #define GPIO_BSRR_BS10_Msk (0x1UL << GPIO_BSRR_BS10_Pos) /*!< 0x00000400 */
  1418. #define GPIO_BSRR_BS10 GPIO_BSRR_BS10_Msk /*!< Port x Set bit 10 */
  1419. #define GPIO_BSRR_BS11_Pos (11U)
  1420. #define GPIO_BSRR_BS11_Msk (0x1UL << GPIO_BSRR_BS11_Pos) /*!< 0x00000800 */
  1421. #define GPIO_BSRR_BS11 GPIO_BSRR_BS11_Msk /*!< Port x Set bit 11 */
  1422. #define GPIO_BSRR_BS12_Pos (12U)
  1423. #define GPIO_BSRR_BS12_Msk (0x1UL << GPIO_BSRR_BS12_Pos) /*!< 0x00001000 */
  1424. #define GPIO_BSRR_BS12 GPIO_BSRR_BS12_Msk /*!< Port x Set bit 12 */
  1425. #define GPIO_BSRR_BS13_Pos (13U)
  1426. #define GPIO_BSRR_BS13_Msk (0x1UL << GPIO_BSRR_BS13_Pos) /*!< 0x00002000 */
  1427. #define GPIO_BSRR_BS13 GPIO_BSRR_BS13_Msk /*!< Port x Set bit 13 */
  1428. #define GPIO_BSRR_BS14_Pos (14U)
  1429. #define GPIO_BSRR_BS14_Msk (0x1UL << GPIO_BSRR_BS14_Pos) /*!< 0x00004000 */
  1430. #define GPIO_BSRR_BS14 GPIO_BSRR_BS14_Msk /*!< Port x Set bit 14 */
  1431. #define GPIO_BSRR_BS15_Pos (15U)
  1432. #define GPIO_BSRR_BS15_Msk (0x1UL << GPIO_BSRR_BS15_Pos) /*!< 0x00008000 */
  1433. #define GPIO_BSRR_BS15 GPIO_BSRR_BS15_Msk /*!< Port x Set bit 15 */
  1434. #define GPIO_BSRR_BR0_Pos (16U)
  1435. #define GPIO_BSRR_BR0_Msk (0x1UL << GPIO_BSRR_BR0_Pos) /*!< 0x00010000 */
  1436. #define GPIO_BSRR_BR0 GPIO_BSRR_BR0_Msk /*!< Port x Reset bit 0 */
  1437. #define GPIO_BSRR_BR1_Pos (17U)
  1438. #define GPIO_BSRR_BR1_Msk (0x1UL << GPIO_BSRR_BR1_Pos) /*!< 0x00020000 */
  1439. #define GPIO_BSRR_BR1 GPIO_BSRR_BR1_Msk /*!< Port x Reset bit 1 */
  1440. #define GPIO_BSRR_BR2_Pos (18U)
  1441. #define GPIO_BSRR_BR2_Msk (0x1UL << GPIO_BSRR_BR2_Pos) /*!< 0x00040000 */
  1442. #define GPIO_BSRR_BR2 GPIO_BSRR_BR2_Msk /*!< Port x Reset bit 2 */
  1443. #define GPIO_BSRR_BR3_Pos (19U)
  1444. #define GPIO_BSRR_BR3_Msk (0x1UL << GPIO_BSRR_BR3_Pos) /*!< 0x00080000 */
  1445. #define GPIO_BSRR_BR3 GPIO_BSRR_BR3_Msk /*!< Port x Reset bit 3 */
  1446. #define GPIO_BSRR_BR4_Pos (20U)
  1447. #define GPIO_BSRR_BR4_Msk (0x1UL << GPIO_BSRR_BR4_Pos) /*!< 0x00100000 */
  1448. #define GPIO_BSRR_BR4 GPIO_BSRR_BR4_Msk /*!< Port x Reset bit 4 */
  1449. #define GPIO_BSRR_BR5_Pos (21U)
  1450. #define GPIO_BSRR_BR5_Msk (0x1UL << GPIO_BSRR_BR5_Pos) /*!< 0x00200000 */
  1451. #define GPIO_BSRR_BR5 GPIO_BSRR_BR5_Msk /*!< Port x Reset bit 5 */
  1452. #define GPIO_BSRR_BR6_Pos (22U)
  1453. #define GPIO_BSRR_BR6_Msk (0x1UL << GPIO_BSRR_BR6_Pos) /*!< 0x00400000 */
  1454. #define GPIO_BSRR_BR6 GPIO_BSRR_BR6_Msk /*!< Port x Reset bit 6 */
  1455. #define GPIO_BSRR_BR7_Pos (23U)
  1456. #define GPIO_BSRR_BR7_Msk (0x1UL << GPIO_BSRR_BR7_Pos) /*!< 0x00800000 */
  1457. #define GPIO_BSRR_BR7 GPIO_BSRR_BR7_Msk /*!< Port x Reset bit 7 */
  1458. #define GPIO_BSRR_BR8_Pos (24U)
  1459. #define GPIO_BSRR_BR8_Msk (0x1UL << GPIO_BSRR_BR8_Pos) /*!< 0x01000000 */
  1460. #define GPIO_BSRR_BR8 GPIO_BSRR_BR8_Msk /*!< Port x Reset bit 8 */
  1461. #define GPIO_BSRR_BR9_Pos (25U)
  1462. #define GPIO_BSRR_BR9_Msk (0x1UL << GPIO_BSRR_BR9_Pos) /*!< 0x02000000 */
  1463. #define GPIO_BSRR_BR9 GPIO_BSRR_BR9_Msk /*!< Port x Reset bit 9 */
  1464. #define GPIO_BSRR_BR10_Pos (26U)
  1465. #define GPIO_BSRR_BR10_Msk (0x1UL << GPIO_BSRR_BR10_Pos) /*!< 0x04000000 */
  1466. #define GPIO_BSRR_BR10 GPIO_BSRR_BR10_Msk /*!< Port x Reset bit 10 */
  1467. #define GPIO_BSRR_BR11_Pos (27U)
  1468. #define GPIO_BSRR_BR11_Msk (0x1UL << GPIO_BSRR_BR11_Pos) /*!< 0x08000000 */
  1469. #define GPIO_BSRR_BR11 GPIO_BSRR_BR11_Msk /*!< Port x Reset bit 11 */
  1470. #define GPIO_BSRR_BR12_Pos (28U)
  1471. #define GPIO_BSRR_BR12_Msk (0x1UL << GPIO_BSRR_BR12_Pos) /*!< 0x10000000 */
  1472. #define GPIO_BSRR_BR12 GPIO_BSRR_BR12_Msk /*!< Port x Reset bit 12 */
  1473. #define GPIO_BSRR_BR13_Pos (29U)
  1474. #define GPIO_BSRR_BR13_Msk (0x1UL << GPIO_BSRR_BR13_Pos) /*!< 0x20000000 */
  1475. #define GPIO_BSRR_BR13 GPIO_BSRR_BR13_Msk /*!< Port x Reset bit 13 */
  1476. #define GPIO_BSRR_BR14_Pos (30U)
  1477. #define GPIO_BSRR_BR14_Msk (0x1UL << GPIO_BSRR_BR14_Pos) /*!< 0x40000000 */
  1478. #define GPIO_BSRR_BR14 GPIO_BSRR_BR14_Msk /*!< Port x Reset bit 14 */
  1479. #define GPIO_BSRR_BR15_Pos (31U)
  1480. #define GPIO_BSRR_BR15_Msk (0x1UL << GPIO_BSRR_BR15_Pos) /*!< 0x80000000 */
  1481. #define GPIO_BSRR_BR15 GPIO_BSRR_BR15_Msk /*!< Port x Reset bit 15 */
  1482. /******************* Bit definition for GPIO_BRR register *******************/
  1483. #define GPIO_BRR_BR0_Pos (0U)
  1484. #define GPIO_BRR_BR0_Msk (0x1UL << GPIO_BRR_BR0_Pos) /*!< 0x00000001 */
  1485. #define GPIO_BRR_BR0 GPIO_BRR_BR0_Msk /*!< Port x Reset bit 0 */
  1486. #define GPIO_BRR_BR1_Pos (1U)
  1487. #define GPIO_BRR_BR1_Msk (0x1UL << GPIO_BRR_BR1_Pos) /*!< 0x00000002 */
  1488. #define GPIO_BRR_BR1 GPIO_BRR_BR1_Msk /*!< Port x Reset bit 1 */
  1489. #define GPIO_BRR_BR2_Pos (2U)
  1490. #define GPIO_BRR_BR2_Msk (0x1UL << GPIO_BRR_BR2_Pos) /*!< 0x00000004 */
  1491. #define GPIO_BRR_BR2 GPIO_BRR_BR2_Msk /*!< Port x Reset bit 2 */
  1492. #define GPIO_BRR_BR3_Pos (3U)
  1493. #define GPIO_BRR_BR3_Msk (0x1UL << GPIO_BRR_BR3_Pos) /*!< 0x00000008 */
  1494. #define GPIO_BRR_BR3 GPIO_BRR_BR3_Msk /*!< Port x Reset bit 3 */
  1495. #define GPIO_BRR_BR4_Pos (4U)
  1496. #define GPIO_BRR_BR4_Msk (0x1UL << GPIO_BRR_BR4_Pos) /*!< 0x00000010 */
  1497. #define GPIO_BRR_BR4 GPIO_BRR_BR4_Msk /*!< Port x Reset bit 4 */
  1498. #define GPIO_BRR_BR5_Pos (5U)
  1499. #define GPIO_BRR_BR5_Msk (0x1UL << GPIO_BRR_BR5_Pos) /*!< 0x00000020 */
  1500. #define GPIO_BRR_BR5 GPIO_BRR_BR5_Msk /*!< Port x Reset bit 5 */
  1501. #define GPIO_BRR_BR6_Pos (6U)
  1502. #define GPIO_BRR_BR6_Msk (0x1UL << GPIO_BRR_BR6_Pos) /*!< 0x00000040 */
  1503. #define GPIO_BRR_BR6 GPIO_BRR_BR6_Msk /*!< Port x Reset bit 6 */
  1504. #define GPIO_BRR_BR7_Pos (7U)
  1505. #define GPIO_BRR_BR7_Msk (0x1UL << GPIO_BRR_BR7_Pos) /*!< 0x00000080 */
  1506. #define GPIO_BRR_BR7 GPIO_BRR_BR7_Msk /*!< Port x Reset bit 7 */
  1507. #define GPIO_BRR_BR8_Pos (8U)
  1508. #define GPIO_BRR_BR8_Msk (0x1UL << GPIO_BRR_BR8_Pos) /*!< 0x00000100 */
  1509. #define GPIO_BRR_BR8 GPIO_BRR_BR8_Msk /*!< Port x Reset bit 8 */
  1510. #define GPIO_BRR_BR9_Pos (9U)
  1511. #define GPIO_BRR_BR9_Msk (0x1UL << GPIO_BRR_BR9_Pos) /*!< 0x00000200 */
  1512. #define GPIO_BRR_BR9 GPIO_BRR_BR9_Msk /*!< Port x Reset bit 9 */
  1513. #define GPIO_BRR_BR10_Pos (10U)
  1514. #define GPIO_BRR_BR10_Msk (0x1UL << GPIO_BRR_BR10_Pos) /*!< 0x00000400 */
  1515. #define GPIO_BRR_BR10 GPIO_BRR_BR10_Msk /*!< Port x Reset bit 10 */
  1516. #define GPIO_BRR_BR11_Pos (11U)
  1517. #define GPIO_BRR_BR11_Msk (0x1UL << GPIO_BRR_BR11_Pos) /*!< 0x00000800 */
  1518. #define GPIO_BRR_BR11 GPIO_BRR_BR11_Msk /*!< Port x Reset bit 11 */
  1519. #define GPIO_BRR_BR12_Pos (12U)
  1520. #define GPIO_BRR_BR12_Msk (0x1UL << GPIO_BRR_BR12_Pos) /*!< 0x00001000 */
  1521. #define GPIO_BRR_BR12 GPIO_BRR_BR12_Msk /*!< Port x Reset bit 12 */
  1522. #define GPIO_BRR_BR13_Pos (13U)
  1523. #define GPIO_BRR_BR13_Msk (0x1UL << GPIO_BRR_BR13_Pos) /*!< 0x00002000 */
  1524. #define GPIO_BRR_BR13 GPIO_BRR_BR13_Msk /*!< Port x Reset bit 13 */
  1525. #define GPIO_BRR_BR14_Pos (14U)
  1526. #define GPIO_BRR_BR14_Msk (0x1UL << GPIO_BRR_BR14_Pos) /*!< 0x00004000 */
  1527. #define GPIO_BRR_BR14 GPIO_BRR_BR14_Msk /*!< Port x Reset bit 14 */
  1528. #define GPIO_BRR_BR15_Pos (15U)
  1529. #define GPIO_BRR_BR15_Msk (0x1UL << GPIO_BRR_BR15_Pos) /*!< 0x00008000 */
  1530. #define GPIO_BRR_BR15 GPIO_BRR_BR15_Msk /*!< Port x Reset bit 15 */
  1531. /****************** Bit definition for GPIO_LCKR register *******************/
  1532. #define GPIO_LCKR_LCK0_Pos (0U)
  1533. #define GPIO_LCKR_LCK0_Msk (0x1UL << GPIO_LCKR_LCK0_Pos) /*!< 0x00000001 */
  1534. #define GPIO_LCKR_LCK0 GPIO_LCKR_LCK0_Msk /*!< Port x Lock bit 0 */
  1535. #define GPIO_LCKR_LCK1_Pos (1U)
  1536. #define GPIO_LCKR_LCK1_Msk (0x1UL << GPIO_LCKR_LCK1_Pos) /*!< 0x00000002 */
  1537. #define GPIO_LCKR_LCK1 GPIO_LCKR_LCK1_Msk /*!< Port x Lock bit 1 */
  1538. #define GPIO_LCKR_LCK2_Pos (2U)
  1539. #define GPIO_LCKR_LCK2_Msk (0x1UL << GPIO_LCKR_LCK2_Pos) /*!< 0x00000004 */
  1540. #define GPIO_LCKR_LCK2 GPIO_LCKR_LCK2_Msk /*!< Port x Lock bit 2 */
  1541. #define GPIO_LCKR_LCK3_Pos (3U)
  1542. #define GPIO_LCKR_LCK3_Msk (0x1UL << GPIO_LCKR_LCK3_Pos) /*!< 0x00000008 */
  1543. #define GPIO_LCKR_LCK3 GPIO_LCKR_LCK3_Msk /*!< Port x Lock bit 3 */
  1544. #define GPIO_LCKR_LCK4_Pos (4U)
  1545. #define GPIO_LCKR_LCK4_Msk (0x1UL << GPIO_LCKR_LCK4_Pos) /*!< 0x00000010 */
  1546. #define GPIO_LCKR_LCK4 GPIO_LCKR_LCK4_Msk /*!< Port x Lock bit 4 */
  1547. #define GPIO_LCKR_LCK5_Pos (5U)
  1548. #define GPIO_LCKR_LCK5_Msk (0x1UL << GPIO_LCKR_LCK5_Pos) /*!< 0x00000020 */
  1549. #define GPIO_LCKR_LCK5 GPIO_LCKR_LCK5_Msk /*!< Port x Lock bit 5 */
  1550. #define GPIO_LCKR_LCK6_Pos (6U)
  1551. #define GPIO_LCKR_LCK6_Msk (0x1UL << GPIO_LCKR_LCK6_Pos) /*!< 0x00000040 */
  1552. #define GPIO_LCKR_LCK6 GPIO_LCKR_LCK6_Msk /*!< Port x Lock bit 6 */
  1553. #define GPIO_LCKR_LCK7_Pos (7U)
  1554. #define GPIO_LCKR_LCK7_Msk (0x1UL << GPIO_LCKR_LCK7_Pos) /*!< 0x00000080 */
  1555. #define GPIO_LCKR_LCK7 GPIO_LCKR_LCK7_Msk /*!< Port x Lock bit 7 */
  1556. #define GPIO_LCKR_LCK8_Pos (8U)
  1557. #define GPIO_LCKR_LCK8_Msk (0x1UL << GPIO_LCKR_LCK8_Pos) /*!< 0x00000100 */
  1558. #define GPIO_LCKR_LCK8 GPIO_LCKR_LCK8_Msk /*!< Port x Lock bit 8 */
  1559. #define GPIO_LCKR_LCK9_Pos (9U)
  1560. #define GPIO_LCKR_LCK9_Msk (0x1UL << GPIO_LCKR_LCK9_Pos) /*!< 0x00000200 */
  1561. #define GPIO_LCKR_LCK9 GPIO_LCKR_LCK9_Msk /*!< Port x Lock bit 9 */
  1562. #define GPIO_LCKR_LCK10_Pos (10U)
  1563. #define GPIO_LCKR_LCK10_Msk (0x1UL << GPIO_LCKR_LCK10_Pos) /*!< 0x00000400 */
  1564. #define GPIO_LCKR_LCK10 GPIO_LCKR_LCK10_Msk /*!< Port x Lock bit 10 */
  1565. #define GPIO_LCKR_LCK11_Pos (11U)
  1566. #define GPIO_LCKR_LCK11_Msk (0x1UL << GPIO_LCKR_LCK11_Pos) /*!< 0x00000800 */
  1567. #define GPIO_LCKR_LCK11 GPIO_LCKR_LCK11_Msk /*!< Port x Lock bit 11 */
  1568. #define GPIO_LCKR_LCK12_Pos (12U)
  1569. #define GPIO_LCKR_LCK12_Msk (0x1UL << GPIO_LCKR_LCK12_Pos) /*!< 0x00001000 */
  1570. #define GPIO_LCKR_LCK12 GPIO_LCKR_LCK12_Msk /*!< Port x Lock bit 12 */
  1571. #define GPIO_LCKR_LCK13_Pos (13U)
  1572. #define GPIO_LCKR_LCK13_Msk (0x1UL << GPIO_LCKR_LCK13_Pos) /*!< 0x00002000 */
  1573. #define GPIO_LCKR_LCK13 GPIO_LCKR_LCK13_Msk /*!< Port x Lock bit 13 */
  1574. #define GPIO_LCKR_LCK14_Pos (14U)
  1575. #define GPIO_LCKR_LCK14_Msk (0x1UL << GPIO_LCKR_LCK14_Pos) /*!< 0x00004000 */
  1576. #define GPIO_LCKR_LCK14 GPIO_LCKR_LCK14_Msk /*!< Port x Lock bit 14 */
  1577. #define GPIO_LCKR_LCK15_Pos (15U)
  1578. #define GPIO_LCKR_LCK15_Msk (0x1UL << GPIO_LCKR_LCK15_Pos) /*!< 0x00008000 */
  1579. #define GPIO_LCKR_LCK15 GPIO_LCKR_LCK15_Msk /*!< Port x Lock bit 15 */
  1580. #define GPIO_LCKR_LCKK_Pos (16U)
  1581. #define GPIO_LCKR_LCKK_Msk (0x1UL << GPIO_LCKR_LCKK_Pos) /*!< 0x00010000 */
  1582. #define GPIO_LCKR_LCKK GPIO_LCKR_LCKK_Msk /*!< Lock key */
  1583. /*----------------------------------------------------------------------------*/
  1584. /****************** Bit definition for AFIO_EVCR register *******************/
  1585. #define AFIO_EVCR_PIN_Pos (0U)
  1586. #define AFIO_EVCR_PIN_Msk (0xFUL << AFIO_EVCR_PIN_Pos) /*!< 0x0000000F */
  1587. #define AFIO_EVCR_PIN AFIO_EVCR_PIN_Msk /*!< PIN[3:0] bits (Pin selection) */
  1588. #define AFIO_EVCR_PIN_0 (0x1UL << AFIO_EVCR_PIN_Pos) /*!< 0x00000001 */
  1589. #define AFIO_EVCR_PIN_1 (0x2UL << AFIO_EVCR_PIN_Pos) /*!< 0x00000002 */
  1590. #define AFIO_EVCR_PIN_2 (0x4UL << AFIO_EVCR_PIN_Pos) /*!< 0x00000004 */
  1591. #define AFIO_EVCR_PIN_3 (0x8UL << AFIO_EVCR_PIN_Pos) /*!< 0x00000008 */
  1592. /*!< PIN configuration */
  1593. #define AFIO_EVCR_PIN_PX0 0x00000000U /*!< Pin 0 selected */
  1594. #define AFIO_EVCR_PIN_PX1_Pos (0U)
  1595. #define AFIO_EVCR_PIN_PX1_Msk (0x1UL << AFIO_EVCR_PIN_PX1_Pos) /*!< 0x00000001 */
  1596. #define AFIO_EVCR_PIN_PX1 AFIO_EVCR_PIN_PX1_Msk /*!< Pin 1 selected */
  1597. #define AFIO_EVCR_PIN_PX2_Pos (1U)
  1598. #define AFIO_EVCR_PIN_PX2_Msk (0x1UL << AFIO_EVCR_PIN_PX2_Pos) /*!< 0x00000002 */
  1599. #define AFIO_EVCR_PIN_PX2 AFIO_EVCR_PIN_PX2_Msk /*!< Pin 2 selected */
  1600. #define AFIO_EVCR_PIN_PX3_Pos (0U)
  1601. #define AFIO_EVCR_PIN_PX3_Msk (0x3UL << AFIO_EVCR_PIN_PX3_Pos) /*!< 0x00000003 */
  1602. #define AFIO_EVCR_PIN_PX3 AFIO_EVCR_PIN_PX3_Msk /*!< Pin 3 selected */
  1603. #define AFIO_EVCR_PIN_PX4_Pos (2U)
  1604. #define AFIO_EVCR_PIN_PX4_Msk (0x1UL << AFIO_EVCR_PIN_PX4_Pos) /*!< 0x00000004 */
  1605. #define AFIO_EVCR_PIN_PX4 AFIO_EVCR_PIN_PX4_Msk /*!< Pin 4 selected */
  1606. #define AFIO_EVCR_PIN_PX5_Pos (0U)
  1607. #define AFIO_EVCR_PIN_PX5_Msk (0x5UL << AFIO_EVCR_PIN_PX5_Pos) /*!< 0x00000005 */
  1608. #define AFIO_EVCR_PIN_PX5 AFIO_EVCR_PIN_PX5_Msk /*!< Pin 5 selected */
  1609. #define AFIO_EVCR_PIN_PX6_Pos (1U)
  1610. #define AFIO_EVCR_PIN_PX6_Msk (0x3UL << AFIO_EVCR_PIN_PX6_Pos) /*!< 0x00000006 */
  1611. #define AFIO_EVCR_PIN_PX6 AFIO_EVCR_PIN_PX6_Msk /*!< Pin 6 selected */
  1612. #define AFIO_EVCR_PIN_PX7_Pos (0U)
  1613. #define AFIO_EVCR_PIN_PX7_Msk (0x7UL << AFIO_EVCR_PIN_PX7_Pos) /*!< 0x00000007 */
  1614. #define AFIO_EVCR_PIN_PX7 AFIO_EVCR_PIN_PX7_Msk /*!< Pin 7 selected */
  1615. #define AFIO_EVCR_PIN_PX8_Pos (3U)
  1616. #define AFIO_EVCR_PIN_PX8_Msk (0x1UL << AFIO_EVCR_PIN_PX8_Pos) /*!< 0x00000008 */
  1617. #define AFIO_EVCR_PIN_PX8 AFIO_EVCR_PIN_PX8_Msk /*!< Pin 8 selected */
  1618. #define AFIO_EVCR_PIN_PX9_Pos (0U)
  1619. #define AFIO_EVCR_PIN_PX9_Msk (0x9UL << AFIO_EVCR_PIN_PX9_Pos) /*!< 0x00000009 */
  1620. #define AFIO_EVCR_PIN_PX9 AFIO_EVCR_PIN_PX9_Msk /*!< Pin 9 selected */
  1621. #define AFIO_EVCR_PIN_PX10_Pos (1U)
  1622. #define AFIO_EVCR_PIN_PX10_Msk (0x5UL << AFIO_EVCR_PIN_PX10_Pos) /*!< 0x0000000A */
  1623. #define AFIO_EVCR_PIN_PX10 AFIO_EVCR_PIN_PX10_Msk /*!< Pin 10 selected */
  1624. #define AFIO_EVCR_PIN_PX11_Pos (0U)
  1625. #define AFIO_EVCR_PIN_PX11_Msk (0xBUL << AFIO_EVCR_PIN_PX11_Pos) /*!< 0x0000000B */
  1626. #define AFIO_EVCR_PIN_PX11 AFIO_EVCR_PIN_PX11_Msk /*!< Pin 11 selected */
  1627. #define AFIO_EVCR_PIN_PX12_Pos (2U)
  1628. #define AFIO_EVCR_PIN_PX12_Msk (0x3UL << AFIO_EVCR_PIN_PX12_Pos) /*!< 0x0000000C */
  1629. #define AFIO_EVCR_PIN_PX12 AFIO_EVCR_PIN_PX12_Msk /*!< Pin 12 selected */
  1630. #define AFIO_EVCR_PIN_PX13_Pos (0U)
  1631. #define AFIO_EVCR_PIN_PX13_Msk (0xDUL << AFIO_EVCR_PIN_PX13_Pos) /*!< 0x0000000D */
  1632. #define AFIO_EVCR_PIN_PX13 AFIO_EVCR_PIN_PX13_Msk /*!< Pin 13 selected */
  1633. #define AFIO_EVCR_PIN_PX14_Pos (1U)
  1634. #define AFIO_EVCR_PIN_PX14_Msk (0x7UL << AFIO_EVCR_PIN_PX14_Pos) /*!< 0x0000000E */
  1635. #define AFIO_EVCR_PIN_PX14 AFIO_EVCR_PIN_PX14_Msk /*!< Pin 14 selected */
  1636. #define AFIO_EVCR_PIN_PX15_Pos (0U)
  1637. #define AFIO_EVCR_PIN_PX15_Msk (0xFUL << AFIO_EVCR_PIN_PX15_Pos) /*!< 0x0000000F */
  1638. #define AFIO_EVCR_PIN_PX15 AFIO_EVCR_PIN_PX15_Msk /*!< Pin 15 selected */
  1639. #define AFIO_EVCR_PORT_Pos (4U)
  1640. #define AFIO_EVCR_PORT_Msk (0x7UL << AFIO_EVCR_PORT_Pos) /*!< 0x00000070 */
  1641. #define AFIO_EVCR_PORT AFIO_EVCR_PORT_Msk /*!< PORT[2:0] bits (Port selection) */
  1642. #define AFIO_EVCR_PORT_0 (0x1UL << AFIO_EVCR_PORT_Pos) /*!< 0x00000010 */
  1643. #define AFIO_EVCR_PORT_1 (0x2UL << AFIO_EVCR_PORT_Pos) /*!< 0x00000020 */
  1644. #define AFIO_EVCR_PORT_2 (0x4UL << AFIO_EVCR_PORT_Pos) /*!< 0x00000040 */
  1645. /*!< PORT configuration */
  1646. #define AFIO_EVCR_PORT_PA 0x00000000 /*!< Port A selected */
  1647. #define AFIO_EVCR_PORT_PB_Pos (4U)
  1648. #define AFIO_EVCR_PORT_PB_Msk (0x1UL << AFIO_EVCR_PORT_PB_Pos) /*!< 0x00000010 */
  1649. #define AFIO_EVCR_PORT_PB AFIO_EVCR_PORT_PB_Msk /*!< Port B selected */
  1650. #define AFIO_EVCR_PORT_PC_Pos (5U)
  1651. #define AFIO_EVCR_PORT_PC_Msk (0x1UL << AFIO_EVCR_PORT_PC_Pos) /*!< 0x00000020 */
  1652. #define AFIO_EVCR_PORT_PC AFIO_EVCR_PORT_PC_Msk /*!< Port C selected */
  1653. #define AFIO_EVCR_PORT_PD_Pos (4U)
  1654. #define AFIO_EVCR_PORT_PD_Msk (0x3UL << AFIO_EVCR_PORT_PD_Pos) /*!< 0x00000030 */
  1655. #define AFIO_EVCR_PORT_PD AFIO_EVCR_PORT_PD_Msk /*!< Port D selected */
  1656. #define AFIO_EVCR_PORT_PE_Pos (6U)
  1657. #define AFIO_EVCR_PORT_PE_Msk (0x1UL << AFIO_EVCR_PORT_PE_Pos) /*!< 0x00000040 */
  1658. #define AFIO_EVCR_PORT_PE AFIO_EVCR_PORT_PE_Msk /*!< Port E selected */
  1659. #define AFIO_EVCR_EVOE_Pos (7U)
  1660. #define AFIO_EVCR_EVOE_Msk (0x1UL << AFIO_EVCR_EVOE_Pos) /*!< 0x00000080 */
  1661. #define AFIO_EVCR_EVOE AFIO_EVCR_EVOE_Msk /*!< Event Output Enable */
  1662. /****************** Bit definition for AFIO_MAPR register *******************/
  1663. #define AFIO_MAPR_SPI1_REMAP_Pos (0U)
  1664. #define AFIO_MAPR_SPI1_REMAP_Msk (0x1UL << AFIO_MAPR_SPI1_REMAP_Pos) /*!< 0x00000001 */
  1665. #define AFIO_MAPR_SPI1_REMAP AFIO_MAPR_SPI1_REMAP_Msk /*!< SPI1 remapping */
  1666. #define AFIO_MAPR_I2C1_REMAP_Pos (1U)
  1667. #define AFIO_MAPR_I2C1_REMAP_Msk (0x1UL << AFIO_MAPR_I2C1_REMAP_Pos) /*!< 0x00000002 */
  1668. #define AFIO_MAPR_I2C1_REMAP AFIO_MAPR_I2C1_REMAP_Msk /*!< I2C1 remapping */
  1669. #define AFIO_MAPR_USART1_REMAP_Pos (2U)
  1670. #define AFIO_MAPR_USART1_REMAP_Msk (0x1UL << AFIO_MAPR_USART1_REMAP_Pos) /*!< 0x00000004 */
  1671. #define AFIO_MAPR_USART1_REMAP AFIO_MAPR_USART1_REMAP_Msk /*!< USART1 remapping */
  1672. #define AFIO_MAPR_USART2_REMAP_Pos (3U)
  1673. #define AFIO_MAPR_USART2_REMAP_Msk (0x1UL << AFIO_MAPR_USART2_REMAP_Pos) /*!< 0x00000008 */
  1674. #define AFIO_MAPR_USART2_REMAP AFIO_MAPR_USART2_REMAP_Msk /*!< USART2 remapping */
  1675. #define AFIO_MAPR_USART3_REMAP_Pos (4U)
  1676. #define AFIO_MAPR_USART3_REMAP_Msk (0x3UL << AFIO_MAPR_USART3_REMAP_Pos) /*!< 0x00000030 */
  1677. #define AFIO_MAPR_USART3_REMAP AFIO_MAPR_USART3_REMAP_Msk /*!< USART3_REMAP[1:0] bits (USART3 remapping) */
  1678. #define AFIO_MAPR_USART3_REMAP_0 (0x1UL << AFIO_MAPR_USART3_REMAP_Pos) /*!< 0x00000010 */
  1679. #define AFIO_MAPR_USART3_REMAP_1 (0x2UL << AFIO_MAPR_USART3_REMAP_Pos) /*!< 0x00000020 */
  1680. /* USART3_REMAP configuration */
  1681. #define AFIO_MAPR_USART3_REMAP_NOREMAP 0x00000000U /*!< No remap (TX/PB10, RX/PB11, CK/PB12, CTS/PB13, RTS/PB14) */
  1682. #define AFIO_MAPR_USART3_REMAP_PARTIALREMAP_Pos (4U)
  1683. #define AFIO_MAPR_USART3_REMAP_PARTIALREMAP_Msk (0x1UL << AFIO_MAPR_USART3_REMAP_PARTIALREMAP_Pos) /*!< 0x00000010 */
  1684. #define AFIO_MAPR_USART3_REMAP_PARTIALREMAP AFIO_MAPR_USART3_REMAP_PARTIALREMAP_Msk /*!< Partial remap (TX/PC10, RX/PC11, CK/PC12, CTS/PB13, RTS/PB14) */
  1685. #define AFIO_MAPR_USART3_REMAP_FULLREMAP_Pos (4U)
  1686. #define AFIO_MAPR_USART3_REMAP_FULLREMAP_Msk (0x3UL << AFIO_MAPR_USART3_REMAP_FULLREMAP_Pos) /*!< 0x00000030 */
  1687. #define AFIO_MAPR_USART3_REMAP_FULLREMAP AFIO_MAPR_USART3_REMAP_FULLREMAP_Msk /*!< Full remap (TX/PD8, RX/PD9, CK/PD10, CTS/PD11, RTS/PD12) */
  1688. #define AFIO_MAPR_TIM1_REMAP_Pos (6U)
  1689. #define AFIO_MAPR_TIM1_REMAP_Msk (0x3UL << AFIO_MAPR_TIM1_REMAP_Pos) /*!< 0x000000C0 */
  1690. #define AFIO_MAPR_TIM1_REMAP AFIO_MAPR_TIM1_REMAP_Msk /*!< TIM1_REMAP[1:0] bits (TIM1 remapping) */
  1691. #define AFIO_MAPR_TIM1_REMAP_0 (0x1UL << AFIO_MAPR_TIM1_REMAP_Pos) /*!< 0x00000040 */
  1692. #define AFIO_MAPR_TIM1_REMAP_1 (0x2UL << AFIO_MAPR_TIM1_REMAP_Pos) /*!< 0x00000080 */
  1693. /*!< TIM1_REMAP configuration */
  1694. #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) */
  1695. #define AFIO_MAPR_TIM1_REMAP_PARTIALREMAP_Pos (6U)
  1696. #define AFIO_MAPR_TIM1_REMAP_PARTIALREMAP_Msk (0x1UL << AFIO_MAPR_TIM1_REMAP_PARTIALREMAP_Pos) /*!< 0x00000040 */
  1697. #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) */
  1698. #define AFIO_MAPR_TIM1_REMAP_FULLREMAP_Pos (6U)
  1699. #define AFIO_MAPR_TIM1_REMAP_FULLREMAP_Msk (0x3UL << AFIO_MAPR_TIM1_REMAP_FULLREMAP_Pos) /*!< 0x000000C0 */
  1700. #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) */
  1701. #define AFIO_MAPR_TIM2_REMAP_Pos (8U)
  1702. #define AFIO_MAPR_TIM2_REMAP_Msk (0x3UL << AFIO_MAPR_TIM2_REMAP_Pos) /*!< 0x00000300 */
  1703. #define AFIO_MAPR_TIM2_REMAP AFIO_MAPR_TIM2_REMAP_Msk /*!< TIM2_REMAP[1:0] bits (TIM2 remapping) */
  1704. #define AFIO_MAPR_TIM2_REMAP_0 (0x1UL << AFIO_MAPR_TIM2_REMAP_Pos) /*!< 0x00000100 */
  1705. #define AFIO_MAPR_TIM2_REMAP_1 (0x2UL << AFIO_MAPR_TIM2_REMAP_Pos) /*!< 0x00000200 */
  1706. /*!< TIM2_REMAP configuration */
  1707. #define AFIO_MAPR_TIM2_REMAP_NOREMAP 0x00000000U /*!< No remap (CH1/ETR/PA0, CH2/PA1, CH3/PA2, CH4/PA3) */
  1708. #define AFIO_MAPR_TIM2_REMAP_PARTIALREMAP1_Pos (8U)
  1709. #define AFIO_MAPR_TIM2_REMAP_PARTIALREMAP1_Msk (0x1UL << AFIO_MAPR_TIM2_REMAP_PARTIALREMAP1_Pos) /*!< 0x00000100 */
  1710. #define AFIO_MAPR_TIM2_REMAP_PARTIALREMAP1 AFIO_MAPR_TIM2_REMAP_PARTIALREMAP1_Msk /*!< Partial remap (CH1/ETR/PA15, CH2/PB3, CH3/PA2, CH4/PA3) */
  1711. #define AFIO_MAPR_TIM2_REMAP_PARTIALREMAP2_Pos (9U)
  1712. #define AFIO_MAPR_TIM2_REMAP_PARTIALREMAP2_Msk (0x1UL << AFIO_MAPR_TIM2_REMAP_PARTIALREMAP2_Pos) /*!< 0x00000200 */
  1713. #define AFIO_MAPR_TIM2_REMAP_PARTIALREMAP2 AFIO_MAPR_TIM2_REMAP_PARTIALREMAP2_Msk /*!< Partial remap (CH1/ETR/PA0, CH2/PA1, CH3/PB10, CH4/PB11) */
  1714. #define AFIO_MAPR_TIM2_REMAP_FULLREMAP_Pos (8U)
  1715. #define AFIO_MAPR_TIM2_REMAP_FULLREMAP_Msk (0x3UL << AFIO_MAPR_TIM2_REMAP_FULLREMAP_Pos) /*!< 0x00000300 */
  1716. #define AFIO_MAPR_TIM2_REMAP_FULLREMAP AFIO_MAPR_TIM2_REMAP_FULLREMAP_Msk /*!< Full remap (CH1/ETR/PA15, CH2/PB3, CH3/PB10, CH4/PB11) */
  1717. #define AFIO_MAPR_TIM3_REMAP_Pos (10U)
  1718. #define AFIO_MAPR_TIM3_REMAP_Msk (0x3UL << AFIO_MAPR_TIM3_REMAP_Pos) /*!< 0x00000C00 */
  1719. #define AFIO_MAPR_TIM3_REMAP AFIO_MAPR_TIM3_REMAP_Msk /*!< TIM3_REMAP[1:0] bits (TIM3 remapping) */
  1720. #define AFIO_MAPR_TIM3_REMAP_0 (0x1UL << AFIO_MAPR_TIM3_REMAP_Pos) /*!< 0x00000400 */
  1721. #define AFIO_MAPR_TIM3_REMAP_1 (0x2UL << AFIO_MAPR_TIM3_REMAP_Pos) /*!< 0x00000800 */
  1722. /*!< TIM3_REMAP configuration */
  1723. #define AFIO_MAPR_TIM3_REMAP_NOREMAP 0x00000000U /*!< No remap (CH1/PA6, CH2/PA7, CH3/PB0, CH4/PB1) */
  1724. #define AFIO_MAPR_TIM3_REMAP_PARTIALREMAP_Pos (11U)
  1725. #define AFIO_MAPR_TIM3_REMAP_PARTIALREMAP_Msk (0x1UL << AFIO_MAPR_TIM3_REMAP_PARTIALREMAP_Pos) /*!< 0x00000800 */
  1726. #define AFIO_MAPR_TIM3_REMAP_PARTIALREMAP AFIO_MAPR_TIM3_REMAP_PARTIALREMAP_Msk /*!< Partial remap (CH1/PB4, CH2/PB5, CH3/PB0, CH4/PB1) */
  1727. #define AFIO_MAPR_TIM3_REMAP_FULLREMAP_Pos (10U)
  1728. #define AFIO_MAPR_TIM3_REMAP_FULLREMAP_Msk (0x3UL << AFIO_MAPR_TIM3_REMAP_FULLREMAP_Pos) /*!< 0x00000C00 */
  1729. #define AFIO_MAPR_TIM3_REMAP_FULLREMAP AFIO_MAPR_TIM3_REMAP_FULLREMAP_Msk /*!< Full remap (CH1/PC6, CH2/PC7, CH3/PC8, CH4/PC9) */
  1730. #define AFIO_MAPR_TIM4_REMAP_Pos (12U)
  1731. #define AFIO_MAPR_TIM4_REMAP_Msk (0x1UL << AFIO_MAPR_TIM4_REMAP_Pos) /*!< 0x00001000 */
  1732. #define AFIO_MAPR_TIM4_REMAP AFIO_MAPR_TIM4_REMAP_Msk /*!< TIM4_REMAP bit (TIM4 remapping) */
  1733. #define AFIO_MAPR_PD01_REMAP_Pos (15U)
  1734. #define AFIO_MAPR_PD01_REMAP_Msk (0x1UL << AFIO_MAPR_PD01_REMAP_Pos) /*!< 0x00008000 */
  1735. #define AFIO_MAPR_PD01_REMAP AFIO_MAPR_PD01_REMAP_Msk /*!< Port D0/Port D1 mapping on OSC_IN/OSC_OUT */
  1736. /*!< SWJ_CFG configuration */
  1737. #define AFIO_MAPR_SWJ_CFG_Pos (24U)
  1738. #define AFIO_MAPR_SWJ_CFG_Msk (0x7UL << AFIO_MAPR_SWJ_CFG_Pos) /*!< 0x07000000 */
  1739. #define AFIO_MAPR_SWJ_CFG AFIO_MAPR_SWJ_CFG_Msk /*!< SWJ_CFG[2:0] bits (Serial Wire JTAG configuration) */
  1740. #define AFIO_MAPR_SWJ_CFG_0 (0x1UL << AFIO_MAPR_SWJ_CFG_Pos) /*!< 0x01000000 */
  1741. #define AFIO_MAPR_SWJ_CFG_1 (0x2UL << AFIO_MAPR_SWJ_CFG_Pos) /*!< 0x02000000 */
  1742. #define AFIO_MAPR_SWJ_CFG_2 (0x4UL << AFIO_MAPR_SWJ_CFG_Pos) /*!< 0x04000000 */
  1743. #define AFIO_MAPR_SWJ_CFG_RESET 0x00000000U /*!< Full SWJ (JTAG-DP + SW-DP) : Reset State */
  1744. #define AFIO_MAPR_SWJ_CFG_NOJNTRST_Pos (24U)
  1745. #define AFIO_MAPR_SWJ_CFG_NOJNTRST_Msk (0x1UL << AFIO_MAPR_SWJ_CFG_NOJNTRST_Pos) /*!< 0x01000000 */
  1746. #define AFIO_MAPR_SWJ_CFG_NOJNTRST AFIO_MAPR_SWJ_CFG_NOJNTRST_Msk /*!< Full SWJ (JTAG-DP + SW-DP) but without JNTRST */
  1747. #define AFIO_MAPR_SWJ_CFG_JTAGDISABLE_Pos (25U)
  1748. #define AFIO_MAPR_SWJ_CFG_JTAGDISABLE_Msk (0x1UL << AFIO_MAPR_SWJ_CFG_JTAGDISABLE_Pos) /*!< 0x02000000 */
  1749. #define AFIO_MAPR_SWJ_CFG_JTAGDISABLE AFIO_MAPR_SWJ_CFG_JTAGDISABLE_Msk /*!< JTAG-DP Disabled and SW-DP Enabled */
  1750. #define AFIO_MAPR_SWJ_CFG_DISABLE_Pos (26U)
  1751. #define AFIO_MAPR_SWJ_CFG_DISABLE_Msk (0x1UL << AFIO_MAPR_SWJ_CFG_DISABLE_Pos) /*!< 0x04000000 */
  1752. #define AFIO_MAPR_SWJ_CFG_DISABLE AFIO_MAPR_SWJ_CFG_DISABLE_Msk /*!< JTAG-DP Disabled and SW-DP Disabled */
  1753. /***************** Bit definition for AFIO_EXTICR1 register *****************/
  1754. #define AFIO_EXTICR1_EXTI0_Pos (0U)
  1755. #define AFIO_EXTICR1_EXTI0_Msk (0xFUL << AFIO_EXTICR1_EXTI0_Pos) /*!< 0x0000000F */
  1756. #define AFIO_EXTICR1_EXTI0 AFIO_EXTICR1_EXTI0_Msk /*!< EXTI 0 configuration */
  1757. #define AFIO_EXTICR1_EXTI1_Pos (4U)
  1758. #define AFIO_EXTICR1_EXTI1_Msk (0xFUL << AFIO_EXTICR1_EXTI1_Pos) /*!< 0x000000F0 */
  1759. #define AFIO_EXTICR1_EXTI1 AFIO_EXTICR1_EXTI1_Msk /*!< EXTI 1 configuration */
  1760. #define AFIO_EXTICR1_EXTI2_Pos (8U)
  1761. #define AFIO_EXTICR1_EXTI2_Msk (0xFUL << AFIO_EXTICR1_EXTI2_Pos) /*!< 0x00000F00 */
  1762. #define AFIO_EXTICR1_EXTI2 AFIO_EXTICR1_EXTI2_Msk /*!< EXTI 2 configuration */
  1763. #define AFIO_EXTICR1_EXTI3_Pos (12U)
  1764. #define AFIO_EXTICR1_EXTI3_Msk (0xFUL << AFIO_EXTICR1_EXTI3_Pos) /*!< 0x0000F000 */
  1765. #define AFIO_EXTICR1_EXTI3 AFIO_EXTICR1_EXTI3_Msk /*!< EXTI 3 configuration */
  1766. /*!< EXTI0 configuration */
  1767. #define AFIO_EXTICR1_EXTI0_PA 0x00000000U /*!< PA[0] pin */
  1768. #define AFIO_EXTICR1_EXTI0_PB_Pos (0U)
  1769. #define AFIO_EXTICR1_EXTI0_PB_Msk (0x1UL << AFIO_EXTICR1_EXTI0_PB_Pos) /*!< 0x00000001 */
  1770. #define AFIO_EXTICR1_EXTI0_PB AFIO_EXTICR1_EXTI0_PB_Msk /*!< PB[0] pin */
  1771. #define AFIO_EXTICR1_EXTI0_PC_Pos (1U)
  1772. #define AFIO_EXTICR1_EXTI0_PC_Msk (0x1UL << AFIO_EXTICR1_EXTI0_PC_Pos) /*!< 0x00000002 */
  1773. #define AFIO_EXTICR1_EXTI0_PC AFIO_EXTICR1_EXTI0_PC_Msk /*!< PC[0] pin */
  1774. #define AFIO_EXTICR1_EXTI0_PD_Pos (0U)
  1775. #define AFIO_EXTICR1_EXTI0_PD_Msk (0x3UL << AFIO_EXTICR1_EXTI0_PD_Pos) /*!< 0x00000003 */
  1776. #define AFIO_EXTICR1_EXTI0_PD AFIO_EXTICR1_EXTI0_PD_Msk /*!< PD[0] pin */
  1777. #define AFIO_EXTICR1_EXTI0_PE_Pos (2U)
  1778. #define AFIO_EXTICR1_EXTI0_PE_Msk (0x1UL << AFIO_EXTICR1_EXTI0_PE_Pos) /*!< 0x00000004 */
  1779. #define AFIO_EXTICR1_EXTI0_PE AFIO_EXTICR1_EXTI0_PE_Msk /*!< PE[0] pin */
  1780. #define AFIO_EXTICR1_EXTI0_PF_Pos (0U)
  1781. #define AFIO_EXTICR1_EXTI0_PF_Msk (0x5UL << AFIO_EXTICR1_EXTI0_PF_Pos) /*!< 0x00000005 */
  1782. #define AFIO_EXTICR1_EXTI0_PF AFIO_EXTICR1_EXTI0_PF_Msk /*!< PF[0] pin */
  1783. #define AFIO_EXTICR1_EXTI0_PG_Pos (1U)
  1784. #define AFIO_EXTICR1_EXTI0_PG_Msk (0x3UL << AFIO_EXTICR1_EXTI0_PG_Pos) /*!< 0x00000006 */
  1785. #define AFIO_EXTICR1_EXTI0_PG AFIO_EXTICR1_EXTI0_PG_Msk /*!< PG[0] pin */
  1786. /*!< EXTI1 configuration */
  1787. #define AFIO_EXTICR1_EXTI1_PA 0x00000000U /*!< PA[1] pin */
  1788. #define AFIO_EXTICR1_EXTI1_PB_Pos (4U)
  1789. #define AFIO_EXTICR1_EXTI1_PB_Msk (0x1UL << AFIO_EXTICR1_EXTI1_PB_Pos) /*!< 0x00000010 */
  1790. #define AFIO_EXTICR1_EXTI1_PB AFIO_EXTICR1_EXTI1_PB_Msk /*!< PB[1] pin */
  1791. #define AFIO_EXTICR1_EXTI1_PC_Pos (5U)
  1792. #define AFIO_EXTICR1_EXTI1_PC_Msk (0x1UL << AFIO_EXTICR1_EXTI1_PC_Pos) /*!< 0x00000020 */
  1793. #define AFIO_EXTICR1_EXTI1_PC AFIO_EXTICR1_EXTI1_PC_Msk /*!< PC[1] pin */
  1794. #define AFIO_EXTICR1_EXTI1_PD_Pos (4U)
  1795. #define AFIO_EXTICR1_EXTI1_PD_Msk (0x3UL << AFIO_EXTICR1_EXTI1_PD_Pos) /*!< 0x00000030 */
  1796. #define AFIO_EXTICR1_EXTI1_PD AFIO_EXTICR1_EXTI1_PD_Msk /*!< PD[1] pin */
  1797. #define AFIO_EXTICR1_EXTI1_PE_Pos (6U)
  1798. #define AFIO_EXTICR1_EXTI1_PE_Msk (0x1UL << AFIO_EXTICR1_EXTI1_PE_Pos) /*!< 0x00000040 */
  1799. #define AFIO_EXTICR1_EXTI1_PE AFIO_EXTICR1_EXTI1_PE_Msk /*!< PE[1] pin */
  1800. #define AFIO_EXTICR1_EXTI1_PF_Pos (4U)
  1801. #define AFIO_EXTICR1_EXTI1_PF_Msk (0x5UL << AFIO_EXTICR1_EXTI1_PF_Pos) /*!< 0x00000050 */
  1802. #define AFIO_EXTICR1_EXTI1_PF AFIO_EXTICR1_EXTI1_PF_Msk /*!< PF[1] pin */
  1803. #define AFIO_EXTICR1_EXTI1_PG_Pos (5U)
  1804. #define AFIO_EXTICR1_EXTI1_PG_Msk (0x3UL << AFIO_EXTICR1_EXTI1_PG_Pos) /*!< 0x00000060 */
  1805. #define AFIO_EXTICR1_EXTI1_PG AFIO_EXTICR1_EXTI1_PG_Msk /*!< PG[1] pin */
  1806. /*!< EXTI2 configuration */
  1807. #define AFIO_EXTICR1_EXTI2_PA 0x00000000U /*!< PA[2] pin */
  1808. #define AFIO_EXTICR1_EXTI2_PB_Pos (8U)
  1809. #define AFIO_EXTICR1_EXTI2_PB_Msk (0x1UL << AFIO_EXTICR1_EXTI2_PB_Pos) /*!< 0x00000100 */
  1810. #define AFIO_EXTICR1_EXTI2_PB AFIO_EXTICR1_EXTI2_PB_Msk /*!< PB[2] pin */
  1811. #define AFIO_EXTICR1_EXTI2_PC_Pos (9U)
  1812. #define AFIO_EXTICR1_EXTI2_PC_Msk (0x1UL << AFIO_EXTICR1_EXTI2_PC_Pos) /*!< 0x00000200 */
  1813. #define AFIO_EXTICR1_EXTI2_PC AFIO_EXTICR1_EXTI2_PC_Msk /*!< PC[2] pin */
  1814. #define AFIO_EXTICR1_EXTI2_PD_Pos (8U)
  1815. #define AFIO_EXTICR1_EXTI2_PD_Msk (0x3UL << AFIO_EXTICR1_EXTI2_PD_Pos) /*!< 0x00000300 */
  1816. #define AFIO_EXTICR1_EXTI2_PD AFIO_EXTICR1_EXTI2_PD_Msk /*!< PD[2] pin */
  1817. #define AFIO_EXTICR1_EXTI2_PE_Pos (10U)
  1818. #define AFIO_EXTICR1_EXTI2_PE_Msk (0x1UL << AFIO_EXTICR1_EXTI2_PE_Pos) /*!< 0x00000400 */
  1819. #define AFIO_EXTICR1_EXTI2_PE AFIO_EXTICR1_EXTI2_PE_Msk /*!< PE[2] pin */
  1820. #define AFIO_EXTICR1_EXTI2_PF_Pos (8U)
  1821. #define AFIO_EXTICR1_EXTI2_PF_Msk (0x5UL << AFIO_EXTICR1_EXTI2_PF_Pos) /*!< 0x00000500 */
  1822. #define AFIO_EXTICR1_EXTI2_PF AFIO_EXTICR1_EXTI2_PF_Msk /*!< PF[2] pin */
  1823. #define AFIO_EXTICR1_EXTI2_PG_Pos (9U)
  1824. #define AFIO_EXTICR1_EXTI2_PG_Msk (0x3UL << AFIO_EXTICR1_EXTI2_PG_Pos) /*!< 0x00000600 */
  1825. #define AFIO_EXTICR1_EXTI2_PG AFIO_EXTICR1_EXTI2_PG_Msk /*!< PG[2] pin */
  1826. /*!< EXTI3 configuration */
  1827. #define AFIO_EXTICR1_EXTI3_PA 0x00000000U /*!< PA[3] pin */
  1828. #define AFIO_EXTICR1_EXTI3_PB_Pos (12U)
  1829. #define AFIO_EXTICR1_EXTI3_PB_Msk (0x1UL << AFIO_EXTICR1_EXTI3_PB_Pos) /*!< 0x00001000 */
  1830. #define AFIO_EXTICR1_EXTI3_PB AFIO_EXTICR1_EXTI3_PB_Msk /*!< PB[3] pin */
  1831. #define AFIO_EXTICR1_EXTI3_PC_Pos (13U)
  1832. #define AFIO_EXTICR1_EXTI3_PC_Msk (0x1UL << AFIO_EXTICR1_EXTI3_PC_Pos) /*!< 0x00002000 */
  1833. #define AFIO_EXTICR1_EXTI3_PC AFIO_EXTICR1_EXTI3_PC_Msk /*!< PC[3] pin */
  1834. #define AFIO_EXTICR1_EXTI3_PD_Pos (12U)
  1835. #define AFIO_EXTICR1_EXTI3_PD_Msk (0x3UL << AFIO_EXTICR1_EXTI3_PD_Pos) /*!< 0x00003000 */
  1836. #define AFIO_EXTICR1_EXTI3_PD AFIO_EXTICR1_EXTI3_PD_Msk /*!< PD[3] pin */
  1837. #define AFIO_EXTICR1_EXTI3_PE_Pos (14U)
  1838. #define AFIO_EXTICR1_EXTI3_PE_Msk (0x1UL << AFIO_EXTICR1_EXTI3_PE_Pos) /*!< 0x00004000 */
  1839. #define AFIO_EXTICR1_EXTI3_PE AFIO_EXTICR1_EXTI3_PE_Msk /*!< PE[3] pin */
  1840. #define AFIO_EXTICR1_EXTI3_PF_Pos (12U)
  1841. #define AFIO_EXTICR1_EXTI3_PF_Msk (0x5UL << AFIO_EXTICR1_EXTI3_PF_Pos) /*!< 0x00005000 */
  1842. #define AFIO_EXTICR1_EXTI3_PF AFIO_EXTICR1_EXTI3_PF_Msk /*!< PF[3] pin */
  1843. #define AFIO_EXTICR1_EXTI3_PG_Pos (13U)
  1844. #define AFIO_EXTICR1_EXTI3_PG_Msk (0x3UL << AFIO_EXTICR1_EXTI3_PG_Pos) /*!< 0x00006000 */
  1845. #define AFIO_EXTICR1_EXTI3_PG AFIO_EXTICR1_EXTI3_PG_Msk /*!< PG[3] pin */
  1846. /***************** Bit definition for AFIO_EXTICR2 register *****************/
  1847. #define AFIO_EXTICR2_EXTI4_Pos (0U)
  1848. #define AFIO_EXTICR2_EXTI4_Msk (0xFUL << AFIO_EXTICR2_EXTI4_Pos) /*!< 0x0000000F */
  1849. #define AFIO_EXTICR2_EXTI4 AFIO_EXTICR2_EXTI4_Msk /*!< EXTI 4 configuration */
  1850. #define AFIO_EXTICR2_EXTI5_Pos (4U)
  1851. #define AFIO_EXTICR2_EXTI5_Msk (0xFUL << AFIO_EXTICR2_EXTI5_Pos) /*!< 0x000000F0 */
  1852. #define AFIO_EXTICR2_EXTI5 AFIO_EXTICR2_EXTI5_Msk /*!< EXTI 5 configuration */
  1853. #define AFIO_EXTICR2_EXTI6_Pos (8U)
  1854. #define AFIO_EXTICR2_EXTI6_Msk (0xFUL << AFIO_EXTICR2_EXTI6_Pos) /*!< 0x00000F00 */
  1855. #define AFIO_EXTICR2_EXTI6 AFIO_EXTICR2_EXTI6_Msk /*!< EXTI 6 configuration */
  1856. #define AFIO_EXTICR2_EXTI7_Pos (12U)
  1857. #define AFIO_EXTICR2_EXTI7_Msk (0xFUL << AFIO_EXTICR2_EXTI7_Pos) /*!< 0x0000F000 */
  1858. #define AFIO_EXTICR2_EXTI7 AFIO_EXTICR2_EXTI7_Msk /*!< EXTI 7 configuration */
  1859. /*!< EXTI4 configuration */
  1860. #define AFIO_EXTICR2_EXTI4_PA 0x00000000U /*!< PA[4] pin */
  1861. #define AFIO_EXTICR2_EXTI4_PB_Pos (0U)
  1862. #define AFIO_EXTICR2_EXTI4_PB_Msk (0x1UL << AFIO_EXTICR2_EXTI4_PB_Pos) /*!< 0x00000001 */
  1863. #define AFIO_EXTICR2_EXTI4_PB AFIO_EXTICR2_EXTI4_PB_Msk /*!< PB[4] pin */
  1864. #define AFIO_EXTICR2_EXTI4_PC_Pos (1U)
  1865. #define AFIO_EXTICR2_EXTI4_PC_Msk (0x1UL << AFIO_EXTICR2_EXTI4_PC_Pos) /*!< 0x00000002 */
  1866. #define AFIO_EXTICR2_EXTI4_PC AFIO_EXTICR2_EXTI4_PC_Msk /*!< PC[4] pin */
  1867. #define AFIO_EXTICR2_EXTI4_PD_Pos (0U)
  1868. #define AFIO_EXTICR2_EXTI4_PD_Msk (0x3UL << AFIO_EXTICR2_EXTI4_PD_Pos) /*!< 0x00000003 */
  1869. #define AFIO_EXTICR2_EXTI4_PD AFIO_EXTICR2_EXTI4_PD_Msk /*!< PD[4] pin */
  1870. #define AFIO_EXTICR2_EXTI4_PE_Pos (2U)
  1871. #define AFIO_EXTICR2_EXTI4_PE_Msk (0x1UL << AFIO_EXTICR2_EXTI4_PE_Pos) /*!< 0x00000004 */
  1872. #define AFIO_EXTICR2_EXTI4_PE AFIO_EXTICR2_EXTI4_PE_Msk /*!< PE[4] pin */
  1873. #define AFIO_EXTICR2_EXTI4_PF_Pos (0U)
  1874. #define AFIO_EXTICR2_EXTI4_PF_Msk (0x5UL << AFIO_EXTICR2_EXTI4_PF_Pos) /*!< 0x00000005 */
  1875. #define AFIO_EXTICR2_EXTI4_PF AFIO_EXTICR2_EXTI4_PF_Msk /*!< PF[4] pin */
  1876. #define AFIO_EXTICR2_EXTI4_PG_Pos (1U)
  1877. #define AFIO_EXTICR2_EXTI4_PG_Msk (0x3UL << AFIO_EXTICR2_EXTI4_PG_Pos) /*!< 0x00000006 */
  1878. #define AFIO_EXTICR2_EXTI4_PG AFIO_EXTICR2_EXTI4_PG_Msk /*!< PG[4] pin */
  1879. /* EXTI5 configuration */
  1880. #define AFIO_EXTICR2_EXTI5_PA 0x00000000U /*!< PA[5] pin */
  1881. #define AFIO_EXTICR2_EXTI5_PB_Pos (4U)
  1882. #define AFIO_EXTICR2_EXTI5_PB_Msk (0x1UL << AFIO_EXTICR2_EXTI5_PB_Pos) /*!< 0x00000010 */
  1883. #define AFIO_EXTICR2_EXTI5_PB AFIO_EXTICR2_EXTI5_PB_Msk /*!< PB[5] pin */
  1884. #define AFIO_EXTICR2_EXTI5_PC_Pos (5U)
  1885. #define AFIO_EXTICR2_EXTI5_PC_Msk (0x1UL << AFIO_EXTICR2_EXTI5_PC_Pos) /*!< 0x00000020 */
  1886. #define AFIO_EXTICR2_EXTI5_PC AFIO_EXTICR2_EXTI5_PC_Msk /*!< PC[5] pin */
  1887. #define AFIO_EXTICR2_EXTI5_PD_Pos (4U)
  1888. #define AFIO_EXTICR2_EXTI5_PD_Msk (0x3UL << AFIO_EXTICR2_EXTI5_PD_Pos) /*!< 0x00000030 */
  1889. #define AFIO_EXTICR2_EXTI5_PD AFIO_EXTICR2_EXTI5_PD_Msk /*!< PD[5] pin */
  1890. #define AFIO_EXTICR2_EXTI5_PE_Pos (6U)
  1891. #define AFIO_EXTICR2_EXTI5_PE_Msk (0x1UL << AFIO_EXTICR2_EXTI5_PE_Pos) /*!< 0x00000040 */
  1892. #define AFIO_EXTICR2_EXTI5_PE AFIO_EXTICR2_EXTI5_PE_Msk /*!< PE[5] pin */
  1893. #define AFIO_EXTICR2_EXTI5_PF_Pos (4U)
  1894. #define AFIO_EXTICR2_EXTI5_PF_Msk (0x5UL << AFIO_EXTICR2_EXTI5_PF_Pos) /*!< 0x00000050 */
  1895. #define AFIO_EXTICR2_EXTI5_PF AFIO_EXTICR2_EXTI5_PF_Msk /*!< PF[5] pin */
  1896. #define AFIO_EXTICR2_EXTI5_PG_Pos (5U)
  1897. #define AFIO_EXTICR2_EXTI5_PG_Msk (0x3UL << AFIO_EXTICR2_EXTI5_PG_Pos) /*!< 0x00000060 */
  1898. #define AFIO_EXTICR2_EXTI5_PG AFIO_EXTICR2_EXTI5_PG_Msk /*!< PG[5] pin */
  1899. /*!< EXTI6 configuration */
  1900. #define AFIO_EXTICR2_EXTI6_PA 0x00000000U /*!< PA[6] pin */
  1901. #define AFIO_EXTICR2_EXTI6_PB_Pos (8U)
  1902. #define AFIO_EXTICR2_EXTI6_PB_Msk (0x1UL << AFIO_EXTICR2_EXTI6_PB_Pos) /*!< 0x00000100 */
  1903. #define AFIO_EXTICR2_EXTI6_PB AFIO_EXTICR2_EXTI6_PB_Msk /*!< PB[6] pin */
  1904. #define AFIO_EXTICR2_EXTI6_PC_Pos (9U)
  1905. #define AFIO_EXTICR2_EXTI6_PC_Msk (0x1UL << AFIO_EXTICR2_EXTI6_PC_Pos) /*!< 0x00000200 */
  1906. #define AFIO_EXTICR2_EXTI6_PC AFIO_EXTICR2_EXTI6_PC_Msk /*!< PC[6] pin */
  1907. #define AFIO_EXTICR2_EXTI6_PD_Pos (8U)
  1908. #define AFIO_EXTICR2_EXTI6_PD_Msk (0x3UL << AFIO_EXTICR2_EXTI6_PD_Pos) /*!< 0x00000300 */
  1909. #define AFIO_EXTICR2_EXTI6_PD AFIO_EXTICR2_EXTI6_PD_Msk /*!< PD[6] pin */
  1910. #define AFIO_EXTICR2_EXTI6_PE_Pos (10U)
  1911. #define AFIO_EXTICR2_EXTI6_PE_Msk (0x1UL << AFIO_EXTICR2_EXTI6_PE_Pos) /*!< 0x00000400 */
  1912. #define AFIO_EXTICR2_EXTI6_PE AFIO_EXTICR2_EXTI6_PE_Msk /*!< PE[6] pin */
  1913. #define AFIO_EXTICR2_EXTI6_PF_Pos (8U)
  1914. #define AFIO_EXTICR2_EXTI6_PF_Msk (0x5UL << AFIO_EXTICR2_EXTI6_PF_Pos) /*!< 0x00000500 */
  1915. #define AFIO_EXTICR2_EXTI6_PF AFIO_EXTICR2_EXTI6_PF_Msk /*!< PF[6] pin */
  1916. #define AFIO_EXTICR2_EXTI6_PG_Pos (9U)
  1917. #define AFIO_EXTICR2_EXTI6_PG_Msk (0x3UL << AFIO_EXTICR2_EXTI6_PG_Pos) /*!< 0x00000600 */
  1918. #define AFIO_EXTICR2_EXTI6_PG AFIO_EXTICR2_EXTI6_PG_Msk /*!< PG[6] pin */
  1919. /*!< EXTI7 configuration */
  1920. #define AFIO_EXTICR2_EXTI7_PA 0x00000000U /*!< PA[7] pin */
  1921. #define AFIO_EXTICR2_EXTI7_PB_Pos (12U)
  1922. #define AFIO_EXTICR2_EXTI7_PB_Msk (0x1UL << AFIO_EXTICR2_EXTI7_PB_Pos) /*!< 0x00001000 */
  1923. #define AFIO_EXTICR2_EXTI7_PB AFIO_EXTICR2_EXTI7_PB_Msk /*!< PB[7] pin */
  1924. #define AFIO_EXTICR2_EXTI7_PC_Pos (13U)
  1925. #define AFIO_EXTICR2_EXTI7_PC_Msk (0x1UL << AFIO_EXTICR2_EXTI7_PC_Pos) /*!< 0x00002000 */
  1926. #define AFIO_EXTICR2_EXTI7_PC AFIO_EXTICR2_EXTI7_PC_Msk /*!< PC[7] pin */
  1927. #define AFIO_EXTICR2_EXTI7_PD_Pos (12U)
  1928. #define AFIO_EXTICR2_EXTI7_PD_Msk (0x3UL << AFIO_EXTICR2_EXTI7_PD_Pos) /*!< 0x00003000 */
  1929. #define AFIO_EXTICR2_EXTI7_PD AFIO_EXTICR2_EXTI7_PD_Msk /*!< PD[7] pin */
  1930. #define AFIO_EXTICR2_EXTI7_PE_Pos (14U)
  1931. #define AFIO_EXTICR2_EXTI7_PE_Msk (0x1UL << AFIO_EXTICR2_EXTI7_PE_Pos) /*!< 0x00004000 */
  1932. #define AFIO_EXTICR2_EXTI7_PE AFIO_EXTICR2_EXTI7_PE_Msk /*!< PE[7] pin */
  1933. #define AFIO_EXTICR2_EXTI7_PF_Pos (12U)
  1934. #define AFIO_EXTICR2_EXTI7_PF_Msk (0x5UL << AFIO_EXTICR2_EXTI7_PF_Pos) /*!< 0x00005000 */
  1935. #define AFIO_EXTICR2_EXTI7_PF AFIO_EXTICR2_EXTI7_PF_Msk /*!< PF[7] pin */
  1936. #define AFIO_EXTICR2_EXTI7_PG_Pos (13U)
  1937. #define AFIO_EXTICR2_EXTI7_PG_Msk (0x3UL << AFIO_EXTICR2_EXTI7_PG_Pos) /*!< 0x00006000 */
  1938. #define AFIO_EXTICR2_EXTI7_PG AFIO_EXTICR2_EXTI7_PG_Msk /*!< PG[7] pin */
  1939. /***************** Bit definition for AFIO_EXTICR3 register *****************/
  1940. #define AFIO_EXTICR3_EXTI8_Pos (0U)
  1941. #define AFIO_EXTICR3_EXTI8_Msk (0xFUL << AFIO_EXTICR3_EXTI8_Pos) /*!< 0x0000000F */
  1942. #define AFIO_EXTICR3_EXTI8 AFIO_EXTICR3_EXTI8_Msk /*!< EXTI 8 configuration */
  1943. #define AFIO_EXTICR3_EXTI9_Pos (4U)
  1944. #define AFIO_EXTICR3_EXTI9_Msk (0xFUL << AFIO_EXTICR3_EXTI9_Pos) /*!< 0x000000F0 */
  1945. #define AFIO_EXTICR3_EXTI9 AFIO_EXTICR3_EXTI9_Msk /*!< EXTI 9 configuration */
  1946. #define AFIO_EXTICR3_EXTI10_Pos (8U)
  1947. #define AFIO_EXTICR3_EXTI10_Msk (0xFUL << AFIO_EXTICR3_EXTI10_Pos) /*!< 0x00000F00 */
  1948. #define AFIO_EXTICR3_EXTI10 AFIO_EXTICR3_EXTI10_Msk /*!< EXTI 10 configuration */
  1949. #define AFIO_EXTICR3_EXTI11_Pos (12U)
  1950. #define AFIO_EXTICR3_EXTI11_Msk (0xFUL << AFIO_EXTICR3_EXTI11_Pos) /*!< 0x0000F000 */
  1951. #define AFIO_EXTICR3_EXTI11 AFIO_EXTICR3_EXTI11_Msk /*!< EXTI 11 configuration */
  1952. /*!< EXTI8 configuration */
  1953. #define AFIO_EXTICR3_EXTI8_PA 0x00000000U /*!< PA[8] pin */
  1954. #define AFIO_EXTICR3_EXTI8_PB_Pos (0U)
  1955. #define AFIO_EXTICR3_EXTI8_PB_Msk (0x1UL << AFIO_EXTICR3_EXTI8_PB_Pos) /*!< 0x00000001 */
  1956. #define AFIO_EXTICR3_EXTI8_PB AFIO_EXTICR3_EXTI8_PB_Msk /*!< PB[8] pin */
  1957. #define AFIO_EXTICR3_EXTI8_PC_Pos (1U)
  1958. #define AFIO_EXTICR3_EXTI8_PC_Msk (0x1UL << AFIO_EXTICR3_EXTI8_PC_Pos) /*!< 0x00000002 */
  1959. #define AFIO_EXTICR3_EXTI8_PC AFIO_EXTICR3_EXTI8_PC_Msk /*!< PC[8] pin */
  1960. #define AFIO_EXTICR3_EXTI8_PD_Pos (0U)
  1961. #define AFIO_EXTICR3_EXTI8_PD_Msk (0x3UL << AFIO_EXTICR3_EXTI8_PD_Pos) /*!< 0x00000003 */
  1962. #define AFIO_EXTICR3_EXTI8_PD AFIO_EXTICR3_EXTI8_PD_Msk /*!< PD[8] pin */
  1963. #define AFIO_EXTICR3_EXTI8_PE_Pos (2U)
  1964. #define AFIO_EXTICR3_EXTI8_PE_Msk (0x1UL << AFIO_EXTICR3_EXTI8_PE_Pos) /*!< 0x00000004 */
  1965. #define AFIO_EXTICR3_EXTI8_PE AFIO_EXTICR3_EXTI8_PE_Msk /*!< PE[8] pin */
  1966. #define AFIO_EXTICR3_EXTI8_PF_Pos (0U)
  1967. #define AFIO_EXTICR3_EXTI8_PF_Msk (0x5UL << AFIO_EXTICR3_EXTI8_PF_Pos) /*!< 0x00000005 */
  1968. #define AFIO_EXTICR3_EXTI8_PF AFIO_EXTICR3_EXTI8_PF_Msk /*!< PF[8] pin */
  1969. #define AFIO_EXTICR3_EXTI8_PG_Pos (1U)
  1970. #define AFIO_EXTICR3_EXTI8_PG_Msk (0x3UL << AFIO_EXTICR3_EXTI8_PG_Pos) /*!< 0x00000006 */
  1971. #define AFIO_EXTICR3_EXTI8_PG AFIO_EXTICR3_EXTI8_PG_Msk /*!< PG[8] pin */
  1972. /*!< EXTI9 configuration */
  1973. #define AFIO_EXTICR3_EXTI9_PA 0x00000000U /*!< PA[9] pin */
  1974. #define AFIO_EXTICR3_EXTI9_PB_Pos (4U)
  1975. #define AFIO_EXTICR3_EXTI9_PB_Msk (0x1UL << AFIO_EXTICR3_EXTI9_PB_Pos) /*!< 0x00000010 */
  1976. #define AFIO_EXTICR3_EXTI9_PB AFIO_EXTICR3_EXTI9_PB_Msk /*!< PB[9] pin */
  1977. #define AFIO_EXTICR3_EXTI9_PC_Pos (5U)
  1978. #define AFIO_EXTICR3_EXTI9_PC_Msk (0x1UL << AFIO_EXTICR3_EXTI9_PC_Pos) /*!< 0x00000020 */
  1979. #define AFIO_EXTICR3_EXTI9_PC AFIO_EXTICR3_EXTI9_PC_Msk /*!< PC[9] pin */
  1980. #define AFIO_EXTICR3_EXTI9_PD_Pos (4U)
  1981. #define AFIO_EXTICR3_EXTI9_PD_Msk (0x3UL << AFIO_EXTICR3_EXTI9_PD_Pos) /*!< 0x00000030 */
  1982. #define AFIO_EXTICR3_EXTI9_PD AFIO_EXTICR3_EXTI9_PD_Msk /*!< PD[9] pin */
  1983. #define AFIO_EXTICR3_EXTI9_PE_Pos (6U)
  1984. #define AFIO_EXTICR3_EXTI9_PE_Msk (0x1UL << AFIO_EXTICR3_EXTI9_PE_Pos) /*!< 0x00000040 */
  1985. #define AFIO_EXTICR3_EXTI9_PE AFIO_EXTICR3_EXTI9_PE_Msk /*!< PE[9] pin */
  1986. #define AFIO_EXTICR3_EXTI9_PF_Pos (4U)
  1987. #define AFIO_EXTICR3_EXTI9_PF_Msk (0x5UL << AFIO_EXTICR3_EXTI9_PF_Pos) /*!< 0x00000050 */
  1988. #define AFIO_EXTICR3_EXTI9_PF AFIO_EXTICR3_EXTI9_PF_Msk /*!< PF[9] pin */
  1989. #define AFIO_EXTICR3_EXTI9_PG_Pos (5U)
  1990. #define AFIO_EXTICR3_EXTI9_PG_Msk (0x3UL << AFIO_EXTICR3_EXTI9_PG_Pos) /*!< 0x00000060 */
  1991. #define AFIO_EXTICR3_EXTI9_PG AFIO_EXTICR3_EXTI9_PG_Msk /*!< PG[9] pin */
  1992. /*!< EXTI10 configuration */
  1993. #define AFIO_EXTICR3_EXTI10_PA 0x00000000U /*!< PA[10] pin */
  1994. #define AFIO_EXTICR3_EXTI10_PB_Pos (8U)
  1995. #define AFIO_EXTICR3_EXTI10_PB_Msk (0x1UL << AFIO_EXTICR3_EXTI10_PB_Pos) /*!< 0x00000100 */
  1996. #define AFIO_EXTICR3_EXTI10_PB AFIO_EXTICR3_EXTI10_PB_Msk /*!< PB[10] pin */
  1997. #define AFIO_EXTICR3_EXTI10_PC_Pos (9U)
  1998. #define AFIO_EXTICR3_EXTI10_PC_Msk (0x1UL << AFIO_EXTICR3_EXTI10_PC_Pos) /*!< 0x00000200 */
  1999. #define AFIO_EXTICR3_EXTI10_PC AFIO_EXTICR3_EXTI10_PC_Msk /*!< PC[10] pin */
  2000. #define AFIO_EXTICR3_EXTI10_PD_Pos (8U)
  2001. #define AFIO_EXTICR3_EXTI10_PD_Msk (0x3UL << AFIO_EXTICR3_EXTI10_PD_Pos) /*!< 0x00000300 */
  2002. #define AFIO_EXTICR3_EXTI10_PD AFIO_EXTICR3_EXTI10_PD_Msk /*!< PD[10] pin */
  2003. #define AFIO_EXTICR3_EXTI10_PE_Pos (10U)
  2004. #define AFIO_EXTICR3_EXTI10_PE_Msk (0x1UL << AFIO_EXTICR3_EXTI10_PE_Pos) /*!< 0x00000400 */
  2005. #define AFIO_EXTICR3_EXTI10_PE AFIO_EXTICR3_EXTI10_PE_Msk /*!< PE[10] pin */
  2006. #define AFIO_EXTICR3_EXTI10_PF_Pos (8U)
  2007. #define AFIO_EXTICR3_EXTI10_PF_Msk (0x5UL << AFIO_EXTICR3_EXTI10_PF_Pos) /*!< 0x00000500 */
  2008. #define AFIO_EXTICR3_EXTI10_PF AFIO_EXTICR3_EXTI10_PF_Msk /*!< PF[10] pin */
  2009. #define AFIO_EXTICR3_EXTI10_PG_Pos (9U)
  2010. #define AFIO_EXTICR3_EXTI10_PG_Msk (0x3UL << AFIO_EXTICR3_EXTI10_PG_Pos) /*!< 0x00000600 */
  2011. #define AFIO_EXTICR3_EXTI10_PG AFIO_EXTICR3_EXTI10_PG_Msk /*!< PG[10] pin */
  2012. /*!< EXTI11 configuration */
  2013. #define AFIO_EXTICR3_EXTI11_PA 0x00000000U /*!< PA[11] pin */
  2014. #define AFIO_EXTICR3_EXTI11_PB_Pos (12U)
  2015. #define AFIO_EXTICR3_EXTI11_PB_Msk (0x1UL << AFIO_EXTICR3_EXTI11_PB_Pos) /*!< 0x00001000 */
  2016. #define AFIO_EXTICR3_EXTI11_PB AFIO_EXTICR3_EXTI11_PB_Msk /*!< PB[11] pin */
  2017. #define AFIO_EXTICR3_EXTI11_PC_Pos (13U)
  2018. #define AFIO_EXTICR3_EXTI11_PC_Msk (0x1UL << AFIO_EXTICR3_EXTI11_PC_Pos) /*!< 0x00002000 */
  2019. #define AFIO_EXTICR3_EXTI11_PC AFIO_EXTICR3_EXTI11_PC_Msk /*!< PC[11] pin */
  2020. #define AFIO_EXTICR3_EXTI11_PD_Pos (12U)
  2021. #define AFIO_EXTICR3_EXTI11_PD_Msk (0x3UL << AFIO_EXTICR3_EXTI11_PD_Pos) /*!< 0x00003000 */
  2022. #define AFIO_EXTICR3_EXTI11_PD AFIO_EXTICR3_EXTI11_PD_Msk /*!< PD[11] pin */
  2023. #define AFIO_EXTICR3_EXTI11_PE_Pos (14U)
  2024. #define AFIO_EXTICR3_EXTI11_PE_Msk (0x1UL << AFIO_EXTICR3_EXTI11_PE_Pos) /*!< 0x00004000 */
  2025. #define AFIO_EXTICR3_EXTI11_PE AFIO_EXTICR3_EXTI11_PE_Msk /*!< PE[11] pin */
  2026. #define AFIO_EXTICR3_EXTI11_PF_Pos (12U)
  2027. #define AFIO_EXTICR3_EXTI11_PF_Msk (0x5UL << AFIO_EXTICR3_EXTI11_PF_Pos) /*!< 0x00005000 */
  2028. #define AFIO_EXTICR3_EXTI11_PF AFIO_EXTICR3_EXTI11_PF_Msk /*!< PF[11] pin */
  2029. #define AFIO_EXTICR3_EXTI11_PG_Pos (13U)
  2030. #define AFIO_EXTICR3_EXTI11_PG_Msk (0x3UL << AFIO_EXTICR3_EXTI11_PG_Pos) /*!< 0x00006000 */
  2031. #define AFIO_EXTICR3_EXTI11_PG AFIO_EXTICR3_EXTI11_PG_Msk /*!< PG[11] pin */
  2032. /***************** Bit definition for AFIO_EXTICR4 register *****************/
  2033. #define AFIO_EXTICR4_EXTI12_Pos (0U)
  2034. #define AFIO_EXTICR4_EXTI12_Msk (0xFUL << AFIO_EXTICR4_EXTI12_Pos) /*!< 0x0000000F */
  2035. #define AFIO_EXTICR4_EXTI12 AFIO_EXTICR4_EXTI12_Msk /*!< EXTI 12 configuration */
  2036. #define AFIO_EXTICR4_EXTI13_Pos (4U)
  2037. #define AFIO_EXTICR4_EXTI13_Msk (0xFUL << AFIO_EXTICR4_EXTI13_Pos) /*!< 0x000000F0 */
  2038. #define AFIO_EXTICR4_EXTI13 AFIO_EXTICR4_EXTI13_Msk /*!< EXTI 13 configuration */
  2039. #define AFIO_EXTICR4_EXTI14_Pos (8U)
  2040. #define AFIO_EXTICR4_EXTI14_Msk (0xFUL << AFIO_EXTICR4_EXTI14_Pos) /*!< 0x00000F00 */
  2041. #define AFIO_EXTICR4_EXTI14 AFIO_EXTICR4_EXTI14_Msk /*!< EXTI 14 configuration */
  2042. #define AFIO_EXTICR4_EXTI15_Pos (12U)
  2043. #define AFIO_EXTICR4_EXTI15_Msk (0xFUL << AFIO_EXTICR4_EXTI15_Pos) /*!< 0x0000F000 */
  2044. #define AFIO_EXTICR4_EXTI15 AFIO_EXTICR4_EXTI15_Msk /*!< EXTI 15 configuration */
  2045. /* EXTI12 configuration */
  2046. #define AFIO_EXTICR4_EXTI12_PA 0x00000000U /*!< PA[12] pin */
  2047. #define AFIO_EXTICR4_EXTI12_PB_Pos (0U)
  2048. #define AFIO_EXTICR4_EXTI12_PB_Msk (0x1UL << AFIO_EXTICR4_EXTI12_PB_Pos) /*!< 0x00000001 */
  2049. #define AFIO_EXTICR4_EXTI12_PB AFIO_EXTICR4_EXTI12_PB_Msk /*!< PB[12] pin */
  2050. #define AFIO_EXTICR4_EXTI12_PC_Pos (1U)
  2051. #define AFIO_EXTICR4_EXTI12_PC_Msk (0x1UL << AFIO_EXTICR4_EXTI12_PC_Pos) /*!< 0x00000002 */
  2052. #define AFIO_EXTICR4_EXTI12_PC AFIO_EXTICR4_EXTI12_PC_Msk /*!< PC[12] pin */
  2053. #define AFIO_EXTICR4_EXTI12_PD_Pos (0U)
  2054. #define AFIO_EXTICR4_EXTI12_PD_Msk (0x3UL << AFIO_EXTICR4_EXTI12_PD_Pos) /*!< 0x00000003 */
  2055. #define AFIO_EXTICR4_EXTI12_PD AFIO_EXTICR4_EXTI12_PD_Msk /*!< PD[12] pin */
  2056. #define AFIO_EXTICR4_EXTI12_PE_Pos (2U)
  2057. #define AFIO_EXTICR4_EXTI12_PE_Msk (0x1UL << AFIO_EXTICR4_EXTI12_PE_Pos) /*!< 0x00000004 */
  2058. #define AFIO_EXTICR4_EXTI12_PE AFIO_EXTICR4_EXTI12_PE_Msk /*!< PE[12] pin */
  2059. #define AFIO_EXTICR4_EXTI12_PF_Pos (0U)
  2060. #define AFIO_EXTICR4_EXTI12_PF_Msk (0x5UL << AFIO_EXTICR4_EXTI12_PF_Pos) /*!< 0x00000005 */
  2061. #define AFIO_EXTICR4_EXTI12_PF AFIO_EXTICR4_EXTI12_PF_Msk /*!< PF[12] pin */
  2062. #define AFIO_EXTICR4_EXTI12_PG_Pos (1U)
  2063. #define AFIO_EXTICR4_EXTI12_PG_Msk (0x3UL << AFIO_EXTICR4_EXTI12_PG_Pos) /*!< 0x00000006 */
  2064. #define AFIO_EXTICR4_EXTI12_PG AFIO_EXTICR4_EXTI12_PG_Msk /*!< PG[12] pin */
  2065. /* EXTI13 configuration */
  2066. #define AFIO_EXTICR4_EXTI13_PA 0x00000000U /*!< PA[13] pin */
  2067. #define AFIO_EXTICR4_EXTI13_PB_Pos (4U)
  2068. #define AFIO_EXTICR4_EXTI13_PB_Msk (0x1UL << AFIO_EXTICR4_EXTI13_PB_Pos) /*!< 0x00000010 */
  2069. #define AFIO_EXTICR4_EXTI13_PB AFIO_EXTICR4_EXTI13_PB_Msk /*!< PB[13] pin */
  2070. #define AFIO_EXTICR4_EXTI13_PC_Pos (5U)
  2071. #define AFIO_EXTICR4_EXTI13_PC_Msk (0x1UL << AFIO_EXTICR4_EXTI13_PC_Pos) /*!< 0x00000020 */
  2072. #define AFIO_EXTICR4_EXTI13_PC AFIO_EXTICR4_EXTI13_PC_Msk /*!< PC[13] pin */
  2073. #define AFIO_EXTICR4_EXTI13_PD_Pos (4U)
  2074. #define AFIO_EXTICR4_EXTI13_PD_Msk (0x3UL << AFIO_EXTICR4_EXTI13_PD_Pos) /*!< 0x00000030 */
  2075. #define AFIO_EXTICR4_EXTI13_PD AFIO_EXTICR4_EXTI13_PD_Msk /*!< PD[13] pin */
  2076. #define AFIO_EXTICR4_EXTI13_PE_Pos (6U)
  2077. #define AFIO_EXTICR4_EXTI13_PE_Msk (0x1UL << AFIO_EXTICR4_EXTI13_PE_Pos) /*!< 0x00000040 */
  2078. #define AFIO_EXTICR4_EXTI13_PE AFIO_EXTICR4_EXTI13_PE_Msk /*!< PE[13] pin */
  2079. #define AFIO_EXTICR4_EXTI13_PF_Pos (4U)
  2080. #define AFIO_EXTICR4_EXTI13_PF_Msk (0x5UL << AFIO_EXTICR4_EXTI13_PF_Pos) /*!< 0x00000050 */
  2081. #define AFIO_EXTICR4_EXTI13_PF AFIO_EXTICR4_EXTI13_PF_Msk /*!< PF[13] pin */
  2082. #define AFIO_EXTICR4_EXTI13_PG_Pos (5U)
  2083. #define AFIO_EXTICR4_EXTI13_PG_Msk (0x3UL << AFIO_EXTICR4_EXTI13_PG_Pos) /*!< 0x00000060 */
  2084. #define AFIO_EXTICR4_EXTI13_PG AFIO_EXTICR4_EXTI13_PG_Msk /*!< PG[13] pin */
  2085. /*!< EXTI14 configuration */
  2086. #define AFIO_EXTICR4_EXTI14_PA 0x00000000U /*!< PA[14] pin */
  2087. #define AFIO_EXTICR4_EXTI14_PB_Pos (8U)
  2088. #define AFIO_EXTICR4_EXTI14_PB_Msk (0x1UL << AFIO_EXTICR4_EXTI14_PB_Pos) /*!< 0x00000100 */
  2089. #define AFIO_EXTICR4_EXTI14_PB AFIO_EXTICR4_EXTI14_PB_Msk /*!< PB[14] pin */
  2090. #define AFIO_EXTICR4_EXTI14_PC_Pos (9U)
  2091. #define AFIO_EXTICR4_EXTI14_PC_Msk (0x1UL << AFIO_EXTICR4_EXTI14_PC_Pos) /*!< 0x00000200 */
  2092. #define AFIO_EXTICR4_EXTI14_PC AFIO_EXTICR4_EXTI14_PC_Msk /*!< PC[14] pin */
  2093. #define AFIO_EXTICR4_EXTI14_PD_Pos (8U)
  2094. #define AFIO_EXTICR4_EXTI14_PD_Msk (0x3UL << AFIO_EXTICR4_EXTI14_PD_Pos) /*!< 0x00000300 */
  2095. #define AFIO_EXTICR4_EXTI14_PD AFIO_EXTICR4_EXTI14_PD_Msk /*!< PD[14] pin */
  2096. #define AFIO_EXTICR4_EXTI14_PE_Pos (10U)
  2097. #define AFIO_EXTICR4_EXTI14_PE_Msk (0x1UL << AFIO_EXTICR4_EXTI14_PE_Pos) /*!< 0x00000400 */
  2098. #define AFIO_EXTICR4_EXTI14_PE AFIO_EXTICR4_EXTI14_PE_Msk /*!< PE[14] pin */
  2099. #define AFIO_EXTICR4_EXTI14_PF_Pos (8U)
  2100. #define AFIO_EXTICR4_EXTI14_PF_Msk (0x5UL << AFIO_EXTICR4_EXTI14_PF_Pos) /*!< 0x00000500 */
  2101. #define AFIO_EXTICR4_EXTI14_PF AFIO_EXTICR4_EXTI14_PF_Msk /*!< PF[14] pin */
  2102. #define AFIO_EXTICR4_EXTI14_PG_Pos (9U)
  2103. #define AFIO_EXTICR4_EXTI14_PG_Msk (0x3UL << AFIO_EXTICR4_EXTI14_PG_Pos) /*!< 0x00000600 */
  2104. #define AFIO_EXTICR4_EXTI14_PG AFIO_EXTICR4_EXTI14_PG_Msk /*!< PG[14] pin */
  2105. /*!< EXTI15 configuration */
  2106. #define AFIO_EXTICR4_EXTI15_PA 0x00000000U /*!< PA[15] pin */
  2107. #define AFIO_EXTICR4_EXTI15_PB_Pos (12U)
  2108. #define AFIO_EXTICR4_EXTI15_PB_Msk (0x1UL << AFIO_EXTICR4_EXTI15_PB_Pos) /*!< 0x00001000 */
  2109. #define AFIO_EXTICR4_EXTI15_PB AFIO_EXTICR4_EXTI15_PB_Msk /*!< PB[15] pin */
  2110. #define AFIO_EXTICR4_EXTI15_PC_Pos (13U)
  2111. #define AFIO_EXTICR4_EXTI15_PC_Msk (0x1UL << AFIO_EXTICR4_EXTI15_PC_Pos) /*!< 0x00002000 */
  2112. #define AFIO_EXTICR4_EXTI15_PC AFIO_EXTICR4_EXTI15_PC_Msk /*!< PC[15] pin */
  2113. #define AFIO_EXTICR4_EXTI15_PD_Pos (12U)
  2114. #define AFIO_EXTICR4_EXTI15_PD_Msk (0x3UL << AFIO_EXTICR4_EXTI15_PD_Pos) /*!< 0x00003000 */
  2115. #define AFIO_EXTICR4_EXTI15_PD AFIO_EXTICR4_EXTI15_PD_Msk /*!< PD[15] pin */
  2116. #define AFIO_EXTICR4_EXTI15_PE_Pos (14U)
  2117. #define AFIO_EXTICR4_EXTI15_PE_Msk (0x1UL << AFIO_EXTICR4_EXTI15_PE_Pos) /*!< 0x00004000 */
  2118. #define AFIO_EXTICR4_EXTI15_PE AFIO_EXTICR4_EXTI15_PE_Msk /*!< PE[15] pin */
  2119. #define AFIO_EXTICR4_EXTI15_PF_Pos (12U)
  2120. #define AFIO_EXTICR4_EXTI15_PF_Msk (0x5UL << AFIO_EXTICR4_EXTI15_PF_Pos) /*!< 0x00005000 */
  2121. #define AFIO_EXTICR4_EXTI15_PF AFIO_EXTICR4_EXTI15_PF_Msk /*!< PF[15] pin */
  2122. #define AFIO_EXTICR4_EXTI15_PG_Pos (13U)
  2123. #define AFIO_EXTICR4_EXTI15_PG_Msk (0x3UL << AFIO_EXTICR4_EXTI15_PG_Pos) /*!< 0x00006000 */
  2124. #define AFIO_EXTICR4_EXTI15_PG AFIO_EXTICR4_EXTI15_PG_Msk /*!< PG[15] pin */
  2125. /****************** Bit definition for AFIO_MAPR2 register ******************/
  2126. /******************************************************************************/
  2127. /* */
  2128. /* External Interrupt/Event Controller */
  2129. /* */
  2130. /******************************************************************************/
  2131. /******************* Bit definition for EXTI_IMR register *******************/
  2132. #define EXTI_IMR_MR0_Pos (0U)
  2133. #define EXTI_IMR_MR0_Msk (0x1UL << EXTI_IMR_MR0_Pos) /*!< 0x00000001 */
  2134. #define EXTI_IMR_MR0 EXTI_IMR_MR0_Msk /*!< Interrupt Mask on line 0 */
  2135. #define EXTI_IMR_MR1_Pos (1U)
  2136. #define EXTI_IMR_MR1_Msk (0x1UL << EXTI_IMR_MR1_Pos) /*!< 0x00000002 */
  2137. #define EXTI_IMR_MR1 EXTI_IMR_MR1_Msk /*!< Interrupt Mask on line 1 */
  2138. #define EXTI_IMR_MR2_Pos (2U)
  2139. #define EXTI_IMR_MR2_Msk (0x1UL << EXTI_IMR_MR2_Pos) /*!< 0x00000004 */
  2140. #define EXTI_IMR_MR2 EXTI_IMR_MR2_Msk /*!< Interrupt Mask on line 2 */
  2141. #define EXTI_IMR_MR3_Pos (3U)
  2142. #define EXTI_IMR_MR3_Msk (0x1UL << EXTI_IMR_MR3_Pos) /*!< 0x00000008 */
  2143. #define EXTI_IMR_MR3 EXTI_IMR_MR3_Msk /*!< Interrupt Mask on line 3 */
  2144. #define EXTI_IMR_MR4_Pos (4U)
  2145. #define EXTI_IMR_MR4_Msk (0x1UL << EXTI_IMR_MR4_Pos) /*!< 0x00000010 */
  2146. #define EXTI_IMR_MR4 EXTI_IMR_MR4_Msk /*!< Interrupt Mask on line 4 */
  2147. #define EXTI_IMR_MR5_Pos (5U)
  2148. #define EXTI_IMR_MR5_Msk (0x1UL << EXTI_IMR_MR5_Pos) /*!< 0x00000020 */
  2149. #define EXTI_IMR_MR5 EXTI_IMR_MR5_Msk /*!< Interrupt Mask on line 5 */
  2150. #define EXTI_IMR_MR6_Pos (6U)
  2151. #define EXTI_IMR_MR6_Msk (0x1UL << EXTI_IMR_MR6_Pos) /*!< 0x00000040 */
  2152. #define EXTI_IMR_MR6 EXTI_IMR_MR6_Msk /*!< Interrupt Mask on line 6 */
  2153. #define EXTI_IMR_MR7_Pos (7U)
  2154. #define EXTI_IMR_MR7_Msk (0x1UL << EXTI_IMR_MR7_Pos) /*!< 0x00000080 */
  2155. #define EXTI_IMR_MR7 EXTI_IMR_MR7_Msk /*!< Interrupt Mask on line 7 */
  2156. #define EXTI_IMR_MR8_Pos (8U)
  2157. #define EXTI_IMR_MR8_Msk (0x1UL << EXTI_IMR_MR8_Pos) /*!< 0x00000100 */
  2158. #define EXTI_IMR_MR8 EXTI_IMR_MR8_Msk /*!< Interrupt Mask on line 8 */
  2159. #define EXTI_IMR_MR9_Pos (9U)
  2160. #define EXTI_IMR_MR9_Msk (0x1UL << EXTI_IMR_MR9_Pos) /*!< 0x00000200 */
  2161. #define EXTI_IMR_MR9 EXTI_IMR_MR9_Msk /*!< Interrupt Mask on line 9 */
  2162. #define EXTI_IMR_MR10_Pos (10U)
  2163. #define EXTI_IMR_MR10_Msk (0x1UL << EXTI_IMR_MR10_Pos) /*!< 0x00000400 */
  2164. #define EXTI_IMR_MR10 EXTI_IMR_MR10_Msk /*!< Interrupt Mask on line 10 */
  2165. #define EXTI_IMR_MR11_Pos (11U)
  2166. #define EXTI_IMR_MR11_Msk (0x1UL << EXTI_IMR_MR11_Pos) /*!< 0x00000800 */
  2167. #define EXTI_IMR_MR11 EXTI_IMR_MR11_Msk /*!< Interrupt Mask on line 11 */
  2168. #define EXTI_IMR_MR12_Pos (12U)
  2169. #define EXTI_IMR_MR12_Msk (0x1UL << EXTI_IMR_MR12_Pos) /*!< 0x00001000 */
  2170. #define EXTI_IMR_MR12 EXTI_IMR_MR12_Msk /*!< Interrupt Mask on line 12 */
  2171. #define EXTI_IMR_MR13_Pos (13U)
  2172. #define EXTI_IMR_MR13_Msk (0x1UL << EXTI_IMR_MR13_Pos) /*!< 0x00002000 */
  2173. #define EXTI_IMR_MR13 EXTI_IMR_MR13_Msk /*!< Interrupt Mask on line 13 */
  2174. #define EXTI_IMR_MR14_Pos (14U)
  2175. #define EXTI_IMR_MR14_Msk (0x1UL << EXTI_IMR_MR14_Pos) /*!< 0x00004000 */
  2176. #define EXTI_IMR_MR14 EXTI_IMR_MR14_Msk /*!< Interrupt Mask on line 14 */
  2177. #define EXTI_IMR_MR15_Pos (15U)
  2178. #define EXTI_IMR_MR15_Msk (0x1UL << EXTI_IMR_MR15_Pos) /*!< 0x00008000 */
  2179. #define EXTI_IMR_MR15 EXTI_IMR_MR15_Msk /*!< Interrupt Mask on line 15 */
  2180. #define EXTI_IMR_MR16_Pos (16U)
  2181. #define EXTI_IMR_MR16_Msk (0x1UL << EXTI_IMR_MR16_Pos) /*!< 0x00010000 */
  2182. #define EXTI_IMR_MR16 EXTI_IMR_MR16_Msk /*!< Interrupt Mask on line 16 */
  2183. #define EXTI_IMR_MR17_Pos (17U)
  2184. #define EXTI_IMR_MR17_Msk (0x1UL << EXTI_IMR_MR17_Pos) /*!< 0x00020000 */
  2185. #define EXTI_IMR_MR17 EXTI_IMR_MR17_Msk /*!< Interrupt Mask on line 17 */
  2186. #define EXTI_IMR_MR18_Pos (18U)
  2187. #define EXTI_IMR_MR18_Msk (0x1UL << EXTI_IMR_MR18_Pos) /*!< 0x00040000 */
  2188. #define EXTI_IMR_MR18 EXTI_IMR_MR18_Msk /*!< Interrupt Mask on line 18 */
  2189. /* References Defines */
  2190. #define EXTI_IMR_IM0 EXTI_IMR_MR0
  2191. #define EXTI_IMR_IM1 EXTI_IMR_MR1
  2192. #define EXTI_IMR_IM2 EXTI_IMR_MR2
  2193. #define EXTI_IMR_IM3 EXTI_IMR_MR3
  2194. #define EXTI_IMR_IM4 EXTI_IMR_MR4
  2195. #define EXTI_IMR_IM5 EXTI_IMR_MR5
  2196. #define EXTI_IMR_IM6 EXTI_IMR_MR6
  2197. #define EXTI_IMR_IM7 EXTI_IMR_MR7
  2198. #define EXTI_IMR_IM8 EXTI_IMR_MR8
  2199. #define EXTI_IMR_IM9 EXTI_IMR_MR9
  2200. #define EXTI_IMR_IM10 EXTI_IMR_MR10
  2201. #define EXTI_IMR_IM11 EXTI_IMR_MR11
  2202. #define EXTI_IMR_IM12 EXTI_IMR_MR12
  2203. #define EXTI_IMR_IM13 EXTI_IMR_MR13
  2204. #define EXTI_IMR_IM14 EXTI_IMR_MR14
  2205. #define EXTI_IMR_IM15 EXTI_IMR_MR15
  2206. #define EXTI_IMR_IM16 EXTI_IMR_MR16
  2207. #define EXTI_IMR_IM17 EXTI_IMR_MR17
  2208. #define EXTI_IMR_IM18 EXTI_IMR_MR18
  2209. #define EXTI_IMR_IM 0x0007FFFFU /*!< Interrupt Mask All */
  2210. /******************* Bit definition for EXTI_EMR register *******************/
  2211. #define EXTI_EMR_MR0_Pos (0U)
  2212. #define EXTI_EMR_MR0_Msk (0x1UL << EXTI_EMR_MR0_Pos) /*!< 0x00000001 */
  2213. #define EXTI_EMR_MR0 EXTI_EMR_MR0_Msk /*!< Event Mask on line 0 */
  2214. #define EXTI_EMR_MR1_Pos (1U)
  2215. #define EXTI_EMR_MR1_Msk (0x1UL << EXTI_EMR_MR1_Pos) /*!< 0x00000002 */
  2216. #define EXTI_EMR_MR1 EXTI_EMR_MR1_Msk /*!< Event Mask on line 1 */
  2217. #define EXTI_EMR_MR2_Pos (2U)
  2218. #define EXTI_EMR_MR2_Msk (0x1UL << EXTI_EMR_MR2_Pos) /*!< 0x00000004 */
  2219. #define EXTI_EMR_MR2 EXTI_EMR_MR2_Msk /*!< Event Mask on line 2 */
  2220. #define EXTI_EMR_MR3_Pos (3U)
  2221. #define EXTI_EMR_MR3_Msk (0x1UL << EXTI_EMR_MR3_Pos) /*!< 0x00000008 */
  2222. #define EXTI_EMR_MR3 EXTI_EMR_MR3_Msk /*!< Event Mask on line 3 */
  2223. #define EXTI_EMR_MR4_Pos (4U)
  2224. #define EXTI_EMR_MR4_Msk (0x1UL << EXTI_EMR_MR4_Pos) /*!< 0x00000010 */
  2225. #define EXTI_EMR_MR4 EXTI_EMR_MR4_Msk /*!< Event Mask on line 4 */
  2226. #define EXTI_EMR_MR5_Pos (5U)
  2227. #define EXTI_EMR_MR5_Msk (0x1UL << EXTI_EMR_MR5_Pos) /*!< 0x00000020 */
  2228. #define EXTI_EMR_MR5 EXTI_EMR_MR5_Msk /*!< Event Mask on line 5 */
  2229. #define EXTI_EMR_MR6_Pos (6U)
  2230. #define EXTI_EMR_MR6_Msk (0x1UL << EXTI_EMR_MR6_Pos) /*!< 0x00000040 */
  2231. #define EXTI_EMR_MR6 EXTI_EMR_MR6_Msk /*!< Event Mask on line 6 */
  2232. #define EXTI_EMR_MR7_Pos (7U)
  2233. #define EXTI_EMR_MR7_Msk (0x1UL << EXTI_EMR_MR7_Pos) /*!< 0x00000080 */
  2234. #define EXTI_EMR_MR7 EXTI_EMR_MR7_Msk /*!< Event Mask on line 7 */
  2235. #define EXTI_EMR_MR8_Pos (8U)
  2236. #define EXTI_EMR_MR8_Msk (0x1UL << EXTI_EMR_MR8_Pos) /*!< 0x00000100 */
  2237. #define EXTI_EMR_MR8 EXTI_EMR_MR8_Msk /*!< Event Mask on line 8 */
  2238. #define EXTI_EMR_MR9_Pos (9U)
  2239. #define EXTI_EMR_MR9_Msk (0x1UL << EXTI_EMR_MR9_Pos) /*!< 0x00000200 */
  2240. #define EXTI_EMR_MR9 EXTI_EMR_MR9_Msk /*!< Event Mask on line 9 */
  2241. #define EXTI_EMR_MR10_Pos (10U)
  2242. #define EXTI_EMR_MR10_Msk (0x1UL << EXTI_EMR_MR10_Pos) /*!< 0x00000400 */
  2243. #define EXTI_EMR_MR10 EXTI_EMR_MR10_Msk /*!< Event Mask on line 10 */
  2244. #define EXTI_EMR_MR11_Pos (11U)
  2245. #define EXTI_EMR_MR11_Msk (0x1UL << EXTI_EMR_MR11_Pos) /*!< 0x00000800 */
  2246. #define EXTI_EMR_MR11 EXTI_EMR_MR11_Msk /*!< Event Mask on line 11 */
  2247. #define EXTI_EMR_MR12_Pos (12U)
  2248. #define EXTI_EMR_MR12_Msk (0x1UL << EXTI_EMR_MR12_Pos) /*!< 0x00001000 */
  2249. #define EXTI_EMR_MR12 EXTI_EMR_MR12_Msk /*!< Event Mask on line 12 */
  2250. #define EXTI_EMR_MR13_Pos (13U)
  2251. #define EXTI_EMR_MR13_Msk (0x1UL << EXTI_EMR_MR13_Pos) /*!< 0x00002000 */
  2252. #define EXTI_EMR_MR13 EXTI_EMR_MR13_Msk /*!< Event Mask on line 13 */
  2253. #define EXTI_EMR_MR14_Pos (14U)
  2254. #define EXTI_EMR_MR14_Msk (0x1UL << EXTI_EMR_MR14_Pos) /*!< 0x00004000 */
  2255. #define EXTI_EMR_MR14 EXTI_EMR_MR14_Msk /*!< Event Mask on line 14 */
  2256. #define EXTI_EMR_MR15_Pos (15U)
  2257. #define EXTI_EMR_MR15_Msk (0x1UL << EXTI_EMR_MR15_Pos) /*!< 0x00008000 */
  2258. #define EXTI_EMR_MR15 EXTI_EMR_MR15_Msk /*!< Event Mask on line 15 */
  2259. #define EXTI_EMR_MR16_Pos (16U)
  2260. #define EXTI_EMR_MR16_Msk (0x1UL << EXTI_EMR_MR16_Pos) /*!< 0x00010000 */
  2261. #define EXTI_EMR_MR16 EXTI_EMR_MR16_Msk /*!< Event Mask on line 16 */
  2262. #define EXTI_EMR_MR17_Pos (17U)
  2263. #define EXTI_EMR_MR17_Msk (0x1UL << EXTI_EMR_MR17_Pos) /*!< 0x00020000 */
  2264. #define EXTI_EMR_MR17 EXTI_EMR_MR17_Msk /*!< Event Mask on line 17 */
  2265. #define EXTI_EMR_MR18_Pos (18U)
  2266. #define EXTI_EMR_MR18_Msk (0x1UL << EXTI_EMR_MR18_Pos) /*!< 0x00040000 */
  2267. #define EXTI_EMR_MR18 EXTI_EMR_MR18_Msk /*!< Event Mask on line 18 */
  2268. /* References Defines */
  2269. #define EXTI_EMR_EM0 EXTI_EMR_MR0
  2270. #define EXTI_EMR_EM1 EXTI_EMR_MR1
  2271. #define EXTI_EMR_EM2 EXTI_EMR_MR2
  2272. #define EXTI_EMR_EM3 EXTI_EMR_MR3
  2273. #define EXTI_EMR_EM4 EXTI_EMR_MR4
  2274. #define EXTI_EMR_EM5 EXTI_EMR_MR5
  2275. #define EXTI_EMR_EM6 EXTI_EMR_MR6
  2276. #define EXTI_EMR_EM7 EXTI_EMR_MR7
  2277. #define EXTI_EMR_EM8 EXTI_EMR_MR8
  2278. #define EXTI_EMR_EM9 EXTI_EMR_MR9
  2279. #define EXTI_EMR_EM10 EXTI_EMR_MR10
  2280. #define EXTI_EMR_EM11 EXTI_EMR_MR11
  2281. #define EXTI_EMR_EM12 EXTI_EMR_MR12
  2282. #define EXTI_EMR_EM13 EXTI_EMR_MR13
  2283. #define EXTI_EMR_EM14 EXTI_EMR_MR14
  2284. #define EXTI_EMR_EM15 EXTI_EMR_MR15
  2285. #define EXTI_EMR_EM16 EXTI_EMR_MR16
  2286. #define EXTI_EMR_EM17 EXTI_EMR_MR17
  2287. #define EXTI_EMR_EM18 EXTI_EMR_MR18
  2288. /****************** Bit definition for EXTI_RTSR register *******************/
  2289. #define EXTI_RTSR_TR0_Pos (0U)
  2290. #define EXTI_RTSR_TR0_Msk (0x1UL << EXTI_RTSR_TR0_Pos) /*!< 0x00000001 */
  2291. #define EXTI_RTSR_TR0 EXTI_RTSR_TR0_Msk /*!< Rising trigger event configuration bit of line 0 */
  2292. #define EXTI_RTSR_TR1_Pos (1U)
  2293. #define EXTI_RTSR_TR1_Msk (0x1UL << EXTI_RTSR_TR1_Pos) /*!< 0x00000002 */
  2294. #define EXTI_RTSR_TR1 EXTI_RTSR_TR1_Msk /*!< Rising trigger event configuration bit of line 1 */
  2295. #define EXTI_RTSR_TR2_Pos (2U)
  2296. #define EXTI_RTSR_TR2_Msk (0x1UL << EXTI_RTSR_TR2_Pos) /*!< 0x00000004 */
  2297. #define EXTI_RTSR_TR2 EXTI_RTSR_TR2_Msk /*!< Rising trigger event configuration bit of line 2 */
  2298. #define EXTI_RTSR_TR3_Pos (3U)
  2299. #define EXTI_RTSR_TR3_Msk (0x1UL << EXTI_RTSR_TR3_Pos) /*!< 0x00000008 */
  2300. #define EXTI_RTSR_TR3 EXTI_RTSR_TR3_Msk /*!< Rising trigger event configuration bit of line 3 */
  2301. #define EXTI_RTSR_TR4_Pos (4U)
  2302. #define EXTI_RTSR_TR4_Msk (0x1UL << EXTI_RTSR_TR4_Pos) /*!< 0x00000010 */
  2303. #define EXTI_RTSR_TR4 EXTI_RTSR_TR4_Msk /*!< Rising trigger event configuration bit of line 4 */
  2304. #define EXTI_RTSR_TR5_Pos (5U)
  2305. #define EXTI_RTSR_TR5_Msk (0x1UL << EXTI_RTSR_TR5_Pos) /*!< 0x00000020 */
  2306. #define EXTI_RTSR_TR5 EXTI_RTSR_TR5_Msk /*!< Rising trigger event configuration bit of line 5 */
  2307. #define EXTI_RTSR_TR6_Pos (6U)
  2308. #define EXTI_RTSR_TR6_Msk (0x1UL << EXTI_RTSR_TR6_Pos) /*!< 0x00000040 */
  2309. #define EXTI_RTSR_TR6 EXTI_RTSR_TR6_Msk /*!< Rising trigger event configuration bit of line 6 */
  2310. #define EXTI_RTSR_TR7_Pos (7U)
  2311. #define EXTI_RTSR_TR7_Msk (0x1UL << EXTI_RTSR_TR7_Pos) /*!< 0x00000080 */
  2312. #define EXTI_RTSR_TR7 EXTI_RTSR_TR7_Msk /*!< Rising trigger event configuration bit of line 7 */
  2313. #define EXTI_RTSR_TR8_Pos (8U)
  2314. #define EXTI_RTSR_TR8_Msk (0x1UL << EXTI_RTSR_TR8_Pos) /*!< 0x00000100 */
  2315. #define EXTI_RTSR_TR8 EXTI_RTSR_TR8_Msk /*!< Rising trigger event configuration bit of line 8 */
  2316. #define EXTI_RTSR_TR9_Pos (9U)
  2317. #define EXTI_RTSR_TR9_Msk (0x1UL << EXTI_RTSR_TR9_Pos) /*!< 0x00000200 */
  2318. #define EXTI_RTSR_TR9 EXTI_RTSR_TR9_Msk /*!< Rising trigger event configuration bit of line 9 */
  2319. #define EXTI_RTSR_TR10_Pos (10U)
  2320. #define EXTI_RTSR_TR10_Msk (0x1UL << EXTI_RTSR_TR10_Pos) /*!< 0x00000400 */
  2321. #define EXTI_RTSR_TR10 EXTI_RTSR_TR10_Msk /*!< Rising trigger event configuration bit of line 10 */
  2322. #define EXTI_RTSR_TR11_Pos (11U)
  2323. #define EXTI_RTSR_TR11_Msk (0x1UL << EXTI_RTSR_TR11_Pos) /*!< 0x00000800 */
  2324. #define EXTI_RTSR_TR11 EXTI_RTSR_TR11_Msk /*!< Rising trigger event configuration bit of line 11 */
  2325. #define EXTI_RTSR_TR12_Pos (12U)
  2326. #define EXTI_RTSR_TR12_Msk (0x1UL << EXTI_RTSR_TR12_Pos) /*!< 0x00001000 */
  2327. #define EXTI_RTSR_TR12 EXTI_RTSR_TR12_Msk /*!< Rising trigger event configuration bit of line 12 */
  2328. #define EXTI_RTSR_TR13_Pos (13U)
  2329. #define EXTI_RTSR_TR13_Msk (0x1UL << EXTI_RTSR_TR13_Pos) /*!< 0x00002000 */
  2330. #define EXTI_RTSR_TR13 EXTI_RTSR_TR13_Msk /*!< Rising trigger event configuration bit of line 13 */
  2331. #define EXTI_RTSR_TR14_Pos (14U)
  2332. #define EXTI_RTSR_TR14_Msk (0x1UL << EXTI_RTSR_TR14_Pos) /*!< 0x00004000 */
  2333. #define EXTI_RTSR_TR14 EXTI_RTSR_TR14_Msk /*!< Rising trigger event configuration bit of line 14 */
  2334. #define EXTI_RTSR_TR15_Pos (15U)
  2335. #define EXTI_RTSR_TR15_Msk (0x1UL << EXTI_RTSR_TR15_Pos) /*!< 0x00008000 */
  2336. #define EXTI_RTSR_TR15 EXTI_RTSR_TR15_Msk /*!< Rising trigger event configuration bit of line 15 */
  2337. #define EXTI_RTSR_TR16_Pos (16U)
  2338. #define EXTI_RTSR_TR16_Msk (0x1UL << EXTI_RTSR_TR16_Pos) /*!< 0x00010000 */
  2339. #define EXTI_RTSR_TR16 EXTI_RTSR_TR16_Msk /*!< Rising trigger event configuration bit of line 16 */
  2340. #define EXTI_RTSR_TR17_Pos (17U)
  2341. #define EXTI_RTSR_TR17_Msk (0x1UL << EXTI_RTSR_TR17_Pos) /*!< 0x00020000 */
  2342. #define EXTI_RTSR_TR17 EXTI_RTSR_TR17_Msk /*!< Rising trigger event configuration bit of line 17 */
  2343. #define EXTI_RTSR_TR18_Pos (18U)
  2344. #define EXTI_RTSR_TR18_Msk (0x1UL << EXTI_RTSR_TR18_Pos) /*!< 0x00040000 */
  2345. #define EXTI_RTSR_TR18 EXTI_RTSR_TR18_Msk /*!< Rising trigger event configuration bit of line 18 */
  2346. /* References Defines */
  2347. #define EXTI_RTSR_RT0 EXTI_RTSR_TR0
  2348. #define EXTI_RTSR_RT1 EXTI_RTSR_TR1
  2349. #define EXTI_RTSR_RT2 EXTI_RTSR_TR2
  2350. #define EXTI_RTSR_RT3 EXTI_RTSR_TR3
  2351. #define EXTI_RTSR_RT4 EXTI_RTSR_TR4
  2352. #define EXTI_RTSR_RT5 EXTI_RTSR_TR5
  2353. #define EXTI_RTSR_RT6 EXTI_RTSR_TR6
  2354. #define EXTI_RTSR_RT7 EXTI_RTSR_TR7
  2355. #define EXTI_RTSR_RT8 EXTI_RTSR_TR8
  2356. #define EXTI_RTSR_RT9 EXTI_RTSR_TR9
  2357. #define EXTI_RTSR_RT10 EXTI_RTSR_TR10
  2358. #define EXTI_RTSR_RT11 EXTI_RTSR_TR11
  2359. #define EXTI_RTSR_RT12 EXTI_RTSR_TR12
  2360. #define EXTI_RTSR_RT13 EXTI_RTSR_TR13
  2361. #define EXTI_RTSR_RT14 EXTI_RTSR_TR14
  2362. #define EXTI_RTSR_RT15 EXTI_RTSR_TR15
  2363. #define EXTI_RTSR_RT16 EXTI_RTSR_TR16
  2364. #define EXTI_RTSR_RT17 EXTI_RTSR_TR17
  2365. #define EXTI_RTSR_RT18 EXTI_RTSR_TR18
  2366. /****************** Bit definition for EXTI_FTSR register *******************/
  2367. #define EXTI_FTSR_TR0_Pos (0U)
  2368. #define EXTI_FTSR_TR0_Msk (0x1UL << EXTI_FTSR_TR0_Pos) /*!< 0x00000001 */
  2369. #define EXTI_FTSR_TR0 EXTI_FTSR_TR0_Msk /*!< Falling trigger event configuration bit of line 0 */
  2370. #define EXTI_FTSR_TR1_Pos (1U)
  2371. #define EXTI_FTSR_TR1_Msk (0x1UL << EXTI_FTSR_TR1_Pos) /*!< 0x00000002 */
  2372. #define EXTI_FTSR_TR1 EXTI_FTSR_TR1_Msk /*!< Falling trigger event configuration bit of line 1 */
  2373. #define EXTI_FTSR_TR2_Pos (2U)
  2374. #define EXTI_FTSR_TR2_Msk (0x1UL << EXTI_FTSR_TR2_Pos) /*!< 0x00000004 */
  2375. #define EXTI_FTSR_TR2 EXTI_FTSR_TR2_Msk /*!< Falling trigger event configuration bit of line 2 */
  2376. #define EXTI_FTSR_TR3_Pos (3U)
  2377. #define EXTI_FTSR_TR3_Msk (0x1UL << EXTI_FTSR_TR3_Pos) /*!< 0x00000008 */
  2378. #define EXTI_FTSR_TR3 EXTI_FTSR_TR3_Msk /*!< Falling trigger event configuration bit of line 3 */
  2379. #define EXTI_FTSR_TR4_Pos (4U)
  2380. #define EXTI_FTSR_TR4_Msk (0x1UL << EXTI_FTSR_TR4_Pos) /*!< 0x00000010 */
  2381. #define EXTI_FTSR_TR4 EXTI_FTSR_TR4_Msk /*!< Falling trigger event configuration bit of line 4 */
  2382. #define EXTI_FTSR_TR5_Pos (5U)
  2383. #define EXTI_FTSR_TR5_Msk (0x1UL << EXTI_FTSR_TR5_Pos) /*!< 0x00000020 */
  2384. #define EXTI_FTSR_TR5 EXTI_FTSR_TR5_Msk /*!< Falling trigger event configuration bit of line 5 */
  2385. #define EXTI_FTSR_TR6_Pos (6U)
  2386. #define EXTI_FTSR_TR6_Msk (0x1UL << EXTI_FTSR_TR6_Pos) /*!< 0x00000040 */
  2387. #define EXTI_FTSR_TR6 EXTI_FTSR_TR6_Msk /*!< Falling trigger event configuration bit of line 6 */
  2388. #define EXTI_FTSR_TR7_Pos (7U)
  2389. #define EXTI_FTSR_TR7_Msk (0x1UL << EXTI_FTSR_TR7_Pos) /*!< 0x00000080 */
  2390. #define EXTI_FTSR_TR7 EXTI_FTSR_TR7_Msk /*!< Falling trigger event configuration bit of line 7 */
  2391. #define EXTI_FTSR_TR8_Pos (8U)
  2392. #define EXTI_FTSR_TR8_Msk (0x1UL << EXTI_FTSR_TR8_Pos) /*!< 0x00000100 */
  2393. #define EXTI_FTSR_TR8 EXTI_FTSR_TR8_Msk /*!< Falling trigger event configuration bit of line 8 */
  2394. #define EXTI_FTSR_TR9_Pos (9U)
  2395. #define EXTI_FTSR_TR9_Msk (0x1UL << EXTI_FTSR_TR9_Pos) /*!< 0x00000200 */
  2396. #define EXTI_FTSR_TR9 EXTI_FTSR_TR9_Msk /*!< Falling trigger event configuration bit of line 9 */
  2397. #define EXTI_FTSR_TR10_Pos (10U)
  2398. #define EXTI_FTSR_TR10_Msk (0x1UL << EXTI_FTSR_TR10_Pos) /*!< 0x00000400 */
  2399. #define EXTI_FTSR_TR10 EXTI_FTSR_TR10_Msk /*!< Falling trigger event configuration bit of line 10 */
  2400. #define EXTI_FTSR_TR11_Pos (11U)
  2401. #define EXTI_FTSR_TR11_Msk (0x1UL << EXTI_FTSR_TR11_Pos) /*!< 0x00000800 */
  2402. #define EXTI_FTSR_TR11 EXTI_FTSR_TR11_Msk /*!< Falling trigger event configuration bit of line 11 */
  2403. #define EXTI_FTSR_TR12_Pos (12U)
  2404. #define EXTI_FTSR_TR12_Msk (0x1UL << EXTI_FTSR_TR12_Pos) /*!< 0x00001000 */
  2405. #define EXTI_FTSR_TR12 EXTI_FTSR_TR12_Msk /*!< Falling trigger event configuration bit of line 12 */
  2406. #define EXTI_FTSR_TR13_Pos (13U)
  2407. #define EXTI_FTSR_TR13_Msk (0x1UL << EXTI_FTSR_TR13_Pos) /*!< 0x00002000 */
  2408. #define EXTI_FTSR_TR13 EXTI_FTSR_TR13_Msk /*!< Falling trigger event configuration bit of line 13 */
  2409. #define EXTI_FTSR_TR14_Pos (14U)
  2410. #define EXTI_FTSR_TR14_Msk (0x1UL << EXTI_FTSR_TR14_Pos) /*!< 0x00004000 */
  2411. #define EXTI_FTSR_TR14 EXTI_FTSR_TR14_Msk /*!< Falling trigger event configuration bit of line 14 */
  2412. #define EXTI_FTSR_TR15_Pos (15U)
  2413. #define EXTI_FTSR_TR15_Msk (0x1UL << EXTI_FTSR_TR15_Pos) /*!< 0x00008000 */
  2414. #define EXTI_FTSR_TR15 EXTI_FTSR_TR15_Msk /*!< Falling trigger event configuration bit of line 15 */
  2415. #define EXTI_FTSR_TR16_Pos (16U)
  2416. #define EXTI_FTSR_TR16_Msk (0x1UL << EXTI_FTSR_TR16_Pos) /*!< 0x00010000 */
  2417. #define EXTI_FTSR_TR16 EXTI_FTSR_TR16_Msk /*!< Falling trigger event configuration bit of line 16 */
  2418. #define EXTI_FTSR_TR17_Pos (17U)
  2419. #define EXTI_FTSR_TR17_Msk (0x1UL << EXTI_FTSR_TR17_Pos) /*!< 0x00020000 */
  2420. #define EXTI_FTSR_TR17 EXTI_FTSR_TR17_Msk /*!< Falling trigger event configuration bit of line 17 */
  2421. #define EXTI_FTSR_TR18_Pos (18U)
  2422. #define EXTI_FTSR_TR18_Msk (0x1UL << EXTI_FTSR_TR18_Pos) /*!< 0x00040000 */
  2423. #define EXTI_FTSR_TR18 EXTI_FTSR_TR18_Msk /*!< Falling trigger event configuration bit of line 18 */
  2424. /* References Defines */
  2425. #define EXTI_FTSR_FT0 EXTI_FTSR_TR0
  2426. #define EXTI_FTSR_FT1 EXTI_FTSR_TR1
  2427. #define EXTI_FTSR_FT2 EXTI_FTSR_TR2
  2428. #define EXTI_FTSR_FT3 EXTI_FTSR_TR3
  2429. #define EXTI_FTSR_FT4 EXTI_FTSR_TR4
  2430. #define EXTI_FTSR_FT5 EXTI_FTSR_TR5
  2431. #define EXTI_FTSR_FT6 EXTI_FTSR_TR6
  2432. #define EXTI_FTSR_FT7 EXTI_FTSR_TR7
  2433. #define EXTI_FTSR_FT8 EXTI_FTSR_TR8
  2434. #define EXTI_FTSR_FT9 EXTI_FTSR_TR9
  2435. #define EXTI_FTSR_FT10 EXTI_FTSR_TR10
  2436. #define EXTI_FTSR_FT11 EXTI_FTSR_TR11
  2437. #define EXTI_FTSR_FT12 EXTI_FTSR_TR12
  2438. #define EXTI_FTSR_FT13 EXTI_FTSR_TR13
  2439. #define EXTI_FTSR_FT14 EXTI_FTSR_TR14
  2440. #define EXTI_FTSR_FT15 EXTI_FTSR_TR15
  2441. #define EXTI_FTSR_FT16 EXTI_FTSR_TR16
  2442. #define EXTI_FTSR_FT17 EXTI_FTSR_TR17
  2443. #define EXTI_FTSR_FT18 EXTI_FTSR_TR18
  2444. /****************** Bit definition for EXTI_SWIER register ******************/
  2445. #define EXTI_SWIER_SWIER0_Pos (0U)
  2446. #define EXTI_SWIER_SWIER0_Msk (0x1UL << EXTI_SWIER_SWIER0_Pos) /*!< 0x00000001 */
  2447. #define EXTI_SWIER_SWIER0 EXTI_SWIER_SWIER0_Msk /*!< Software Interrupt on line 0 */
  2448. #define EXTI_SWIER_SWIER1_Pos (1U)
  2449. #define EXTI_SWIER_SWIER1_Msk (0x1UL << EXTI_SWIER_SWIER1_Pos) /*!< 0x00000002 */
  2450. #define EXTI_SWIER_SWIER1 EXTI_SWIER_SWIER1_Msk /*!< Software Interrupt on line 1 */
  2451. #define EXTI_SWIER_SWIER2_Pos (2U)
  2452. #define EXTI_SWIER_SWIER2_Msk (0x1UL << EXTI_SWIER_SWIER2_Pos) /*!< 0x00000004 */
  2453. #define EXTI_SWIER_SWIER2 EXTI_SWIER_SWIER2_Msk /*!< Software Interrupt on line 2 */
  2454. #define EXTI_SWIER_SWIER3_Pos (3U)
  2455. #define EXTI_SWIER_SWIER3_Msk (0x1UL << EXTI_SWIER_SWIER3_Pos) /*!< 0x00000008 */
  2456. #define EXTI_SWIER_SWIER3 EXTI_SWIER_SWIER3_Msk /*!< Software Interrupt on line 3 */
  2457. #define EXTI_SWIER_SWIER4_Pos (4U)
  2458. #define EXTI_SWIER_SWIER4_Msk (0x1UL << EXTI_SWIER_SWIER4_Pos) /*!< 0x00000010 */
  2459. #define EXTI_SWIER_SWIER4 EXTI_SWIER_SWIER4_Msk /*!< Software Interrupt on line 4 */
  2460. #define EXTI_SWIER_SWIER5_Pos (5U)
  2461. #define EXTI_SWIER_SWIER5_Msk (0x1UL << EXTI_SWIER_SWIER5_Pos) /*!< 0x00000020 */
  2462. #define EXTI_SWIER_SWIER5 EXTI_SWIER_SWIER5_Msk /*!< Software Interrupt on line 5 */
  2463. #define EXTI_SWIER_SWIER6_Pos (6U)
  2464. #define EXTI_SWIER_SWIER6_Msk (0x1UL << EXTI_SWIER_SWIER6_Pos) /*!< 0x00000040 */
  2465. #define EXTI_SWIER_SWIER6 EXTI_SWIER_SWIER6_Msk /*!< Software Interrupt on line 6 */
  2466. #define EXTI_SWIER_SWIER7_Pos (7U)
  2467. #define EXTI_SWIER_SWIER7_Msk (0x1UL << EXTI_SWIER_SWIER7_Pos) /*!< 0x00000080 */
  2468. #define EXTI_SWIER_SWIER7 EXTI_SWIER_SWIER7_Msk /*!< Software Interrupt on line 7 */
  2469. #define EXTI_SWIER_SWIER8_Pos (8U)
  2470. #define EXTI_SWIER_SWIER8_Msk (0x1UL << EXTI_SWIER_SWIER8_Pos) /*!< 0x00000100 */
  2471. #define EXTI_SWIER_SWIER8 EXTI_SWIER_SWIER8_Msk /*!< Software Interrupt on line 8 */
  2472. #define EXTI_SWIER_SWIER9_Pos (9U)
  2473. #define EXTI_SWIER_SWIER9_Msk (0x1UL << EXTI_SWIER_SWIER9_Pos) /*!< 0x00000200 */
  2474. #define EXTI_SWIER_SWIER9 EXTI_SWIER_SWIER9_Msk /*!< Software Interrupt on line 9 */
  2475. #define EXTI_SWIER_SWIER10_Pos (10U)
  2476. #define EXTI_SWIER_SWIER10_Msk (0x1UL << EXTI_SWIER_SWIER10_Pos) /*!< 0x00000400 */
  2477. #define EXTI_SWIER_SWIER10 EXTI_SWIER_SWIER10_Msk /*!< Software Interrupt on line 10 */
  2478. #define EXTI_SWIER_SWIER11_Pos (11U)
  2479. #define EXTI_SWIER_SWIER11_Msk (0x1UL << EXTI_SWIER_SWIER11_Pos) /*!< 0x00000800 */
  2480. #define EXTI_SWIER_SWIER11 EXTI_SWIER_SWIER11_Msk /*!< Software Interrupt on line 11 */
  2481. #define EXTI_SWIER_SWIER12_Pos (12U)
  2482. #define EXTI_SWIER_SWIER12_Msk (0x1UL << EXTI_SWIER_SWIER12_Pos) /*!< 0x00001000 */
  2483. #define EXTI_SWIER_SWIER12 EXTI_SWIER_SWIER12_Msk /*!< Software Interrupt on line 12 */
  2484. #define EXTI_SWIER_SWIER13_Pos (13U)
  2485. #define EXTI_SWIER_SWIER13_Msk (0x1UL << EXTI_SWIER_SWIER13_Pos) /*!< 0x00002000 */
  2486. #define EXTI_SWIER_SWIER13 EXTI_SWIER_SWIER13_Msk /*!< Software Interrupt on line 13 */
  2487. #define EXTI_SWIER_SWIER14_Pos (14U)
  2488. #define EXTI_SWIER_SWIER14_Msk (0x1UL << EXTI_SWIER_SWIER14_Pos) /*!< 0x00004000 */
  2489. #define EXTI_SWIER_SWIER14 EXTI_SWIER_SWIER14_Msk /*!< Software Interrupt on line 14 */
  2490. #define EXTI_SWIER_SWIER15_Pos (15U)
  2491. #define EXTI_SWIER_SWIER15_Msk (0x1UL << EXTI_SWIER_SWIER15_Pos) /*!< 0x00008000 */
  2492. #define EXTI_SWIER_SWIER15 EXTI_SWIER_SWIER15_Msk /*!< Software Interrupt on line 15 */
  2493. #define EXTI_SWIER_SWIER16_Pos (16U)
  2494. #define EXTI_SWIER_SWIER16_Msk (0x1UL << EXTI_SWIER_SWIER16_Pos) /*!< 0x00010000 */
  2495. #define EXTI_SWIER_SWIER16 EXTI_SWIER_SWIER16_Msk /*!< Software Interrupt on line 16 */
  2496. #define EXTI_SWIER_SWIER17_Pos (17U)
  2497. #define EXTI_SWIER_SWIER17_Msk (0x1UL << EXTI_SWIER_SWIER17_Pos) /*!< 0x00020000 */
  2498. #define EXTI_SWIER_SWIER17 EXTI_SWIER_SWIER17_Msk /*!< Software Interrupt on line 17 */
  2499. #define EXTI_SWIER_SWIER18_Pos (18U)
  2500. #define EXTI_SWIER_SWIER18_Msk (0x1UL << EXTI_SWIER_SWIER18_Pos) /*!< 0x00040000 */
  2501. #define EXTI_SWIER_SWIER18 EXTI_SWIER_SWIER18_Msk /*!< Software Interrupt on line 18 */
  2502. /* References Defines */
  2503. #define EXTI_SWIER_SWI0 EXTI_SWIER_SWIER0
  2504. #define EXTI_SWIER_SWI1 EXTI_SWIER_SWIER1
  2505. #define EXTI_SWIER_SWI2 EXTI_SWIER_SWIER2
  2506. #define EXTI_SWIER_SWI3 EXTI_SWIER_SWIER3
  2507. #define EXTI_SWIER_SWI4 EXTI_SWIER_SWIER4
  2508. #define EXTI_SWIER_SWI5 EXTI_SWIER_SWIER5
  2509. #define EXTI_SWIER_SWI6 EXTI_SWIER_SWIER6
  2510. #define EXTI_SWIER_SWI7 EXTI_SWIER_SWIER7
  2511. #define EXTI_SWIER_SWI8 EXTI_SWIER_SWIER8
  2512. #define EXTI_SWIER_SWI9 EXTI_SWIER_SWIER9
  2513. #define EXTI_SWIER_SWI10 EXTI_SWIER_SWIER10
  2514. #define EXTI_SWIER_SWI11 EXTI_SWIER_SWIER11
  2515. #define EXTI_SWIER_SWI12 EXTI_SWIER_SWIER12
  2516. #define EXTI_SWIER_SWI13 EXTI_SWIER_SWIER13
  2517. #define EXTI_SWIER_SWI14 EXTI_SWIER_SWIER14
  2518. #define EXTI_SWIER_SWI15 EXTI_SWIER_SWIER15
  2519. #define EXTI_SWIER_SWI16 EXTI_SWIER_SWIER16
  2520. #define EXTI_SWIER_SWI17 EXTI_SWIER_SWIER17
  2521. #define EXTI_SWIER_SWI18 EXTI_SWIER_SWIER18
  2522. /******************* Bit definition for EXTI_PR register ********************/
  2523. #define EXTI_PR_PR0_Pos (0U)
  2524. #define EXTI_PR_PR0_Msk (0x1UL << EXTI_PR_PR0_Pos) /*!< 0x00000001 */
  2525. #define EXTI_PR_PR0 EXTI_PR_PR0_Msk /*!< Pending bit for line 0 */
  2526. #define EXTI_PR_PR1_Pos (1U)
  2527. #define EXTI_PR_PR1_Msk (0x1UL << EXTI_PR_PR1_Pos) /*!< 0x00000002 */
  2528. #define EXTI_PR_PR1 EXTI_PR_PR1_Msk /*!< Pending bit for line 1 */
  2529. #define EXTI_PR_PR2_Pos (2U)
  2530. #define EXTI_PR_PR2_Msk (0x1UL << EXTI_PR_PR2_Pos) /*!< 0x00000004 */
  2531. #define EXTI_PR_PR2 EXTI_PR_PR2_Msk /*!< Pending bit for line 2 */
  2532. #define EXTI_PR_PR3_Pos (3U)
  2533. #define EXTI_PR_PR3_Msk (0x1UL << EXTI_PR_PR3_Pos) /*!< 0x00000008 */
  2534. #define EXTI_PR_PR3 EXTI_PR_PR3_Msk /*!< Pending bit for line 3 */
  2535. #define EXTI_PR_PR4_Pos (4U)
  2536. #define EXTI_PR_PR4_Msk (0x1UL << EXTI_PR_PR4_Pos) /*!< 0x00000010 */
  2537. #define EXTI_PR_PR4 EXTI_PR_PR4_Msk /*!< Pending bit for line 4 */
  2538. #define EXTI_PR_PR5_Pos (5U)
  2539. #define EXTI_PR_PR5_Msk (0x1UL << EXTI_PR_PR5_Pos) /*!< 0x00000020 */
  2540. #define EXTI_PR_PR5 EXTI_PR_PR5_Msk /*!< Pending bit for line 5 */
  2541. #define EXTI_PR_PR6_Pos (6U)
  2542. #define EXTI_PR_PR6_Msk (0x1UL << EXTI_PR_PR6_Pos) /*!< 0x00000040 */
  2543. #define EXTI_PR_PR6 EXTI_PR_PR6_Msk /*!< Pending bit for line 6 */
  2544. #define EXTI_PR_PR7_Pos (7U)
  2545. #define EXTI_PR_PR7_Msk (0x1UL << EXTI_PR_PR7_Pos) /*!< 0x00000080 */
  2546. #define EXTI_PR_PR7 EXTI_PR_PR7_Msk /*!< Pending bit for line 7 */
  2547. #define EXTI_PR_PR8_Pos (8U)
  2548. #define EXTI_PR_PR8_Msk (0x1UL << EXTI_PR_PR8_Pos) /*!< 0x00000100 */
  2549. #define EXTI_PR_PR8 EXTI_PR_PR8_Msk /*!< Pending bit for line 8 */
  2550. #define EXTI_PR_PR9_Pos (9U)
  2551. #define EXTI_PR_PR9_Msk (0x1UL << EXTI_PR_PR9_Pos) /*!< 0x00000200 */
  2552. #define EXTI_PR_PR9 EXTI_PR_PR9_Msk /*!< Pending bit for line 9 */
  2553. #define EXTI_PR_PR10_Pos (10U)
  2554. #define EXTI_PR_PR10_Msk (0x1UL << EXTI_PR_PR10_Pos) /*!< 0x00000400 */
  2555. #define EXTI_PR_PR10 EXTI_PR_PR10_Msk /*!< Pending bit for line 10 */
  2556. #define EXTI_PR_PR11_Pos (11U)
  2557. #define EXTI_PR_PR11_Msk (0x1UL << EXTI_PR_PR11_Pos) /*!< 0x00000800 */
  2558. #define EXTI_PR_PR11 EXTI_PR_PR11_Msk /*!< Pending bit for line 11 */
  2559. #define EXTI_PR_PR12_Pos (12U)
  2560. #define EXTI_PR_PR12_Msk (0x1UL << EXTI_PR_PR12_Pos) /*!< 0x00001000 */
  2561. #define EXTI_PR_PR12 EXTI_PR_PR12_Msk /*!< Pending bit for line 12 */
  2562. #define EXTI_PR_PR13_Pos (13U)
  2563. #define EXTI_PR_PR13_Msk (0x1UL << EXTI_PR_PR13_Pos) /*!< 0x00002000 */
  2564. #define EXTI_PR_PR13 EXTI_PR_PR13_Msk /*!< Pending bit for line 13 */
  2565. #define EXTI_PR_PR14_Pos (14U)
  2566. #define EXTI_PR_PR14_Msk (0x1UL << EXTI_PR_PR14_Pos) /*!< 0x00004000 */
  2567. #define EXTI_PR_PR14 EXTI_PR_PR14_Msk /*!< Pending bit for line 14 */
  2568. #define EXTI_PR_PR15_Pos (15U)
  2569. #define EXTI_PR_PR15_Msk (0x1UL << EXTI_PR_PR15_Pos) /*!< 0x00008000 */
  2570. #define EXTI_PR_PR15 EXTI_PR_PR15_Msk /*!< Pending bit for line 15 */
  2571. #define EXTI_PR_PR16_Pos (16U)
  2572. #define EXTI_PR_PR16_Msk (0x1UL << EXTI_PR_PR16_Pos) /*!< 0x00010000 */
  2573. #define EXTI_PR_PR16 EXTI_PR_PR16_Msk /*!< Pending bit for line 16 */
  2574. #define EXTI_PR_PR17_Pos (17U)
  2575. #define EXTI_PR_PR17_Msk (0x1UL << EXTI_PR_PR17_Pos) /*!< 0x00020000 */
  2576. #define EXTI_PR_PR17 EXTI_PR_PR17_Msk /*!< Pending bit for line 17 */
  2577. #define EXTI_PR_PR18_Pos (18U)
  2578. #define EXTI_PR_PR18_Msk (0x1UL << EXTI_PR_PR18_Pos) /*!< 0x00040000 */
  2579. #define EXTI_PR_PR18 EXTI_PR_PR18_Msk /*!< Pending bit for line 18 */
  2580. /* References Defines */
  2581. #define EXTI_PR_PIF0 EXTI_PR_PR0
  2582. #define EXTI_PR_PIF1 EXTI_PR_PR1
  2583. #define EXTI_PR_PIF2 EXTI_PR_PR2
  2584. #define EXTI_PR_PIF3 EXTI_PR_PR3
  2585. #define EXTI_PR_PIF4 EXTI_PR_PR4
  2586. #define EXTI_PR_PIF5 EXTI_PR_PR5
  2587. #define EXTI_PR_PIF6 EXTI_PR_PR6
  2588. #define EXTI_PR_PIF7 EXTI_PR_PR7
  2589. #define EXTI_PR_PIF8 EXTI_PR_PR8
  2590. #define EXTI_PR_PIF9 EXTI_PR_PR9
  2591. #define EXTI_PR_PIF10 EXTI_PR_PR10
  2592. #define EXTI_PR_PIF11 EXTI_PR_PR11
  2593. #define EXTI_PR_PIF12 EXTI_PR_PR12
  2594. #define EXTI_PR_PIF13 EXTI_PR_PR13
  2595. #define EXTI_PR_PIF14 EXTI_PR_PR14
  2596. #define EXTI_PR_PIF15 EXTI_PR_PR15
  2597. #define EXTI_PR_PIF16 EXTI_PR_PR16
  2598. #define EXTI_PR_PIF17 EXTI_PR_PR17
  2599. #define EXTI_PR_PIF18 EXTI_PR_PR18
  2600. /******************************************************************************/
  2601. /* */
  2602. /* DMA Controller */
  2603. /* */
  2604. /******************************************************************************/
  2605. /******************* Bit definition for DMA_ISR register ********************/
  2606. #define DMA_ISR_GIF1_Pos (0U)
  2607. #define DMA_ISR_GIF1_Msk (0x1UL << DMA_ISR_GIF1_Pos) /*!< 0x00000001 */
  2608. #define DMA_ISR_GIF1 DMA_ISR_GIF1_Msk /*!< Channel 1 Global interrupt flag */
  2609. #define DMA_ISR_TCIF1_Pos (1U)
  2610. #define DMA_ISR_TCIF1_Msk (0x1UL << DMA_ISR_TCIF1_Pos) /*!< 0x00000002 */
  2611. #define DMA_ISR_TCIF1 DMA_ISR_TCIF1_Msk /*!< Channel 1 Transfer Complete flag */
  2612. #define DMA_ISR_HTIF1_Pos (2U)
  2613. #define DMA_ISR_HTIF1_Msk (0x1UL << DMA_ISR_HTIF1_Pos) /*!< 0x00000004 */
  2614. #define DMA_ISR_HTIF1 DMA_ISR_HTIF1_Msk /*!< Channel 1 Half Transfer flag */
  2615. #define DMA_ISR_TEIF1_Pos (3U)
  2616. #define DMA_ISR_TEIF1_Msk (0x1UL << DMA_ISR_TEIF1_Pos) /*!< 0x00000008 */
  2617. #define DMA_ISR_TEIF1 DMA_ISR_TEIF1_Msk /*!< Channel 1 Transfer Error flag */
  2618. #define DMA_ISR_GIF2_Pos (4U)
  2619. #define DMA_ISR_GIF2_Msk (0x1UL << DMA_ISR_GIF2_Pos) /*!< 0x00000010 */
  2620. #define DMA_ISR_GIF2 DMA_ISR_GIF2_Msk /*!< Channel 2 Global interrupt flag */
  2621. #define DMA_ISR_TCIF2_Pos (5U)
  2622. #define DMA_ISR_TCIF2_Msk (0x1UL << DMA_ISR_TCIF2_Pos) /*!< 0x00000020 */
  2623. #define DMA_ISR_TCIF2 DMA_ISR_TCIF2_Msk /*!< Channel 2 Transfer Complete flag */
  2624. #define DMA_ISR_HTIF2_Pos (6U)
  2625. #define DMA_ISR_HTIF2_Msk (0x1UL << DMA_ISR_HTIF2_Pos) /*!< 0x00000040 */
  2626. #define DMA_ISR_HTIF2 DMA_ISR_HTIF2_Msk /*!< Channel 2 Half Transfer flag */
  2627. #define DMA_ISR_TEIF2_Pos (7U)
  2628. #define DMA_ISR_TEIF2_Msk (0x1UL << DMA_ISR_TEIF2_Pos) /*!< 0x00000080 */
  2629. #define DMA_ISR_TEIF2 DMA_ISR_TEIF2_Msk /*!< Channel 2 Transfer Error flag */
  2630. #define DMA_ISR_GIF3_Pos (8U)
  2631. #define DMA_ISR_GIF3_Msk (0x1UL << DMA_ISR_GIF3_Pos) /*!< 0x00000100 */
  2632. #define DMA_ISR_GIF3 DMA_ISR_GIF3_Msk /*!< Channel 3 Global interrupt flag */
  2633. #define DMA_ISR_TCIF3_Pos (9U)
  2634. #define DMA_ISR_TCIF3_Msk (0x1UL << DMA_ISR_TCIF3_Pos) /*!< 0x00000200 */
  2635. #define DMA_ISR_TCIF3 DMA_ISR_TCIF3_Msk /*!< Channel 3 Transfer Complete flag */
  2636. #define DMA_ISR_HTIF3_Pos (10U)
  2637. #define DMA_ISR_HTIF3_Msk (0x1UL << DMA_ISR_HTIF3_Pos) /*!< 0x00000400 */
  2638. #define DMA_ISR_HTIF3 DMA_ISR_HTIF3_Msk /*!< Channel 3 Half Transfer flag */
  2639. #define DMA_ISR_TEIF3_Pos (11U)
  2640. #define DMA_ISR_TEIF3_Msk (0x1UL << DMA_ISR_TEIF3_Pos) /*!< 0x00000800 */
  2641. #define DMA_ISR_TEIF3 DMA_ISR_TEIF3_Msk /*!< Channel 3 Transfer Error flag */
  2642. #define DMA_ISR_GIF4_Pos (12U)
  2643. #define DMA_ISR_GIF4_Msk (0x1UL << DMA_ISR_GIF4_Pos) /*!< 0x00001000 */
  2644. #define DMA_ISR_GIF4 DMA_ISR_GIF4_Msk /*!< Channel 4 Global interrupt flag */
  2645. #define DMA_ISR_TCIF4_Pos (13U)
  2646. #define DMA_ISR_TCIF4_Msk (0x1UL << DMA_ISR_TCIF4_Pos) /*!< 0x00002000 */
  2647. #define DMA_ISR_TCIF4 DMA_ISR_TCIF4_Msk /*!< Channel 4 Transfer Complete flag */
  2648. #define DMA_ISR_HTIF4_Pos (14U)
  2649. #define DMA_ISR_HTIF4_Msk (0x1UL << DMA_ISR_HTIF4_Pos) /*!< 0x00004000 */
  2650. #define DMA_ISR_HTIF4 DMA_ISR_HTIF4_Msk /*!< Channel 4 Half Transfer flag */
  2651. #define DMA_ISR_TEIF4_Pos (15U)
  2652. #define DMA_ISR_TEIF4_Msk (0x1UL << DMA_ISR_TEIF4_Pos) /*!< 0x00008000 */
  2653. #define DMA_ISR_TEIF4 DMA_ISR_TEIF4_Msk /*!< Channel 4 Transfer Error flag */
  2654. #define DMA_ISR_GIF5_Pos (16U)
  2655. #define DMA_ISR_GIF5_Msk (0x1UL << DMA_ISR_GIF5_Pos) /*!< 0x00010000 */
  2656. #define DMA_ISR_GIF5 DMA_ISR_GIF5_Msk /*!< Channel 5 Global interrupt flag */
  2657. #define DMA_ISR_TCIF5_Pos (17U)
  2658. #define DMA_ISR_TCIF5_Msk (0x1UL << DMA_ISR_TCIF5_Pos) /*!< 0x00020000 */
  2659. #define DMA_ISR_TCIF5 DMA_ISR_TCIF5_Msk /*!< Channel 5 Transfer Complete flag */
  2660. #define DMA_ISR_HTIF5_Pos (18U)
  2661. #define DMA_ISR_HTIF5_Msk (0x1UL << DMA_ISR_HTIF5_Pos) /*!< 0x00040000 */
  2662. #define DMA_ISR_HTIF5 DMA_ISR_HTIF5_Msk /*!< Channel 5 Half Transfer flag */
  2663. #define DMA_ISR_TEIF5_Pos (19U)
  2664. #define DMA_ISR_TEIF5_Msk (0x1UL << DMA_ISR_TEIF5_Pos) /*!< 0x00080000 */
  2665. #define DMA_ISR_TEIF5 DMA_ISR_TEIF5_Msk /*!< Channel 5 Transfer Error flag */
  2666. #define DMA_ISR_GIF6_Pos (20U)
  2667. #define DMA_ISR_GIF6_Msk (0x1UL << DMA_ISR_GIF6_Pos) /*!< 0x00100000 */
  2668. #define DMA_ISR_GIF6 DMA_ISR_GIF6_Msk /*!< Channel 6 Global interrupt flag */
  2669. #define DMA_ISR_TCIF6_Pos (21U)
  2670. #define DMA_ISR_TCIF6_Msk (0x1UL << DMA_ISR_TCIF6_Pos) /*!< 0x00200000 */
  2671. #define DMA_ISR_TCIF6 DMA_ISR_TCIF6_Msk /*!< Channel 6 Transfer Complete flag */
  2672. #define DMA_ISR_HTIF6_Pos (22U)
  2673. #define DMA_ISR_HTIF6_Msk (0x1UL << DMA_ISR_HTIF6_Pos) /*!< 0x00400000 */
  2674. #define DMA_ISR_HTIF6 DMA_ISR_HTIF6_Msk /*!< Channel 6 Half Transfer flag */
  2675. #define DMA_ISR_TEIF6_Pos (23U)
  2676. #define DMA_ISR_TEIF6_Msk (0x1UL << DMA_ISR_TEIF6_Pos) /*!< 0x00800000 */
  2677. #define DMA_ISR_TEIF6 DMA_ISR_TEIF6_Msk /*!< Channel 6 Transfer Error flag */
  2678. #define DMA_ISR_GIF7_Pos (24U)
  2679. #define DMA_ISR_GIF7_Msk (0x1UL << DMA_ISR_GIF7_Pos) /*!< 0x01000000 */
  2680. #define DMA_ISR_GIF7 DMA_ISR_GIF7_Msk /*!< Channel 7 Global interrupt flag */
  2681. #define DMA_ISR_TCIF7_Pos (25U)
  2682. #define DMA_ISR_TCIF7_Msk (0x1UL << DMA_ISR_TCIF7_Pos) /*!< 0x02000000 */
  2683. #define DMA_ISR_TCIF7 DMA_ISR_TCIF7_Msk /*!< Channel 7 Transfer Complete flag */
  2684. #define DMA_ISR_HTIF7_Pos (26U)
  2685. #define DMA_ISR_HTIF7_Msk (0x1UL << DMA_ISR_HTIF7_Pos) /*!< 0x04000000 */
  2686. #define DMA_ISR_HTIF7 DMA_ISR_HTIF7_Msk /*!< Channel 7 Half Transfer flag */
  2687. #define DMA_ISR_TEIF7_Pos (27U)
  2688. #define DMA_ISR_TEIF7_Msk (0x1UL << DMA_ISR_TEIF7_Pos) /*!< 0x08000000 */
  2689. #define DMA_ISR_TEIF7 DMA_ISR_TEIF7_Msk /*!< Channel 7 Transfer Error flag */
  2690. /******************* Bit definition for DMA_IFCR register *******************/
  2691. #define DMA_IFCR_CGIF1_Pos (0U)
  2692. #define DMA_IFCR_CGIF1_Msk (0x1UL << DMA_IFCR_CGIF1_Pos) /*!< 0x00000001 */
  2693. #define DMA_IFCR_CGIF1 DMA_IFCR_CGIF1_Msk /*!< Channel 1 Global interrupt clear */
  2694. #define DMA_IFCR_CTCIF1_Pos (1U)
  2695. #define DMA_IFCR_CTCIF1_Msk (0x1UL << DMA_IFCR_CTCIF1_Pos) /*!< 0x00000002 */
  2696. #define DMA_IFCR_CTCIF1 DMA_IFCR_CTCIF1_Msk /*!< Channel 1 Transfer Complete clear */
  2697. #define DMA_IFCR_CHTIF1_Pos (2U)
  2698. #define DMA_IFCR_CHTIF1_Msk (0x1UL << DMA_IFCR_CHTIF1_Pos) /*!< 0x00000004 */
  2699. #define DMA_IFCR_CHTIF1 DMA_IFCR_CHTIF1_Msk /*!< Channel 1 Half Transfer clear */
  2700. #define DMA_IFCR_CTEIF1_Pos (3U)
  2701. #define DMA_IFCR_CTEIF1_Msk (0x1UL << DMA_IFCR_CTEIF1_Pos) /*!< 0x00000008 */
  2702. #define DMA_IFCR_CTEIF1 DMA_IFCR_CTEIF1_Msk /*!< Channel 1 Transfer Error clear */
  2703. #define DMA_IFCR_CGIF2_Pos (4U)
  2704. #define DMA_IFCR_CGIF2_Msk (0x1UL << DMA_IFCR_CGIF2_Pos) /*!< 0x00000010 */
  2705. #define DMA_IFCR_CGIF2 DMA_IFCR_CGIF2_Msk /*!< Channel 2 Global interrupt clear */
  2706. #define DMA_IFCR_CTCIF2_Pos (5U)
  2707. #define DMA_IFCR_CTCIF2_Msk (0x1UL << DMA_IFCR_CTCIF2_Pos) /*!< 0x00000020 */
  2708. #define DMA_IFCR_CTCIF2 DMA_IFCR_CTCIF2_Msk /*!< Channel 2 Transfer Complete clear */
  2709. #define DMA_IFCR_CHTIF2_Pos (6U)
  2710. #define DMA_IFCR_CHTIF2_Msk (0x1UL << DMA_IFCR_CHTIF2_Pos) /*!< 0x00000040 */
  2711. #define DMA_IFCR_CHTIF2 DMA_IFCR_CHTIF2_Msk /*!< Channel 2 Half Transfer clear */
  2712. #define DMA_IFCR_CTEIF2_Pos (7U)
  2713. #define DMA_IFCR_CTEIF2_Msk (0x1UL << DMA_IFCR_CTEIF2_Pos) /*!< 0x00000080 */
  2714. #define DMA_IFCR_CTEIF2 DMA_IFCR_CTEIF2_Msk /*!< Channel 2 Transfer Error clear */
  2715. #define DMA_IFCR_CGIF3_Pos (8U)
  2716. #define DMA_IFCR_CGIF3_Msk (0x1UL << DMA_IFCR_CGIF3_Pos) /*!< 0x00000100 */
  2717. #define DMA_IFCR_CGIF3 DMA_IFCR_CGIF3_Msk /*!< Channel 3 Global interrupt clear */
  2718. #define DMA_IFCR_CTCIF3_Pos (9U)
  2719. #define DMA_IFCR_CTCIF3_Msk (0x1UL << DMA_IFCR_CTCIF3_Pos) /*!< 0x00000200 */
  2720. #define DMA_IFCR_CTCIF3 DMA_IFCR_CTCIF3_Msk /*!< Channel 3 Transfer Complete clear */
  2721. #define DMA_IFCR_CHTIF3_Pos (10U)
  2722. #define DMA_IFCR_CHTIF3_Msk (0x1UL << DMA_IFCR_CHTIF3_Pos) /*!< 0x00000400 */
  2723. #define DMA_IFCR_CHTIF3 DMA_IFCR_CHTIF3_Msk /*!< Channel 3 Half Transfer clear */
  2724. #define DMA_IFCR_CTEIF3_Pos (11U)
  2725. #define DMA_IFCR_CTEIF3_Msk (0x1UL << DMA_IFCR_CTEIF3_Pos) /*!< 0x00000800 */
  2726. #define DMA_IFCR_CTEIF3 DMA_IFCR_CTEIF3_Msk /*!< Channel 3 Transfer Error clear */
  2727. #define DMA_IFCR_CGIF4_Pos (12U)
  2728. #define DMA_IFCR_CGIF4_Msk (0x1UL << DMA_IFCR_CGIF4_Pos) /*!< 0x00001000 */
  2729. #define DMA_IFCR_CGIF4 DMA_IFCR_CGIF4_Msk /*!< Channel 4 Global interrupt clear */
  2730. #define DMA_IFCR_CTCIF4_Pos (13U)
  2731. #define DMA_IFCR_CTCIF4_Msk (0x1UL << DMA_IFCR_CTCIF4_Pos) /*!< 0x00002000 */
  2732. #define DMA_IFCR_CTCIF4 DMA_IFCR_CTCIF4_Msk /*!< Channel 4 Transfer Complete clear */
  2733. #define DMA_IFCR_CHTIF4_Pos (14U)
  2734. #define DMA_IFCR_CHTIF4_Msk (0x1UL << DMA_IFCR_CHTIF4_Pos) /*!< 0x00004000 */
  2735. #define DMA_IFCR_CHTIF4 DMA_IFCR_CHTIF4_Msk /*!< Channel 4 Half Transfer clear */
  2736. #define DMA_IFCR_CTEIF4_Pos (15U)
  2737. #define DMA_IFCR_CTEIF4_Msk (0x1UL << DMA_IFCR_CTEIF4_Pos) /*!< 0x00008000 */
  2738. #define DMA_IFCR_CTEIF4 DMA_IFCR_CTEIF4_Msk /*!< Channel 4 Transfer Error clear */
  2739. #define DMA_IFCR_CGIF5_Pos (16U)
  2740. #define DMA_IFCR_CGIF5_Msk (0x1UL << DMA_IFCR_CGIF5_Pos) /*!< 0x00010000 */
  2741. #define DMA_IFCR_CGIF5 DMA_IFCR_CGIF5_Msk /*!< Channel 5 Global interrupt clear */
  2742. #define DMA_IFCR_CTCIF5_Pos (17U)
  2743. #define DMA_IFCR_CTCIF5_Msk (0x1UL << DMA_IFCR_CTCIF5_Pos) /*!< 0x00020000 */
  2744. #define DMA_IFCR_CTCIF5 DMA_IFCR_CTCIF5_Msk /*!< Channel 5 Transfer Complete clear */
  2745. #define DMA_IFCR_CHTIF5_Pos (18U)
  2746. #define DMA_IFCR_CHTIF5_Msk (0x1UL << DMA_IFCR_CHTIF5_Pos) /*!< 0x00040000 */
  2747. #define DMA_IFCR_CHTIF5 DMA_IFCR_CHTIF5_Msk /*!< Channel 5 Half Transfer clear */
  2748. #define DMA_IFCR_CTEIF5_Pos (19U)
  2749. #define DMA_IFCR_CTEIF5_Msk (0x1UL << DMA_IFCR_CTEIF5_Pos) /*!< 0x00080000 */
  2750. #define DMA_IFCR_CTEIF5 DMA_IFCR_CTEIF5_Msk /*!< Channel 5 Transfer Error clear */
  2751. #define DMA_IFCR_CGIF6_Pos (20U)
  2752. #define DMA_IFCR_CGIF6_Msk (0x1UL << DMA_IFCR_CGIF6_Pos) /*!< 0x00100000 */
  2753. #define DMA_IFCR_CGIF6 DMA_IFCR_CGIF6_Msk /*!< Channel 6 Global interrupt clear */
  2754. #define DMA_IFCR_CTCIF6_Pos (21U)
  2755. #define DMA_IFCR_CTCIF6_Msk (0x1UL << DMA_IFCR_CTCIF6_Pos) /*!< 0x00200000 */
  2756. #define DMA_IFCR_CTCIF6 DMA_IFCR_CTCIF6_Msk /*!< Channel 6 Transfer Complete clear */
  2757. #define DMA_IFCR_CHTIF6_Pos (22U)
  2758. #define DMA_IFCR_CHTIF6_Msk (0x1UL << DMA_IFCR_CHTIF6_Pos) /*!< 0x00400000 */
  2759. #define DMA_IFCR_CHTIF6 DMA_IFCR_CHTIF6_Msk /*!< Channel 6 Half Transfer clear */
  2760. #define DMA_IFCR_CTEIF6_Pos (23U)
  2761. #define DMA_IFCR_CTEIF6_Msk (0x1UL << DMA_IFCR_CTEIF6_Pos) /*!< 0x00800000 */
  2762. #define DMA_IFCR_CTEIF6 DMA_IFCR_CTEIF6_Msk /*!< Channel 6 Transfer Error clear */
  2763. #define DMA_IFCR_CGIF7_Pos (24U)
  2764. #define DMA_IFCR_CGIF7_Msk (0x1UL << DMA_IFCR_CGIF7_Pos) /*!< 0x01000000 */
  2765. #define DMA_IFCR_CGIF7 DMA_IFCR_CGIF7_Msk /*!< Channel 7 Global interrupt clear */
  2766. #define DMA_IFCR_CTCIF7_Pos (25U)
  2767. #define DMA_IFCR_CTCIF7_Msk (0x1UL << DMA_IFCR_CTCIF7_Pos) /*!< 0x02000000 */
  2768. #define DMA_IFCR_CTCIF7 DMA_IFCR_CTCIF7_Msk /*!< Channel 7 Transfer Complete clear */
  2769. #define DMA_IFCR_CHTIF7_Pos (26U)
  2770. #define DMA_IFCR_CHTIF7_Msk (0x1UL << DMA_IFCR_CHTIF7_Pos) /*!< 0x04000000 */
  2771. #define DMA_IFCR_CHTIF7 DMA_IFCR_CHTIF7_Msk /*!< Channel 7 Half Transfer clear */
  2772. #define DMA_IFCR_CTEIF7_Pos (27U)
  2773. #define DMA_IFCR_CTEIF7_Msk (0x1UL << DMA_IFCR_CTEIF7_Pos) /*!< 0x08000000 */
  2774. #define DMA_IFCR_CTEIF7 DMA_IFCR_CTEIF7_Msk /*!< Channel 7 Transfer Error clear */
  2775. /******************* Bit definition for DMA_CCR register *******************/
  2776. #define DMA_CCR_EN_Pos (0U)
  2777. #define DMA_CCR_EN_Msk (0x1UL << DMA_CCR_EN_Pos) /*!< 0x00000001 */
  2778. #define DMA_CCR_EN DMA_CCR_EN_Msk /*!< Channel enable */
  2779. #define DMA_CCR_TCIE_Pos (1U)
  2780. #define DMA_CCR_TCIE_Msk (0x1UL << DMA_CCR_TCIE_Pos) /*!< 0x00000002 */
  2781. #define DMA_CCR_TCIE DMA_CCR_TCIE_Msk /*!< Transfer complete interrupt enable */
  2782. #define DMA_CCR_HTIE_Pos (2U)
  2783. #define DMA_CCR_HTIE_Msk (0x1UL << DMA_CCR_HTIE_Pos) /*!< 0x00000004 */
  2784. #define DMA_CCR_HTIE DMA_CCR_HTIE_Msk /*!< Half Transfer interrupt enable */
  2785. #define DMA_CCR_TEIE_Pos (3U)
  2786. #define DMA_CCR_TEIE_Msk (0x1UL << DMA_CCR_TEIE_Pos) /*!< 0x00000008 */
  2787. #define DMA_CCR_TEIE DMA_CCR_TEIE_Msk /*!< Transfer error interrupt enable */
  2788. #define DMA_CCR_DIR_Pos (4U)
  2789. #define DMA_CCR_DIR_Msk (0x1UL << DMA_CCR_DIR_Pos) /*!< 0x00000010 */
  2790. #define DMA_CCR_DIR DMA_CCR_DIR_Msk /*!< Data transfer direction */
  2791. #define DMA_CCR_CIRC_Pos (5U)
  2792. #define DMA_CCR_CIRC_Msk (0x1UL << DMA_CCR_CIRC_Pos) /*!< 0x00000020 */
  2793. #define DMA_CCR_CIRC DMA_CCR_CIRC_Msk /*!< Circular mode */
  2794. #define DMA_CCR_PINC_Pos (6U)
  2795. #define DMA_CCR_PINC_Msk (0x1UL << DMA_CCR_PINC_Pos) /*!< 0x00000040 */
  2796. #define DMA_CCR_PINC DMA_CCR_PINC_Msk /*!< Peripheral increment mode */
  2797. #define DMA_CCR_MINC_Pos (7U)
  2798. #define DMA_CCR_MINC_Msk (0x1UL << DMA_CCR_MINC_Pos) /*!< 0x00000080 */
  2799. #define DMA_CCR_MINC DMA_CCR_MINC_Msk /*!< Memory increment mode */
  2800. #define DMA_CCR_PSIZE_Pos (8U)
  2801. #define DMA_CCR_PSIZE_Msk (0x3UL << DMA_CCR_PSIZE_Pos) /*!< 0x00000300 */
  2802. #define DMA_CCR_PSIZE DMA_CCR_PSIZE_Msk /*!< PSIZE[1:0] bits (Peripheral size) */
  2803. #define DMA_CCR_PSIZE_0 (0x1UL << DMA_CCR_PSIZE_Pos) /*!< 0x00000100 */
  2804. #define DMA_CCR_PSIZE_1 (0x2UL << DMA_CCR_PSIZE_Pos) /*!< 0x00000200 */
  2805. #define DMA_CCR_MSIZE_Pos (10U)
  2806. #define DMA_CCR_MSIZE_Msk (0x3UL << DMA_CCR_MSIZE_Pos) /*!< 0x00000C00 */
  2807. #define DMA_CCR_MSIZE DMA_CCR_MSIZE_Msk /*!< MSIZE[1:0] bits (Memory size) */
  2808. #define DMA_CCR_MSIZE_0 (0x1UL << DMA_CCR_MSIZE_Pos) /*!< 0x00000400 */
  2809. #define DMA_CCR_MSIZE_1 (0x2UL << DMA_CCR_MSIZE_Pos) /*!< 0x00000800 */
  2810. #define DMA_CCR_PL_Pos (12U)
  2811. #define DMA_CCR_PL_Msk (0x3UL << DMA_CCR_PL_Pos) /*!< 0x00003000 */
  2812. #define DMA_CCR_PL DMA_CCR_PL_Msk /*!< PL[1:0] bits(Channel Priority level) */
  2813. #define DMA_CCR_PL_0 (0x1UL << DMA_CCR_PL_Pos) /*!< 0x00001000 */
  2814. #define DMA_CCR_PL_1 (0x2UL << DMA_CCR_PL_Pos) /*!< 0x00002000 */
  2815. #define DMA_CCR_MEM2MEM_Pos (14U)
  2816. #define DMA_CCR_MEM2MEM_Msk (0x1UL << DMA_CCR_MEM2MEM_Pos) /*!< 0x00004000 */
  2817. #define DMA_CCR_MEM2MEM DMA_CCR_MEM2MEM_Msk /*!< Memory to memory mode */
  2818. /****************** Bit definition for DMA_CNDTR register ******************/
  2819. #define DMA_CNDTR_NDT_Pos (0U)
  2820. #define DMA_CNDTR_NDT_Msk (0xFFFFUL << DMA_CNDTR_NDT_Pos) /*!< 0x0000FFFF */
  2821. #define DMA_CNDTR_NDT DMA_CNDTR_NDT_Msk /*!< Number of data to Transfer */
  2822. /****************** Bit definition for DMA_CPAR register *******************/
  2823. #define DMA_CPAR_PA_Pos (0U)
  2824. #define DMA_CPAR_PA_Msk (0xFFFFFFFFUL << DMA_CPAR_PA_Pos) /*!< 0xFFFFFFFF */
  2825. #define DMA_CPAR_PA DMA_CPAR_PA_Msk /*!< Peripheral Address */
  2826. /****************** Bit definition for DMA_CMAR register *******************/
  2827. #define DMA_CMAR_MA_Pos (0U)
  2828. #define DMA_CMAR_MA_Msk (0xFFFFFFFFUL << DMA_CMAR_MA_Pos) /*!< 0xFFFFFFFF */
  2829. #define DMA_CMAR_MA DMA_CMAR_MA_Msk /*!< Memory Address */
  2830. /******************************************************************************/
  2831. /* */
  2832. /* Analog to Digital Converter (ADC) */
  2833. /* */
  2834. /******************************************************************************/
  2835. /*
  2836. * @brief Specific device feature definitions (not present on all devices in the STM32F1 family)
  2837. */
  2838. /* Note: No specific macro feature on this device */
  2839. /******************** Bit definition for ADC_SR register ********************/
  2840. #define ADC_SR_AWD_Pos (0U)
  2841. #define ADC_SR_AWD_Msk (0x1UL << ADC_SR_AWD_Pos) /*!< 0x00000001 */
  2842. #define ADC_SR_AWD ADC_SR_AWD_Msk /*!< ADC analog watchdog 1 flag */
  2843. #define ADC_SR_EOS_Pos (1U)
  2844. #define ADC_SR_EOS_Msk (0x1UL << ADC_SR_EOS_Pos) /*!< 0x00000002 */
  2845. #define ADC_SR_EOS ADC_SR_EOS_Msk /*!< ADC group regular end of sequence conversions flag */
  2846. #define ADC_SR_JEOS_Pos (2U)
  2847. #define ADC_SR_JEOS_Msk (0x1UL << ADC_SR_JEOS_Pos) /*!< 0x00000004 */
  2848. #define ADC_SR_JEOS ADC_SR_JEOS_Msk /*!< ADC group injected end of sequence conversions flag */
  2849. #define ADC_SR_JSTRT_Pos (3U)
  2850. #define ADC_SR_JSTRT_Msk (0x1UL << ADC_SR_JSTRT_Pos) /*!< 0x00000008 */
  2851. #define ADC_SR_JSTRT ADC_SR_JSTRT_Msk /*!< ADC group injected conversion start flag */
  2852. #define ADC_SR_STRT_Pos (4U)
  2853. #define ADC_SR_STRT_Msk (0x1UL << ADC_SR_STRT_Pos) /*!< 0x00000010 */
  2854. #define ADC_SR_STRT ADC_SR_STRT_Msk /*!< ADC group regular conversion start flag */
  2855. /* Legacy defines */
  2856. #define ADC_SR_EOC (ADC_SR_EOS)
  2857. #define ADC_SR_JEOC (ADC_SR_JEOS)
  2858. /******************* Bit definition for ADC_CR1 register ********************/
  2859. #define ADC_CR1_AWDCH_Pos (0U)
  2860. #define ADC_CR1_AWDCH_Msk (0x1FUL << ADC_CR1_AWDCH_Pos) /*!< 0x0000001F */
  2861. #define ADC_CR1_AWDCH ADC_CR1_AWDCH_Msk /*!< ADC analog watchdog 1 monitored channel selection */
  2862. #define ADC_CR1_AWDCH_0 (0x01UL << ADC_CR1_AWDCH_Pos) /*!< 0x00000001 */
  2863. #define ADC_CR1_AWDCH_1 (0x02UL << ADC_CR1_AWDCH_Pos) /*!< 0x00000002 */
  2864. #define ADC_CR1_AWDCH_2 (0x04UL << ADC_CR1_AWDCH_Pos) /*!< 0x00000004 */
  2865. #define ADC_CR1_AWDCH_3 (0x08UL << ADC_CR1_AWDCH_Pos) /*!< 0x00000008 */
  2866. #define ADC_CR1_AWDCH_4 (0x10UL << ADC_CR1_AWDCH_Pos) /*!< 0x00000010 */
  2867. #define ADC_CR1_EOSIE_Pos (5U)
  2868. #define ADC_CR1_EOSIE_Msk (0x1UL << ADC_CR1_EOSIE_Pos) /*!< 0x00000020 */
  2869. #define ADC_CR1_EOSIE ADC_CR1_EOSIE_Msk /*!< ADC group regular end of sequence conversions interrupt */
  2870. #define ADC_CR1_AWDIE_Pos (6U)
  2871. #define ADC_CR1_AWDIE_Msk (0x1UL << ADC_CR1_AWDIE_Pos) /*!< 0x00000040 */
  2872. #define ADC_CR1_AWDIE ADC_CR1_AWDIE_Msk /*!< ADC analog watchdog 1 interrupt */
  2873. #define ADC_CR1_JEOSIE_Pos (7U)
  2874. #define ADC_CR1_JEOSIE_Msk (0x1UL << ADC_CR1_JEOSIE_Pos) /*!< 0x00000080 */
  2875. #define ADC_CR1_JEOSIE ADC_CR1_JEOSIE_Msk /*!< ADC group injected end of sequence conversions interrupt */
  2876. #define ADC_CR1_SCAN_Pos (8U)
  2877. #define ADC_CR1_SCAN_Msk (0x1UL << ADC_CR1_SCAN_Pos) /*!< 0x00000100 */
  2878. #define ADC_CR1_SCAN ADC_CR1_SCAN_Msk /*!< ADC scan mode */
  2879. #define ADC_CR1_AWDSGL_Pos (9U)
  2880. #define ADC_CR1_AWDSGL_Msk (0x1UL << ADC_CR1_AWDSGL_Pos) /*!< 0x00000200 */
  2881. #define ADC_CR1_AWDSGL ADC_CR1_AWDSGL_Msk /*!< ADC analog watchdog 1 monitoring a single channel or all channels */
  2882. #define ADC_CR1_JAUTO_Pos (10U)
  2883. #define ADC_CR1_JAUTO_Msk (0x1UL << ADC_CR1_JAUTO_Pos) /*!< 0x00000400 */
  2884. #define ADC_CR1_JAUTO ADC_CR1_JAUTO_Msk /*!< ADC group injected automatic trigger mode */
  2885. #define ADC_CR1_DISCEN_Pos (11U)
  2886. #define ADC_CR1_DISCEN_Msk (0x1UL << ADC_CR1_DISCEN_Pos) /*!< 0x00000800 */
  2887. #define ADC_CR1_DISCEN ADC_CR1_DISCEN_Msk /*!< ADC group regular sequencer discontinuous mode */
  2888. #define ADC_CR1_JDISCEN_Pos (12U)
  2889. #define ADC_CR1_JDISCEN_Msk (0x1UL << ADC_CR1_JDISCEN_Pos) /*!< 0x00001000 */
  2890. #define ADC_CR1_JDISCEN ADC_CR1_JDISCEN_Msk /*!< ADC group injected sequencer discontinuous mode */
  2891. #define ADC_CR1_DISCNUM_Pos (13U)
  2892. #define ADC_CR1_DISCNUM_Msk (0x7UL << ADC_CR1_DISCNUM_Pos) /*!< 0x0000E000 */
  2893. #define ADC_CR1_DISCNUM ADC_CR1_DISCNUM_Msk /*!< ADC group regular sequencer discontinuous number of ranks */
  2894. #define ADC_CR1_DISCNUM_0 (0x1UL << ADC_CR1_DISCNUM_Pos) /*!< 0x00002000 */
  2895. #define ADC_CR1_DISCNUM_1 (0x2UL << ADC_CR1_DISCNUM_Pos) /*!< 0x00004000 */
  2896. #define ADC_CR1_DISCNUM_2 (0x4UL << ADC_CR1_DISCNUM_Pos) /*!< 0x00008000 */
  2897. #define ADC_CR1_JAWDEN_Pos (22U)
  2898. #define ADC_CR1_JAWDEN_Msk (0x1UL << ADC_CR1_JAWDEN_Pos) /*!< 0x00400000 */
  2899. #define ADC_CR1_JAWDEN ADC_CR1_JAWDEN_Msk /*!< ADC analog watchdog 1 enable on scope ADC group injected */
  2900. #define ADC_CR1_AWDEN_Pos (23U)
  2901. #define ADC_CR1_AWDEN_Msk (0x1UL << ADC_CR1_AWDEN_Pos) /*!< 0x00800000 */
  2902. #define ADC_CR1_AWDEN ADC_CR1_AWDEN_Msk /*!< ADC analog watchdog 1 enable on scope ADC group regular */
  2903. /* Legacy defines */
  2904. #define ADC_CR1_EOCIE (ADC_CR1_EOSIE)
  2905. #define ADC_CR1_JEOCIE (ADC_CR1_JEOSIE)
  2906. /******************* Bit definition for ADC_CR2 register ********************/
  2907. #define ADC_CR2_ADON_Pos (0U)
  2908. #define ADC_CR2_ADON_Msk (0x1UL << ADC_CR2_ADON_Pos) /*!< 0x00000001 */
  2909. #define ADC_CR2_ADON ADC_CR2_ADON_Msk /*!< ADC enable */
  2910. #define ADC_CR2_CONT_Pos (1U)
  2911. #define ADC_CR2_CONT_Msk (0x1UL << ADC_CR2_CONT_Pos) /*!< 0x00000002 */
  2912. #define ADC_CR2_CONT ADC_CR2_CONT_Msk /*!< ADC group regular continuous conversion mode */
  2913. #define ADC_CR2_CAL_Pos (2U)
  2914. #define ADC_CR2_CAL_Msk (0x1UL << ADC_CR2_CAL_Pos) /*!< 0x00000004 */
  2915. #define ADC_CR2_CAL ADC_CR2_CAL_Msk /*!< ADC calibration start */
  2916. #define ADC_CR2_RSTCAL_Pos (3U)
  2917. #define ADC_CR2_RSTCAL_Msk (0x1UL << ADC_CR2_RSTCAL_Pos) /*!< 0x00000008 */
  2918. #define ADC_CR2_RSTCAL ADC_CR2_RSTCAL_Msk /*!< ADC calibration reset */
  2919. #define ADC_CR2_DMA_Pos (8U)
  2920. #define ADC_CR2_DMA_Msk (0x1UL << ADC_CR2_DMA_Pos) /*!< 0x00000100 */
  2921. #define ADC_CR2_DMA ADC_CR2_DMA_Msk /*!< ADC DMA transfer enable */
  2922. #define ADC_CR2_ALIGN_Pos (11U)
  2923. #define ADC_CR2_ALIGN_Msk (0x1UL << ADC_CR2_ALIGN_Pos) /*!< 0x00000800 */
  2924. #define ADC_CR2_ALIGN ADC_CR2_ALIGN_Msk /*!< ADC data alignment */
  2925. #define ADC_CR2_JEXTSEL_Pos (12U)
  2926. #define ADC_CR2_JEXTSEL_Msk (0x7UL << ADC_CR2_JEXTSEL_Pos) /*!< 0x00007000 */
  2927. #define ADC_CR2_JEXTSEL ADC_CR2_JEXTSEL_Msk /*!< ADC group injected external trigger source */
  2928. #define ADC_CR2_JEXTSEL_0 (0x1UL << ADC_CR2_JEXTSEL_Pos) /*!< 0x00001000 */
  2929. #define ADC_CR2_JEXTSEL_1 (0x2UL << ADC_CR2_JEXTSEL_Pos) /*!< 0x00002000 */
  2930. #define ADC_CR2_JEXTSEL_2 (0x4UL << ADC_CR2_JEXTSEL_Pos) /*!< 0x00004000 */
  2931. #define ADC_CR2_JEXTTRIG_Pos (15U)
  2932. #define ADC_CR2_JEXTTRIG_Msk (0x1UL << ADC_CR2_JEXTTRIG_Pos) /*!< 0x00008000 */
  2933. #define ADC_CR2_JEXTTRIG ADC_CR2_JEXTTRIG_Msk /*!< ADC group injected external trigger enable */
  2934. #define ADC_CR2_EXTSEL_Pos (17U)
  2935. #define ADC_CR2_EXTSEL_Msk (0x7UL << ADC_CR2_EXTSEL_Pos) /*!< 0x000E0000 */
  2936. #define ADC_CR2_EXTSEL ADC_CR2_EXTSEL_Msk /*!< ADC group regular external trigger source */
  2937. #define ADC_CR2_EXTSEL_0 (0x1UL << ADC_CR2_EXTSEL_Pos) /*!< 0x00020000 */
  2938. #define ADC_CR2_EXTSEL_1 (0x2UL << ADC_CR2_EXTSEL_Pos) /*!< 0x00040000 */
  2939. #define ADC_CR2_EXTSEL_2 (0x4UL << ADC_CR2_EXTSEL_Pos) /*!< 0x00080000 */
  2940. #define ADC_CR2_EXTTRIG_Pos (20U)
  2941. #define ADC_CR2_EXTTRIG_Msk (0x1UL << ADC_CR2_EXTTRIG_Pos) /*!< 0x00100000 */
  2942. #define ADC_CR2_EXTTRIG ADC_CR2_EXTTRIG_Msk /*!< ADC group regular external trigger enable */
  2943. #define ADC_CR2_JSWSTART_Pos (21U)
  2944. #define ADC_CR2_JSWSTART_Msk (0x1UL << ADC_CR2_JSWSTART_Pos) /*!< 0x00200000 */
  2945. #define ADC_CR2_JSWSTART ADC_CR2_JSWSTART_Msk /*!< ADC group injected conversion start */
  2946. #define ADC_CR2_SWSTART_Pos (22U)
  2947. #define ADC_CR2_SWSTART_Msk (0x1UL << ADC_CR2_SWSTART_Pos) /*!< 0x00400000 */
  2948. #define ADC_CR2_SWSTART ADC_CR2_SWSTART_Msk /*!< ADC group regular conversion start */
  2949. #define ADC_CR2_TSVREFE_Pos (23U)
  2950. #define ADC_CR2_TSVREFE_Msk (0x1UL << ADC_CR2_TSVREFE_Pos) /*!< 0x00800000 */
  2951. #define ADC_CR2_TSVREFE ADC_CR2_TSVREFE_Msk /*!< ADC internal path to VrefInt and temperature sensor enable */
  2952. /****************** Bit definition for ADC_SMPR1 register *******************/
  2953. #define ADC_SMPR1_SMP10_Pos (0U)
  2954. #define ADC_SMPR1_SMP10_Msk (0x7UL << ADC_SMPR1_SMP10_Pos) /*!< 0x00000007 */
  2955. #define ADC_SMPR1_SMP10 ADC_SMPR1_SMP10_Msk /*!< ADC channel 10 sampling time selection */
  2956. #define ADC_SMPR1_SMP10_0 (0x1UL << ADC_SMPR1_SMP10_Pos) /*!< 0x00000001 */
  2957. #define ADC_SMPR1_SMP10_1 (0x2UL << ADC_SMPR1_SMP10_Pos) /*!< 0x00000002 */
  2958. #define ADC_SMPR1_SMP10_2 (0x4UL << ADC_SMPR1_SMP10_Pos) /*!< 0x00000004 */
  2959. #define ADC_SMPR1_SMP11_Pos (3U)
  2960. #define ADC_SMPR1_SMP11_Msk (0x7UL << ADC_SMPR1_SMP11_Pos) /*!< 0x00000038 */
  2961. #define ADC_SMPR1_SMP11 ADC_SMPR1_SMP11_Msk /*!< ADC channel 11 sampling time selection */
  2962. #define ADC_SMPR1_SMP11_0 (0x1UL << ADC_SMPR1_SMP11_Pos) /*!< 0x00000008 */
  2963. #define ADC_SMPR1_SMP11_1 (0x2UL << ADC_SMPR1_SMP11_Pos) /*!< 0x00000010 */
  2964. #define ADC_SMPR1_SMP11_2 (0x4UL << ADC_SMPR1_SMP11_Pos) /*!< 0x00000020 */
  2965. #define ADC_SMPR1_SMP12_Pos (6U)
  2966. #define ADC_SMPR1_SMP12_Msk (0x7UL << ADC_SMPR1_SMP12_Pos) /*!< 0x000001C0 */
  2967. #define ADC_SMPR1_SMP12 ADC_SMPR1_SMP12_Msk /*!< ADC channel 12 sampling time selection */
  2968. #define ADC_SMPR1_SMP12_0 (0x1UL << ADC_SMPR1_SMP12_Pos) /*!< 0x00000040 */
  2969. #define ADC_SMPR1_SMP12_1 (0x2UL << ADC_SMPR1_SMP12_Pos) /*!< 0x00000080 */
  2970. #define ADC_SMPR1_SMP12_2 (0x4UL << ADC_SMPR1_SMP12_Pos) /*!< 0x00000100 */
  2971. #define ADC_SMPR1_SMP13_Pos (9U)
  2972. #define ADC_SMPR1_SMP13_Msk (0x7UL << ADC_SMPR1_SMP13_Pos) /*!< 0x00000E00 */
  2973. #define ADC_SMPR1_SMP13 ADC_SMPR1_SMP13_Msk /*!< ADC channel 13 sampling time selection */
  2974. #define ADC_SMPR1_SMP13_0 (0x1UL << ADC_SMPR1_SMP13_Pos) /*!< 0x00000200 */
  2975. #define ADC_SMPR1_SMP13_1 (0x2UL << ADC_SMPR1_SMP13_Pos) /*!< 0x00000400 */
  2976. #define ADC_SMPR1_SMP13_2 (0x4UL << ADC_SMPR1_SMP13_Pos) /*!< 0x00000800 */
  2977. #define ADC_SMPR1_SMP14_Pos (12U)
  2978. #define ADC_SMPR1_SMP14_Msk (0x7UL << ADC_SMPR1_SMP14_Pos) /*!< 0x00007000 */
  2979. #define ADC_SMPR1_SMP14 ADC_SMPR1_SMP14_Msk /*!< ADC channel 14 sampling time selection */
  2980. #define ADC_SMPR1_SMP14_0 (0x1UL << ADC_SMPR1_SMP14_Pos) /*!< 0x00001000 */
  2981. #define ADC_SMPR1_SMP14_1 (0x2UL << ADC_SMPR1_SMP14_Pos) /*!< 0x00002000 */
  2982. #define ADC_SMPR1_SMP14_2 (0x4UL << ADC_SMPR1_SMP14_Pos) /*!< 0x00004000 */
  2983. #define ADC_SMPR1_SMP15_Pos (15U)
  2984. #define ADC_SMPR1_SMP15_Msk (0x7UL << ADC_SMPR1_SMP15_Pos) /*!< 0x00038000 */
  2985. #define ADC_SMPR1_SMP15 ADC_SMPR1_SMP15_Msk /*!< ADC channel 15 sampling time selection */
  2986. #define ADC_SMPR1_SMP15_0 (0x1UL << ADC_SMPR1_SMP15_Pos) /*!< 0x00008000 */
  2987. #define ADC_SMPR1_SMP15_1 (0x2UL << ADC_SMPR1_SMP15_Pos) /*!< 0x00010000 */
  2988. #define ADC_SMPR1_SMP15_2 (0x4UL << ADC_SMPR1_SMP15_Pos) /*!< 0x00020000 */
  2989. #define ADC_SMPR1_SMP16_Pos (18U)
  2990. #define ADC_SMPR1_SMP16_Msk (0x7UL << ADC_SMPR1_SMP16_Pos) /*!< 0x001C0000 */
  2991. #define ADC_SMPR1_SMP16 ADC_SMPR1_SMP16_Msk /*!< ADC channel 16 sampling time selection */
  2992. #define ADC_SMPR1_SMP16_0 (0x1UL << ADC_SMPR1_SMP16_Pos) /*!< 0x00040000 */
  2993. #define ADC_SMPR1_SMP16_1 (0x2UL << ADC_SMPR1_SMP16_Pos) /*!< 0x00080000 */
  2994. #define ADC_SMPR1_SMP16_2 (0x4UL << ADC_SMPR1_SMP16_Pos) /*!< 0x00100000 */
  2995. #define ADC_SMPR1_SMP17_Pos (21U)
  2996. #define ADC_SMPR1_SMP17_Msk (0x7UL << ADC_SMPR1_SMP17_Pos) /*!< 0x00E00000 */
  2997. #define ADC_SMPR1_SMP17 ADC_SMPR1_SMP17_Msk /*!< ADC channel 17 sampling time selection */
  2998. #define ADC_SMPR1_SMP17_0 (0x1UL << ADC_SMPR1_SMP17_Pos) /*!< 0x00200000 */
  2999. #define ADC_SMPR1_SMP17_1 (0x2UL << ADC_SMPR1_SMP17_Pos) /*!< 0x00400000 */
  3000. #define ADC_SMPR1_SMP17_2 (0x4UL << ADC_SMPR1_SMP17_Pos) /*!< 0x00800000 */
  3001. /****************** Bit definition for ADC_SMPR2 register *******************/
  3002. #define ADC_SMPR2_SMP0_Pos (0U)
  3003. #define ADC_SMPR2_SMP0_Msk (0x7UL << ADC_SMPR2_SMP0_Pos) /*!< 0x00000007 */
  3004. #define ADC_SMPR2_SMP0 ADC_SMPR2_SMP0_Msk /*!< ADC channel 0 sampling time selection */
  3005. #define ADC_SMPR2_SMP0_0 (0x1UL << ADC_SMPR2_SMP0_Pos) /*!< 0x00000001 */
  3006. #define ADC_SMPR2_SMP0_1 (0x2UL << ADC_SMPR2_SMP0_Pos) /*!< 0x00000002 */
  3007. #define ADC_SMPR2_SMP0_2 (0x4UL << ADC_SMPR2_SMP0_Pos) /*!< 0x00000004 */
  3008. #define ADC_SMPR2_SMP1_Pos (3U)
  3009. #define ADC_SMPR2_SMP1_Msk (0x7UL << ADC_SMPR2_SMP1_Pos) /*!< 0x00000038 */
  3010. #define ADC_SMPR2_SMP1 ADC_SMPR2_SMP1_Msk /*!< ADC channel 1 sampling time selection */
  3011. #define ADC_SMPR2_SMP1_0 (0x1UL << ADC_SMPR2_SMP1_Pos) /*!< 0x00000008 */
  3012. #define ADC_SMPR2_SMP1_1 (0x2UL << ADC_SMPR2_SMP1_Pos) /*!< 0x00000010 */
  3013. #define ADC_SMPR2_SMP1_2 (0x4UL << ADC_SMPR2_SMP1_Pos) /*!< 0x00000020 */
  3014. #define ADC_SMPR2_SMP2_Pos (6U)
  3015. #define ADC_SMPR2_SMP2_Msk (0x7UL << ADC_SMPR2_SMP2_Pos) /*!< 0x000001C0 */
  3016. #define ADC_SMPR2_SMP2 ADC_SMPR2_SMP2_Msk /*!< ADC channel 2 sampling time selection */
  3017. #define ADC_SMPR2_SMP2_0 (0x1UL << ADC_SMPR2_SMP2_Pos) /*!< 0x00000040 */
  3018. #define ADC_SMPR2_SMP2_1 (0x2UL << ADC_SMPR2_SMP2_Pos) /*!< 0x00000080 */
  3019. #define ADC_SMPR2_SMP2_2 (0x4UL << ADC_SMPR2_SMP2_Pos) /*!< 0x00000100 */
  3020. #define ADC_SMPR2_SMP3_Pos (9U)
  3021. #define ADC_SMPR2_SMP3_Msk (0x7UL << ADC_SMPR2_SMP3_Pos) /*!< 0x00000E00 */
  3022. #define ADC_SMPR2_SMP3 ADC_SMPR2_SMP3_Msk /*!< ADC channel 3 sampling time selection */
  3023. #define ADC_SMPR2_SMP3_0 (0x1UL << ADC_SMPR2_SMP3_Pos) /*!< 0x00000200 */
  3024. #define ADC_SMPR2_SMP3_1 (0x2UL << ADC_SMPR2_SMP3_Pos) /*!< 0x00000400 */
  3025. #define ADC_SMPR2_SMP3_2 (0x4UL << ADC_SMPR2_SMP3_Pos) /*!< 0x00000800 */
  3026. #define ADC_SMPR2_SMP4_Pos (12U)
  3027. #define ADC_SMPR2_SMP4_Msk (0x7UL << ADC_SMPR2_SMP4_Pos) /*!< 0x00007000 */
  3028. #define ADC_SMPR2_SMP4 ADC_SMPR2_SMP4_Msk /*!< ADC channel 4 sampling time selection */
  3029. #define ADC_SMPR2_SMP4_0 (0x1UL << ADC_SMPR2_SMP4_Pos) /*!< 0x00001000 */
  3030. #define ADC_SMPR2_SMP4_1 (0x2UL << ADC_SMPR2_SMP4_Pos) /*!< 0x00002000 */
  3031. #define ADC_SMPR2_SMP4_2 (0x4UL << ADC_SMPR2_SMP4_Pos) /*!< 0x00004000 */
  3032. #define ADC_SMPR2_SMP5_Pos (15U)
  3033. #define ADC_SMPR2_SMP5_Msk (0x7UL << ADC_SMPR2_SMP5_Pos) /*!< 0x00038000 */
  3034. #define ADC_SMPR2_SMP5 ADC_SMPR2_SMP5_Msk /*!< ADC channel 5 sampling time selection */
  3035. #define ADC_SMPR2_SMP5_0 (0x1UL << ADC_SMPR2_SMP5_Pos) /*!< 0x00008000 */
  3036. #define ADC_SMPR2_SMP5_1 (0x2UL << ADC_SMPR2_SMP5_Pos) /*!< 0x00010000 */
  3037. #define ADC_SMPR2_SMP5_2 (0x4UL << ADC_SMPR2_SMP5_Pos) /*!< 0x00020000 */
  3038. #define ADC_SMPR2_SMP6_Pos (18U)
  3039. #define ADC_SMPR2_SMP6_Msk (0x7UL << ADC_SMPR2_SMP6_Pos) /*!< 0x001C0000 */
  3040. #define ADC_SMPR2_SMP6 ADC_SMPR2_SMP6_Msk /*!< ADC channel 6 sampling time selection */
  3041. #define ADC_SMPR2_SMP6_0 (0x1UL << ADC_SMPR2_SMP6_Pos) /*!< 0x00040000 */
  3042. #define ADC_SMPR2_SMP6_1 (0x2UL << ADC_SMPR2_SMP6_Pos) /*!< 0x00080000 */
  3043. #define ADC_SMPR2_SMP6_2 (0x4UL << ADC_SMPR2_SMP6_Pos) /*!< 0x00100000 */
  3044. #define ADC_SMPR2_SMP7_Pos (21U)
  3045. #define ADC_SMPR2_SMP7_Msk (0x7UL << ADC_SMPR2_SMP7_Pos) /*!< 0x00E00000 */
  3046. #define ADC_SMPR2_SMP7 ADC_SMPR2_SMP7_Msk /*!< ADC channel 7 sampling time selection */
  3047. #define ADC_SMPR2_SMP7_0 (0x1UL << ADC_SMPR2_SMP7_Pos) /*!< 0x00200000 */
  3048. #define ADC_SMPR2_SMP7_1 (0x2UL << ADC_SMPR2_SMP7_Pos) /*!< 0x00400000 */
  3049. #define ADC_SMPR2_SMP7_2 (0x4UL << ADC_SMPR2_SMP7_Pos) /*!< 0x00800000 */
  3050. #define ADC_SMPR2_SMP8_Pos (24U)
  3051. #define ADC_SMPR2_SMP8_Msk (0x7UL << ADC_SMPR2_SMP8_Pos) /*!< 0x07000000 */
  3052. #define ADC_SMPR2_SMP8 ADC_SMPR2_SMP8_Msk /*!< ADC channel 8 sampling time selection */
  3053. #define ADC_SMPR2_SMP8_0 (0x1UL << ADC_SMPR2_SMP8_Pos) /*!< 0x01000000 */
  3054. #define ADC_SMPR2_SMP8_1 (0x2UL << ADC_SMPR2_SMP8_Pos) /*!< 0x02000000 */
  3055. #define ADC_SMPR2_SMP8_2 (0x4UL << ADC_SMPR2_SMP8_Pos) /*!< 0x04000000 */
  3056. #define ADC_SMPR2_SMP9_Pos (27U)
  3057. #define ADC_SMPR2_SMP9_Msk (0x7UL << ADC_SMPR2_SMP9_Pos) /*!< 0x38000000 */
  3058. #define ADC_SMPR2_SMP9 ADC_SMPR2_SMP9_Msk /*!< ADC channel 9 sampling time selection */
  3059. #define ADC_SMPR2_SMP9_0 (0x1UL << ADC_SMPR2_SMP9_Pos) /*!< 0x08000000 */
  3060. #define ADC_SMPR2_SMP9_1 (0x2UL << ADC_SMPR2_SMP9_Pos) /*!< 0x10000000 */
  3061. #define ADC_SMPR2_SMP9_2 (0x4UL << ADC_SMPR2_SMP9_Pos) /*!< 0x20000000 */
  3062. /****************** Bit definition for ADC_JOFR1 register *******************/
  3063. #define ADC_JOFR1_JOFFSET1_Pos (0U)
  3064. #define ADC_JOFR1_JOFFSET1_Msk (0xFFFUL << ADC_JOFR1_JOFFSET1_Pos) /*!< 0x00000FFF */
  3065. #define ADC_JOFR1_JOFFSET1 ADC_JOFR1_JOFFSET1_Msk /*!< ADC group injected sequencer rank 1 offset value */
  3066. /****************** Bit definition for ADC_JOFR2 register *******************/
  3067. #define ADC_JOFR2_JOFFSET2_Pos (0U)
  3068. #define ADC_JOFR2_JOFFSET2_Msk (0xFFFUL << ADC_JOFR2_JOFFSET2_Pos) /*!< 0x00000FFF */
  3069. #define ADC_JOFR2_JOFFSET2 ADC_JOFR2_JOFFSET2_Msk /*!< ADC group injected sequencer rank 2 offset value */
  3070. /****************** Bit definition for ADC_JOFR3 register *******************/
  3071. #define ADC_JOFR3_JOFFSET3_Pos (0U)
  3072. #define ADC_JOFR3_JOFFSET3_Msk (0xFFFUL << ADC_JOFR3_JOFFSET3_Pos) /*!< 0x00000FFF */
  3073. #define ADC_JOFR3_JOFFSET3 ADC_JOFR3_JOFFSET3_Msk /*!< ADC group injected sequencer rank 3 offset value */
  3074. /****************** Bit definition for ADC_JOFR4 register *******************/
  3075. #define ADC_JOFR4_JOFFSET4_Pos (0U)
  3076. #define ADC_JOFR4_JOFFSET4_Msk (0xFFFUL << ADC_JOFR4_JOFFSET4_Pos) /*!< 0x00000FFF */
  3077. #define ADC_JOFR4_JOFFSET4 ADC_JOFR4_JOFFSET4_Msk /*!< ADC group injected sequencer rank 4 offset value */
  3078. /******************* Bit definition for ADC_HTR register ********************/
  3079. #define ADC_HTR_HT_Pos (0U)
  3080. #define ADC_HTR_HT_Msk (0xFFFUL << ADC_HTR_HT_Pos) /*!< 0x00000FFF */
  3081. #define ADC_HTR_HT ADC_HTR_HT_Msk /*!< ADC analog watchdog 1 threshold high */
  3082. /******************* Bit definition for ADC_LTR register ********************/
  3083. #define ADC_LTR_LT_Pos (0U)
  3084. #define ADC_LTR_LT_Msk (0xFFFUL << ADC_LTR_LT_Pos) /*!< 0x00000FFF */
  3085. #define ADC_LTR_LT ADC_LTR_LT_Msk /*!< ADC analog watchdog 1 threshold low */
  3086. /******************* Bit definition for ADC_SQR1 register *******************/
  3087. #define ADC_SQR1_SQ13_Pos (0U)
  3088. #define ADC_SQR1_SQ13_Msk (0x1FUL << ADC_SQR1_SQ13_Pos) /*!< 0x0000001F */
  3089. #define ADC_SQR1_SQ13 ADC_SQR1_SQ13_Msk /*!< ADC group regular sequencer rank 13 */
  3090. #define ADC_SQR1_SQ13_0 (0x01UL << ADC_SQR1_SQ13_Pos) /*!< 0x00000001 */
  3091. #define ADC_SQR1_SQ13_1 (0x02UL << ADC_SQR1_SQ13_Pos) /*!< 0x00000002 */
  3092. #define ADC_SQR1_SQ13_2 (0x04UL << ADC_SQR1_SQ13_Pos) /*!< 0x00000004 */
  3093. #define ADC_SQR1_SQ13_3 (0x08UL << ADC_SQR1_SQ13_Pos) /*!< 0x00000008 */
  3094. #define ADC_SQR1_SQ13_4 (0x10UL << ADC_SQR1_SQ13_Pos) /*!< 0x00000010 */
  3095. #define ADC_SQR1_SQ14_Pos (5U)
  3096. #define ADC_SQR1_SQ14_Msk (0x1FUL << ADC_SQR1_SQ14_Pos) /*!< 0x000003E0 */
  3097. #define ADC_SQR1_SQ14 ADC_SQR1_SQ14_Msk /*!< ADC group regular sequencer rank 14 */
  3098. #define ADC_SQR1_SQ14_0 (0x01UL << ADC_SQR1_SQ14_Pos) /*!< 0x00000020 */
  3099. #define ADC_SQR1_SQ14_1 (0x02UL << ADC_SQR1_SQ14_Pos) /*!< 0x00000040 */
  3100. #define ADC_SQR1_SQ14_2 (0x04UL << ADC_SQR1_SQ14_Pos) /*!< 0x00000080 */
  3101. #define ADC_SQR1_SQ14_3 (0x08UL << ADC_SQR1_SQ14_Pos) /*!< 0x00000100 */
  3102. #define ADC_SQR1_SQ14_4 (0x10UL << ADC_SQR1_SQ14_Pos) /*!< 0x00000200 */
  3103. #define ADC_SQR1_SQ15_Pos (10U)
  3104. #define ADC_SQR1_SQ15_Msk (0x1FUL << ADC_SQR1_SQ15_Pos) /*!< 0x00007C00 */
  3105. #define ADC_SQR1_SQ15 ADC_SQR1_SQ15_Msk /*!< ADC group regular sequencer rank 15 */
  3106. #define ADC_SQR1_SQ15_0 (0x01UL << ADC_SQR1_SQ15_Pos) /*!< 0x00000400 */
  3107. #define ADC_SQR1_SQ15_1 (0x02UL << ADC_SQR1_SQ15_Pos) /*!< 0x00000800 */
  3108. #define ADC_SQR1_SQ15_2 (0x04UL << ADC_SQR1_SQ15_Pos) /*!< 0x00001000 */
  3109. #define ADC_SQR1_SQ15_3 (0x08UL << ADC_SQR1_SQ15_Pos) /*!< 0x00002000 */
  3110. #define ADC_SQR1_SQ15_4 (0x10UL << ADC_SQR1_SQ15_Pos) /*!< 0x00004000 */
  3111. #define ADC_SQR1_SQ16_Pos (15U)
  3112. #define ADC_SQR1_SQ16_Msk (0x1FUL << ADC_SQR1_SQ16_Pos) /*!< 0x000F8000 */
  3113. #define ADC_SQR1_SQ16 ADC_SQR1_SQ16_Msk /*!< ADC group regular sequencer rank 16 */
  3114. #define ADC_SQR1_SQ16_0 (0x01UL << ADC_SQR1_SQ16_Pos) /*!< 0x00008000 */
  3115. #define ADC_SQR1_SQ16_1 (0x02UL << ADC_SQR1_SQ16_Pos) /*!< 0x00010000 */
  3116. #define ADC_SQR1_SQ16_2 (0x04UL << ADC_SQR1_SQ16_Pos) /*!< 0x00020000 */
  3117. #define ADC_SQR1_SQ16_3 (0x08UL << ADC_SQR1_SQ16_Pos) /*!< 0x00040000 */
  3118. #define ADC_SQR1_SQ16_4 (0x10UL << ADC_SQR1_SQ16_Pos) /*!< 0x00080000 */
  3119. #define ADC_SQR1_L_Pos (20U)
  3120. #define ADC_SQR1_L_Msk (0xFUL << ADC_SQR1_L_Pos) /*!< 0x00F00000 */
  3121. #define ADC_SQR1_L ADC_SQR1_L_Msk /*!< ADC group regular sequencer scan length */
  3122. #define ADC_SQR1_L_0 (0x1UL << ADC_SQR1_L_Pos) /*!< 0x00100000 */
  3123. #define ADC_SQR1_L_1 (0x2UL << ADC_SQR1_L_Pos) /*!< 0x00200000 */
  3124. #define ADC_SQR1_L_2 (0x4UL << ADC_SQR1_L_Pos) /*!< 0x00400000 */
  3125. #define ADC_SQR1_L_3 (0x8UL << ADC_SQR1_L_Pos) /*!< 0x00800000 */
  3126. /******************* Bit definition for ADC_SQR2 register *******************/
  3127. #define ADC_SQR2_SQ7_Pos (0U)
  3128. #define ADC_SQR2_SQ7_Msk (0x1FUL << ADC_SQR2_SQ7_Pos) /*!< 0x0000001F */
  3129. #define ADC_SQR2_SQ7 ADC_SQR2_SQ7_Msk /*!< ADC group regular sequencer rank 7 */
  3130. #define ADC_SQR2_SQ7_0 (0x01UL << ADC_SQR2_SQ7_Pos) /*!< 0x00000001 */
  3131. #define ADC_SQR2_SQ7_1 (0x02UL << ADC_SQR2_SQ7_Pos) /*!< 0x00000002 */
  3132. #define ADC_SQR2_SQ7_2 (0x04UL << ADC_SQR2_SQ7_Pos) /*!< 0x00000004 */
  3133. #define ADC_SQR2_SQ7_3 (0x08UL << ADC_SQR2_SQ7_Pos) /*!< 0x00000008 */
  3134. #define ADC_SQR2_SQ7_4 (0x10UL << ADC_SQR2_SQ7_Pos) /*!< 0x00000010 */
  3135. #define ADC_SQR2_SQ8_Pos (5U)
  3136. #define ADC_SQR2_SQ8_Msk (0x1FUL << ADC_SQR2_SQ8_Pos) /*!< 0x000003E0 */
  3137. #define ADC_SQR2_SQ8 ADC_SQR2_SQ8_Msk /*!< ADC group regular sequencer rank 8 */
  3138. #define ADC_SQR2_SQ8_0 (0x01UL << ADC_SQR2_SQ8_Pos) /*!< 0x00000020 */
  3139. #define ADC_SQR2_SQ8_1 (0x02UL << ADC_SQR2_SQ8_Pos) /*!< 0x00000040 */
  3140. #define ADC_SQR2_SQ8_2 (0x04UL << ADC_SQR2_SQ8_Pos) /*!< 0x00000080 */
  3141. #define ADC_SQR2_SQ8_3 (0x08UL << ADC_SQR2_SQ8_Pos) /*!< 0x00000100 */
  3142. #define ADC_SQR2_SQ8_4 (0x10UL << ADC_SQR2_SQ8_Pos) /*!< 0x00000200 */
  3143. #define ADC_SQR2_SQ9_Pos (10U)
  3144. #define ADC_SQR2_SQ9_Msk (0x1FUL << ADC_SQR2_SQ9_Pos) /*!< 0x00007C00 */
  3145. #define ADC_SQR2_SQ9 ADC_SQR2_SQ9_Msk /*!< ADC group regular sequencer rank 9 */
  3146. #define ADC_SQR2_SQ9_0 (0x01UL << ADC_SQR2_SQ9_Pos) /*!< 0x00000400 */
  3147. #define ADC_SQR2_SQ9_1 (0x02UL << ADC_SQR2_SQ9_Pos) /*!< 0x00000800 */
  3148. #define ADC_SQR2_SQ9_2 (0x04UL << ADC_SQR2_SQ9_Pos) /*!< 0x00001000 */
  3149. #define ADC_SQR2_SQ9_3 (0x08UL << ADC_SQR2_SQ9_Pos) /*!< 0x00002000 */
  3150. #define ADC_SQR2_SQ9_4 (0x10UL << ADC_SQR2_SQ9_Pos) /*!< 0x00004000 */
  3151. #define ADC_SQR2_SQ10_Pos (15U)
  3152. #define ADC_SQR2_SQ10_Msk (0x1FUL << ADC_SQR2_SQ10_Pos) /*!< 0x000F8000 */
  3153. #define ADC_SQR2_SQ10 ADC_SQR2_SQ10_Msk /*!< ADC group regular sequencer rank 10 */
  3154. #define ADC_SQR2_SQ10_0 (0x01UL << ADC_SQR2_SQ10_Pos) /*!< 0x00008000 */
  3155. #define ADC_SQR2_SQ10_1 (0x02UL << ADC_SQR2_SQ10_Pos) /*!< 0x00010000 */
  3156. #define ADC_SQR2_SQ10_2 (0x04UL << ADC_SQR2_SQ10_Pos) /*!< 0x00020000 */
  3157. #define ADC_SQR2_SQ10_3 (0x08UL << ADC_SQR2_SQ10_Pos) /*!< 0x00040000 */
  3158. #define ADC_SQR2_SQ10_4 (0x10UL << ADC_SQR2_SQ10_Pos) /*!< 0x00080000 */
  3159. #define ADC_SQR2_SQ11_Pos (20U)
  3160. #define ADC_SQR2_SQ11_Msk (0x1FUL << ADC_SQR2_SQ11_Pos) /*!< 0x01F00000 */
  3161. #define ADC_SQR2_SQ11 ADC_SQR2_SQ11_Msk /*!< ADC group regular sequencer rank 1 */
  3162. #define ADC_SQR2_SQ11_0 (0x01UL << ADC_SQR2_SQ11_Pos) /*!< 0x00100000 */
  3163. #define ADC_SQR2_SQ11_1 (0x02UL << ADC_SQR2_SQ11_Pos) /*!< 0x00200000 */
  3164. #define ADC_SQR2_SQ11_2 (0x04UL << ADC_SQR2_SQ11_Pos) /*!< 0x00400000 */
  3165. #define ADC_SQR2_SQ11_3 (0x08UL << ADC_SQR2_SQ11_Pos) /*!< 0x00800000 */
  3166. #define ADC_SQR2_SQ11_4 (0x10UL << ADC_SQR2_SQ11_Pos) /*!< 0x01000000 */
  3167. #define ADC_SQR2_SQ12_Pos (25U)
  3168. #define ADC_SQR2_SQ12_Msk (0x1FUL << ADC_SQR2_SQ12_Pos) /*!< 0x3E000000 */
  3169. #define ADC_SQR2_SQ12 ADC_SQR2_SQ12_Msk /*!< ADC group regular sequencer rank 12 */
  3170. #define ADC_SQR2_SQ12_0 (0x01UL << ADC_SQR2_SQ12_Pos) /*!< 0x02000000 */
  3171. #define ADC_SQR2_SQ12_1 (0x02UL << ADC_SQR2_SQ12_Pos) /*!< 0x04000000 */
  3172. #define ADC_SQR2_SQ12_2 (0x04UL << ADC_SQR2_SQ12_Pos) /*!< 0x08000000 */
  3173. #define ADC_SQR2_SQ12_3 (0x08UL << ADC_SQR2_SQ12_Pos) /*!< 0x10000000 */
  3174. #define ADC_SQR2_SQ12_4 (0x10UL << ADC_SQR2_SQ12_Pos) /*!< 0x20000000 */
  3175. /******************* Bit definition for ADC_SQR3 register *******************/
  3176. #define ADC_SQR3_SQ1_Pos (0U)
  3177. #define ADC_SQR3_SQ1_Msk (0x1FUL << ADC_SQR3_SQ1_Pos) /*!< 0x0000001F */
  3178. #define ADC_SQR3_SQ1 ADC_SQR3_SQ1_Msk /*!< ADC group regular sequencer rank 1 */
  3179. #define ADC_SQR3_SQ1_0 (0x01UL << ADC_SQR3_SQ1_Pos) /*!< 0x00000001 */
  3180. #define ADC_SQR3_SQ1_1 (0x02UL << ADC_SQR3_SQ1_Pos) /*!< 0x00000002 */
  3181. #define ADC_SQR3_SQ1_2 (0x04UL << ADC_SQR3_SQ1_Pos) /*!< 0x00000004 */
  3182. #define ADC_SQR3_SQ1_3 (0x08UL << ADC_SQR3_SQ1_Pos) /*!< 0x00000008 */
  3183. #define ADC_SQR3_SQ1_4 (0x10UL << ADC_SQR3_SQ1_Pos) /*!< 0x00000010 */
  3184. #define ADC_SQR3_SQ2_Pos (5U)
  3185. #define ADC_SQR3_SQ2_Msk (0x1FUL << ADC_SQR3_SQ2_Pos) /*!< 0x000003E0 */
  3186. #define ADC_SQR3_SQ2 ADC_SQR3_SQ2_Msk /*!< ADC group regular sequencer rank 2 */
  3187. #define ADC_SQR3_SQ2_0 (0x01UL << ADC_SQR3_SQ2_Pos) /*!< 0x00000020 */
  3188. #define ADC_SQR3_SQ2_1 (0x02UL << ADC_SQR3_SQ2_Pos) /*!< 0x00000040 */
  3189. #define ADC_SQR3_SQ2_2 (0x04UL << ADC_SQR3_SQ2_Pos) /*!< 0x00000080 */
  3190. #define ADC_SQR3_SQ2_3 (0x08UL << ADC_SQR3_SQ2_Pos) /*!< 0x00000100 */
  3191. #define ADC_SQR3_SQ2_4 (0x10UL << ADC_SQR3_SQ2_Pos) /*!< 0x00000200 */
  3192. #define ADC_SQR3_SQ3_Pos (10U)
  3193. #define ADC_SQR3_SQ3_Msk (0x1FUL << ADC_SQR3_SQ3_Pos) /*!< 0x00007C00 */
  3194. #define ADC_SQR3_SQ3 ADC_SQR3_SQ3_Msk /*!< ADC group regular sequencer rank 3 */
  3195. #define ADC_SQR3_SQ3_0 (0x01UL << ADC_SQR3_SQ3_Pos) /*!< 0x00000400 */
  3196. #define ADC_SQR3_SQ3_1 (0x02UL << ADC_SQR3_SQ3_Pos) /*!< 0x00000800 */
  3197. #define ADC_SQR3_SQ3_2 (0x04UL << ADC_SQR3_SQ3_Pos) /*!< 0x00001000 */
  3198. #define ADC_SQR3_SQ3_3 (0x08UL << ADC_SQR3_SQ3_Pos) /*!< 0x00002000 */
  3199. #define ADC_SQR3_SQ3_4 (0x10UL << ADC_SQR3_SQ3_Pos) /*!< 0x00004000 */
  3200. #define ADC_SQR3_SQ4_Pos (15U)
  3201. #define ADC_SQR3_SQ4_Msk (0x1FUL << ADC_SQR3_SQ4_Pos) /*!< 0x000F8000 */
  3202. #define ADC_SQR3_SQ4 ADC_SQR3_SQ4_Msk /*!< ADC group regular sequencer rank 4 */
  3203. #define ADC_SQR3_SQ4_0 (0x01UL << ADC_SQR3_SQ4_Pos) /*!< 0x00008000 */
  3204. #define ADC_SQR3_SQ4_1 (0x02UL << ADC_SQR3_SQ4_Pos) /*!< 0x00010000 */
  3205. #define ADC_SQR3_SQ4_2 (0x04UL << ADC_SQR3_SQ4_Pos) /*!< 0x00020000 */
  3206. #define ADC_SQR3_SQ4_3 (0x08UL << ADC_SQR3_SQ4_Pos) /*!< 0x00040000 */
  3207. #define ADC_SQR3_SQ4_4 (0x10UL << ADC_SQR3_SQ4_Pos) /*!< 0x00080000 */
  3208. #define ADC_SQR3_SQ5_Pos (20U)
  3209. #define ADC_SQR3_SQ5_Msk (0x1FUL << ADC_SQR3_SQ5_Pos) /*!< 0x01F00000 */
  3210. #define ADC_SQR3_SQ5 ADC_SQR3_SQ5_Msk /*!< ADC group regular sequencer rank 5 */
  3211. #define ADC_SQR3_SQ5_0 (0x01UL << ADC_SQR3_SQ5_Pos) /*!< 0x00100000 */
  3212. #define ADC_SQR3_SQ5_1 (0x02UL << ADC_SQR3_SQ5_Pos) /*!< 0x00200000 */
  3213. #define ADC_SQR3_SQ5_2 (0x04UL << ADC_SQR3_SQ5_Pos) /*!< 0x00400000 */
  3214. #define ADC_SQR3_SQ5_3 (0x08UL << ADC_SQR3_SQ5_Pos) /*!< 0x00800000 */
  3215. #define ADC_SQR3_SQ5_4 (0x10UL << ADC_SQR3_SQ5_Pos) /*!< 0x01000000 */
  3216. #define ADC_SQR3_SQ6_Pos (25U)
  3217. #define ADC_SQR3_SQ6_Msk (0x1FUL << ADC_SQR3_SQ6_Pos) /*!< 0x3E000000 */
  3218. #define ADC_SQR3_SQ6 ADC_SQR3_SQ6_Msk /*!< ADC group regular sequencer rank 6 */
  3219. #define ADC_SQR3_SQ6_0 (0x01UL << ADC_SQR3_SQ6_Pos) /*!< 0x02000000 */
  3220. #define ADC_SQR3_SQ6_1 (0x02UL << ADC_SQR3_SQ6_Pos) /*!< 0x04000000 */
  3221. #define ADC_SQR3_SQ6_2 (0x04UL << ADC_SQR3_SQ6_Pos) /*!< 0x08000000 */
  3222. #define ADC_SQR3_SQ6_3 (0x08UL << ADC_SQR3_SQ6_Pos) /*!< 0x10000000 */
  3223. #define ADC_SQR3_SQ6_4 (0x10UL << ADC_SQR3_SQ6_Pos) /*!< 0x20000000 */
  3224. /******************* Bit definition for ADC_JSQR register *******************/
  3225. #define ADC_JSQR_JSQ1_Pos (0U)
  3226. #define ADC_JSQR_JSQ1_Msk (0x1FUL << ADC_JSQR_JSQ1_Pos) /*!< 0x0000001F */
  3227. #define ADC_JSQR_JSQ1 ADC_JSQR_JSQ1_Msk /*!< ADC group injected sequencer rank 1 */
  3228. #define ADC_JSQR_JSQ1_0 (0x01UL << ADC_JSQR_JSQ1_Pos) /*!< 0x00000001 */
  3229. #define ADC_JSQR_JSQ1_1 (0x02UL << ADC_JSQR_JSQ1_Pos) /*!< 0x00000002 */
  3230. #define ADC_JSQR_JSQ1_2 (0x04UL << ADC_JSQR_JSQ1_Pos) /*!< 0x00000004 */
  3231. #define ADC_JSQR_JSQ1_3 (0x08UL << ADC_JSQR_JSQ1_Pos) /*!< 0x00000008 */
  3232. #define ADC_JSQR_JSQ1_4 (0x10UL << ADC_JSQR_JSQ1_Pos) /*!< 0x00000010 */
  3233. #define ADC_JSQR_JSQ2_Pos (5U)
  3234. #define ADC_JSQR_JSQ2_Msk (0x1FUL << ADC_JSQR_JSQ2_Pos) /*!< 0x000003E0 */
  3235. #define ADC_JSQR_JSQ2 ADC_JSQR_JSQ2_Msk /*!< ADC group injected sequencer rank 2 */
  3236. #define ADC_JSQR_JSQ2_0 (0x01UL << ADC_JSQR_JSQ2_Pos) /*!< 0x00000020 */
  3237. #define ADC_JSQR_JSQ2_1 (0x02UL << ADC_JSQR_JSQ2_Pos) /*!< 0x00000040 */
  3238. #define ADC_JSQR_JSQ2_2 (0x04UL << ADC_JSQR_JSQ2_Pos) /*!< 0x00000080 */
  3239. #define ADC_JSQR_JSQ2_3 (0x08UL << ADC_JSQR_JSQ2_Pos) /*!< 0x00000100 */
  3240. #define ADC_JSQR_JSQ2_4 (0x10UL << ADC_JSQR_JSQ2_Pos) /*!< 0x00000200 */
  3241. #define ADC_JSQR_JSQ3_Pos (10U)
  3242. #define ADC_JSQR_JSQ3_Msk (0x1FUL << ADC_JSQR_JSQ3_Pos) /*!< 0x00007C00 */
  3243. #define ADC_JSQR_JSQ3 ADC_JSQR_JSQ3_Msk /*!< ADC group injected sequencer rank 3 */
  3244. #define ADC_JSQR_JSQ3_0 (0x01UL << ADC_JSQR_JSQ3_Pos) /*!< 0x00000400 */
  3245. #define ADC_JSQR_JSQ3_1 (0x02UL << ADC_JSQR_JSQ3_Pos) /*!< 0x00000800 */
  3246. #define ADC_JSQR_JSQ3_2 (0x04UL << ADC_JSQR_JSQ3_Pos) /*!< 0x00001000 */
  3247. #define ADC_JSQR_JSQ3_3 (0x08UL << ADC_JSQR_JSQ3_Pos) /*!< 0x00002000 */
  3248. #define ADC_JSQR_JSQ3_4 (0x10UL << ADC_JSQR_JSQ3_Pos) /*!< 0x00004000 */
  3249. #define ADC_JSQR_JSQ4_Pos (15U)
  3250. #define ADC_JSQR_JSQ4_Msk (0x1FUL << ADC_JSQR_JSQ4_Pos) /*!< 0x000F8000 */
  3251. #define ADC_JSQR_JSQ4 ADC_JSQR_JSQ4_Msk /*!< ADC group injected sequencer rank 4 */
  3252. #define ADC_JSQR_JSQ4_0 (0x01UL << ADC_JSQR_JSQ4_Pos) /*!< 0x00008000 */
  3253. #define ADC_JSQR_JSQ4_1 (0x02UL << ADC_JSQR_JSQ4_Pos) /*!< 0x00010000 */
  3254. #define ADC_JSQR_JSQ4_2 (0x04UL << ADC_JSQR_JSQ4_Pos) /*!< 0x00020000 */
  3255. #define ADC_JSQR_JSQ4_3 (0x08UL << ADC_JSQR_JSQ4_Pos) /*!< 0x00040000 */
  3256. #define ADC_JSQR_JSQ4_4 (0x10UL << ADC_JSQR_JSQ4_Pos) /*!< 0x00080000 */
  3257. #define ADC_JSQR_JL_Pos (20U)
  3258. #define ADC_JSQR_JL_Msk (0x3UL << ADC_JSQR_JL_Pos) /*!< 0x00300000 */
  3259. #define ADC_JSQR_JL ADC_JSQR_JL_Msk /*!< ADC group injected sequencer scan length */
  3260. #define ADC_JSQR_JL_0 (0x1UL << ADC_JSQR_JL_Pos) /*!< 0x00100000 */
  3261. #define ADC_JSQR_JL_1 (0x2UL << ADC_JSQR_JL_Pos) /*!< 0x00200000 */
  3262. /******************* Bit definition for ADC_JDR1 register *******************/
  3263. #define ADC_JDR1_JDATA_Pos (0U)
  3264. #define ADC_JDR1_JDATA_Msk (0xFFFFUL << ADC_JDR1_JDATA_Pos) /*!< 0x0000FFFF */
  3265. #define ADC_JDR1_JDATA ADC_JDR1_JDATA_Msk /*!< ADC group injected sequencer rank 1 conversion data */
  3266. /******************* Bit definition for ADC_JDR2 register *******************/
  3267. #define ADC_JDR2_JDATA_Pos (0U)
  3268. #define ADC_JDR2_JDATA_Msk (0xFFFFUL << ADC_JDR2_JDATA_Pos) /*!< 0x0000FFFF */
  3269. #define ADC_JDR2_JDATA ADC_JDR2_JDATA_Msk /*!< ADC group injected sequencer rank 2 conversion data */
  3270. /******************* Bit definition for ADC_JDR3 register *******************/
  3271. #define ADC_JDR3_JDATA_Pos (0U)
  3272. #define ADC_JDR3_JDATA_Msk (0xFFFFUL << ADC_JDR3_JDATA_Pos) /*!< 0x0000FFFF */
  3273. #define ADC_JDR3_JDATA ADC_JDR3_JDATA_Msk /*!< ADC group injected sequencer rank 3 conversion data */
  3274. /******************* Bit definition for ADC_JDR4 register *******************/
  3275. #define ADC_JDR4_JDATA_Pos (0U)
  3276. #define ADC_JDR4_JDATA_Msk (0xFFFFUL << ADC_JDR4_JDATA_Pos) /*!< 0x0000FFFF */
  3277. #define ADC_JDR4_JDATA ADC_JDR4_JDATA_Msk /*!< ADC group injected sequencer rank 4 conversion data */
  3278. /******************** Bit definition for ADC_DR register ********************/
  3279. #define ADC_DR_DATA_Pos (0U)
  3280. #define ADC_DR_DATA_Msk (0xFFFFUL << ADC_DR_DATA_Pos) /*!< 0x0000FFFF */
  3281. #define ADC_DR_DATA ADC_DR_DATA_Msk /*!< ADC group regular conversion data */
  3282. /*****************************************************************************/
  3283. /* */
  3284. /* Timers (TIM) */
  3285. /* */
  3286. /*****************************************************************************/
  3287. /******************* Bit definition for TIM_CR1 register *******************/
  3288. #define TIM_CR1_CEN_Pos (0U)
  3289. #define TIM_CR1_CEN_Msk (0x1UL << TIM_CR1_CEN_Pos) /*!< 0x00000001 */
  3290. #define TIM_CR1_CEN TIM_CR1_CEN_Msk /*!<Counter enable */
  3291. #define TIM_CR1_UDIS_Pos (1U)
  3292. #define TIM_CR1_UDIS_Msk (0x1UL << TIM_CR1_UDIS_Pos) /*!< 0x00000002 */
  3293. #define TIM_CR1_UDIS TIM_CR1_UDIS_Msk /*!<Update disable */
  3294. #define TIM_CR1_URS_Pos (2U)
  3295. #define TIM_CR1_URS_Msk (0x1UL << TIM_CR1_URS_Pos) /*!< 0x00000004 */
  3296. #define TIM_CR1_URS TIM_CR1_URS_Msk /*!<Update request source */
  3297. #define TIM_CR1_OPM_Pos (3U)
  3298. #define TIM_CR1_OPM_Msk (0x1UL << TIM_CR1_OPM_Pos) /*!< 0x00000008 */
  3299. #define TIM_CR1_OPM TIM_CR1_OPM_Msk /*!<One pulse mode */
  3300. #define TIM_CR1_DIR_Pos (4U)
  3301. #define TIM_CR1_DIR_Msk (0x1UL << TIM_CR1_DIR_Pos) /*!< 0x00000010 */
  3302. #define TIM_CR1_DIR TIM_CR1_DIR_Msk /*!<Direction */
  3303. #define TIM_CR1_CMS_Pos (5U)
  3304. #define TIM_CR1_CMS_Msk (0x3UL << TIM_CR1_CMS_Pos) /*!< 0x00000060 */
  3305. #define TIM_CR1_CMS TIM_CR1_CMS_Msk /*!<CMS[1:0] bits (Center-aligned mode selection) */
  3306. #define TIM_CR1_CMS_0 (0x1UL << TIM_CR1_CMS_Pos) /*!< 0x00000020 */
  3307. #define TIM_CR1_CMS_1 (0x2UL << TIM_CR1_CMS_Pos) /*!< 0x00000040 */
  3308. #define TIM_CR1_ARPE_Pos (7U)
  3309. #define TIM_CR1_ARPE_Msk (0x1UL << TIM_CR1_ARPE_Pos) /*!< 0x00000080 */
  3310. #define TIM_CR1_ARPE TIM_CR1_ARPE_Msk /*!<Auto-reload preload enable */
  3311. #define TIM_CR1_CKD_Pos (8U)
  3312. #define TIM_CR1_CKD_Msk (0x3UL << TIM_CR1_CKD_Pos) /*!< 0x00000300 */
  3313. #define TIM_CR1_CKD TIM_CR1_CKD_Msk /*!<CKD[1:0] bits (clock division) */
  3314. #define TIM_CR1_CKD_0 (0x1UL << TIM_CR1_CKD_Pos) /*!< 0x00000100 */
  3315. #define TIM_CR1_CKD_1 (0x2UL << TIM_CR1_CKD_Pos) /*!< 0x00000200 */
  3316. /******************* Bit definition for TIM_CR2 register *******************/
  3317. #define TIM_CR2_CCPC_Pos (0U)
  3318. #define TIM_CR2_CCPC_Msk (0x1UL << TIM_CR2_CCPC_Pos) /*!< 0x00000001 */
  3319. #define TIM_CR2_CCPC TIM_CR2_CCPC_Msk /*!<Capture/Compare Preloaded Control */
  3320. #define TIM_CR2_CCUS_Pos (2U)
  3321. #define TIM_CR2_CCUS_Msk (0x1UL << TIM_CR2_CCUS_Pos) /*!< 0x00000004 */
  3322. #define TIM_CR2_CCUS TIM_CR2_CCUS_Msk /*!<Capture/Compare Control Update Selection */
  3323. #define TIM_CR2_CCDS_Pos (3U)
  3324. #define TIM_CR2_CCDS_Msk (0x1UL << TIM_CR2_CCDS_Pos) /*!< 0x00000008 */
  3325. #define TIM_CR2_CCDS TIM_CR2_CCDS_Msk /*!<Capture/Compare DMA Selection */
  3326. #define TIM_CR2_MMS_Pos (4U)
  3327. #define TIM_CR2_MMS_Msk (0x7UL << TIM_CR2_MMS_Pos) /*!< 0x00000070 */
  3328. #define TIM_CR2_MMS TIM_CR2_MMS_Msk /*!<MMS[2:0] bits (Master Mode Selection) */
  3329. #define TIM_CR2_MMS_0 (0x1UL << TIM_CR2_MMS_Pos) /*!< 0x00000010 */
  3330. #define TIM_CR2_MMS_1 (0x2UL << TIM_CR2_MMS_Pos) /*!< 0x00000020 */
  3331. #define TIM_CR2_MMS_2 (0x4UL << TIM_CR2_MMS_Pos) /*!< 0x00000040 */
  3332. #define TIM_CR2_TI1S_Pos (7U)
  3333. #define TIM_CR2_TI1S_Msk (0x1UL << TIM_CR2_TI1S_Pos) /*!< 0x00000080 */
  3334. #define TIM_CR2_TI1S TIM_CR2_TI1S_Msk /*!<TI1 Selection */
  3335. #define TIM_CR2_OIS1_Pos (8U)
  3336. #define TIM_CR2_OIS1_Msk (0x1UL << TIM_CR2_OIS1_Pos) /*!< 0x00000100 */
  3337. #define TIM_CR2_OIS1 TIM_CR2_OIS1_Msk /*!<Output Idle state 1 (OC1 output) */
  3338. #define TIM_CR2_OIS1N_Pos (9U)
  3339. #define TIM_CR2_OIS1N_Msk (0x1UL << TIM_CR2_OIS1N_Pos) /*!< 0x00000200 */
  3340. #define TIM_CR2_OIS1N TIM_CR2_OIS1N_Msk /*!<Output Idle state 1 (OC1N output) */
  3341. #define TIM_CR2_OIS2_Pos (10U)
  3342. #define TIM_CR2_OIS2_Msk (0x1UL << TIM_CR2_OIS2_Pos) /*!< 0x00000400 */
  3343. #define TIM_CR2_OIS2 TIM_CR2_OIS2_Msk /*!<Output Idle state 2 (OC2 output) */
  3344. #define TIM_CR2_OIS2N_Pos (11U)
  3345. #define TIM_CR2_OIS2N_Msk (0x1UL << TIM_CR2_OIS2N_Pos) /*!< 0x00000800 */
  3346. #define TIM_CR2_OIS2N TIM_CR2_OIS2N_Msk /*!<Output Idle state 2 (OC2N output) */
  3347. #define TIM_CR2_OIS3_Pos (12U)
  3348. #define TIM_CR2_OIS3_Msk (0x1UL << TIM_CR2_OIS3_Pos) /*!< 0x00001000 */
  3349. #define TIM_CR2_OIS3 TIM_CR2_OIS3_Msk /*!<Output Idle state 3 (OC3 output) */
  3350. #define TIM_CR2_OIS3N_Pos (13U)
  3351. #define TIM_CR2_OIS3N_Msk (0x1UL << TIM_CR2_OIS3N_Pos) /*!< 0x00002000 */
  3352. #define TIM_CR2_OIS3N TIM_CR2_OIS3N_Msk /*!<Output Idle state 3 (OC3N output) */
  3353. #define TIM_CR2_OIS4_Pos (14U)
  3354. #define TIM_CR2_OIS4_Msk (0x1UL << TIM_CR2_OIS4_Pos) /*!< 0x00004000 */
  3355. #define TIM_CR2_OIS4 TIM_CR2_OIS4_Msk /*!<Output Idle state 4 (OC4 output) */
  3356. /******************* Bit definition for TIM_SMCR register ******************/
  3357. #define TIM_SMCR_SMS_Pos (0U)
  3358. #define TIM_SMCR_SMS_Msk (0x7UL << TIM_SMCR_SMS_Pos) /*!< 0x00000007 */
  3359. #define TIM_SMCR_SMS TIM_SMCR_SMS_Msk /*!<SMS[2:0] bits (Slave mode selection) */
  3360. #define TIM_SMCR_SMS_0 (0x1UL << TIM_SMCR_SMS_Pos) /*!< 0x00000001 */
  3361. #define TIM_SMCR_SMS_1 (0x2UL << TIM_SMCR_SMS_Pos) /*!< 0x00000002 */
  3362. #define TIM_SMCR_SMS_2 (0x4UL << TIM_SMCR_SMS_Pos) /*!< 0x00000004 */
  3363. #define TIM_SMCR_TS_Pos (4U)
  3364. #define TIM_SMCR_TS_Msk (0x7UL << TIM_SMCR_TS_Pos) /*!< 0x00000070 */
  3365. #define TIM_SMCR_TS TIM_SMCR_TS_Msk /*!<TS[2:0] bits (Trigger selection) */
  3366. #define TIM_SMCR_TS_0 (0x1UL << TIM_SMCR_TS_Pos) /*!< 0x00000010 */
  3367. #define TIM_SMCR_TS_1 (0x2UL << TIM_SMCR_TS_Pos) /*!< 0x00000020 */
  3368. #define TIM_SMCR_TS_2 (0x4UL << TIM_SMCR_TS_Pos) /*!< 0x00000040 */
  3369. #define TIM_SMCR_MSM_Pos (7U)
  3370. #define TIM_SMCR_MSM_Msk (0x1UL << TIM_SMCR_MSM_Pos) /*!< 0x00000080 */
  3371. #define TIM_SMCR_MSM TIM_SMCR_MSM_Msk /*!<Master/slave mode */
  3372. #define TIM_SMCR_ETF_Pos (8U)
  3373. #define TIM_SMCR_ETF_Msk (0xFUL << TIM_SMCR_ETF_Pos) /*!< 0x00000F00 */
  3374. #define TIM_SMCR_ETF TIM_SMCR_ETF_Msk /*!<ETF[3:0] bits (External trigger filter) */
  3375. #define TIM_SMCR_ETF_0 (0x1UL << TIM_SMCR_ETF_Pos) /*!< 0x00000100 */
  3376. #define TIM_SMCR_ETF_1 (0x2UL << TIM_SMCR_ETF_Pos) /*!< 0x00000200 */
  3377. #define TIM_SMCR_ETF_2 (0x4UL << TIM_SMCR_ETF_Pos) /*!< 0x00000400 */
  3378. #define TIM_SMCR_ETF_3 (0x8UL << TIM_SMCR_ETF_Pos) /*!< 0x00000800 */
  3379. #define TIM_SMCR_ETPS_Pos (12U)
  3380. #define TIM_SMCR_ETPS_Msk (0x3UL << TIM_SMCR_ETPS_Pos) /*!< 0x00003000 */
  3381. #define TIM_SMCR_ETPS TIM_SMCR_ETPS_Msk /*!<ETPS[1:0] bits (External trigger prescaler) */
  3382. #define TIM_SMCR_ETPS_0 (0x1UL << TIM_SMCR_ETPS_Pos) /*!< 0x00001000 */
  3383. #define TIM_SMCR_ETPS_1 (0x2UL << TIM_SMCR_ETPS_Pos) /*!< 0x00002000 */
  3384. #define TIM_SMCR_ECE_Pos (14U)
  3385. #define TIM_SMCR_ECE_Msk (0x1UL << TIM_SMCR_ECE_Pos) /*!< 0x00004000 */
  3386. #define TIM_SMCR_ECE TIM_SMCR_ECE_Msk /*!<External clock enable */
  3387. #define TIM_SMCR_ETP_Pos (15U)
  3388. #define TIM_SMCR_ETP_Msk (0x1UL << TIM_SMCR_ETP_Pos) /*!< 0x00008000 */
  3389. #define TIM_SMCR_ETP TIM_SMCR_ETP_Msk /*!<External trigger polarity */
  3390. /******************* Bit definition for TIM_DIER register ******************/
  3391. #define TIM_DIER_UIE_Pos (0U)
  3392. #define TIM_DIER_UIE_Msk (0x1UL << TIM_DIER_UIE_Pos) /*!< 0x00000001 */
  3393. #define TIM_DIER_UIE TIM_DIER_UIE_Msk /*!<Update interrupt enable */
  3394. #define TIM_DIER_CC1IE_Pos (1U)
  3395. #define TIM_DIER_CC1IE_Msk (0x1UL << TIM_DIER_CC1IE_Pos) /*!< 0x00000002 */
  3396. #define TIM_DIER_CC1IE TIM_DIER_CC1IE_Msk /*!<Capture/Compare 1 interrupt enable */
  3397. #define TIM_DIER_CC2IE_Pos (2U)
  3398. #define TIM_DIER_CC2IE_Msk (0x1UL << TIM_DIER_CC2IE_Pos) /*!< 0x00000004 */
  3399. #define TIM_DIER_CC2IE TIM_DIER_CC2IE_Msk /*!<Capture/Compare 2 interrupt enable */
  3400. #define TIM_DIER_CC3IE_Pos (3U)
  3401. #define TIM_DIER_CC3IE_Msk (0x1UL << TIM_DIER_CC3IE_Pos) /*!< 0x00000008 */
  3402. #define TIM_DIER_CC3IE TIM_DIER_CC3IE_Msk /*!<Capture/Compare 3 interrupt enable */
  3403. #define TIM_DIER_CC4IE_Pos (4U)
  3404. #define TIM_DIER_CC4IE_Msk (0x1UL << TIM_DIER_CC4IE_Pos) /*!< 0x00000010 */
  3405. #define TIM_DIER_CC4IE TIM_DIER_CC4IE_Msk /*!<Capture/Compare 4 interrupt enable */
  3406. #define TIM_DIER_COMIE_Pos (5U)
  3407. #define TIM_DIER_COMIE_Msk (0x1UL << TIM_DIER_COMIE_Pos) /*!< 0x00000020 */
  3408. #define TIM_DIER_COMIE TIM_DIER_COMIE_Msk /*!<COM interrupt enable */
  3409. #define TIM_DIER_TIE_Pos (6U)
  3410. #define TIM_DIER_TIE_Msk (0x1UL << TIM_DIER_TIE_Pos) /*!< 0x00000040 */
  3411. #define TIM_DIER_TIE TIM_DIER_TIE_Msk /*!<Trigger interrupt enable */
  3412. #define TIM_DIER_BIE_Pos (7U)
  3413. #define TIM_DIER_BIE_Msk (0x1UL << TIM_DIER_BIE_Pos) /*!< 0x00000080 */
  3414. #define TIM_DIER_BIE TIM_DIER_BIE_Msk /*!<Break interrupt enable */
  3415. #define TIM_DIER_UDE_Pos (8U)
  3416. #define TIM_DIER_UDE_Msk (0x1UL << TIM_DIER_UDE_Pos) /*!< 0x00000100 */
  3417. #define TIM_DIER_UDE TIM_DIER_UDE_Msk /*!<Update DMA request enable */
  3418. #define TIM_DIER_CC1DE_Pos (9U)
  3419. #define TIM_DIER_CC1DE_Msk (0x1UL << TIM_DIER_CC1DE_Pos) /*!< 0x00000200 */
  3420. #define TIM_DIER_CC1DE TIM_DIER_CC1DE_Msk /*!<Capture/Compare 1 DMA request enable */
  3421. #define TIM_DIER_CC2DE_Pos (10U)
  3422. #define TIM_DIER_CC2DE_Msk (0x1UL << TIM_DIER_CC2DE_Pos) /*!< 0x00000400 */
  3423. #define TIM_DIER_CC2DE TIM_DIER_CC2DE_Msk /*!<Capture/Compare 2 DMA request enable */
  3424. #define TIM_DIER_CC3DE_Pos (11U)
  3425. #define TIM_DIER_CC3DE_Msk (0x1UL << TIM_DIER_CC3DE_Pos) /*!< 0x00000800 */
  3426. #define TIM_DIER_CC3DE TIM_DIER_CC3DE_Msk /*!<Capture/Compare 3 DMA request enable */
  3427. #define TIM_DIER_CC4DE_Pos (12U)
  3428. #define TIM_DIER_CC4DE_Msk (0x1UL << TIM_DIER_CC4DE_Pos) /*!< 0x00001000 */
  3429. #define TIM_DIER_CC4DE TIM_DIER_CC4DE_Msk /*!<Capture/Compare 4 DMA request enable */
  3430. #define TIM_DIER_COMDE_Pos (13U)
  3431. #define TIM_DIER_COMDE_Msk (0x1UL << TIM_DIER_COMDE_Pos) /*!< 0x00002000 */
  3432. #define TIM_DIER_COMDE TIM_DIER_COMDE_Msk /*!<COM DMA request enable */
  3433. #define TIM_DIER_TDE_Pos (14U)
  3434. #define TIM_DIER_TDE_Msk (0x1UL << TIM_DIER_TDE_Pos) /*!< 0x00004000 */
  3435. #define TIM_DIER_TDE TIM_DIER_TDE_Msk /*!<Trigger DMA request enable */
  3436. /******************** Bit definition for TIM_SR register *******************/
  3437. #define TIM_SR_UIF_Pos (0U)
  3438. #define TIM_SR_UIF_Msk (0x1UL << TIM_SR_UIF_Pos) /*!< 0x00000001 */
  3439. #define TIM_SR_UIF TIM_SR_UIF_Msk /*!<Update interrupt Flag */
  3440. #define TIM_SR_CC1IF_Pos (1U)
  3441. #define TIM_SR_CC1IF_Msk (0x1UL << TIM_SR_CC1IF_Pos) /*!< 0x00000002 */
  3442. #define TIM_SR_CC1IF TIM_SR_CC1IF_Msk /*!<Capture/Compare 1 interrupt Flag */
  3443. #define TIM_SR_CC2IF_Pos (2U)
  3444. #define TIM_SR_CC2IF_Msk (0x1UL << TIM_SR_CC2IF_Pos) /*!< 0x00000004 */
  3445. #define TIM_SR_CC2IF TIM_SR_CC2IF_Msk /*!<Capture/Compare 2 interrupt Flag */
  3446. #define TIM_SR_CC3IF_Pos (3U)
  3447. #define TIM_SR_CC3IF_Msk (0x1UL << TIM_SR_CC3IF_Pos) /*!< 0x00000008 */
  3448. #define TIM_SR_CC3IF TIM_SR_CC3IF_Msk /*!<Capture/Compare 3 interrupt Flag */
  3449. #define TIM_SR_CC4IF_Pos (4U)
  3450. #define TIM_SR_CC4IF_Msk (0x1UL << TIM_SR_CC4IF_Pos) /*!< 0x00000010 */
  3451. #define TIM_SR_CC4IF TIM_SR_CC4IF_Msk /*!<Capture/Compare 4 interrupt Flag */
  3452. #define TIM_SR_COMIF_Pos (5U)
  3453. #define TIM_SR_COMIF_Msk (0x1UL << TIM_SR_COMIF_Pos) /*!< 0x00000020 */
  3454. #define TIM_SR_COMIF TIM_SR_COMIF_Msk /*!<COM interrupt Flag */
  3455. #define TIM_SR_TIF_Pos (6U)
  3456. #define TIM_SR_TIF_Msk (0x1UL << TIM_SR_TIF_Pos) /*!< 0x00000040 */
  3457. #define TIM_SR_TIF TIM_SR_TIF_Msk /*!<Trigger interrupt Flag */
  3458. #define TIM_SR_BIF_Pos (7U)
  3459. #define TIM_SR_BIF_Msk (0x1UL << TIM_SR_BIF_Pos) /*!< 0x00000080 */
  3460. #define TIM_SR_BIF TIM_SR_BIF_Msk /*!<Break interrupt Flag */
  3461. #define TIM_SR_CC1OF_Pos (9U)
  3462. #define TIM_SR_CC1OF_Msk (0x1UL << TIM_SR_CC1OF_Pos) /*!< 0x00000200 */
  3463. #define TIM_SR_CC1OF TIM_SR_CC1OF_Msk /*!<Capture/Compare 1 Overcapture Flag */
  3464. #define TIM_SR_CC2OF_Pos (10U)
  3465. #define TIM_SR_CC2OF_Msk (0x1UL << TIM_SR_CC2OF_Pos) /*!< 0x00000400 */
  3466. #define TIM_SR_CC2OF TIM_SR_CC2OF_Msk /*!<Capture/Compare 2 Overcapture Flag */
  3467. #define TIM_SR_CC3OF_Pos (11U)
  3468. #define TIM_SR_CC3OF_Msk (0x1UL << TIM_SR_CC3OF_Pos) /*!< 0x00000800 */
  3469. #define TIM_SR_CC3OF TIM_SR_CC3OF_Msk /*!<Capture/Compare 3 Overcapture Flag */
  3470. #define TIM_SR_CC4OF_Pos (12U)
  3471. #define TIM_SR_CC4OF_Msk (0x1UL << TIM_SR_CC4OF_Pos) /*!< 0x00001000 */
  3472. #define TIM_SR_CC4OF TIM_SR_CC4OF_Msk /*!<Capture/Compare 4 Overcapture Flag */
  3473. /******************* Bit definition for TIM_EGR register *******************/
  3474. #define TIM_EGR_UG_Pos (0U)
  3475. #define TIM_EGR_UG_Msk (0x1UL << TIM_EGR_UG_Pos) /*!< 0x00000001 */
  3476. #define TIM_EGR_UG TIM_EGR_UG_Msk /*!<Update Generation */
  3477. #define TIM_EGR_CC1G_Pos (1U)
  3478. #define TIM_EGR_CC1G_Msk (0x1UL << TIM_EGR_CC1G_Pos) /*!< 0x00000002 */
  3479. #define TIM_EGR_CC1G TIM_EGR_CC1G_Msk /*!<Capture/Compare 1 Generation */
  3480. #define TIM_EGR_CC2G_Pos (2U)
  3481. #define TIM_EGR_CC2G_Msk (0x1UL << TIM_EGR_CC2G_Pos) /*!< 0x00000004 */
  3482. #define TIM_EGR_CC2G TIM_EGR_CC2G_Msk /*!<Capture/Compare 2 Generation */
  3483. #define TIM_EGR_CC3G_Pos (3U)
  3484. #define TIM_EGR_CC3G_Msk (0x1UL << TIM_EGR_CC3G_Pos) /*!< 0x00000008 */
  3485. #define TIM_EGR_CC3G TIM_EGR_CC3G_Msk /*!<Capture/Compare 3 Generation */
  3486. #define TIM_EGR_CC4G_Pos (4U)
  3487. #define TIM_EGR_CC4G_Msk (0x1UL << TIM_EGR_CC4G_Pos) /*!< 0x00000010 */
  3488. #define TIM_EGR_CC4G TIM_EGR_CC4G_Msk /*!<Capture/Compare 4 Generation */
  3489. #define TIM_EGR_COMG_Pos (5U)
  3490. #define TIM_EGR_COMG_Msk (0x1UL << TIM_EGR_COMG_Pos) /*!< 0x00000020 */
  3491. #define TIM_EGR_COMG TIM_EGR_COMG_Msk /*!<Capture/Compare Control Update Generation */
  3492. #define TIM_EGR_TG_Pos (6U)
  3493. #define TIM_EGR_TG_Msk (0x1UL << TIM_EGR_TG_Pos) /*!< 0x00000040 */
  3494. #define TIM_EGR_TG TIM_EGR_TG_Msk /*!<Trigger Generation */
  3495. #define TIM_EGR_BG_Pos (7U)
  3496. #define TIM_EGR_BG_Msk (0x1UL << TIM_EGR_BG_Pos) /*!< 0x00000080 */
  3497. #define TIM_EGR_BG TIM_EGR_BG_Msk /*!<Break Generation */
  3498. /****************** Bit definition for TIM_CCMR1 register ******************/
  3499. #define TIM_CCMR1_CC1S_Pos (0U)
  3500. #define TIM_CCMR1_CC1S_Msk (0x3UL << TIM_CCMR1_CC1S_Pos) /*!< 0x00000003 */
  3501. #define TIM_CCMR1_CC1S TIM_CCMR1_CC1S_Msk /*!<CC1S[1:0] bits (Capture/Compare 1 Selection) */
  3502. #define TIM_CCMR1_CC1S_0 (0x1UL << TIM_CCMR1_CC1S_Pos) /*!< 0x00000001 */
  3503. #define TIM_CCMR1_CC1S_1 (0x2UL << TIM_CCMR1_CC1S_Pos) /*!< 0x00000002 */
  3504. #define TIM_CCMR1_OC1FE_Pos (2U)
  3505. #define TIM_CCMR1_OC1FE_Msk (0x1UL << TIM_CCMR1_OC1FE_Pos) /*!< 0x00000004 */
  3506. #define TIM_CCMR1_OC1FE TIM_CCMR1_OC1FE_Msk /*!<Output Compare 1 Fast enable */
  3507. #define TIM_CCMR1_OC1PE_Pos (3U)
  3508. #define TIM_CCMR1_OC1PE_Msk (0x1UL << TIM_CCMR1_OC1PE_Pos) /*!< 0x00000008 */
  3509. #define TIM_CCMR1_OC1PE TIM_CCMR1_OC1PE_Msk /*!<Output Compare 1 Preload enable */
  3510. #define TIM_CCMR1_OC1M_Pos (4U)
  3511. #define TIM_CCMR1_OC1M_Msk (0x7UL << TIM_CCMR1_OC1M_Pos) /*!< 0x00000070 */
  3512. #define TIM_CCMR1_OC1M TIM_CCMR1_OC1M_Msk /*!<OC1M[2:0] bits (Output Compare 1 Mode) */
  3513. #define TIM_CCMR1_OC1M_0 (0x1UL << TIM_CCMR1_OC1M_Pos) /*!< 0x00000010 */
  3514. #define TIM_CCMR1_OC1M_1 (0x2UL << TIM_CCMR1_OC1M_Pos) /*!< 0x00000020 */
  3515. #define TIM_CCMR1_OC1M_2 (0x4UL << TIM_CCMR1_OC1M_Pos) /*!< 0x00000040 */
  3516. #define TIM_CCMR1_OC1CE_Pos (7U)
  3517. #define TIM_CCMR1_OC1CE_Msk (0x1UL << TIM_CCMR1_OC1CE_Pos) /*!< 0x00000080 */
  3518. #define TIM_CCMR1_OC1CE TIM_CCMR1_OC1CE_Msk /*!<Output Compare 1Clear Enable */
  3519. #define TIM_CCMR1_CC2S_Pos (8U)
  3520. #define TIM_CCMR1_CC2S_Msk (0x3UL << TIM_CCMR1_CC2S_Pos) /*!< 0x00000300 */
  3521. #define TIM_CCMR1_CC2S TIM_CCMR1_CC2S_Msk /*!<CC2S[1:0] bits (Capture/Compare 2 Selection) */
  3522. #define TIM_CCMR1_CC2S_0 (0x1UL << TIM_CCMR1_CC2S_Pos) /*!< 0x00000100 */
  3523. #define TIM_CCMR1_CC2S_1 (0x2UL << TIM_CCMR1_CC2S_Pos) /*!< 0x00000200 */
  3524. #define TIM_CCMR1_OC2FE_Pos (10U)
  3525. #define TIM_CCMR1_OC2FE_Msk (0x1UL << TIM_CCMR1_OC2FE_Pos) /*!< 0x00000400 */
  3526. #define TIM_CCMR1_OC2FE TIM_CCMR1_OC2FE_Msk /*!<Output Compare 2 Fast enable */
  3527. #define TIM_CCMR1_OC2PE_Pos (11U)
  3528. #define TIM_CCMR1_OC2PE_Msk (0x1UL << TIM_CCMR1_OC2PE_Pos) /*!< 0x00000800 */
  3529. #define TIM_CCMR1_OC2PE TIM_CCMR1_OC2PE_Msk /*!<Output Compare 2 Preload enable */
  3530. #define TIM_CCMR1_OC2M_Pos (12U)
  3531. #define TIM_CCMR1_OC2M_Msk (0x7UL << TIM_CCMR1_OC2M_Pos) /*!< 0x00007000 */
  3532. #define TIM_CCMR1_OC2M TIM_CCMR1_OC2M_Msk /*!<OC2M[2:0] bits (Output Compare 2 Mode) */
  3533. #define TIM_CCMR1_OC2M_0 (0x1UL << TIM_CCMR1_OC2M_Pos) /*!< 0x00001000 */
  3534. #define TIM_CCMR1_OC2M_1 (0x2UL << TIM_CCMR1_OC2M_Pos) /*!< 0x00002000 */
  3535. #define TIM_CCMR1_OC2M_2 (0x4UL << TIM_CCMR1_OC2M_Pos) /*!< 0x00004000 */
  3536. #define TIM_CCMR1_OC2CE_Pos (15U)
  3537. #define TIM_CCMR1_OC2CE_Msk (0x1UL << TIM_CCMR1_OC2CE_Pos) /*!< 0x00008000 */
  3538. #define TIM_CCMR1_OC2CE TIM_CCMR1_OC2CE_Msk /*!<Output Compare 2 Clear Enable */
  3539. /*---------------------------------------------------------------------------*/
  3540. #define TIM_CCMR1_IC1PSC_Pos (2U)
  3541. #define TIM_CCMR1_IC1PSC_Msk (0x3UL << TIM_CCMR1_IC1PSC_Pos) /*!< 0x0000000C */
  3542. #define TIM_CCMR1_IC1PSC TIM_CCMR1_IC1PSC_Msk /*!<IC1PSC[1:0] bits (Input Capture 1 Prescaler) */
  3543. #define TIM_CCMR1_IC1PSC_0 (0x1UL << TIM_CCMR1_IC1PSC_Pos) /*!< 0x00000004 */
  3544. #define TIM_CCMR1_IC1PSC_1 (0x2UL << TIM_CCMR1_IC1PSC_Pos) /*!< 0x00000008 */
  3545. #define TIM_CCMR1_IC1F_Pos (4U)
  3546. #define TIM_CCMR1_IC1F_Msk (0xFUL << TIM_CCMR1_IC1F_Pos) /*!< 0x000000F0 */
  3547. #define TIM_CCMR1_IC1F TIM_CCMR1_IC1F_Msk /*!<IC1F[3:0] bits (Input Capture 1 Filter) */
  3548. #define TIM_CCMR1_IC1F_0 (0x1UL << TIM_CCMR1_IC1F_Pos) /*!< 0x00000010 */
  3549. #define TIM_CCMR1_IC1F_1 (0x2UL << TIM_CCMR1_IC1F_Pos) /*!< 0x00000020 */
  3550. #define TIM_CCMR1_IC1F_2 (0x4UL << TIM_CCMR1_IC1F_Pos) /*!< 0x00000040 */
  3551. #define TIM_CCMR1_IC1F_3 (0x8UL << TIM_CCMR1_IC1F_Pos) /*!< 0x00000080 */
  3552. #define TIM_CCMR1_IC2PSC_Pos (10U)
  3553. #define TIM_CCMR1_IC2PSC_Msk (0x3UL << TIM_CCMR1_IC2PSC_Pos) /*!< 0x00000C00 */
  3554. #define TIM_CCMR1_IC2PSC TIM_CCMR1_IC2PSC_Msk /*!<IC2PSC[1:0] bits (Input Capture 2 Prescaler) */
  3555. #define TIM_CCMR1_IC2PSC_0 (0x1UL << TIM_CCMR1_IC2PSC_Pos) /*!< 0x00000400 */
  3556. #define TIM_CCMR1_IC2PSC_1 (0x2UL << TIM_CCMR1_IC2PSC_Pos) /*!< 0x00000800 */
  3557. #define TIM_CCMR1_IC2F_Pos (12U)
  3558. #define TIM_CCMR1_IC2F_Msk (0xFUL << TIM_CCMR1_IC2F_Pos) /*!< 0x0000F000 */
  3559. #define TIM_CCMR1_IC2F TIM_CCMR1_IC2F_Msk /*!<IC2F[3:0] bits (Input Capture 2 Filter) */
  3560. #define TIM_CCMR1_IC2F_0 (0x1UL << TIM_CCMR1_IC2F_Pos) /*!< 0x00001000 */
  3561. #define TIM_CCMR1_IC2F_1 (0x2UL << TIM_CCMR1_IC2F_Pos) /*!< 0x00002000 */
  3562. #define TIM_CCMR1_IC2F_2 (0x4UL << TIM_CCMR1_IC2F_Pos) /*!< 0x00004000 */
  3563. #define TIM_CCMR1_IC2F_3 (0x8UL << TIM_CCMR1_IC2F_Pos) /*!< 0x00008000 */
  3564. /****************** Bit definition for TIM_CCMR2 register ******************/
  3565. #define TIM_CCMR2_CC3S_Pos (0U)
  3566. #define TIM_CCMR2_CC3S_Msk (0x3UL << TIM_CCMR2_CC3S_Pos) /*!< 0x00000003 */
  3567. #define TIM_CCMR2_CC3S TIM_CCMR2_CC3S_Msk /*!<CC3S[1:0] bits (Capture/Compare 3 Selection) */
  3568. #define TIM_CCMR2_CC3S_0 (0x1UL << TIM_CCMR2_CC3S_Pos) /*!< 0x00000001 */
  3569. #define TIM_CCMR2_CC3S_1 (0x2UL << TIM_CCMR2_CC3S_Pos) /*!< 0x00000002 */
  3570. #define TIM_CCMR2_OC3FE_Pos (2U)
  3571. #define TIM_CCMR2_OC3FE_Msk (0x1UL << TIM_CCMR2_OC3FE_Pos) /*!< 0x00000004 */
  3572. #define TIM_CCMR2_OC3FE TIM_CCMR2_OC3FE_Msk /*!<Output Compare 3 Fast enable */
  3573. #define TIM_CCMR2_OC3PE_Pos (3U)
  3574. #define TIM_CCMR2_OC3PE_Msk (0x1UL << TIM_CCMR2_OC3PE_Pos) /*!< 0x00000008 */
  3575. #define TIM_CCMR2_OC3PE TIM_CCMR2_OC3PE_Msk /*!<Output Compare 3 Preload enable */
  3576. #define TIM_CCMR2_OC3M_Pos (4U)
  3577. #define TIM_CCMR2_OC3M_Msk (0x7UL << TIM_CCMR2_OC3M_Pos) /*!< 0x00000070 */
  3578. #define TIM_CCMR2_OC3M TIM_CCMR2_OC3M_Msk /*!<OC3M[2:0] bits (Output Compare 3 Mode) */
  3579. #define TIM_CCMR2_OC3M_0 (0x1UL << TIM_CCMR2_OC3M_Pos) /*!< 0x00000010 */
  3580. #define TIM_CCMR2_OC3M_1 (0x2UL << TIM_CCMR2_OC3M_Pos) /*!< 0x00000020 */
  3581. #define TIM_CCMR2_OC3M_2 (0x4UL << TIM_CCMR2_OC3M_Pos) /*!< 0x00000040 */
  3582. #define TIM_CCMR2_OC3CE_Pos (7U)
  3583. #define TIM_CCMR2_OC3CE_Msk (0x1UL << TIM_CCMR2_OC3CE_Pos) /*!< 0x00000080 */
  3584. #define TIM_CCMR2_OC3CE TIM_CCMR2_OC3CE_Msk /*!<Output Compare 3 Clear Enable */
  3585. #define TIM_CCMR2_CC4S_Pos (8U)
  3586. #define TIM_CCMR2_CC4S_Msk (0x3UL << TIM_CCMR2_CC4S_Pos) /*!< 0x00000300 */
  3587. #define TIM_CCMR2_CC4S TIM_CCMR2_CC4S_Msk /*!<CC4S[1:0] bits (Capture/Compare 4 Selection) */
  3588. #define TIM_CCMR2_CC4S_0 (0x1UL << TIM_CCMR2_CC4S_Pos) /*!< 0x00000100 */
  3589. #define TIM_CCMR2_CC4S_1 (0x2UL << TIM_CCMR2_CC4S_Pos) /*!< 0x00000200 */
  3590. #define TIM_CCMR2_OC4FE_Pos (10U)
  3591. #define TIM_CCMR2_OC4FE_Msk (0x1UL << TIM_CCMR2_OC4FE_Pos) /*!< 0x00000400 */
  3592. #define TIM_CCMR2_OC4FE TIM_CCMR2_OC4FE_Msk /*!<Output Compare 4 Fast enable */
  3593. #define TIM_CCMR2_OC4PE_Pos (11U)
  3594. #define TIM_CCMR2_OC4PE_Msk (0x1UL << TIM_CCMR2_OC4PE_Pos) /*!< 0x00000800 */
  3595. #define TIM_CCMR2_OC4PE TIM_CCMR2_OC4PE_Msk /*!<Output Compare 4 Preload enable */
  3596. #define TIM_CCMR2_OC4M_Pos (12U)
  3597. #define TIM_CCMR2_OC4M_Msk (0x7UL << TIM_CCMR2_OC4M_Pos) /*!< 0x00007000 */
  3598. #define TIM_CCMR2_OC4M TIM_CCMR2_OC4M_Msk /*!<OC4M[2:0] bits (Output Compare 4 Mode) */
  3599. #define TIM_CCMR2_OC4M_0 (0x1UL << TIM_CCMR2_OC4M_Pos) /*!< 0x00001000 */
  3600. #define TIM_CCMR2_OC4M_1 (0x2UL << TIM_CCMR2_OC4M_Pos) /*!< 0x00002000 */
  3601. #define TIM_CCMR2_OC4M_2 (0x4UL << TIM_CCMR2_OC4M_Pos) /*!< 0x00004000 */
  3602. #define TIM_CCMR2_OC4CE_Pos (15U)
  3603. #define TIM_CCMR2_OC4CE_Msk (0x1UL << TIM_CCMR2_OC4CE_Pos) /*!< 0x00008000 */
  3604. #define TIM_CCMR2_OC4CE TIM_CCMR2_OC4CE_Msk /*!<Output Compare 4 Clear Enable */
  3605. /*---------------------------------------------------------------------------*/
  3606. #define TIM_CCMR2_IC3PSC_Pos (2U)
  3607. #define TIM_CCMR2_IC3PSC_Msk (0x3UL << TIM_CCMR2_IC3PSC_Pos) /*!< 0x0000000C */
  3608. #define TIM_CCMR2_IC3PSC TIM_CCMR2_IC3PSC_Msk /*!<IC3PSC[1:0] bits (Input Capture 3 Prescaler) */
  3609. #define TIM_CCMR2_IC3PSC_0 (0x1UL << TIM_CCMR2_IC3PSC_Pos) /*!< 0x00000004 */
  3610. #define TIM_CCMR2_IC3PSC_1 (0x2UL << TIM_CCMR2_IC3PSC_Pos) /*!< 0x00000008 */
  3611. #define TIM_CCMR2_IC3F_Pos (4U)
  3612. #define TIM_CCMR2_IC3F_Msk (0xFUL << TIM_CCMR2_IC3F_Pos) /*!< 0x000000F0 */
  3613. #define TIM_CCMR2_IC3F TIM_CCMR2_IC3F_Msk /*!<IC3F[3:0] bits (Input Capture 3 Filter) */
  3614. #define TIM_CCMR2_IC3F_0 (0x1UL << TIM_CCMR2_IC3F_Pos) /*!< 0x00000010 */
  3615. #define TIM_CCMR2_IC3F_1 (0x2UL << TIM_CCMR2_IC3F_Pos) /*!< 0x00000020 */
  3616. #define TIM_CCMR2_IC3F_2 (0x4UL << TIM_CCMR2_IC3F_Pos) /*!< 0x00000040 */
  3617. #define TIM_CCMR2_IC3F_3 (0x8UL << TIM_CCMR2_IC3F_Pos) /*!< 0x00000080 */
  3618. #define TIM_CCMR2_IC4PSC_Pos (10U)
  3619. #define TIM_CCMR2_IC4PSC_Msk (0x3UL << TIM_CCMR2_IC4PSC_Pos) /*!< 0x00000C00 */
  3620. #define TIM_CCMR2_IC4PSC TIM_CCMR2_IC4PSC_Msk /*!<IC4PSC[1:0] bits (Input Capture 4 Prescaler) */
  3621. #define TIM_CCMR2_IC4PSC_0 (0x1UL << TIM_CCMR2_IC4PSC_Pos) /*!< 0x00000400 */
  3622. #define TIM_CCMR2_IC4PSC_1 (0x2UL << TIM_CCMR2_IC4PSC_Pos) /*!< 0x00000800 */
  3623. #define TIM_CCMR2_IC4F_Pos (12U)
  3624. #define TIM_CCMR2_IC4F_Msk (0xFUL << TIM_CCMR2_IC4F_Pos) /*!< 0x0000F000 */
  3625. #define TIM_CCMR2_IC4F TIM_CCMR2_IC4F_Msk /*!<IC4F[3:0] bits (Input Capture 4 Filter) */
  3626. #define TIM_CCMR2_IC4F_0 (0x1UL << TIM_CCMR2_IC4F_Pos) /*!< 0x00001000 */
  3627. #define TIM_CCMR2_IC4F_1 (0x2UL << TIM_CCMR2_IC4F_Pos) /*!< 0x00002000 */
  3628. #define TIM_CCMR2_IC4F_2 (0x4UL << TIM_CCMR2_IC4F_Pos) /*!< 0x00004000 */
  3629. #define TIM_CCMR2_IC4F_3 (0x8UL << TIM_CCMR2_IC4F_Pos) /*!< 0x00008000 */
  3630. /******************* Bit definition for TIM_CCER register ******************/
  3631. #define TIM_CCER_CC1E_Pos (0U)
  3632. #define TIM_CCER_CC1E_Msk (0x1UL << TIM_CCER_CC1E_Pos) /*!< 0x00000001 */
  3633. #define TIM_CCER_CC1E TIM_CCER_CC1E_Msk /*!<Capture/Compare 1 output enable */
  3634. #define TIM_CCER_CC1P_Pos (1U)
  3635. #define TIM_CCER_CC1P_Msk (0x1UL << TIM_CCER_CC1P_Pos) /*!< 0x00000002 */
  3636. #define TIM_CCER_CC1P TIM_CCER_CC1P_Msk /*!<Capture/Compare 1 output Polarity */
  3637. #define TIM_CCER_CC1NE_Pos (2U)
  3638. #define TIM_CCER_CC1NE_Msk (0x1UL << TIM_CCER_CC1NE_Pos) /*!< 0x00000004 */
  3639. #define TIM_CCER_CC1NE TIM_CCER_CC1NE_Msk /*!<Capture/Compare 1 Complementary output enable */
  3640. #define TIM_CCER_CC1NP_Pos (3U)
  3641. #define TIM_CCER_CC1NP_Msk (0x1UL << TIM_CCER_CC1NP_Pos) /*!< 0x00000008 */
  3642. #define TIM_CCER_CC1NP TIM_CCER_CC1NP_Msk /*!<Capture/Compare 1 Complementary output Polarity */
  3643. #define TIM_CCER_CC2E_Pos (4U)
  3644. #define TIM_CCER_CC2E_Msk (0x1UL << TIM_CCER_CC2E_Pos) /*!< 0x00000010 */
  3645. #define TIM_CCER_CC2E TIM_CCER_CC2E_Msk /*!<Capture/Compare 2 output enable */
  3646. #define TIM_CCER_CC2P_Pos (5U)
  3647. #define TIM_CCER_CC2P_Msk (0x1UL << TIM_CCER_CC2P_Pos) /*!< 0x00000020 */
  3648. #define TIM_CCER_CC2P TIM_CCER_CC2P_Msk /*!<Capture/Compare 2 output Polarity */
  3649. #define TIM_CCER_CC2NE_Pos (6U)
  3650. #define TIM_CCER_CC2NE_Msk (0x1UL << TIM_CCER_CC2NE_Pos) /*!< 0x00000040 */
  3651. #define TIM_CCER_CC2NE TIM_CCER_CC2NE_Msk /*!<Capture/Compare 2 Complementary output enable */
  3652. #define TIM_CCER_CC2NP_Pos (7U)
  3653. #define TIM_CCER_CC2NP_Msk (0x1UL << TIM_CCER_CC2NP_Pos) /*!< 0x00000080 */
  3654. #define TIM_CCER_CC2NP TIM_CCER_CC2NP_Msk /*!<Capture/Compare 2 Complementary output Polarity */
  3655. #define TIM_CCER_CC3E_Pos (8U)
  3656. #define TIM_CCER_CC3E_Msk (0x1UL << TIM_CCER_CC3E_Pos) /*!< 0x00000100 */
  3657. #define TIM_CCER_CC3E TIM_CCER_CC3E_Msk /*!<Capture/Compare 3 output enable */
  3658. #define TIM_CCER_CC3P_Pos (9U)
  3659. #define TIM_CCER_CC3P_Msk (0x1UL << TIM_CCER_CC3P_Pos) /*!< 0x00000200 */
  3660. #define TIM_CCER_CC3P TIM_CCER_CC3P_Msk /*!<Capture/Compare 3 output Polarity */
  3661. #define TIM_CCER_CC3NE_Pos (10U)
  3662. #define TIM_CCER_CC3NE_Msk (0x1UL << TIM_CCER_CC3NE_Pos) /*!< 0x00000400 */
  3663. #define TIM_CCER_CC3NE TIM_CCER_CC3NE_Msk /*!<Capture/Compare 3 Complementary output enable */
  3664. #define TIM_CCER_CC3NP_Pos (11U)
  3665. #define TIM_CCER_CC3NP_Msk (0x1UL << TIM_CCER_CC3NP_Pos) /*!< 0x00000800 */
  3666. #define TIM_CCER_CC3NP TIM_CCER_CC3NP_Msk /*!<Capture/Compare 3 Complementary output Polarity */
  3667. #define TIM_CCER_CC4E_Pos (12U)
  3668. #define TIM_CCER_CC4E_Msk (0x1UL << TIM_CCER_CC4E_Pos) /*!< 0x00001000 */
  3669. #define TIM_CCER_CC4E TIM_CCER_CC4E_Msk /*!<Capture/Compare 4 output enable */
  3670. #define TIM_CCER_CC4P_Pos (13U)
  3671. #define TIM_CCER_CC4P_Msk (0x1UL << TIM_CCER_CC4P_Pos) /*!< 0x00002000 */
  3672. #define TIM_CCER_CC4P TIM_CCER_CC4P_Msk /*!<Capture/Compare 4 output Polarity */
  3673. /******************* Bit definition for TIM_CNT register *******************/
  3674. #define TIM_CNT_CNT_Pos (0U)
  3675. #define TIM_CNT_CNT_Msk (0xFFFFFFFFUL << TIM_CNT_CNT_Pos) /*!< 0xFFFFFFFF */
  3676. #define TIM_CNT_CNT TIM_CNT_CNT_Msk /*!<Counter Value */
  3677. /******************* Bit definition for TIM_PSC register *******************/
  3678. #define TIM_PSC_PSC_Pos (0U)
  3679. #define TIM_PSC_PSC_Msk (0xFFFFUL << TIM_PSC_PSC_Pos) /*!< 0x0000FFFF */
  3680. #define TIM_PSC_PSC TIM_PSC_PSC_Msk /*!<Prescaler Value */
  3681. /******************* Bit definition for TIM_ARR register *******************/
  3682. #define TIM_ARR_ARR_Pos (0U)
  3683. #define TIM_ARR_ARR_Msk (0xFFFFFFFFUL << TIM_ARR_ARR_Pos) /*!< 0xFFFFFFFF */
  3684. #define TIM_ARR_ARR TIM_ARR_ARR_Msk /*!<actual auto-reload Value */
  3685. /******************* Bit definition for TIM_RCR register *******************/
  3686. #define TIM_RCR_REP_Pos (0U)
  3687. #define TIM_RCR_REP_Msk (0xFFUL << TIM_RCR_REP_Pos) /*!< 0x000000FF */
  3688. #define TIM_RCR_REP TIM_RCR_REP_Msk /*!<Repetition Counter Value */
  3689. /******************* Bit definition for TIM_CCR1 register ******************/
  3690. #define TIM_CCR1_CCR1_Pos (0U)
  3691. #define TIM_CCR1_CCR1_Msk (0xFFFFUL << TIM_CCR1_CCR1_Pos) /*!< 0x0000FFFF */
  3692. #define TIM_CCR1_CCR1 TIM_CCR1_CCR1_Msk /*!<Capture/Compare 1 Value */
  3693. /******************* Bit definition for TIM_CCR2 register ******************/
  3694. #define TIM_CCR2_CCR2_Pos (0U)
  3695. #define TIM_CCR2_CCR2_Msk (0xFFFFUL << TIM_CCR2_CCR2_Pos) /*!< 0x0000FFFF */
  3696. #define TIM_CCR2_CCR2 TIM_CCR2_CCR2_Msk /*!<Capture/Compare 2 Value */
  3697. /******************* Bit definition for TIM_CCR3 register ******************/
  3698. #define TIM_CCR3_CCR3_Pos (0U)
  3699. #define TIM_CCR3_CCR3_Msk (0xFFFFUL << TIM_CCR3_CCR3_Pos) /*!< 0x0000FFFF */
  3700. #define TIM_CCR3_CCR3 TIM_CCR3_CCR3_Msk /*!<Capture/Compare 3 Value */
  3701. /******************* Bit definition for TIM_CCR4 register ******************/
  3702. #define TIM_CCR4_CCR4_Pos (0U)
  3703. #define TIM_CCR4_CCR4_Msk (0xFFFFUL << TIM_CCR4_CCR4_Pos) /*!< 0x0000FFFF */
  3704. #define TIM_CCR4_CCR4 TIM_CCR4_CCR4_Msk /*!<Capture/Compare 4 Value */
  3705. /******************* Bit definition for TIM_BDTR register ******************/
  3706. #define TIM_BDTR_DTG_Pos (0U)
  3707. #define TIM_BDTR_DTG_Msk (0xFFUL << TIM_BDTR_DTG_Pos) /*!< 0x000000FF */
  3708. #define TIM_BDTR_DTG TIM_BDTR_DTG_Msk /*!<DTG[0:7] bits (Dead-Time Generator set-up) */
  3709. #define TIM_BDTR_DTG_0 (0x01UL << TIM_BDTR_DTG_Pos) /*!< 0x00000001 */
  3710. #define TIM_BDTR_DTG_1 (0x02UL << TIM_BDTR_DTG_Pos) /*!< 0x00000002 */
  3711. #define TIM_BDTR_DTG_2 (0x04UL << TIM_BDTR_DTG_Pos) /*!< 0x00000004 */
  3712. #define TIM_BDTR_DTG_3 (0x08UL << TIM_BDTR_DTG_Pos) /*!< 0x00000008 */
  3713. #define TIM_BDTR_DTG_4 (0x10UL << TIM_BDTR_DTG_Pos) /*!< 0x00000010 */
  3714. #define TIM_BDTR_DTG_5 (0x20UL << TIM_BDTR_DTG_Pos) /*!< 0x00000020 */
  3715. #define TIM_BDTR_DTG_6 (0x40UL << TIM_BDTR_DTG_Pos) /*!< 0x00000040 */
  3716. #define TIM_BDTR_DTG_7 (0x80UL << TIM_BDTR_DTG_Pos) /*!< 0x00000080 */
  3717. #define TIM_BDTR_LOCK_Pos (8U)
  3718. #define TIM_BDTR_LOCK_Msk (0x3UL << TIM_BDTR_LOCK_Pos) /*!< 0x00000300 */
  3719. #define TIM_BDTR_LOCK TIM_BDTR_LOCK_Msk /*!<LOCK[1:0] bits (Lock Configuration) */
  3720. #define TIM_BDTR_LOCK_0 (0x1UL << TIM_BDTR_LOCK_Pos) /*!< 0x00000100 */
  3721. #define TIM_BDTR_LOCK_1 (0x2UL << TIM_BDTR_LOCK_Pos) /*!< 0x00000200 */
  3722. #define TIM_BDTR_OSSI_Pos (10U)
  3723. #define TIM_BDTR_OSSI_Msk (0x1UL << TIM_BDTR_OSSI_Pos) /*!< 0x00000400 */
  3724. #define TIM_BDTR_OSSI TIM_BDTR_OSSI_Msk /*!<Off-State Selection for Idle mode */
  3725. #define TIM_BDTR_OSSR_Pos (11U)
  3726. #define TIM_BDTR_OSSR_Msk (0x1UL << TIM_BDTR_OSSR_Pos) /*!< 0x00000800 */
  3727. #define TIM_BDTR_OSSR TIM_BDTR_OSSR_Msk /*!<Off-State Selection for Run mode */
  3728. #define TIM_BDTR_BKE_Pos (12U)
  3729. #define TIM_BDTR_BKE_Msk (0x1UL << TIM_BDTR_BKE_Pos) /*!< 0x00001000 */
  3730. #define TIM_BDTR_BKE TIM_BDTR_BKE_Msk /*!<Break enable */
  3731. #define TIM_BDTR_BKP_Pos (13U)
  3732. #define TIM_BDTR_BKP_Msk (0x1UL << TIM_BDTR_BKP_Pos) /*!< 0x00002000 */
  3733. #define TIM_BDTR_BKP TIM_BDTR_BKP_Msk /*!<Break Polarity */
  3734. #define TIM_BDTR_AOE_Pos (14U)
  3735. #define TIM_BDTR_AOE_Msk (0x1UL << TIM_BDTR_AOE_Pos) /*!< 0x00004000 */
  3736. #define TIM_BDTR_AOE TIM_BDTR_AOE_Msk /*!<Automatic Output enable */
  3737. #define TIM_BDTR_MOE_Pos (15U)
  3738. #define TIM_BDTR_MOE_Msk (0x1UL << TIM_BDTR_MOE_Pos) /*!< 0x00008000 */
  3739. #define TIM_BDTR_MOE TIM_BDTR_MOE_Msk /*!<Main Output enable */
  3740. /******************* Bit definition for TIM_DCR register *******************/
  3741. #define TIM_DCR_DBA_Pos (0U)
  3742. #define TIM_DCR_DBA_Msk (0x1FUL << TIM_DCR_DBA_Pos) /*!< 0x0000001F */
  3743. #define TIM_DCR_DBA TIM_DCR_DBA_Msk /*!<DBA[4:0] bits (DMA Base Address) */
  3744. #define TIM_DCR_DBA_0 (0x01UL << TIM_DCR_DBA_Pos) /*!< 0x00000001 */
  3745. #define TIM_DCR_DBA_1 (0x02UL << TIM_DCR_DBA_Pos) /*!< 0x00000002 */
  3746. #define TIM_DCR_DBA_2 (0x04UL << TIM_DCR_DBA_Pos) /*!< 0x00000004 */
  3747. #define TIM_DCR_DBA_3 (0x08UL << TIM_DCR_DBA_Pos) /*!< 0x00000008 */
  3748. #define TIM_DCR_DBA_4 (0x10UL << TIM_DCR_DBA_Pos) /*!< 0x00000010 */
  3749. #define TIM_DCR_DBL_Pos (8U)
  3750. #define TIM_DCR_DBL_Msk (0x1FUL << TIM_DCR_DBL_Pos) /*!< 0x00001F00 */
  3751. #define TIM_DCR_DBL TIM_DCR_DBL_Msk /*!<DBL[4:0] bits (DMA Burst Length) */
  3752. #define TIM_DCR_DBL_0 (0x01UL << TIM_DCR_DBL_Pos) /*!< 0x00000100 */
  3753. #define TIM_DCR_DBL_1 (0x02UL << TIM_DCR_DBL_Pos) /*!< 0x00000200 */
  3754. #define TIM_DCR_DBL_2 (0x04UL << TIM_DCR_DBL_Pos) /*!< 0x00000400 */
  3755. #define TIM_DCR_DBL_3 (0x08UL << TIM_DCR_DBL_Pos) /*!< 0x00000800 */
  3756. #define TIM_DCR_DBL_4 (0x10UL << TIM_DCR_DBL_Pos) /*!< 0x00001000 */
  3757. /******************* Bit definition for TIM_DMAR register ******************/
  3758. #define TIM_DMAR_DMAB_Pos (0U)
  3759. #define TIM_DMAR_DMAB_Msk (0xFFFFUL << TIM_DMAR_DMAB_Pos) /*!< 0x0000FFFF */
  3760. #define TIM_DMAR_DMAB TIM_DMAR_DMAB_Msk /*!<DMA register for burst accesses */
  3761. /******************************************************************************/
  3762. /* */
  3763. /* Real-Time Clock */
  3764. /* */
  3765. /******************************************************************************/
  3766. /******************* Bit definition for RTC_CRH register ********************/
  3767. #define RTC_CRH_SECIE_Pos (0U)
  3768. #define RTC_CRH_SECIE_Msk (0x1UL << RTC_CRH_SECIE_Pos) /*!< 0x00000001 */
  3769. #define RTC_CRH_SECIE RTC_CRH_SECIE_Msk /*!< Second Interrupt Enable */
  3770. #define RTC_CRH_ALRIE_Pos (1U)
  3771. #define RTC_CRH_ALRIE_Msk (0x1UL << RTC_CRH_ALRIE_Pos) /*!< 0x00000002 */
  3772. #define RTC_CRH_ALRIE RTC_CRH_ALRIE_Msk /*!< Alarm Interrupt Enable */
  3773. #define RTC_CRH_OWIE_Pos (2U)
  3774. #define RTC_CRH_OWIE_Msk (0x1UL << RTC_CRH_OWIE_Pos) /*!< 0x00000004 */
  3775. #define RTC_CRH_OWIE RTC_CRH_OWIE_Msk /*!< OverfloW Interrupt Enable */
  3776. /******************* Bit definition for RTC_CRL register ********************/
  3777. #define RTC_CRL_SECF_Pos (0U)
  3778. #define RTC_CRL_SECF_Msk (0x1UL << RTC_CRL_SECF_Pos) /*!< 0x00000001 */
  3779. #define RTC_CRL_SECF RTC_CRL_SECF_Msk /*!< Second Flag */
  3780. #define RTC_CRL_ALRF_Pos (1U)
  3781. #define RTC_CRL_ALRF_Msk (0x1UL << RTC_CRL_ALRF_Pos) /*!< 0x00000002 */
  3782. #define RTC_CRL_ALRF RTC_CRL_ALRF_Msk /*!< Alarm Flag */
  3783. #define RTC_CRL_OWF_Pos (2U)
  3784. #define RTC_CRL_OWF_Msk (0x1UL << RTC_CRL_OWF_Pos) /*!< 0x00000004 */
  3785. #define RTC_CRL_OWF RTC_CRL_OWF_Msk /*!< OverfloW Flag */
  3786. #define RTC_CRL_RSF_Pos (3U)
  3787. #define RTC_CRL_RSF_Msk (0x1UL << RTC_CRL_RSF_Pos) /*!< 0x00000008 */
  3788. #define RTC_CRL_RSF RTC_CRL_RSF_Msk /*!< Registers Synchronized Flag */
  3789. #define RTC_CRL_CNF_Pos (4U)
  3790. #define RTC_CRL_CNF_Msk (0x1UL << RTC_CRL_CNF_Pos) /*!< 0x00000010 */
  3791. #define RTC_CRL_CNF RTC_CRL_CNF_Msk /*!< Configuration Flag */
  3792. #define RTC_CRL_RTOFF_Pos (5U)
  3793. #define RTC_CRL_RTOFF_Msk (0x1UL << RTC_CRL_RTOFF_Pos) /*!< 0x00000020 */
  3794. #define RTC_CRL_RTOFF RTC_CRL_RTOFF_Msk /*!< RTC operation OFF */
  3795. /******************* Bit definition for RTC_PRLH register *******************/
  3796. #define RTC_PRLH_PRL_Pos (0U)
  3797. #define RTC_PRLH_PRL_Msk (0xFUL << RTC_PRLH_PRL_Pos) /*!< 0x0000000F */
  3798. #define RTC_PRLH_PRL RTC_PRLH_PRL_Msk /*!< RTC Prescaler Reload Value High */
  3799. /******************* Bit definition for RTC_PRLL register *******************/
  3800. #define RTC_PRLL_PRL_Pos (0U)
  3801. #define RTC_PRLL_PRL_Msk (0xFFFFUL << RTC_PRLL_PRL_Pos) /*!< 0x0000FFFF */
  3802. #define RTC_PRLL_PRL RTC_PRLL_PRL_Msk /*!< RTC Prescaler Reload Value Low */
  3803. /******************* Bit definition for RTC_DIVH register *******************/
  3804. #define RTC_DIVH_RTC_DIV_Pos (0U)
  3805. #define RTC_DIVH_RTC_DIV_Msk (0xFUL << RTC_DIVH_RTC_DIV_Pos) /*!< 0x0000000F */
  3806. #define RTC_DIVH_RTC_DIV RTC_DIVH_RTC_DIV_Msk /*!< RTC Clock Divider High */
  3807. /******************* Bit definition for RTC_DIVL register *******************/
  3808. #define RTC_DIVL_RTC_DIV_Pos (0U)
  3809. #define RTC_DIVL_RTC_DIV_Msk (0xFFFFUL << RTC_DIVL_RTC_DIV_Pos) /*!< 0x0000FFFF */
  3810. #define RTC_DIVL_RTC_DIV RTC_DIVL_RTC_DIV_Msk /*!< RTC Clock Divider Low */
  3811. /******************* Bit definition for RTC_CNTH register *******************/
  3812. #define RTC_CNTH_RTC_CNT_Pos (0U)
  3813. #define RTC_CNTH_RTC_CNT_Msk (0xFFFFUL << RTC_CNTH_RTC_CNT_Pos) /*!< 0x0000FFFF */
  3814. #define RTC_CNTH_RTC_CNT RTC_CNTH_RTC_CNT_Msk /*!< RTC Counter High */
  3815. /******************* Bit definition for RTC_CNTL register *******************/
  3816. #define RTC_CNTL_RTC_CNT_Pos (0U)
  3817. #define RTC_CNTL_RTC_CNT_Msk (0xFFFFUL << RTC_CNTL_RTC_CNT_Pos) /*!< 0x0000FFFF */
  3818. #define RTC_CNTL_RTC_CNT RTC_CNTL_RTC_CNT_Msk /*!< RTC Counter Low */
  3819. /******************* Bit definition for RTC_ALRH register *******************/
  3820. #define RTC_ALRH_RTC_ALR_Pos (0U)
  3821. #define RTC_ALRH_RTC_ALR_Msk (0xFFFFUL << RTC_ALRH_RTC_ALR_Pos) /*!< 0x0000FFFF */
  3822. #define RTC_ALRH_RTC_ALR RTC_ALRH_RTC_ALR_Msk /*!< RTC Alarm High */
  3823. /******************* Bit definition for RTC_ALRL register *******************/
  3824. #define RTC_ALRL_RTC_ALR_Pos (0U)
  3825. #define RTC_ALRL_RTC_ALR_Msk (0xFFFFUL << RTC_ALRL_RTC_ALR_Pos) /*!< 0x0000FFFF */
  3826. #define RTC_ALRL_RTC_ALR RTC_ALRL_RTC_ALR_Msk /*!< RTC Alarm Low */
  3827. /******************************************************************************/
  3828. /* */
  3829. /* Independent WATCHDOG (IWDG) */
  3830. /* */
  3831. /******************************************************************************/
  3832. /******************* Bit definition for IWDG_KR register ********************/
  3833. #define IWDG_KR_KEY_Pos (0U)
  3834. #define IWDG_KR_KEY_Msk (0xFFFFUL << IWDG_KR_KEY_Pos) /*!< 0x0000FFFF */
  3835. #define IWDG_KR_KEY IWDG_KR_KEY_Msk /*!< Key value (write only, read 0000h) */
  3836. /******************* Bit definition for IWDG_PR register ********************/
  3837. #define IWDG_PR_PR_Pos (0U)
  3838. #define IWDG_PR_PR_Msk (0x7UL << IWDG_PR_PR_Pos) /*!< 0x00000007 */
  3839. #define IWDG_PR_PR IWDG_PR_PR_Msk /*!< PR[2:0] (Prescaler divider) */
  3840. #define IWDG_PR_PR_0 (0x1UL << IWDG_PR_PR_Pos) /*!< 0x00000001 */
  3841. #define IWDG_PR_PR_1 (0x2UL << IWDG_PR_PR_Pos) /*!< 0x00000002 */
  3842. #define IWDG_PR_PR_2 (0x4UL << IWDG_PR_PR_Pos) /*!< 0x00000004 */
  3843. /******************* Bit definition for IWDG_RLR register *******************/
  3844. #define IWDG_RLR_RL_Pos (0U)
  3845. #define IWDG_RLR_RL_Msk (0xFFFUL << IWDG_RLR_RL_Pos) /*!< 0x00000FFF */
  3846. #define IWDG_RLR_RL IWDG_RLR_RL_Msk /*!< Watchdog counter reload value */
  3847. /******************* Bit definition for IWDG_SR register ********************/
  3848. #define IWDG_SR_PVU_Pos (0U)
  3849. #define IWDG_SR_PVU_Msk (0x1UL << IWDG_SR_PVU_Pos) /*!< 0x00000001 */
  3850. #define IWDG_SR_PVU IWDG_SR_PVU_Msk /*!< Watchdog prescaler value update */
  3851. #define IWDG_SR_RVU_Pos (1U)
  3852. #define IWDG_SR_RVU_Msk (0x1UL << IWDG_SR_RVU_Pos) /*!< 0x00000002 */
  3853. #define IWDG_SR_RVU IWDG_SR_RVU_Msk /*!< Watchdog counter reload value update */
  3854. /******************************************************************************/
  3855. /* */
  3856. /* Window WATCHDOG (WWDG) */
  3857. /* */
  3858. /******************************************************************************/
  3859. /******************* Bit definition for WWDG_CR register ********************/
  3860. #define WWDG_CR_T_Pos (0U)
  3861. #define WWDG_CR_T_Msk (0x7FUL << WWDG_CR_T_Pos) /*!< 0x0000007F */
  3862. #define WWDG_CR_T WWDG_CR_T_Msk /*!< T[6:0] bits (7-Bit counter (MSB to LSB)) */
  3863. #define WWDG_CR_T_0 (0x01UL << WWDG_CR_T_Pos) /*!< 0x00000001 */
  3864. #define WWDG_CR_T_1 (0x02UL << WWDG_CR_T_Pos) /*!< 0x00000002 */
  3865. #define WWDG_CR_T_2 (0x04UL << WWDG_CR_T_Pos) /*!< 0x00000004 */
  3866. #define WWDG_CR_T_3 (0x08UL << WWDG_CR_T_Pos) /*!< 0x00000008 */
  3867. #define WWDG_CR_T_4 (0x10UL << WWDG_CR_T_Pos) /*!< 0x00000010 */
  3868. #define WWDG_CR_T_5 (0x20UL << WWDG_CR_T_Pos) /*!< 0x00000020 */
  3869. #define WWDG_CR_T_6 (0x40UL << WWDG_CR_T_Pos) /*!< 0x00000040 */
  3870. /* Legacy defines */
  3871. #define WWDG_CR_T0 WWDG_CR_T_0
  3872. #define WWDG_CR_T1 WWDG_CR_T_1
  3873. #define WWDG_CR_T2 WWDG_CR_T_2
  3874. #define WWDG_CR_T3 WWDG_CR_T_3
  3875. #define WWDG_CR_T4 WWDG_CR_T_4
  3876. #define WWDG_CR_T5 WWDG_CR_T_5
  3877. #define WWDG_CR_T6 WWDG_CR_T_6
  3878. #define WWDG_CR_WDGA_Pos (7U)
  3879. #define WWDG_CR_WDGA_Msk (0x1UL << WWDG_CR_WDGA_Pos) /*!< 0x00000080 */
  3880. #define WWDG_CR_WDGA WWDG_CR_WDGA_Msk /*!< Activation bit */
  3881. /******************* Bit definition for WWDG_CFR register *******************/
  3882. #define WWDG_CFR_W_Pos (0U)
  3883. #define WWDG_CFR_W_Msk (0x7FUL << WWDG_CFR_W_Pos) /*!< 0x0000007F */
  3884. #define WWDG_CFR_W WWDG_CFR_W_Msk /*!< W[6:0] bits (7-bit window value) */
  3885. #define WWDG_CFR_W_0 (0x01UL << WWDG_CFR_W_Pos) /*!< 0x00000001 */
  3886. #define WWDG_CFR_W_1 (0x02UL << WWDG_CFR_W_Pos) /*!< 0x00000002 */
  3887. #define WWDG_CFR_W_2 (0x04UL << WWDG_CFR_W_Pos) /*!< 0x00000004 */
  3888. #define WWDG_CFR_W_3 (0x08UL << WWDG_CFR_W_Pos) /*!< 0x00000008 */
  3889. #define WWDG_CFR_W_4 (0x10UL << WWDG_CFR_W_Pos) /*!< 0x00000010 */
  3890. #define WWDG_CFR_W_5 (0x20UL << WWDG_CFR_W_Pos) /*!< 0x00000020 */
  3891. #define WWDG_CFR_W_6 (0x40UL << WWDG_CFR_W_Pos) /*!< 0x00000040 */
  3892. /* Legacy defines */
  3893. #define WWDG_CFR_W0 WWDG_CFR_W_0
  3894. #define WWDG_CFR_W1 WWDG_CFR_W_1
  3895. #define WWDG_CFR_W2 WWDG_CFR_W_2
  3896. #define WWDG_CFR_W3 WWDG_CFR_W_3
  3897. #define WWDG_CFR_W4 WWDG_CFR_W_4
  3898. #define WWDG_CFR_W5 WWDG_CFR_W_5
  3899. #define WWDG_CFR_W6 WWDG_CFR_W_6
  3900. #define WWDG_CFR_WDGTB_Pos (7U)
  3901. #define WWDG_CFR_WDGTB_Msk (0x3UL << WWDG_CFR_WDGTB_Pos) /*!< 0x00000180 */
  3902. #define WWDG_CFR_WDGTB WWDG_CFR_WDGTB_Msk /*!< WDGTB[1:0] bits (Timer Base) */
  3903. #define WWDG_CFR_WDGTB_0 (0x1UL << WWDG_CFR_WDGTB_Pos) /*!< 0x00000080 */
  3904. #define WWDG_CFR_WDGTB_1 (0x2UL << WWDG_CFR_WDGTB_Pos) /*!< 0x00000100 */
  3905. /* Legacy defines */
  3906. #define WWDG_CFR_WDGTB0 WWDG_CFR_WDGTB_0
  3907. #define WWDG_CFR_WDGTB1 WWDG_CFR_WDGTB_1
  3908. #define WWDG_CFR_EWI_Pos (9U)
  3909. #define WWDG_CFR_EWI_Msk (0x1UL << WWDG_CFR_EWI_Pos) /*!< 0x00000200 */
  3910. #define WWDG_CFR_EWI WWDG_CFR_EWI_Msk /*!< Early Wakeup Interrupt */
  3911. /******************* Bit definition for WWDG_SR register ********************/
  3912. #define WWDG_SR_EWIF_Pos (0U)
  3913. #define WWDG_SR_EWIF_Msk (0x1UL << WWDG_SR_EWIF_Pos) /*!< 0x00000001 */
  3914. #define WWDG_SR_EWIF WWDG_SR_EWIF_Msk /*!< Early Wakeup Interrupt Flag */
  3915. /******************************************************************************/
  3916. /* */
  3917. /* Serial Peripheral Interface */
  3918. /* */
  3919. /******************************************************************************/
  3920. /******************* Bit definition for SPI_CR1 register ********************/
  3921. #define SPI_CR1_CPHA_Pos (0U)
  3922. #define SPI_CR1_CPHA_Msk (0x1UL << SPI_CR1_CPHA_Pos) /*!< 0x00000001 */
  3923. #define SPI_CR1_CPHA SPI_CR1_CPHA_Msk /*!< Clock Phase */
  3924. #define SPI_CR1_CPOL_Pos (1U)
  3925. #define SPI_CR1_CPOL_Msk (0x1UL << SPI_CR1_CPOL_Pos) /*!< 0x00000002 */
  3926. #define SPI_CR1_CPOL SPI_CR1_CPOL_Msk /*!< Clock Polarity */
  3927. #define SPI_CR1_MSTR_Pos (2U)
  3928. #define SPI_CR1_MSTR_Msk (0x1UL << SPI_CR1_MSTR_Pos) /*!< 0x00000004 */
  3929. #define SPI_CR1_MSTR SPI_CR1_MSTR_Msk /*!< Master Selection */
  3930. #define SPI_CR1_BR_Pos (3U)
  3931. #define SPI_CR1_BR_Msk (0x7UL << SPI_CR1_BR_Pos) /*!< 0x00000038 */
  3932. #define SPI_CR1_BR SPI_CR1_BR_Msk /*!< BR[2:0] bits (Baud Rate Control) */
  3933. #define SPI_CR1_BR_0 (0x1UL << SPI_CR1_BR_Pos) /*!< 0x00000008 */
  3934. #define SPI_CR1_BR_1 (0x2UL << SPI_CR1_BR_Pos) /*!< 0x00000010 */
  3935. #define SPI_CR1_BR_2 (0x4UL << SPI_CR1_BR_Pos) /*!< 0x00000020 */
  3936. #define SPI_CR1_SPE_Pos (6U)
  3937. #define SPI_CR1_SPE_Msk (0x1UL << SPI_CR1_SPE_Pos) /*!< 0x00000040 */
  3938. #define SPI_CR1_SPE SPI_CR1_SPE_Msk /*!< SPI Enable */
  3939. #define SPI_CR1_LSBFIRST_Pos (7U)
  3940. #define SPI_CR1_LSBFIRST_Msk (0x1UL << SPI_CR1_LSBFIRST_Pos) /*!< 0x00000080 */
  3941. #define SPI_CR1_LSBFIRST SPI_CR1_LSBFIRST_Msk /*!< Frame Format */
  3942. #define SPI_CR1_SSI_Pos (8U)
  3943. #define SPI_CR1_SSI_Msk (0x1UL << SPI_CR1_SSI_Pos) /*!< 0x00000100 */
  3944. #define SPI_CR1_SSI SPI_CR1_SSI_Msk /*!< Internal slave select */
  3945. #define SPI_CR1_SSM_Pos (9U)
  3946. #define SPI_CR1_SSM_Msk (0x1UL << SPI_CR1_SSM_Pos) /*!< 0x00000200 */
  3947. #define SPI_CR1_SSM SPI_CR1_SSM_Msk /*!< Software slave management */
  3948. #define SPI_CR1_RXONLY_Pos (10U)
  3949. #define SPI_CR1_RXONLY_Msk (0x1UL << SPI_CR1_RXONLY_Pos) /*!< 0x00000400 */
  3950. #define SPI_CR1_RXONLY SPI_CR1_RXONLY_Msk /*!< Receive only */
  3951. #define SPI_CR1_DFF_Pos (11U)
  3952. #define SPI_CR1_DFF_Msk (0x1UL << SPI_CR1_DFF_Pos) /*!< 0x00000800 */
  3953. #define SPI_CR1_DFF SPI_CR1_DFF_Msk /*!< Data Frame Format */
  3954. #define SPI_CR1_CRCNEXT_Pos (12U)
  3955. #define SPI_CR1_CRCNEXT_Msk (0x1UL << SPI_CR1_CRCNEXT_Pos) /*!< 0x00001000 */
  3956. #define SPI_CR1_CRCNEXT SPI_CR1_CRCNEXT_Msk /*!< Transmit CRC next */
  3957. #define SPI_CR1_CRCEN_Pos (13U)
  3958. #define SPI_CR1_CRCEN_Msk (0x1UL << SPI_CR1_CRCEN_Pos) /*!< 0x00002000 */
  3959. #define SPI_CR1_CRCEN SPI_CR1_CRCEN_Msk /*!< Hardware CRC calculation enable */
  3960. #define SPI_CR1_BIDIOE_Pos (14U)
  3961. #define SPI_CR1_BIDIOE_Msk (0x1UL << SPI_CR1_BIDIOE_Pos) /*!< 0x00004000 */
  3962. #define SPI_CR1_BIDIOE SPI_CR1_BIDIOE_Msk /*!< Output enable in bidirectional mode */
  3963. #define SPI_CR1_BIDIMODE_Pos (15U)
  3964. #define SPI_CR1_BIDIMODE_Msk (0x1UL << SPI_CR1_BIDIMODE_Pos) /*!< 0x00008000 */
  3965. #define SPI_CR1_BIDIMODE SPI_CR1_BIDIMODE_Msk /*!< Bidirectional data mode enable */
  3966. /******************* Bit definition for SPI_CR2 register ********************/
  3967. #define SPI_CR2_RXDMAEN_Pos (0U)
  3968. #define SPI_CR2_RXDMAEN_Msk (0x1UL << SPI_CR2_RXDMAEN_Pos) /*!< 0x00000001 */
  3969. #define SPI_CR2_RXDMAEN SPI_CR2_RXDMAEN_Msk /*!< Rx Buffer DMA Enable */
  3970. #define SPI_CR2_TXDMAEN_Pos (1U)
  3971. #define SPI_CR2_TXDMAEN_Msk (0x1UL << SPI_CR2_TXDMAEN_Pos) /*!< 0x00000002 */
  3972. #define SPI_CR2_TXDMAEN SPI_CR2_TXDMAEN_Msk /*!< Tx Buffer DMA Enable */
  3973. #define SPI_CR2_SSOE_Pos (2U)
  3974. #define SPI_CR2_SSOE_Msk (0x1UL << SPI_CR2_SSOE_Pos) /*!< 0x00000004 */
  3975. #define SPI_CR2_SSOE SPI_CR2_SSOE_Msk /*!< SS Output Enable */
  3976. #define SPI_CR2_ERRIE_Pos (5U)
  3977. #define SPI_CR2_ERRIE_Msk (0x1UL << SPI_CR2_ERRIE_Pos) /*!< 0x00000020 */
  3978. #define SPI_CR2_ERRIE SPI_CR2_ERRIE_Msk /*!< Error Interrupt Enable */
  3979. #define SPI_CR2_RXNEIE_Pos (6U)
  3980. #define SPI_CR2_RXNEIE_Msk (0x1UL << SPI_CR2_RXNEIE_Pos) /*!< 0x00000040 */
  3981. #define SPI_CR2_RXNEIE SPI_CR2_RXNEIE_Msk /*!< RX buffer Not Empty Interrupt Enable */
  3982. #define SPI_CR2_TXEIE_Pos (7U)
  3983. #define SPI_CR2_TXEIE_Msk (0x1UL << SPI_CR2_TXEIE_Pos) /*!< 0x00000080 */
  3984. #define SPI_CR2_TXEIE SPI_CR2_TXEIE_Msk /*!< Tx buffer Empty Interrupt Enable */
  3985. /******************** Bit definition for SPI_SR register ********************/
  3986. #define SPI_SR_RXNE_Pos (0U)
  3987. #define SPI_SR_RXNE_Msk (0x1UL << SPI_SR_RXNE_Pos) /*!< 0x00000001 */
  3988. #define SPI_SR_RXNE SPI_SR_RXNE_Msk /*!< Receive buffer Not Empty */
  3989. #define SPI_SR_TXE_Pos (1U)
  3990. #define SPI_SR_TXE_Msk (0x1UL << SPI_SR_TXE_Pos) /*!< 0x00000002 */
  3991. #define SPI_SR_TXE SPI_SR_TXE_Msk /*!< Transmit buffer Empty */
  3992. #define SPI_SR_CHSIDE_Pos (2U)
  3993. #define SPI_SR_CHSIDE_Msk (0x1UL << SPI_SR_CHSIDE_Pos) /*!< 0x00000004 */
  3994. #define SPI_SR_CHSIDE SPI_SR_CHSIDE_Msk /*!< Channel side */
  3995. #define SPI_SR_UDR_Pos (3U)
  3996. #define SPI_SR_UDR_Msk (0x1UL << SPI_SR_UDR_Pos) /*!< 0x00000008 */
  3997. #define SPI_SR_UDR SPI_SR_UDR_Msk /*!< Underrun flag */
  3998. #define SPI_SR_CRCERR_Pos (4U)
  3999. #define SPI_SR_CRCERR_Msk (0x1UL << SPI_SR_CRCERR_Pos) /*!< 0x00000010 */
  4000. #define SPI_SR_CRCERR SPI_SR_CRCERR_Msk /*!< CRC Error flag */
  4001. #define SPI_SR_MODF_Pos (5U)
  4002. #define SPI_SR_MODF_Msk (0x1UL << SPI_SR_MODF_Pos) /*!< 0x00000020 */
  4003. #define SPI_SR_MODF SPI_SR_MODF_Msk /*!< Mode fault */
  4004. #define SPI_SR_OVR_Pos (6U)
  4005. #define SPI_SR_OVR_Msk (0x1UL << SPI_SR_OVR_Pos) /*!< 0x00000040 */
  4006. #define SPI_SR_OVR SPI_SR_OVR_Msk /*!< Overrun flag */
  4007. #define SPI_SR_BSY_Pos (7U)
  4008. #define SPI_SR_BSY_Msk (0x1UL << SPI_SR_BSY_Pos) /*!< 0x00000080 */
  4009. #define SPI_SR_BSY SPI_SR_BSY_Msk /*!< Busy flag */
  4010. /******************** Bit definition for SPI_DR register ********************/
  4011. #define SPI_DR_DR_Pos (0U)
  4012. #define SPI_DR_DR_Msk (0xFFFFUL << SPI_DR_DR_Pos) /*!< 0x0000FFFF */
  4013. #define SPI_DR_DR SPI_DR_DR_Msk /*!< Data Register */
  4014. /******************* Bit definition for SPI_CRCPR register ******************/
  4015. #define SPI_CRCPR_CRCPOLY_Pos (0U)
  4016. #define SPI_CRCPR_CRCPOLY_Msk (0xFFFFUL << SPI_CRCPR_CRCPOLY_Pos) /*!< 0x0000FFFF */
  4017. #define SPI_CRCPR_CRCPOLY SPI_CRCPR_CRCPOLY_Msk /*!< CRC polynomial register */
  4018. /****************** Bit definition for SPI_RXCRCR register ******************/
  4019. #define SPI_RXCRCR_RXCRC_Pos (0U)
  4020. #define SPI_RXCRCR_RXCRC_Msk (0xFFFFUL << SPI_RXCRCR_RXCRC_Pos) /*!< 0x0000FFFF */
  4021. #define SPI_RXCRCR_RXCRC SPI_RXCRCR_RXCRC_Msk /*!< Rx CRC Register */
  4022. /****************** Bit definition for SPI_TXCRCR register ******************/
  4023. #define SPI_TXCRCR_TXCRC_Pos (0U)
  4024. #define SPI_TXCRCR_TXCRC_Msk (0xFFFFUL << SPI_TXCRCR_TXCRC_Pos) /*!< 0x0000FFFF */
  4025. #define SPI_TXCRCR_TXCRC SPI_TXCRCR_TXCRC_Msk /*!< Tx CRC Register */
  4026. #define SPI_I2SCFGR_I2SMOD_Pos (11U)
  4027. #define SPI_I2SCFGR_I2SMOD_Msk (0x1UL << SPI_I2SCFGR_I2SMOD_Pos) /*!< 0x00000800 */
  4028. #define SPI_I2SCFGR_I2SMOD SPI_I2SCFGR_I2SMOD_Msk /*!< I2S mode selection */
  4029. /******************************************************************************/
  4030. /* */
  4031. /* Inter-integrated Circuit Interface */
  4032. /* */
  4033. /******************************************************************************/
  4034. /******************* Bit definition for I2C_CR1 register ********************/
  4035. #define I2C_CR1_PE_Pos (0U)
  4036. #define I2C_CR1_PE_Msk (0x1UL << I2C_CR1_PE_Pos) /*!< 0x00000001 */
  4037. #define I2C_CR1_PE I2C_CR1_PE_Msk /*!< Peripheral Enable */
  4038. #define I2C_CR1_SMBUS_Pos (1U)
  4039. #define I2C_CR1_SMBUS_Msk (0x1UL << I2C_CR1_SMBUS_Pos) /*!< 0x00000002 */
  4040. #define I2C_CR1_SMBUS I2C_CR1_SMBUS_Msk /*!< SMBus Mode */
  4041. #define I2C_CR1_SMBTYPE_Pos (3U)
  4042. #define I2C_CR1_SMBTYPE_Msk (0x1UL << I2C_CR1_SMBTYPE_Pos) /*!< 0x00000008 */
  4043. #define I2C_CR1_SMBTYPE I2C_CR1_SMBTYPE_Msk /*!< SMBus Type */
  4044. #define I2C_CR1_ENARP_Pos (4U)
  4045. #define I2C_CR1_ENARP_Msk (0x1UL << I2C_CR1_ENARP_Pos) /*!< 0x00000010 */
  4046. #define I2C_CR1_ENARP I2C_CR1_ENARP_Msk /*!< ARP Enable */
  4047. #define I2C_CR1_ENPEC_Pos (5U)
  4048. #define I2C_CR1_ENPEC_Msk (0x1UL << I2C_CR1_ENPEC_Pos) /*!< 0x00000020 */
  4049. #define I2C_CR1_ENPEC I2C_CR1_ENPEC_Msk /*!< PEC Enable */
  4050. #define I2C_CR1_ENGC_Pos (6U)
  4051. #define I2C_CR1_ENGC_Msk (0x1UL << I2C_CR1_ENGC_Pos) /*!< 0x00000040 */
  4052. #define I2C_CR1_ENGC I2C_CR1_ENGC_Msk /*!< General Call Enable */
  4053. #define I2C_CR1_NOSTRETCH_Pos (7U)
  4054. #define I2C_CR1_NOSTRETCH_Msk (0x1UL << I2C_CR1_NOSTRETCH_Pos) /*!< 0x00000080 */
  4055. #define I2C_CR1_NOSTRETCH I2C_CR1_NOSTRETCH_Msk /*!< Clock Stretching Disable (Slave mode) */
  4056. #define I2C_CR1_START_Pos (8U)
  4057. #define I2C_CR1_START_Msk (0x1UL << I2C_CR1_START_Pos) /*!< 0x00000100 */
  4058. #define I2C_CR1_START I2C_CR1_START_Msk /*!< Start Generation */
  4059. #define I2C_CR1_STOP_Pos (9U)
  4060. #define I2C_CR1_STOP_Msk (0x1UL << I2C_CR1_STOP_Pos) /*!< 0x00000200 */
  4061. #define I2C_CR1_STOP I2C_CR1_STOP_Msk /*!< Stop Generation */
  4062. #define I2C_CR1_ACK_Pos (10U)
  4063. #define I2C_CR1_ACK_Msk (0x1UL << I2C_CR1_ACK_Pos) /*!< 0x00000400 */
  4064. #define I2C_CR1_ACK I2C_CR1_ACK_Msk /*!< Acknowledge Enable */
  4065. #define I2C_CR1_POS_Pos (11U)
  4066. #define I2C_CR1_POS_Msk (0x1UL << I2C_CR1_POS_Pos) /*!< 0x00000800 */
  4067. #define I2C_CR1_POS I2C_CR1_POS_Msk /*!< Acknowledge/PEC Position (for data reception) */
  4068. #define I2C_CR1_PEC_Pos (12U)
  4069. #define I2C_CR1_PEC_Msk (0x1UL << I2C_CR1_PEC_Pos) /*!< 0x00001000 */
  4070. #define I2C_CR1_PEC I2C_CR1_PEC_Msk /*!< Packet Error Checking */
  4071. #define I2C_CR1_ALERT_Pos (13U)
  4072. #define I2C_CR1_ALERT_Msk (0x1UL << I2C_CR1_ALERT_Pos) /*!< 0x00002000 */
  4073. #define I2C_CR1_ALERT I2C_CR1_ALERT_Msk /*!< SMBus Alert */
  4074. #define I2C_CR1_SWRST_Pos (15U)
  4075. #define I2C_CR1_SWRST_Msk (0x1UL << I2C_CR1_SWRST_Pos) /*!< 0x00008000 */
  4076. #define I2C_CR1_SWRST I2C_CR1_SWRST_Msk /*!< Software Reset */
  4077. /******************* Bit definition for I2C_CR2 register ********************/
  4078. #define I2C_CR2_FREQ_Pos (0U)
  4079. #define I2C_CR2_FREQ_Msk (0x3FUL << I2C_CR2_FREQ_Pos) /*!< 0x0000003F */
  4080. #define I2C_CR2_FREQ I2C_CR2_FREQ_Msk /*!< FREQ[5:0] bits (Peripheral Clock Frequency) */
  4081. #define I2C_CR2_FREQ_0 (0x01UL << I2C_CR2_FREQ_Pos) /*!< 0x00000001 */
  4082. #define I2C_CR2_FREQ_1 (0x02UL << I2C_CR2_FREQ_Pos) /*!< 0x00000002 */
  4083. #define I2C_CR2_FREQ_2 (0x04UL << I2C_CR2_FREQ_Pos) /*!< 0x00000004 */
  4084. #define I2C_CR2_FREQ_3 (0x08UL << I2C_CR2_FREQ_Pos) /*!< 0x00000008 */
  4085. #define I2C_CR2_FREQ_4 (0x10UL << I2C_CR2_FREQ_Pos) /*!< 0x00000010 */
  4086. #define I2C_CR2_FREQ_5 (0x20UL << I2C_CR2_FREQ_Pos) /*!< 0x00000020 */
  4087. #define I2C_CR2_ITERREN_Pos (8U)
  4088. #define I2C_CR2_ITERREN_Msk (0x1UL << I2C_CR2_ITERREN_Pos) /*!< 0x00000100 */
  4089. #define I2C_CR2_ITERREN I2C_CR2_ITERREN_Msk /*!< Error Interrupt Enable */
  4090. #define I2C_CR2_ITEVTEN_Pos (9U)
  4091. #define I2C_CR2_ITEVTEN_Msk (0x1UL << I2C_CR2_ITEVTEN_Pos) /*!< 0x00000200 */
  4092. #define I2C_CR2_ITEVTEN I2C_CR2_ITEVTEN_Msk /*!< Event Interrupt Enable */
  4093. #define I2C_CR2_ITBUFEN_Pos (10U)
  4094. #define I2C_CR2_ITBUFEN_Msk (0x1UL << I2C_CR2_ITBUFEN_Pos) /*!< 0x00000400 */
  4095. #define I2C_CR2_ITBUFEN I2C_CR2_ITBUFEN_Msk /*!< Buffer Interrupt Enable */
  4096. #define I2C_CR2_DMAEN_Pos (11U)
  4097. #define I2C_CR2_DMAEN_Msk (0x1UL << I2C_CR2_DMAEN_Pos) /*!< 0x00000800 */
  4098. #define I2C_CR2_DMAEN I2C_CR2_DMAEN_Msk /*!< DMA Requests Enable */
  4099. #define I2C_CR2_LAST_Pos (12U)
  4100. #define I2C_CR2_LAST_Msk (0x1UL << I2C_CR2_LAST_Pos) /*!< 0x00001000 */
  4101. #define I2C_CR2_LAST I2C_CR2_LAST_Msk /*!< DMA Last Transfer */
  4102. /******************* Bit definition for I2C_OAR1 register *******************/
  4103. #define I2C_OAR1_ADD1_7 0x000000FEU /*!< Interface Address */
  4104. #define I2C_OAR1_ADD8_9 0x00000300U /*!< Interface Address */
  4105. #define I2C_OAR1_ADD0_Pos (0U)
  4106. #define I2C_OAR1_ADD0_Msk (0x1UL << I2C_OAR1_ADD0_Pos) /*!< 0x00000001 */
  4107. #define I2C_OAR1_ADD0 I2C_OAR1_ADD0_Msk /*!< Bit 0 */
  4108. #define I2C_OAR1_ADD1_Pos (1U)
  4109. #define I2C_OAR1_ADD1_Msk (0x1UL << I2C_OAR1_ADD1_Pos) /*!< 0x00000002 */
  4110. #define I2C_OAR1_ADD1 I2C_OAR1_ADD1_Msk /*!< Bit 1 */
  4111. #define I2C_OAR1_ADD2_Pos (2U)
  4112. #define I2C_OAR1_ADD2_Msk (0x1UL << I2C_OAR1_ADD2_Pos) /*!< 0x00000004 */
  4113. #define I2C_OAR1_ADD2 I2C_OAR1_ADD2_Msk /*!< Bit 2 */
  4114. #define I2C_OAR1_ADD3_Pos (3U)
  4115. #define I2C_OAR1_ADD3_Msk (0x1UL << I2C_OAR1_ADD3_Pos) /*!< 0x00000008 */
  4116. #define I2C_OAR1_ADD3 I2C_OAR1_ADD3_Msk /*!< Bit 3 */
  4117. #define I2C_OAR1_ADD4_Pos (4U)
  4118. #define I2C_OAR1_ADD4_Msk (0x1UL << I2C_OAR1_ADD4_Pos) /*!< 0x00000010 */
  4119. #define I2C_OAR1_ADD4 I2C_OAR1_ADD4_Msk /*!< Bit 4 */
  4120. #define I2C_OAR1_ADD5_Pos (5U)
  4121. #define I2C_OAR1_ADD5_Msk (0x1UL << I2C_OAR1_ADD5_Pos) /*!< 0x00000020 */
  4122. #define I2C_OAR1_ADD5 I2C_OAR1_ADD5_Msk /*!< Bit 5 */
  4123. #define I2C_OAR1_ADD6_Pos (6U)
  4124. #define I2C_OAR1_ADD6_Msk (0x1UL << I2C_OAR1_ADD6_Pos) /*!< 0x00000040 */
  4125. #define I2C_OAR1_ADD6 I2C_OAR1_ADD6_Msk /*!< Bit 6 */
  4126. #define I2C_OAR1_ADD7_Pos (7U)
  4127. #define I2C_OAR1_ADD7_Msk (0x1UL << I2C_OAR1_ADD7_Pos) /*!< 0x00000080 */
  4128. #define I2C_OAR1_ADD7 I2C_OAR1_ADD7_Msk /*!< Bit 7 */
  4129. #define I2C_OAR1_ADD8_Pos (8U)
  4130. #define I2C_OAR1_ADD8_Msk (0x1UL << I2C_OAR1_ADD8_Pos) /*!< 0x00000100 */
  4131. #define I2C_OAR1_ADD8 I2C_OAR1_ADD8_Msk /*!< Bit 8 */
  4132. #define I2C_OAR1_ADD9_Pos (9U)
  4133. #define I2C_OAR1_ADD9_Msk (0x1UL << I2C_OAR1_ADD9_Pos) /*!< 0x00000200 */
  4134. #define I2C_OAR1_ADD9 I2C_OAR1_ADD9_Msk /*!< Bit 9 */
  4135. #define I2C_OAR1_ADDMODE_Pos (15U)
  4136. #define I2C_OAR1_ADDMODE_Msk (0x1UL << I2C_OAR1_ADDMODE_Pos) /*!< 0x00008000 */
  4137. #define I2C_OAR1_ADDMODE I2C_OAR1_ADDMODE_Msk /*!< Addressing Mode (Slave mode) */
  4138. /******************* Bit definition for I2C_OAR2 register *******************/
  4139. #define I2C_OAR2_ENDUAL_Pos (0U)
  4140. #define I2C_OAR2_ENDUAL_Msk (0x1UL << I2C_OAR2_ENDUAL_Pos) /*!< 0x00000001 */
  4141. #define I2C_OAR2_ENDUAL I2C_OAR2_ENDUAL_Msk /*!< Dual addressing mode enable */
  4142. #define I2C_OAR2_ADD2_Pos (1U)
  4143. #define I2C_OAR2_ADD2_Msk (0x7FUL << I2C_OAR2_ADD2_Pos) /*!< 0x000000FE */
  4144. #define I2C_OAR2_ADD2 I2C_OAR2_ADD2_Msk /*!< Interface address */
  4145. /******************** Bit definition for I2C_DR register ********************/
  4146. #define I2C_DR_DR_Pos (0U)
  4147. #define I2C_DR_DR_Msk (0xFFUL << I2C_DR_DR_Pos) /*!< 0x000000FF */
  4148. #define I2C_DR_DR I2C_DR_DR_Msk /*!< 8-bit Data Register */
  4149. /******************* Bit definition for I2C_SR1 register ********************/
  4150. #define I2C_SR1_SB_Pos (0U)
  4151. #define I2C_SR1_SB_Msk (0x1UL << I2C_SR1_SB_Pos) /*!< 0x00000001 */
  4152. #define I2C_SR1_SB I2C_SR1_SB_Msk /*!< Start Bit (Master mode) */
  4153. #define I2C_SR1_ADDR_Pos (1U)
  4154. #define I2C_SR1_ADDR_Msk (0x1UL << I2C_SR1_ADDR_Pos) /*!< 0x00000002 */
  4155. #define I2C_SR1_ADDR I2C_SR1_ADDR_Msk /*!< Address sent (master mode)/matched (slave mode) */
  4156. #define I2C_SR1_BTF_Pos (2U)
  4157. #define I2C_SR1_BTF_Msk (0x1UL << I2C_SR1_BTF_Pos) /*!< 0x00000004 */
  4158. #define I2C_SR1_BTF I2C_SR1_BTF_Msk /*!< Byte Transfer Finished */
  4159. #define I2C_SR1_ADD10_Pos (3U)
  4160. #define I2C_SR1_ADD10_Msk (0x1UL << I2C_SR1_ADD10_Pos) /*!< 0x00000008 */
  4161. #define I2C_SR1_ADD10 I2C_SR1_ADD10_Msk /*!< 10-bit header sent (Master mode) */
  4162. #define I2C_SR1_STOPF_Pos (4U)
  4163. #define I2C_SR1_STOPF_Msk (0x1UL << I2C_SR1_STOPF_Pos) /*!< 0x00000010 */
  4164. #define I2C_SR1_STOPF I2C_SR1_STOPF_Msk /*!< Stop detection (Slave mode) */
  4165. #define I2C_SR1_RXNE_Pos (6U)
  4166. #define I2C_SR1_RXNE_Msk (0x1UL << I2C_SR1_RXNE_Pos) /*!< 0x00000040 */
  4167. #define I2C_SR1_RXNE I2C_SR1_RXNE_Msk /*!< Data Register not Empty (receivers) */
  4168. #define I2C_SR1_TXE_Pos (7U)
  4169. #define I2C_SR1_TXE_Msk (0x1UL << I2C_SR1_TXE_Pos) /*!< 0x00000080 */
  4170. #define I2C_SR1_TXE I2C_SR1_TXE_Msk /*!< Data Register Empty (transmitters) */
  4171. #define I2C_SR1_BERR_Pos (8U)
  4172. #define I2C_SR1_BERR_Msk (0x1UL << I2C_SR1_BERR_Pos) /*!< 0x00000100 */
  4173. #define I2C_SR1_BERR I2C_SR1_BERR_Msk /*!< Bus Error */
  4174. #define I2C_SR1_ARLO_Pos (9U)
  4175. #define I2C_SR1_ARLO_Msk (0x1UL << I2C_SR1_ARLO_Pos) /*!< 0x00000200 */
  4176. #define I2C_SR1_ARLO I2C_SR1_ARLO_Msk /*!< Arbitration Lost (master mode) */
  4177. #define I2C_SR1_AF_Pos (10U)
  4178. #define I2C_SR1_AF_Msk (0x1UL << I2C_SR1_AF_Pos) /*!< 0x00000400 */
  4179. #define I2C_SR1_AF I2C_SR1_AF_Msk /*!< Acknowledge Failure */
  4180. #define I2C_SR1_OVR_Pos (11U)
  4181. #define I2C_SR1_OVR_Msk (0x1UL << I2C_SR1_OVR_Pos) /*!< 0x00000800 */
  4182. #define I2C_SR1_OVR I2C_SR1_OVR_Msk /*!< Overrun/Underrun */
  4183. #define I2C_SR1_PECERR_Pos (12U)
  4184. #define I2C_SR1_PECERR_Msk (0x1UL << I2C_SR1_PECERR_Pos) /*!< 0x00001000 */
  4185. #define I2C_SR1_PECERR I2C_SR1_PECERR_Msk /*!< PEC Error in reception */
  4186. #define I2C_SR1_TIMEOUT_Pos (14U)
  4187. #define I2C_SR1_TIMEOUT_Msk (0x1UL << I2C_SR1_TIMEOUT_Pos) /*!< 0x00004000 */
  4188. #define I2C_SR1_TIMEOUT I2C_SR1_TIMEOUT_Msk /*!< Timeout or Tlow Error */
  4189. #define I2C_SR1_SMBALERT_Pos (15U)
  4190. #define I2C_SR1_SMBALERT_Msk (0x1UL << I2C_SR1_SMBALERT_Pos) /*!< 0x00008000 */
  4191. #define I2C_SR1_SMBALERT I2C_SR1_SMBALERT_Msk /*!< SMBus Alert */
  4192. /******************* Bit definition for I2C_SR2 register ********************/
  4193. #define I2C_SR2_MSL_Pos (0U)
  4194. #define I2C_SR2_MSL_Msk (0x1UL << I2C_SR2_MSL_Pos) /*!< 0x00000001 */
  4195. #define I2C_SR2_MSL I2C_SR2_MSL_Msk /*!< Master/Slave */
  4196. #define I2C_SR2_BUSY_Pos (1U)
  4197. #define I2C_SR2_BUSY_Msk (0x1UL << I2C_SR2_BUSY_Pos) /*!< 0x00000002 */
  4198. #define I2C_SR2_BUSY I2C_SR2_BUSY_Msk /*!< Bus Busy */
  4199. #define I2C_SR2_TRA_Pos (2U)
  4200. #define I2C_SR2_TRA_Msk (0x1UL << I2C_SR2_TRA_Pos) /*!< 0x00000004 */
  4201. #define I2C_SR2_TRA I2C_SR2_TRA_Msk /*!< Transmitter/Receiver */
  4202. #define I2C_SR2_GENCALL_Pos (4U)
  4203. #define I2C_SR2_GENCALL_Msk (0x1UL << I2C_SR2_GENCALL_Pos) /*!< 0x00000010 */
  4204. #define I2C_SR2_GENCALL I2C_SR2_GENCALL_Msk /*!< General Call Address (Slave mode) */
  4205. #define I2C_SR2_SMBDEFAULT_Pos (5U)
  4206. #define I2C_SR2_SMBDEFAULT_Msk (0x1UL << I2C_SR2_SMBDEFAULT_Pos) /*!< 0x00000020 */
  4207. #define I2C_SR2_SMBDEFAULT I2C_SR2_SMBDEFAULT_Msk /*!< SMBus Device Default Address (Slave mode) */
  4208. #define I2C_SR2_SMBHOST_Pos (6U)
  4209. #define I2C_SR2_SMBHOST_Msk (0x1UL << I2C_SR2_SMBHOST_Pos) /*!< 0x00000040 */
  4210. #define I2C_SR2_SMBHOST I2C_SR2_SMBHOST_Msk /*!< SMBus Host Header (Slave mode) */
  4211. #define I2C_SR2_DUALF_Pos (7U)
  4212. #define I2C_SR2_DUALF_Msk (0x1UL << I2C_SR2_DUALF_Pos) /*!< 0x00000080 */
  4213. #define I2C_SR2_DUALF I2C_SR2_DUALF_Msk /*!< Dual Flag (Slave mode) */
  4214. #define I2C_SR2_PEC_Pos (8U)
  4215. #define I2C_SR2_PEC_Msk (0xFFUL << I2C_SR2_PEC_Pos) /*!< 0x0000FF00 */
  4216. #define I2C_SR2_PEC I2C_SR2_PEC_Msk /*!< Packet Error Checking Register */
  4217. /******************* Bit definition for I2C_CCR register ********************/
  4218. #define I2C_CCR_CCR_Pos (0U)
  4219. #define I2C_CCR_CCR_Msk (0xFFFUL << I2C_CCR_CCR_Pos) /*!< 0x00000FFF */
  4220. #define I2C_CCR_CCR I2C_CCR_CCR_Msk /*!< Clock Control Register in Fast/Standard mode (Master mode) */
  4221. #define I2C_CCR_DUTY_Pos (14U)
  4222. #define I2C_CCR_DUTY_Msk (0x1UL << I2C_CCR_DUTY_Pos) /*!< 0x00004000 */
  4223. #define I2C_CCR_DUTY I2C_CCR_DUTY_Msk /*!< Fast Mode Duty Cycle */
  4224. #define I2C_CCR_FS_Pos (15U)
  4225. #define I2C_CCR_FS_Msk (0x1UL << I2C_CCR_FS_Pos) /*!< 0x00008000 */
  4226. #define I2C_CCR_FS I2C_CCR_FS_Msk /*!< I2C Master Mode Selection */
  4227. /****************** Bit definition for I2C_TRISE register *******************/
  4228. #define I2C_TRISE_TRISE_Pos (0U)
  4229. #define I2C_TRISE_TRISE_Msk (0x3FUL << I2C_TRISE_TRISE_Pos) /*!< 0x0000003F */
  4230. #define I2C_TRISE_TRISE I2C_TRISE_TRISE_Msk /*!< Maximum Rise Time in Fast/Standard mode (Master mode) */
  4231. /******************************************************************************/
  4232. /* */
  4233. /* Universal Synchronous Asynchronous Receiver Transmitter */
  4234. /* */
  4235. /******************************************************************************/
  4236. /******************* Bit definition for USART_SR register *******************/
  4237. #define USART_SR_PE_Pos (0U)
  4238. #define USART_SR_PE_Msk (0x1UL << USART_SR_PE_Pos) /*!< 0x00000001 */
  4239. #define USART_SR_PE USART_SR_PE_Msk /*!< Parity Error */
  4240. #define USART_SR_FE_Pos (1U)
  4241. #define USART_SR_FE_Msk (0x1UL << USART_SR_FE_Pos) /*!< 0x00000002 */
  4242. #define USART_SR_FE USART_SR_FE_Msk /*!< Framing Error */
  4243. #define USART_SR_NE_Pos (2U)
  4244. #define USART_SR_NE_Msk (0x1UL << USART_SR_NE_Pos) /*!< 0x00000004 */
  4245. #define USART_SR_NE USART_SR_NE_Msk /*!< Noise Error Flag */
  4246. #define USART_SR_ORE_Pos (3U)
  4247. #define USART_SR_ORE_Msk (0x1UL << USART_SR_ORE_Pos) /*!< 0x00000008 */
  4248. #define USART_SR_ORE USART_SR_ORE_Msk /*!< OverRun Error */
  4249. #define USART_SR_IDLE_Pos (4U)
  4250. #define USART_SR_IDLE_Msk (0x1UL << USART_SR_IDLE_Pos) /*!< 0x00000010 */
  4251. #define USART_SR_IDLE USART_SR_IDLE_Msk /*!< IDLE line detected */
  4252. #define USART_SR_RXNE_Pos (5U)
  4253. #define USART_SR_RXNE_Msk (0x1UL << USART_SR_RXNE_Pos) /*!< 0x00000020 */
  4254. #define USART_SR_RXNE USART_SR_RXNE_Msk /*!< Read Data Register Not Empty */
  4255. #define USART_SR_TC_Pos (6U)
  4256. #define USART_SR_TC_Msk (0x1UL << USART_SR_TC_Pos) /*!< 0x00000040 */
  4257. #define USART_SR_TC USART_SR_TC_Msk /*!< Transmission Complete */
  4258. #define USART_SR_TXE_Pos (7U)
  4259. #define USART_SR_TXE_Msk (0x1UL << USART_SR_TXE_Pos) /*!< 0x00000080 */
  4260. #define USART_SR_TXE USART_SR_TXE_Msk /*!< Transmit Data Register Empty */
  4261. #define USART_SR_LBD_Pos (8U)
  4262. #define USART_SR_LBD_Msk (0x1UL << USART_SR_LBD_Pos) /*!< 0x00000100 */
  4263. #define USART_SR_LBD USART_SR_LBD_Msk /*!< LIN Break Detection Flag */
  4264. #define USART_SR_CTS_Pos (9U)
  4265. #define USART_SR_CTS_Msk (0x1UL << USART_SR_CTS_Pos) /*!< 0x00000200 */
  4266. #define USART_SR_CTS USART_SR_CTS_Msk /*!< CTS Flag */
  4267. /******************* Bit definition for USART_DR register *******************/
  4268. #define USART_DR_DR_Pos (0U)
  4269. #define USART_DR_DR_Msk (0x1FFUL << USART_DR_DR_Pos) /*!< 0x000001FF */
  4270. #define USART_DR_DR USART_DR_DR_Msk /*!< Data value */
  4271. /****************** Bit definition for USART_BRR register *******************/
  4272. #define USART_BRR_DIV_Fraction_Pos (0U)
  4273. #define USART_BRR_DIV_Fraction_Msk (0xFUL << USART_BRR_DIV_Fraction_Pos) /*!< 0x0000000F */
  4274. #define USART_BRR_DIV_Fraction USART_BRR_DIV_Fraction_Msk /*!< Fraction of USARTDIV */
  4275. #define USART_BRR_DIV_Mantissa_Pos (4U)
  4276. #define USART_BRR_DIV_Mantissa_Msk (0xFFFUL << USART_BRR_DIV_Mantissa_Pos) /*!< 0x0000FFF0 */
  4277. #define USART_BRR_DIV_Mantissa USART_BRR_DIV_Mantissa_Msk /*!< Mantissa of USARTDIV */
  4278. /****************** Bit definition for USART_CR1 register *******************/
  4279. #define USART_CR1_SBK_Pos (0U)
  4280. #define USART_CR1_SBK_Msk (0x1UL << USART_CR1_SBK_Pos) /*!< 0x00000001 */
  4281. #define USART_CR1_SBK USART_CR1_SBK_Msk /*!< Send Break */
  4282. #define USART_CR1_RWU_Pos (1U)
  4283. #define USART_CR1_RWU_Msk (0x1UL << USART_CR1_RWU_Pos) /*!< 0x00000002 */
  4284. #define USART_CR1_RWU USART_CR1_RWU_Msk /*!< Receiver wakeup */
  4285. #define USART_CR1_RE_Pos (2U)
  4286. #define USART_CR1_RE_Msk (0x1UL << USART_CR1_RE_Pos) /*!< 0x00000004 */
  4287. #define USART_CR1_RE USART_CR1_RE_Msk /*!< Receiver Enable */
  4288. #define USART_CR1_TE_Pos (3U)
  4289. #define USART_CR1_TE_Msk (0x1UL << USART_CR1_TE_Pos) /*!< 0x00000008 */
  4290. #define USART_CR1_TE USART_CR1_TE_Msk /*!< Transmitter Enable */
  4291. #define USART_CR1_IDLEIE_Pos (4U)
  4292. #define USART_CR1_IDLEIE_Msk (0x1UL << USART_CR1_IDLEIE_Pos) /*!< 0x00000010 */
  4293. #define USART_CR1_IDLEIE USART_CR1_IDLEIE_Msk /*!< IDLE Interrupt Enable */
  4294. #define USART_CR1_RXNEIE_Pos (5U)
  4295. #define USART_CR1_RXNEIE_Msk (0x1UL << USART_CR1_RXNEIE_Pos) /*!< 0x00000020 */
  4296. #define USART_CR1_RXNEIE USART_CR1_RXNEIE_Msk /*!< RXNE Interrupt Enable */
  4297. #define USART_CR1_TCIE_Pos (6U)
  4298. #define USART_CR1_TCIE_Msk (0x1UL << USART_CR1_TCIE_Pos) /*!< 0x00000040 */
  4299. #define USART_CR1_TCIE USART_CR1_TCIE_Msk /*!< Transmission Complete Interrupt Enable */
  4300. #define USART_CR1_TXEIE_Pos (7U)
  4301. #define USART_CR1_TXEIE_Msk (0x1UL << USART_CR1_TXEIE_Pos) /*!< 0x00000080 */
  4302. #define USART_CR1_TXEIE USART_CR1_TXEIE_Msk /*!< PE Interrupt Enable */
  4303. #define USART_CR1_PEIE_Pos (8U)
  4304. #define USART_CR1_PEIE_Msk (0x1UL << USART_CR1_PEIE_Pos) /*!< 0x00000100 */
  4305. #define USART_CR1_PEIE USART_CR1_PEIE_Msk /*!< PE Interrupt Enable */
  4306. #define USART_CR1_PS_Pos (9U)
  4307. #define USART_CR1_PS_Msk (0x1UL << USART_CR1_PS_Pos) /*!< 0x00000200 */
  4308. #define USART_CR1_PS USART_CR1_PS_Msk /*!< Parity Selection */
  4309. #define USART_CR1_PCE_Pos (10U)
  4310. #define USART_CR1_PCE_Msk (0x1UL << USART_CR1_PCE_Pos) /*!< 0x00000400 */
  4311. #define USART_CR1_PCE USART_CR1_PCE_Msk /*!< Parity Control Enable */
  4312. #define USART_CR1_WAKE_Pos (11U)
  4313. #define USART_CR1_WAKE_Msk (0x1UL << USART_CR1_WAKE_Pos) /*!< 0x00000800 */
  4314. #define USART_CR1_WAKE USART_CR1_WAKE_Msk /*!< Wakeup method */
  4315. #define USART_CR1_M_Pos (12U)
  4316. #define USART_CR1_M_Msk (0x1UL << USART_CR1_M_Pos) /*!< 0x00001000 */
  4317. #define USART_CR1_M USART_CR1_M_Msk /*!< Word length */
  4318. #define USART_CR1_UE_Pos (13U)
  4319. #define USART_CR1_UE_Msk (0x1UL << USART_CR1_UE_Pos) /*!< 0x00002000 */
  4320. #define USART_CR1_UE USART_CR1_UE_Msk /*!< USART Enable */
  4321. /****************** Bit definition for USART_CR2 register *******************/
  4322. #define USART_CR2_ADD_Pos (0U)
  4323. #define USART_CR2_ADD_Msk (0xFUL << USART_CR2_ADD_Pos) /*!< 0x0000000F */
  4324. #define USART_CR2_ADD USART_CR2_ADD_Msk /*!< Address of the USART node */
  4325. #define USART_CR2_LBDL_Pos (5U)
  4326. #define USART_CR2_LBDL_Msk (0x1UL << USART_CR2_LBDL_Pos) /*!< 0x00000020 */
  4327. #define USART_CR2_LBDL USART_CR2_LBDL_Msk /*!< LIN Break Detection Length */
  4328. #define USART_CR2_LBDIE_Pos (6U)
  4329. #define USART_CR2_LBDIE_Msk (0x1UL << USART_CR2_LBDIE_Pos) /*!< 0x00000040 */
  4330. #define USART_CR2_LBDIE USART_CR2_LBDIE_Msk /*!< LIN Break Detection Interrupt Enable */
  4331. #define USART_CR2_LBCL_Pos (8U)
  4332. #define USART_CR2_LBCL_Msk (0x1UL << USART_CR2_LBCL_Pos) /*!< 0x00000100 */
  4333. #define USART_CR2_LBCL USART_CR2_LBCL_Msk /*!< Last Bit Clock pulse */
  4334. #define USART_CR2_CPHA_Pos (9U)
  4335. #define USART_CR2_CPHA_Msk (0x1UL << USART_CR2_CPHA_Pos) /*!< 0x00000200 */
  4336. #define USART_CR2_CPHA USART_CR2_CPHA_Msk /*!< Clock Phase */
  4337. #define USART_CR2_CPOL_Pos (10U)
  4338. #define USART_CR2_CPOL_Msk (0x1UL << USART_CR2_CPOL_Pos) /*!< 0x00000400 */
  4339. #define USART_CR2_CPOL USART_CR2_CPOL_Msk /*!< Clock Polarity */
  4340. #define USART_CR2_CLKEN_Pos (11U)
  4341. #define USART_CR2_CLKEN_Msk (0x1UL << USART_CR2_CLKEN_Pos) /*!< 0x00000800 */
  4342. #define USART_CR2_CLKEN USART_CR2_CLKEN_Msk /*!< Clock Enable */
  4343. #define USART_CR2_STOP_Pos (12U)
  4344. #define USART_CR2_STOP_Msk (0x3UL << USART_CR2_STOP_Pos) /*!< 0x00003000 */
  4345. #define USART_CR2_STOP USART_CR2_STOP_Msk /*!< STOP[1:0] bits (STOP bits) */
  4346. #define USART_CR2_STOP_0 (0x1UL << USART_CR2_STOP_Pos) /*!< 0x00001000 */
  4347. #define USART_CR2_STOP_1 (0x2UL << USART_CR2_STOP_Pos) /*!< 0x00002000 */
  4348. #define USART_CR2_LINEN_Pos (14U)
  4349. #define USART_CR2_LINEN_Msk (0x1UL << USART_CR2_LINEN_Pos) /*!< 0x00004000 */
  4350. #define USART_CR2_LINEN USART_CR2_LINEN_Msk /*!< LIN mode enable */
  4351. /****************** Bit definition for USART_CR3 register *******************/
  4352. #define USART_CR3_EIE_Pos (0U)
  4353. #define USART_CR3_EIE_Msk (0x1UL << USART_CR3_EIE_Pos) /*!< 0x00000001 */
  4354. #define USART_CR3_EIE USART_CR3_EIE_Msk /*!< Error Interrupt Enable */
  4355. #define USART_CR3_IREN_Pos (1U)
  4356. #define USART_CR3_IREN_Msk (0x1UL << USART_CR3_IREN_Pos) /*!< 0x00000002 */
  4357. #define USART_CR3_IREN USART_CR3_IREN_Msk /*!< IrDA mode Enable */
  4358. #define USART_CR3_IRLP_Pos (2U)
  4359. #define USART_CR3_IRLP_Msk (0x1UL << USART_CR3_IRLP_Pos) /*!< 0x00000004 */
  4360. #define USART_CR3_IRLP USART_CR3_IRLP_Msk /*!< IrDA Low-Power */
  4361. #define USART_CR3_HDSEL_Pos (3U)
  4362. #define USART_CR3_HDSEL_Msk (0x1UL << USART_CR3_HDSEL_Pos) /*!< 0x00000008 */
  4363. #define USART_CR3_HDSEL USART_CR3_HDSEL_Msk /*!< Half-Duplex Selection */
  4364. #define USART_CR3_NACK_Pos (4U)
  4365. #define USART_CR3_NACK_Msk (0x1UL << USART_CR3_NACK_Pos) /*!< 0x00000010 */
  4366. #define USART_CR3_NACK USART_CR3_NACK_Msk /*!< Smartcard NACK enable */
  4367. #define USART_CR3_SCEN_Pos (5U)
  4368. #define USART_CR3_SCEN_Msk (0x1UL << USART_CR3_SCEN_Pos) /*!< 0x00000020 */
  4369. #define USART_CR3_SCEN USART_CR3_SCEN_Msk /*!< Smartcard mode enable */
  4370. #define USART_CR3_DMAR_Pos (6U)
  4371. #define USART_CR3_DMAR_Msk (0x1UL << USART_CR3_DMAR_Pos) /*!< 0x00000040 */
  4372. #define USART_CR3_DMAR USART_CR3_DMAR_Msk /*!< DMA Enable Receiver */
  4373. #define USART_CR3_DMAT_Pos (7U)
  4374. #define USART_CR3_DMAT_Msk (0x1UL << USART_CR3_DMAT_Pos) /*!< 0x00000080 */
  4375. #define USART_CR3_DMAT USART_CR3_DMAT_Msk /*!< DMA Enable Transmitter */
  4376. #define USART_CR3_RTSE_Pos (8U)
  4377. #define USART_CR3_RTSE_Msk (0x1UL << USART_CR3_RTSE_Pos) /*!< 0x00000100 */
  4378. #define USART_CR3_RTSE USART_CR3_RTSE_Msk /*!< RTS Enable */
  4379. #define USART_CR3_CTSE_Pos (9U)
  4380. #define USART_CR3_CTSE_Msk (0x1UL << USART_CR3_CTSE_Pos) /*!< 0x00000200 */
  4381. #define USART_CR3_CTSE USART_CR3_CTSE_Msk /*!< CTS Enable */
  4382. #define USART_CR3_CTSIE_Pos (10U)
  4383. #define USART_CR3_CTSIE_Msk (0x1UL << USART_CR3_CTSIE_Pos) /*!< 0x00000400 */
  4384. #define USART_CR3_CTSIE USART_CR3_CTSIE_Msk /*!< CTS Interrupt Enable */
  4385. /****************** Bit definition for USART_GTPR register ******************/
  4386. #define USART_GTPR_PSC_Pos (0U)
  4387. #define USART_GTPR_PSC_Msk (0xFFUL << USART_GTPR_PSC_Pos) /*!< 0x000000FF */
  4388. #define USART_GTPR_PSC USART_GTPR_PSC_Msk /*!< PSC[7:0] bits (Prescaler value) */
  4389. #define USART_GTPR_PSC_0 (0x01UL << USART_GTPR_PSC_Pos) /*!< 0x00000001 */
  4390. #define USART_GTPR_PSC_1 (0x02UL << USART_GTPR_PSC_Pos) /*!< 0x00000002 */
  4391. #define USART_GTPR_PSC_2 (0x04UL << USART_GTPR_PSC_Pos) /*!< 0x00000004 */
  4392. #define USART_GTPR_PSC_3 (0x08UL << USART_GTPR_PSC_Pos) /*!< 0x00000008 */
  4393. #define USART_GTPR_PSC_4 (0x10UL << USART_GTPR_PSC_Pos) /*!< 0x00000010 */
  4394. #define USART_GTPR_PSC_5 (0x20UL << USART_GTPR_PSC_Pos) /*!< 0x00000020 */
  4395. #define USART_GTPR_PSC_6 (0x40UL << USART_GTPR_PSC_Pos) /*!< 0x00000040 */
  4396. #define USART_GTPR_PSC_7 (0x80UL << USART_GTPR_PSC_Pos) /*!< 0x00000080 */
  4397. #define USART_GTPR_GT_Pos (8U)
  4398. #define USART_GTPR_GT_Msk (0xFFUL << USART_GTPR_GT_Pos) /*!< 0x0000FF00 */
  4399. #define USART_GTPR_GT USART_GTPR_GT_Msk /*!< Guard time value */
  4400. /******************************************************************************/
  4401. /* */
  4402. /* Debug MCU */
  4403. /* */
  4404. /******************************************************************************/
  4405. /**************** Bit definition for DBGMCU_IDCODE register *****************/
  4406. #define DBGMCU_IDCODE_DEV_ID_Pos (0U)
  4407. #define DBGMCU_IDCODE_DEV_ID_Msk (0xFFFUL << DBGMCU_IDCODE_DEV_ID_Pos) /*!< 0x00000FFF */
  4408. #define DBGMCU_IDCODE_DEV_ID DBGMCU_IDCODE_DEV_ID_Msk /*!< Device Identifier */
  4409. #define DBGMCU_IDCODE_REV_ID_Pos (16U)
  4410. #define DBGMCU_IDCODE_REV_ID_Msk (0xFFFFUL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0xFFFF0000 */
  4411. #define DBGMCU_IDCODE_REV_ID DBGMCU_IDCODE_REV_ID_Msk /*!< REV_ID[15:0] bits (Revision Identifier) */
  4412. #define DBGMCU_IDCODE_REV_ID_0 (0x0001UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x00010000 */
  4413. #define DBGMCU_IDCODE_REV_ID_1 (0x0002UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x00020000 */
  4414. #define DBGMCU_IDCODE_REV_ID_2 (0x0004UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x00040000 */
  4415. #define DBGMCU_IDCODE_REV_ID_3 (0x0008UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x00080000 */
  4416. #define DBGMCU_IDCODE_REV_ID_4 (0x0010UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x00100000 */
  4417. #define DBGMCU_IDCODE_REV_ID_5 (0x0020UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x00200000 */
  4418. #define DBGMCU_IDCODE_REV_ID_6 (0x0040UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x00400000 */
  4419. #define DBGMCU_IDCODE_REV_ID_7 (0x0080UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x00800000 */
  4420. #define DBGMCU_IDCODE_REV_ID_8 (0x0100UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x01000000 */
  4421. #define DBGMCU_IDCODE_REV_ID_9 (0x0200UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x02000000 */
  4422. #define DBGMCU_IDCODE_REV_ID_10 (0x0400UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x04000000 */
  4423. #define DBGMCU_IDCODE_REV_ID_11 (0x0800UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x08000000 */
  4424. #define DBGMCU_IDCODE_REV_ID_12 (0x1000UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x10000000 */
  4425. #define DBGMCU_IDCODE_REV_ID_13 (0x2000UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x20000000 */
  4426. #define DBGMCU_IDCODE_REV_ID_14 (0x4000UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x40000000 */
  4427. #define DBGMCU_IDCODE_REV_ID_15 (0x8000UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x80000000 */
  4428. /****************** Bit definition for DBGMCU_CR register *******************/
  4429. #define DBGMCU_CR_DBG_SLEEP_Pos (0U)
  4430. #define DBGMCU_CR_DBG_SLEEP_Msk (0x1UL << DBGMCU_CR_DBG_SLEEP_Pos) /*!< 0x00000001 */
  4431. #define DBGMCU_CR_DBG_SLEEP DBGMCU_CR_DBG_SLEEP_Msk /*!< Debug Sleep Mode */
  4432. #define DBGMCU_CR_DBG_STOP_Pos (1U)
  4433. #define DBGMCU_CR_DBG_STOP_Msk (0x1UL << DBGMCU_CR_DBG_STOP_Pos) /*!< 0x00000002 */
  4434. #define DBGMCU_CR_DBG_STOP DBGMCU_CR_DBG_STOP_Msk /*!< Debug Stop Mode */
  4435. #define DBGMCU_CR_DBG_STANDBY_Pos (2U)
  4436. #define DBGMCU_CR_DBG_STANDBY_Msk (0x1UL << DBGMCU_CR_DBG_STANDBY_Pos) /*!< 0x00000004 */
  4437. #define DBGMCU_CR_DBG_STANDBY DBGMCU_CR_DBG_STANDBY_Msk /*!< Debug Standby mode */
  4438. #define DBGMCU_CR_TRACE_IOEN_Pos (5U)
  4439. #define DBGMCU_CR_TRACE_IOEN_Msk (0x1UL << DBGMCU_CR_TRACE_IOEN_Pos) /*!< 0x00000020 */
  4440. #define DBGMCU_CR_TRACE_IOEN DBGMCU_CR_TRACE_IOEN_Msk /*!< Trace Pin Assignment Control */
  4441. #define DBGMCU_CR_TRACE_MODE_Pos (6U)
  4442. #define DBGMCU_CR_TRACE_MODE_Msk (0x3UL << DBGMCU_CR_TRACE_MODE_Pos) /*!< 0x000000C0 */
  4443. #define DBGMCU_CR_TRACE_MODE DBGMCU_CR_TRACE_MODE_Msk /*!< TRACE_MODE[1:0] bits (Trace Pin Assignment Control) */
  4444. #define DBGMCU_CR_TRACE_MODE_0 (0x1UL << DBGMCU_CR_TRACE_MODE_Pos) /*!< 0x00000040 */
  4445. #define DBGMCU_CR_TRACE_MODE_1 (0x2UL << DBGMCU_CR_TRACE_MODE_Pos) /*!< 0x00000080 */
  4446. #define DBGMCU_CR_DBG_IWDG_STOP_Pos (8U)
  4447. #define DBGMCU_CR_DBG_IWDG_STOP_Msk (0x1UL << DBGMCU_CR_DBG_IWDG_STOP_Pos) /*!< 0x00000100 */
  4448. #define DBGMCU_CR_DBG_IWDG_STOP DBGMCU_CR_DBG_IWDG_STOP_Msk /*!< Debug Independent Watchdog stopped when Core is halted */
  4449. #define DBGMCU_CR_DBG_WWDG_STOP_Pos (9U)
  4450. #define DBGMCU_CR_DBG_WWDG_STOP_Msk (0x1UL << DBGMCU_CR_DBG_WWDG_STOP_Pos) /*!< 0x00000200 */
  4451. #define DBGMCU_CR_DBG_WWDG_STOP DBGMCU_CR_DBG_WWDG_STOP_Msk /*!< Debug Window Watchdog stopped when Core is halted */
  4452. #define DBGMCU_CR_DBG_TIM2_STOP_Pos (11U)
  4453. #define DBGMCU_CR_DBG_TIM2_STOP_Msk (0x1UL << DBGMCU_CR_DBG_TIM2_STOP_Pos) /*!< 0x00000800 */
  4454. #define DBGMCU_CR_DBG_TIM2_STOP DBGMCU_CR_DBG_TIM2_STOP_Msk /*!< TIM2 counter stopped when core is halted */
  4455. #define DBGMCU_CR_DBG_TIM3_STOP_Pos (12U)
  4456. #define DBGMCU_CR_DBG_TIM3_STOP_Msk (0x1UL << DBGMCU_CR_DBG_TIM3_STOP_Pos) /*!< 0x00001000 */
  4457. #define DBGMCU_CR_DBG_TIM3_STOP DBGMCU_CR_DBG_TIM3_STOP_Msk /*!< TIM3 counter stopped when core is halted */
  4458. #define DBGMCU_CR_DBG_TIM4_STOP_Pos (13U)
  4459. #define DBGMCU_CR_DBG_TIM4_STOP_Msk (0x1UL << DBGMCU_CR_DBG_TIM4_STOP_Pos) /*!< 0x00002000 */
  4460. #define DBGMCU_CR_DBG_TIM4_STOP DBGMCU_CR_DBG_TIM4_STOP_Msk /*!< TIM4 counter stopped when core is halted */
  4461. #define DBGMCU_CR_DBG_I2C1_SMBUS_TIMEOUT_Pos (15U)
  4462. #define DBGMCU_CR_DBG_I2C1_SMBUS_TIMEOUT_Msk (0x1UL << DBGMCU_CR_DBG_I2C1_SMBUS_TIMEOUT_Pos) /*!< 0x00008000 */
  4463. #define DBGMCU_CR_DBG_I2C1_SMBUS_TIMEOUT DBGMCU_CR_DBG_I2C1_SMBUS_TIMEOUT_Msk /*!< SMBUS timeout mode stopped when Core is halted */
  4464. #define DBGMCU_CR_DBG_I2C2_SMBUS_TIMEOUT_Pos (16U)
  4465. #define DBGMCU_CR_DBG_I2C2_SMBUS_TIMEOUT_Msk (0x1UL << DBGMCU_CR_DBG_I2C2_SMBUS_TIMEOUT_Pos) /*!< 0x00010000 */
  4466. #define DBGMCU_CR_DBG_I2C2_SMBUS_TIMEOUT DBGMCU_CR_DBG_I2C2_SMBUS_TIMEOUT_Msk /*!< SMBUS timeout mode stopped when Core is halted */
  4467. /******************************************************************************/
  4468. /* */
  4469. /* FLASH and Option Bytes Registers */
  4470. /* */
  4471. /******************************************************************************/
  4472. /******************* Bit definition for FLASH_ACR register ******************/
  4473. #define FLASH_ACR_LATENCY_Pos (0U)
  4474. #define FLASH_ACR_LATENCY_Msk (0x7UL << FLASH_ACR_LATENCY_Pos) /*!< 0x00000007 */
  4475. #define FLASH_ACR_LATENCY FLASH_ACR_LATENCY_Msk /*!< LATENCY[2:0] bits (Latency) */
  4476. #define FLASH_ACR_LATENCY_0 (0x1UL << FLASH_ACR_LATENCY_Pos) /*!< 0x00000001 */
  4477. #define FLASH_ACR_LATENCY_1 (0x2UL << FLASH_ACR_LATENCY_Pos) /*!< 0x00000002 */
  4478. #define FLASH_ACR_LATENCY_2 (0x4UL << FLASH_ACR_LATENCY_Pos) /*!< 0x00000004 */
  4479. #define FLASH_ACR_HLFCYA_Pos (3U)
  4480. #define FLASH_ACR_HLFCYA_Msk (0x1UL << FLASH_ACR_HLFCYA_Pos) /*!< 0x00000008 */
  4481. #define FLASH_ACR_HLFCYA FLASH_ACR_HLFCYA_Msk /*!< Flash Half Cycle Access Enable */
  4482. #define FLASH_ACR_PRFTBE_Pos (4U)
  4483. #define FLASH_ACR_PRFTBE_Msk (0x1UL << FLASH_ACR_PRFTBE_Pos) /*!< 0x00000010 */
  4484. #define FLASH_ACR_PRFTBE FLASH_ACR_PRFTBE_Msk /*!< Prefetch Buffer Enable */
  4485. #define FLASH_ACR_PRFTBS_Pos (5U)
  4486. #define FLASH_ACR_PRFTBS_Msk (0x1UL << FLASH_ACR_PRFTBS_Pos) /*!< 0x00000020 */
  4487. #define FLASH_ACR_PRFTBS FLASH_ACR_PRFTBS_Msk /*!< Prefetch Buffer Status */
  4488. /****************** Bit definition for FLASH_KEYR register ******************/
  4489. #define FLASH_KEYR_FKEYR_Pos (0U)
  4490. #define FLASH_KEYR_FKEYR_Msk (0xFFFFFFFFUL << FLASH_KEYR_FKEYR_Pos) /*!< 0xFFFFFFFF */
  4491. #define FLASH_KEYR_FKEYR FLASH_KEYR_FKEYR_Msk /*!< FPEC Key */
  4492. #define RDP_KEY_Pos (0U)
  4493. #define RDP_KEY_Msk (0xA5UL << RDP_KEY_Pos) /*!< 0x000000A5 */
  4494. #define RDP_KEY RDP_KEY_Msk /*!< RDP Key */
  4495. #define FLASH_KEY1_Pos (0U)
  4496. #define FLASH_KEY1_Msk (0x45670123UL << FLASH_KEY1_Pos) /*!< 0x45670123 */
  4497. #define FLASH_KEY1 FLASH_KEY1_Msk /*!< FPEC Key1 */
  4498. #define FLASH_KEY2_Pos (0U)
  4499. #define FLASH_KEY2_Msk (0xCDEF89ABUL << FLASH_KEY2_Pos) /*!< 0xCDEF89AB */
  4500. #define FLASH_KEY2 FLASH_KEY2_Msk /*!< FPEC Key2 */
  4501. /***************** Bit definition for FLASH_OPTKEYR register ****************/
  4502. #define FLASH_OPTKEYR_OPTKEYR_Pos (0U)
  4503. #define FLASH_OPTKEYR_OPTKEYR_Msk (0xFFFFFFFFUL << FLASH_OPTKEYR_OPTKEYR_Pos) /*!< 0xFFFFFFFF */
  4504. #define FLASH_OPTKEYR_OPTKEYR FLASH_OPTKEYR_OPTKEYR_Msk /*!< Option Byte Key */
  4505. #define FLASH_OPTKEY1 FLASH_KEY1 /*!< Option Byte Key1 */
  4506. #define FLASH_OPTKEY2 FLASH_KEY2 /*!< Option Byte Key2 */
  4507. /****************** Bit definition for FLASH_SR register ********************/
  4508. #define FLASH_SR_BSY_Pos (0U)
  4509. #define FLASH_SR_BSY_Msk (0x1UL << FLASH_SR_BSY_Pos) /*!< 0x00000001 */
  4510. #define FLASH_SR_BSY FLASH_SR_BSY_Msk /*!< Busy */
  4511. #define FLASH_SR_PGERR_Pos (2U)
  4512. #define FLASH_SR_PGERR_Msk (0x1UL << FLASH_SR_PGERR_Pos) /*!< 0x00000004 */
  4513. #define FLASH_SR_PGERR FLASH_SR_PGERR_Msk /*!< Programming Error */
  4514. #define FLASH_SR_WRPRTERR_Pos (4U)
  4515. #define FLASH_SR_WRPRTERR_Msk (0x1UL << FLASH_SR_WRPRTERR_Pos) /*!< 0x00000010 */
  4516. #define FLASH_SR_WRPRTERR FLASH_SR_WRPRTERR_Msk /*!< Write Protection Error */
  4517. #define FLASH_SR_EOP_Pos (5U)
  4518. #define FLASH_SR_EOP_Msk (0x1UL << FLASH_SR_EOP_Pos) /*!< 0x00000020 */
  4519. #define FLASH_SR_EOP FLASH_SR_EOP_Msk /*!< End of operation */
  4520. /******************* Bit definition for FLASH_CR register *******************/
  4521. #define FLASH_CR_PG_Pos (0U)
  4522. #define FLASH_CR_PG_Msk (0x1UL << FLASH_CR_PG_Pos) /*!< 0x00000001 */
  4523. #define FLASH_CR_PG FLASH_CR_PG_Msk /*!< Programming */
  4524. #define FLASH_CR_PER_Pos (1U)
  4525. #define FLASH_CR_PER_Msk (0x1UL << FLASH_CR_PER_Pos) /*!< 0x00000002 */
  4526. #define FLASH_CR_PER FLASH_CR_PER_Msk /*!< Page Erase */
  4527. #define FLASH_CR_MER_Pos (2U)
  4528. #define FLASH_CR_MER_Msk (0x1UL << FLASH_CR_MER_Pos) /*!< 0x00000004 */
  4529. #define FLASH_CR_MER FLASH_CR_MER_Msk /*!< Mass Erase */
  4530. #define FLASH_CR_OPTPG_Pos (4U)
  4531. #define FLASH_CR_OPTPG_Msk (0x1UL << FLASH_CR_OPTPG_Pos) /*!< 0x00000010 */
  4532. #define FLASH_CR_OPTPG FLASH_CR_OPTPG_Msk /*!< Option Byte Programming */
  4533. #define FLASH_CR_OPTER_Pos (5U)
  4534. #define FLASH_CR_OPTER_Msk (0x1UL << FLASH_CR_OPTER_Pos) /*!< 0x00000020 */
  4535. #define FLASH_CR_OPTER FLASH_CR_OPTER_Msk /*!< Option Byte Erase */
  4536. #define FLASH_CR_STRT_Pos (6U)
  4537. #define FLASH_CR_STRT_Msk (0x1UL << FLASH_CR_STRT_Pos) /*!< 0x00000040 */
  4538. #define FLASH_CR_STRT FLASH_CR_STRT_Msk /*!< Start */
  4539. #define FLASH_CR_LOCK_Pos (7U)
  4540. #define FLASH_CR_LOCK_Msk (0x1UL << FLASH_CR_LOCK_Pos) /*!< 0x00000080 */
  4541. #define FLASH_CR_LOCK FLASH_CR_LOCK_Msk /*!< Lock */
  4542. #define FLASH_CR_OPTWRE_Pos (9U)
  4543. #define FLASH_CR_OPTWRE_Msk (0x1UL << FLASH_CR_OPTWRE_Pos) /*!< 0x00000200 */
  4544. #define FLASH_CR_OPTWRE FLASH_CR_OPTWRE_Msk /*!< Option Bytes Write Enable */
  4545. #define FLASH_CR_ERRIE_Pos (10U)
  4546. #define FLASH_CR_ERRIE_Msk (0x1UL << FLASH_CR_ERRIE_Pos) /*!< 0x00000400 */
  4547. #define FLASH_CR_ERRIE FLASH_CR_ERRIE_Msk /*!< Error Interrupt Enable */
  4548. #define FLASH_CR_EOPIE_Pos (12U)
  4549. #define FLASH_CR_EOPIE_Msk (0x1UL << FLASH_CR_EOPIE_Pos) /*!< 0x00001000 */
  4550. #define FLASH_CR_EOPIE FLASH_CR_EOPIE_Msk /*!< End of operation interrupt enable */
  4551. /******************* Bit definition for FLASH_AR register *******************/
  4552. #define FLASH_AR_FAR_Pos (0U)
  4553. #define FLASH_AR_FAR_Msk (0xFFFFFFFFUL << FLASH_AR_FAR_Pos) /*!< 0xFFFFFFFF */
  4554. #define FLASH_AR_FAR FLASH_AR_FAR_Msk /*!< Flash Address */
  4555. /****************** Bit definition for FLASH_OBR register *******************/
  4556. #define FLASH_OBR_OPTERR_Pos (0U)
  4557. #define FLASH_OBR_OPTERR_Msk (0x1UL << FLASH_OBR_OPTERR_Pos) /*!< 0x00000001 */
  4558. #define FLASH_OBR_OPTERR FLASH_OBR_OPTERR_Msk /*!< Option Byte Error */
  4559. #define FLASH_OBR_RDPRT_Pos (1U)
  4560. #define FLASH_OBR_RDPRT_Msk (0x1UL << FLASH_OBR_RDPRT_Pos) /*!< 0x00000002 */
  4561. #define FLASH_OBR_RDPRT FLASH_OBR_RDPRT_Msk /*!< Read protection */
  4562. #define FLASH_OBR_IWDG_SW_Pos (2U)
  4563. #define FLASH_OBR_IWDG_SW_Msk (0x1UL << FLASH_OBR_IWDG_SW_Pos) /*!< 0x00000004 */
  4564. #define FLASH_OBR_IWDG_SW FLASH_OBR_IWDG_SW_Msk /*!< IWDG SW */
  4565. #define FLASH_OBR_nRST_STOP_Pos (3U)
  4566. #define FLASH_OBR_nRST_STOP_Msk (0x1UL << FLASH_OBR_nRST_STOP_Pos) /*!< 0x00000008 */
  4567. #define FLASH_OBR_nRST_STOP FLASH_OBR_nRST_STOP_Msk /*!< nRST_STOP */
  4568. #define FLASH_OBR_nRST_STDBY_Pos (4U)
  4569. #define FLASH_OBR_nRST_STDBY_Msk (0x1UL << FLASH_OBR_nRST_STDBY_Pos) /*!< 0x00000010 */
  4570. #define FLASH_OBR_nRST_STDBY FLASH_OBR_nRST_STDBY_Msk /*!< nRST_STDBY */
  4571. #define FLASH_OBR_USER_Pos (2U)
  4572. #define FLASH_OBR_USER_Msk (0x7UL << FLASH_OBR_USER_Pos) /*!< 0x0000001C */
  4573. #define FLASH_OBR_USER FLASH_OBR_USER_Msk /*!< User Option Bytes */
  4574. #define FLASH_OBR_DATA0_Pos (10U)
  4575. #define FLASH_OBR_DATA0_Msk (0xFFUL << FLASH_OBR_DATA0_Pos) /*!< 0x0003FC00 */
  4576. #define FLASH_OBR_DATA0 FLASH_OBR_DATA0_Msk /*!< Data0 */
  4577. #define FLASH_OBR_DATA1_Pos (18U)
  4578. #define FLASH_OBR_DATA1_Msk (0xFFUL << FLASH_OBR_DATA1_Pos) /*!< 0x03FC0000 */
  4579. #define FLASH_OBR_DATA1 FLASH_OBR_DATA1_Msk /*!< Data1 */
  4580. /****************** Bit definition for FLASH_WRPR register ******************/
  4581. #define FLASH_WRPR_WRP_Pos (0U)
  4582. #define FLASH_WRPR_WRP_Msk (0xFFFFFFFFUL << FLASH_WRPR_WRP_Pos) /*!< 0xFFFFFFFF */
  4583. #define FLASH_WRPR_WRP FLASH_WRPR_WRP_Msk /*!< Write Protect */
  4584. /*----------------------------------------------------------------------------*/
  4585. /****************** Bit definition for FLASH_RDP register *******************/
  4586. #define FLASH_RDP_RDP_Pos (0U)
  4587. #define FLASH_RDP_RDP_Msk (0xFFUL << FLASH_RDP_RDP_Pos) /*!< 0x000000FF */
  4588. #define FLASH_RDP_RDP FLASH_RDP_RDP_Msk /*!< Read protection option byte */
  4589. #define FLASH_RDP_nRDP_Pos (8U)
  4590. #define FLASH_RDP_nRDP_Msk (0xFFUL << FLASH_RDP_nRDP_Pos) /*!< 0x0000FF00 */
  4591. #define FLASH_RDP_nRDP FLASH_RDP_nRDP_Msk /*!< Read protection complemented option byte */
  4592. /****************** Bit definition for FLASH_USER register ******************/
  4593. #define FLASH_USER_USER_Pos (16U)
  4594. #define FLASH_USER_USER_Msk (0xFFUL << FLASH_USER_USER_Pos) /*!< 0x00FF0000 */
  4595. #define FLASH_USER_USER FLASH_USER_USER_Msk /*!< User option byte */
  4596. #define FLASH_USER_nUSER_Pos (24U)
  4597. #define FLASH_USER_nUSER_Msk (0xFFUL << FLASH_USER_nUSER_Pos) /*!< 0xFF000000 */
  4598. #define FLASH_USER_nUSER FLASH_USER_nUSER_Msk /*!< User complemented option byte */
  4599. /****************** Bit definition for FLASH_Data0 register *****************/
  4600. #define FLASH_DATA0_DATA0_Pos (0U)
  4601. #define FLASH_DATA0_DATA0_Msk (0xFFUL << FLASH_DATA0_DATA0_Pos) /*!< 0x000000FF */
  4602. #define FLASH_DATA0_DATA0 FLASH_DATA0_DATA0_Msk /*!< User data storage option byte */
  4603. #define FLASH_DATA0_nDATA0_Pos (8U)
  4604. #define FLASH_DATA0_nDATA0_Msk (0xFFUL << FLASH_DATA0_nDATA0_Pos) /*!< 0x0000FF00 */
  4605. #define FLASH_DATA0_nDATA0 FLASH_DATA0_nDATA0_Msk /*!< User data storage complemented option byte */
  4606. /****************** Bit definition for FLASH_Data1 register *****************/
  4607. #define FLASH_DATA1_DATA1_Pos (16U)
  4608. #define FLASH_DATA1_DATA1_Msk (0xFFUL << FLASH_DATA1_DATA1_Pos) /*!< 0x00FF0000 */
  4609. #define FLASH_DATA1_DATA1 FLASH_DATA1_DATA1_Msk /*!< User data storage option byte */
  4610. #define FLASH_DATA1_nDATA1_Pos (24U)
  4611. #define FLASH_DATA1_nDATA1_Msk (0xFFUL << FLASH_DATA1_nDATA1_Pos) /*!< 0xFF000000 */
  4612. #define FLASH_DATA1_nDATA1 FLASH_DATA1_nDATA1_Msk /*!< User data storage complemented option byte */
  4613. /****************** Bit definition for FLASH_WRP0 register ******************/
  4614. #define FLASH_WRP0_WRP0_Pos (0U)
  4615. #define FLASH_WRP0_WRP0_Msk (0xFFUL << FLASH_WRP0_WRP0_Pos) /*!< 0x000000FF */
  4616. #define FLASH_WRP0_WRP0 FLASH_WRP0_WRP0_Msk /*!< Flash memory write protection option bytes */
  4617. #define FLASH_WRP0_nWRP0_Pos (8U)
  4618. #define FLASH_WRP0_nWRP0_Msk (0xFFUL << FLASH_WRP0_nWRP0_Pos) /*!< 0x0000FF00 */
  4619. #define FLASH_WRP0_nWRP0 FLASH_WRP0_nWRP0_Msk /*!< Flash memory write protection complemented option bytes */
  4620. /****************** Bit definition for FLASH_WRP1 register ******************/
  4621. #define FLASH_WRP1_WRP1_Pos (16U)
  4622. #define FLASH_WRP1_WRP1_Msk (0xFFUL << FLASH_WRP1_WRP1_Pos) /*!< 0x00FF0000 */
  4623. #define FLASH_WRP1_WRP1 FLASH_WRP1_WRP1_Msk /*!< Flash memory write protection option bytes */
  4624. #define FLASH_WRP1_nWRP1_Pos (24U)
  4625. #define FLASH_WRP1_nWRP1_Msk (0xFFUL << FLASH_WRP1_nWRP1_Pos) /*!< 0xFF000000 */
  4626. #define FLASH_WRP1_nWRP1 FLASH_WRP1_nWRP1_Msk /*!< Flash memory write protection complemented option bytes */
  4627. /****************** Bit definition for FLASH_WRP2 register ******************/
  4628. #define FLASH_WRP2_WRP2_Pos (0U)
  4629. #define FLASH_WRP2_WRP2_Msk (0xFFUL << FLASH_WRP2_WRP2_Pos) /*!< 0x000000FF */
  4630. #define FLASH_WRP2_WRP2 FLASH_WRP2_WRP2_Msk /*!< Flash memory write protection option bytes */
  4631. #define FLASH_WRP2_nWRP2_Pos (8U)
  4632. #define FLASH_WRP2_nWRP2_Msk (0xFFUL << FLASH_WRP2_nWRP2_Pos) /*!< 0x0000FF00 */
  4633. #define FLASH_WRP2_nWRP2 FLASH_WRP2_nWRP2_Msk /*!< Flash memory write protection complemented option bytes */
  4634. /****************** Bit definition for FLASH_WRP3 register ******************/
  4635. #define FLASH_WRP3_WRP3_Pos (16U)
  4636. #define FLASH_WRP3_WRP3_Msk (0xFFUL << FLASH_WRP3_WRP3_Pos) /*!< 0x00FF0000 */
  4637. #define FLASH_WRP3_WRP3 FLASH_WRP3_WRP3_Msk /*!< Flash memory write protection option bytes */
  4638. #define FLASH_WRP3_nWRP3_Pos (24U)
  4639. #define FLASH_WRP3_nWRP3_Msk (0xFFUL << FLASH_WRP3_nWRP3_Pos) /*!< 0xFF000000 */
  4640. #define FLASH_WRP3_nWRP3 FLASH_WRP3_nWRP3_Msk /*!< Flash memory write protection complemented option bytes */
  4641. /**
  4642. * @}
  4643. */
  4644. /**
  4645. * @}
  4646. */
  4647. /** @addtogroup Exported_macro
  4648. * @{
  4649. */
  4650. /****************************** ADC Instances *********************************/
  4651. #define IS_ADC_ALL_INSTANCE(INSTANCE) (((INSTANCE) == ADC1))
  4652. #define IS_ADC_COMMON_INSTANCE(INSTANCE) ((INSTANCE) == ADC1_COMMON)
  4653. #define IS_ADC_DMA_CAPABILITY_INSTANCE(INSTANCE) ((INSTANCE) == ADC1)
  4654. /****************************** CRC Instances *********************************/
  4655. #define IS_CRC_ALL_INSTANCE(INSTANCE) ((INSTANCE) == CRC)
  4656. /****************************** DAC Instances *********************************/
  4657. /****************************** DMA Instances *********************************/
  4658. #define IS_DMA_ALL_INSTANCE(INSTANCE) (((INSTANCE) == DMA1_Channel1) || \
  4659. ((INSTANCE) == DMA1_Channel2) || \
  4660. ((INSTANCE) == DMA1_Channel3) || \
  4661. ((INSTANCE) == DMA1_Channel4) || \
  4662. ((INSTANCE) == DMA1_Channel5) || \
  4663. ((INSTANCE) == DMA1_Channel6) || \
  4664. ((INSTANCE) == DMA1_Channel7))
  4665. /******************************* GPIO Instances *******************************/
  4666. #define IS_GPIO_ALL_INSTANCE(INSTANCE) (((INSTANCE) == GPIOA) || \
  4667. ((INSTANCE) == GPIOB) || \
  4668. ((INSTANCE) == GPIOC) || \
  4669. ((INSTANCE) == GPIOD) || \
  4670. ((INSTANCE) == GPIOE))
  4671. /**************************** GPIO Alternate Function Instances ***************/
  4672. #define IS_GPIO_AF_INSTANCE(INSTANCE) IS_GPIO_ALL_INSTANCE(INSTANCE)
  4673. /**************************** GPIO Lock Instances *****************************/
  4674. #define IS_GPIO_LOCK_INSTANCE(INSTANCE) IS_GPIO_ALL_INSTANCE(INSTANCE)
  4675. /******************************** I2C Instances *******************************/
  4676. #define IS_I2C_ALL_INSTANCE(INSTANCE) (((INSTANCE) == I2C1) || \
  4677. ((INSTANCE) == I2C2))
  4678. /******************************* SMBUS Instances ******************************/
  4679. #define IS_SMBUS_ALL_INSTANCE IS_I2C_ALL_INSTANCE
  4680. /****************************** IWDG Instances ********************************/
  4681. #define IS_IWDG_ALL_INSTANCE(INSTANCE) ((INSTANCE) == IWDG)
  4682. /******************************** SPI Instances *******************************/
  4683. #define IS_SPI_ALL_INSTANCE(INSTANCE) (((INSTANCE) == SPI1) || \
  4684. ((INSTANCE) == SPI2))
  4685. /****************************** START TIM Instances ***************************/
  4686. /****************************** TIM Instances *********************************/
  4687. #define IS_TIM_INSTANCE(INSTANCE)\
  4688. (((INSTANCE) == TIM2) || \
  4689. ((INSTANCE) == TIM3) || \
  4690. ((INSTANCE) == TIM4))
  4691. #define IS_TIM_ADVANCED_INSTANCE(INSTANCE) 0U
  4692. #define IS_TIM_CC1_INSTANCE(INSTANCE)\
  4693. (((INSTANCE) == TIM2) || \
  4694. ((INSTANCE) == TIM3) || \
  4695. ((INSTANCE) == TIM4))
  4696. #define IS_TIM_CC2_INSTANCE(INSTANCE)\
  4697. (((INSTANCE) == TIM2) || \
  4698. ((INSTANCE) == TIM3) || \
  4699. ((INSTANCE) == TIM4))
  4700. #define IS_TIM_CC3_INSTANCE(INSTANCE)\
  4701. (((INSTANCE) == TIM2) || \
  4702. ((INSTANCE) == TIM3) || \
  4703. ((INSTANCE) == TIM4))
  4704. #define IS_TIM_CC4_INSTANCE(INSTANCE)\
  4705. (((INSTANCE) == TIM2) || \
  4706. ((INSTANCE) == TIM3) || \
  4707. ((INSTANCE) == TIM4))
  4708. #define IS_TIM_CLOCKSOURCE_ETRMODE1_INSTANCE(INSTANCE)\
  4709. (((INSTANCE) == TIM2) || \
  4710. ((INSTANCE) == TIM3) || \
  4711. ((INSTANCE) == TIM4))
  4712. #define IS_TIM_CLOCKSOURCE_ETRMODE2_INSTANCE(INSTANCE)\
  4713. (((INSTANCE) == TIM2) || \
  4714. ((INSTANCE) == TIM3) || \
  4715. ((INSTANCE) == TIM4))
  4716. #define IS_TIM_CLOCKSOURCE_TIX_INSTANCE(INSTANCE)\
  4717. (((INSTANCE) == TIM2) || \
  4718. ((INSTANCE) == TIM3) || \
  4719. ((INSTANCE) == TIM4))
  4720. #define IS_TIM_CLOCKSOURCE_ITRX_INSTANCE(INSTANCE)\
  4721. (((INSTANCE) == TIM2) || \
  4722. ((INSTANCE) == TIM3) || \
  4723. ((INSTANCE) == TIM4))
  4724. #define IS_TIM_OCXREF_CLEAR_INSTANCE(INSTANCE)\
  4725. (((INSTANCE) == TIM2) || \
  4726. ((INSTANCE) == TIM3) || \
  4727. ((INSTANCE) == TIM4))
  4728. #define IS_TIM_ENCODER_INTERFACE_INSTANCE(INSTANCE)\
  4729. (((INSTANCE) == TIM2) || \
  4730. ((INSTANCE) == TIM3) || \
  4731. ((INSTANCE) == TIM4))
  4732. #define IS_TIM_XOR_INSTANCE(INSTANCE)\
  4733. (((INSTANCE) == TIM2) || \
  4734. ((INSTANCE) == TIM3) || \
  4735. ((INSTANCE) == TIM4))
  4736. #define IS_TIM_MASTER_INSTANCE(INSTANCE)\
  4737. (((INSTANCE) == TIM2) || \
  4738. ((INSTANCE) == TIM3) || \
  4739. ((INSTANCE) == TIM4))
  4740. #define IS_TIM_SLAVE_INSTANCE(INSTANCE)\
  4741. (((INSTANCE) == TIM2) || \
  4742. ((INSTANCE) == TIM3) || \
  4743. ((INSTANCE) == TIM4))
  4744. #define IS_TIM_DMABURST_INSTANCE(INSTANCE)\
  4745. (((INSTANCE) == TIM2) || \
  4746. ((INSTANCE) == TIM3) || \
  4747. ((INSTANCE) == TIM4))
  4748. #define IS_TIM_BREAK_INSTANCE(INSTANCE) 0U
  4749. #define IS_TIM_CCX_INSTANCE(INSTANCE, CHANNEL) \
  4750. ((((INSTANCE) == TIM2) && \
  4751. (((CHANNEL) == TIM_CHANNEL_1) || \
  4752. ((CHANNEL) == TIM_CHANNEL_2) || \
  4753. ((CHANNEL) == TIM_CHANNEL_3) || \
  4754. ((CHANNEL) == TIM_CHANNEL_4))) \
  4755. || \
  4756. (((INSTANCE) == TIM3) && \
  4757. (((CHANNEL) == TIM_CHANNEL_1) || \
  4758. ((CHANNEL) == TIM_CHANNEL_2) || \
  4759. ((CHANNEL) == TIM_CHANNEL_3) || \
  4760. ((CHANNEL) == TIM_CHANNEL_4))) \
  4761. || \
  4762. (((INSTANCE) == TIM4) && \
  4763. (((CHANNEL) == TIM_CHANNEL_1) || \
  4764. ((CHANNEL) == TIM_CHANNEL_2) || \
  4765. ((CHANNEL) == TIM_CHANNEL_3) || \
  4766. ((CHANNEL) == TIM_CHANNEL_4))))
  4767. #define IS_TIM_CCXN_INSTANCE(INSTANCE, CHANNEL) 0U
  4768. #define IS_TIM_COUNTER_MODE_SELECT_INSTANCE(INSTANCE)\
  4769. (((INSTANCE) == TIM2) || \
  4770. ((INSTANCE) == TIM3) || \
  4771. ((INSTANCE) == TIM4))
  4772. #define IS_TIM_REPETITION_COUNTER_INSTANCE(INSTANCE) 0U
  4773. #define IS_TIM_CLOCK_DIVISION_INSTANCE(INSTANCE)\
  4774. (((INSTANCE) == TIM2) || \
  4775. ((INSTANCE) == TIM3) || \
  4776. ((INSTANCE) == TIM4))
  4777. #define IS_TIM_DMA_INSTANCE(INSTANCE)\
  4778. (((INSTANCE) == TIM2) || \
  4779. ((INSTANCE) == TIM3) || \
  4780. ((INSTANCE) == TIM4))
  4781. #define IS_TIM_DMA_CC_INSTANCE(INSTANCE)\
  4782. (((INSTANCE) == TIM2) || \
  4783. ((INSTANCE) == TIM3) || \
  4784. ((INSTANCE) == TIM4))
  4785. #define IS_TIM_COMMUTATION_EVENT_INSTANCE(INSTANCE) 0U
  4786. #define IS_TIM_ETR_INSTANCE(INSTANCE) (((INSTANCE) == TIM2) || \
  4787. ((INSTANCE) == TIM3) || \
  4788. ((INSTANCE) == TIM4))
  4789. #define IS_TIM_HALL_SENSOR_INTERFACE_INSTANCE(INSTANCE) (((INSTANCE) == TIM2) || \
  4790. ((INSTANCE) == TIM3) || \
  4791. ((INSTANCE) == TIM4))
  4792. #define IS_TIM_32B_COUNTER_INSTANCE(INSTANCE) 0U
  4793. /****************************** END TIM Instances *****************************/
  4794. /******************** USART Instances : Synchronous mode **********************/
  4795. #define IS_USART_INSTANCE(INSTANCE) (((INSTANCE) == USART1) || \
  4796. ((INSTANCE) == USART2) || \
  4797. ((INSTANCE) == USART3))
  4798. /******************** UART Instances : Asynchronous mode **********************/
  4799. #define IS_UART_INSTANCE(INSTANCE) (((INSTANCE) == USART1) || \
  4800. ((INSTANCE) == USART2) || \
  4801. ((INSTANCE) == USART3))
  4802. /******************** UART Instances : Half-Duplex mode **********************/
  4803. #define IS_UART_HALFDUPLEX_INSTANCE(INSTANCE) (((INSTANCE) == USART1) || \
  4804. ((INSTANCE) == USART2) || \
  4805. ((INSTANCE) == USART3))
  4806. /******************** UART Instances : LIN mode **********************/
  4807. #define IS_UART_LIN_INSTANCE(INSTANCE) (((INSTANCE) == USART1) || \
  4808. ((INSTANCE) == USART2) || \
  4809. ((INSTANCE) == USART3))
  4810. /****************** UART Instances : Hardware Flow control ********************/
  4811. #define IS_UART_HWFLOW_INSTANCE(INSTANCE) (((INSTANCE) == USART1) || \
  4812. ((INSTANCE) == USART2) || \
  4813. ((INSTANCE) == USART3))
  4814. /********************* UART Instances : Smard card mode ***********************/
  4815. #define IS_SMARTCARD_INSTANCE(INSTANCE) (((INSTANCE) == USART1) || \
  4816. ((INSTANCE) == USART2) || \
  4817. ((INSTANCE) == USART3))
  4818. /*********************** UART Instances : IRDA mode ***************************/
  4819. #define IS_IRDA_INSTANCE(INSTANCE) (((INSTANCE) == USART1) || \
  4820. ((INSTANCE) == USART2) || \
  4821. ((INSTANCE) == USART3))
  4822. /***************** UART Instances : Multi-Processor mode **********************/
  4823. #define IS_UART_MULTIPROCESSOR_INSTANCE(INSTANCE) (((INSTANCE) == USART1) || \
  4824. ((INSTANCE) == USART2) || \
  4825. ((INSTANCE) == USART3))
  4826. /***************** UART Instances : DMA mode available **********************/
  4827. #define IS_UART_DMA_INSTANCE(INSTANCE) (((INSTANCE) == USART1) || \
  4828. ((INSTANCE) == USART2) || \
  4829. ((INSTANCE) == USART3))
  4830. /****************************** RTC Instances *********************************/
  4831. #define IS_RTC_ALL_INSTANCE(INSTANCE) ((INSTANCE) == RTC)
  4832. /**************************** WWDG Instances *****************************/
  4833. #define IS_WWDG_ALL_INSTANCE(INSTANCE) ((INSTANCE) == WWDG)
  4834. #define RCC_HSE_MIN 4000000U
  4835. #define RCC_HSE_MAX 16000000U
  4836. #define RCC_MAX_FREQUENCY 72000000U
  4837. /**
  4838. * @}
  4839. */
  4840. /******************************************************************************/
  4841. /* For a painless codes migration between the STM32F1xx device product */
  4842. /* lines, the aliases defined below are put in place to overcome the */
  4843. /* differences in the interrupt handlers and IRQn definitions. */
  4844. /* No need to update developed interrupt code when moving across */
  4845. /* product lines within the same STM32F1 Family */
  4846. /******************************************************************************/
  4847. /* Aliases for __IRQn */
  4848. #define ADC1_2_IRQn ADC1_IRQn
  4849. /* Aliases for __IRQHandler */
  4850. #define ADC1_2_IRQHandler ADC1_IRQHandler
  4851. /**
  4852. * @}
  4853. */
  4854. /**
  4855. * @}
  4856. */
  4857. #ifdef __cplusplus
  4858. }
  4859. #endif /* __cplusplus */
  4860. #endif /* __STM32F101xB_H */