nrf51_to_nrf52.h 75 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364
  1. /*
  2. Copyright (c) 2010 - 2018, Nordic Semiconductor ASA
  3. All rights reserved.
  4. Redistribution and use in source and binary forms, with or without modification,
  5. are permitted provided that the following conditions are met:
  6. 1. Redistributions of source code must retain the above copyright notice, this
  7. list of conditions and the following disclaimer.
  8. 2. Redistributions in binary form, except as embedded into a Nordic
  9. Semiconductor ASA integrated circuit in a product or a software update for
  10. such product, must reproduce the above copyright notice, this list of
  11. conditions and the following disclaimer in the documentation and/or other
  12. materials provided with the distribution.
  13. 3. Neither the name of Nordic Semiconductor ASA nor the names of its
  14. contributors may be used to endorse or promote products derived from this
  15. software without specific prior written permission.
  16. 4. This software, with or without modification, must only be used with a
  17. Nordic Semiconductor ASA integrated circuit.
  18. 5. Any software provided in binary form under this license must not be reverse
  19. engineered, decompiled, modified and/or disassembled.
  20. THIS SOFTWARE IS PROVIDED BY NORDIC SEMICONDUCTOR ASA "AS IS" AND ANY EXPRESS
  21. OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  22. OF MERCHANTABILITY, NONINFRINGEMENT, AND FITNESS FOR A PARTICULAR PURPOSE ARE
  23. DISCLAIMED. IN NO EVENT SHALL NORDIC SEMICONDUCTOR ASA OR CONTRIBUTORS BE
  24. LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  25. CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
  26. GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  27. HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  28. LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  29. OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  30. */
  31. #ifndef NRF51_TO_NRF52_H
  32. #define NRF51_TO_NRF52_H
  33. /*lint ++flb "Enter library region */
  34. /* This file is given to prevent your SW from not compiling with the name changes between nRF51 and nRF52 devices.
  35. * It redefines the old nRF51 names into the new ones as long as the functionality is still supported. If the
  36. * functionality is gone, there old names are not defined, so compilation will fail. Note that also includes macros
  37. * from the nrf51_deprecated.h file. */
  38. /* IRQ */
  39. /* Several peripherals have been added to several indexes. Names of IRQ handlers and IRQ numbers have changed. */
  40. #ifndef UART0_IRQHandler
  41. #define UART0_IRQHandler UARTE0_UART0_IRQHandler
  42. #endif
  43. #ifndef SPI0_TWI0_IRQHandler
  44. #define SPI0_TWI0_IRQHandler SPIM0_SPIS0_TWIM0_TWIS0_SPI0_TWI0_IRQHandler
  45. #endif
  46. #ifndef SPI1_TWI1_IRQHandler
  47. #define SPI1_TWI1_IRQHandler SPIM1_SPIS1_TWIM1_TWIS1_SPI1_TWI1_IRQHandler
  48. #endif
  49. #ifndef ADC_IRQHandler
  50. #define ADC_IRQHandler SAADC_IRQHandler
  51. #endif
  52. #ifndef LPCOMP_IRQHandler
  53. #define LPCOMP_IRQHandler COMP_LPCOMP_IRQHandler
  54. #endif
  55. #ifndef SWI0_IRQHandler
  56. #define SWI0_IRQHandler SWI0_EGU0_IRQHandler
  57. #endif
  58. #ifndef SWI1_IRQHandler
  59. #define SWI1_IRQHandler SWI1_EGU1_IRQHandler
  60. #endif
  61. #ifndef SWI2_IRQHandler
  62. #define SWI2_IRQHandler SWI2_EGU2_IRQHandler
  63. #endif
  64. #ifndef SWI3_IRQHandler
  65. #define SWI3_IRQHandler SWI3_EGU3_IRQHandler
  66. #endif
  67. #ifndef SWI4_IRQHandler
  68. #define SWI4_IRQHandler SWI4_EGU4_IRQHandler
  69. #endif
  70. #ifndef SWI5_IRQHandler
  71. #define SWI5_IRQHandler SWI5_EGU5_IRQHandler
  72. #endif
  73. #ifndef UART0_IRQn
  74. #define UART0_IRQn UARTE0_UART0_IRQn
  75. #endif
  76. #ifndef SPI0_TWI0_IRQn
  77. #define SPI0_TWI0_IRQn SPIM0_SPIS0_TWIM0_TWIS0_SPI0_TWI0_IRQn
  78. #endif
  79. #ifndef SPI1_TWI1_IRQn
  80. #define SPI1_TWI1_IRQn SPIM1_SPIS1_TWIM1_TWIS1_SPI1_TWI1_IRQn
  81. #endif
  82. #ifndef ADC_IRQn
  83. #define ADC_IRQn SAADC_IRQn
  84. #endif
  85. #ifndef LPCOMP_IRQn
  86. #define LPCOMP_IRQn COMP_LPCOMP_IRQn
  87. #endif
  88. #ifndef SWI0_IRQn
  89. #define SWI0_IRQn SWI0_EGU0_IRQn
  90. #endif
  91. #ifndef SWI1_IRQn
  92. #define SWI1_IRQn SWI1_EGU1_IRQn
  93. #endif
  94. #ifndef SWI2_IRQn
  95. #define SWI2_IRQn SWI2_EGU2_IRQn
  96. #endif
  97. #ifndef SWI3_IRQn
  98. #define SWI3_IRQn SWI3_EGU3_IRQn
  99. #endif
  100. #ifndef SWI4_IRQn
  101. #define SWI4_IRQn SWI4_EGU4_IRQn
  102. #endif
  103. #ifndef SWI5_IRQn
  104. #define SWI5_IRQn SWI5_EGU5_IRQn
  105. #endif
  106. /* UICR */
  107. /* Register RBPCONF was renamed to APPROTECT. */
  108. #ifndef RBPCONF
  109. #define RBPCONF APPROTECT
  110. #endif
  111. #ifndef UICR_RBPCONF_PALL_Pos
  112. #define UICR_RBPCONF_PALL_Pos UICR_APPROTECT_PALL_Pos
  113. #endif
  114. #ifndef UICR_RBPCONF_PALL_Msk
  115. #define UICR_RBPCONF_PALL_Msk UICR_APPROTECT_PALL_Msk
  116. #endif
  117. #ifndef UICR_RBPCONF_PALL_Enabled
  118. #define UICR_RBPCONF_PALL_Enabled UICR_APPROTECT_PALL_Enabled
  119. #endif
  120. #ifndef UICR_RBPCONF_PALL_Disabled
  121. #define UICR_RBPCONF_PALL_Disabled UICR_APPROTECT_PALL_Disabled
  122. #endif
  123. /* GPIO */
  124. /* GPIO port was renamed to P0. */
  125. #ifndef NRF_GPIO
  126. #define NRF_GPIO NRF_P0
  127. #endif
  128. #ifndef NRF_GPIO_BASE
  129. #define NRF_GPIO_BASE NRF_P0_BASE
  130. #endif
  131. /* QDEC */
  132. /* The registers PSELA, PSELB and PSELLED were restructured into a struct. */
  133. #ifndef PSELLED
  134. #define PSELLED PSEL.LED
  135. #endif
  136. #ifndef PSELA
  137. #define PSELA PSEL.A
  138. #endif
  139. #ifndef PSELB
  140. #define PSELB PSEL.B
  141. #endif
  142. /* SPIS */
  143. /* The registers PSELSCK, PSELMISO, PSELMOSI, PSELCSN were restructured into a struct. */
  144. #ifndef PSELSCK
  145. #define PSELSCK PSEL.SCK
  146. #endif
  147. #ifndef PSELMISO
  148. #define PSELMISO PSEL.MISO
  149. #endif
  150. #ifndef PSELMOSI
  151. #define PSELMOSI PSEL.MOSI
  152. #endif
  153. #ifndef PSELCSN
  154. #define PSELCSN PSEL.CSN
  155. #endif
  156. /* The registers RXDPTR, MAXRX, AMOUNTRX were restructured into a struct */
  157. #ifndef RXDPTR
  158. #define RXDPTR RXD.PTR
  159. #endif
  160. #ifndef MAXRX
  161. #define MAXRX RXD.MAXCNT
  162. #endif
  163. #ifndef AMOUNTRX
  164. #define AMOUNTRX RXD.AMOUNT
  165. #endif
  166. #ifndef SPIS_MAXRX_MAXRX_Pos
  167. #define SPIS_MAXRX_MAXRX_Pos SPIS_RXD_MAXCNT_MAXCNT_Pos
  168. #endif
  169. #ifndef SPIS_MAXRX_MAXRX_Msk
  170. #define SPIS_MAXRX_MAXRX_Msk SPIS_RXD_MAXCNT_MAXCNT_Msk
  171. #endif
  172. #ifndef SPIS_AMOUNTRX_AMOUNTRX_Pos
  173. #define SPIS_AMOUNTRX_AMOUNTRX_Pos SPIS_RXD_AMOUNT_AMOUNT_Pos
  174. #endif
  175. #ifndef SPIS_AMOUNTRX_AMOUNTRX_Msk
  176. #define SPIS_AMOUNTRX_AMOUNTRX_Msk SPIS_RXD_AMOUNT_AMOUNT_Msk
  177. #endif
  178. /* The registers TXDPTR, MAXTX, AMOUNTTX were restructured into a struct */
  179. #ifndef TXDPTR
  180. #define TXDPTR TXD.PTR
  181. #endif
  182. #ifndef MAXTX
  183. #define MAXTX TXD.MAXCNT
  184. #endif
  185. #ifndef AMOUNTTX
  186. #define AMOUNTTX TXD.AMOUNT
  187. #endif
  188. #ifndef SPIS_MAXTX_MAXTX_Pos
  189. #define SPIS_MAXTX_MAXTX_Pos SPIS_TXD_MAXCNT_MAXCNT_Pos
  190. #endif
  191. #ifndef SPIS_MAXTX_MAXTX_Msk
  192. #define SPIS_MAXTX_MAXTX_Msk SPIS_TXD_MAXCNT_MAXCNT_Msk
  193. #endif
  194. #ifndef SPIS_AMOUNTTX_AMOUNTTX_Pos
  195. #define SPIS_AMOUNTTX_AMOUNTTX_Pos SPIS_TXD_AMOUNT_AMOUNT_Pos
  196. #endif
  197. #ifndef SPIS_AMOUNTTX_AMOUNTTX_Msk
  198. #define SPIS_AMOUNTTX_AMOUNTTX_Msk SPIS_TXD_AMOUNT_AMOUNT_Msk
  199. #endif
  200. /* MPU */
  201. /* Part of MPU module was renamed BPROT, while the rest was eliminated. */
  202. #ifndef NRF_MPU
  203. #define NRF_MPU NRF_BPROT
  204. #endif
  205. /* Register DISABLEINDEBUG macros were affected. */
  206. #ifndef MPU_DISABLEINDEBUG_DISABLEINDEBUG_Pos
  207. #define MPU_DISABLEINDEBUG_DISABLEINDEBUG_Pos BPROT_DISABLEINDEBUG_DISABLEINDEBUG_Pos
  208. #endif
  209. #ifndef MPU_DISABLEINDEBUG_DISABLEINDEBUG_Msk
  210. #define MPU_DISABLEINDEBUG_DISABLEINDEBUG_Msk BPROT_DISABLEINDEBUG_DISABLEINDEBUG_Msk
  211. #endif
  212. #ifndef MPU_DISABLEINDEBUG_DISABLEINDEBUG_Enabled
  213. #define MPU_DISABLEINDEBUG_DISABLEINDEBUG_Enabled BPROT_DISABLEINDEBUG_DISABLEINDEBUG_Enabled
  214. #endif
  215. #ifndef MPU_DISABLEINDEBUG_DISABLEINDEBUG_Disabled
  216. #define MPU_DISABLEINDEBUG_DISABLEINDEBUG_Disabled BPROT_DISABLEINDEBUG_DISABLEINDEBUG_Disabled
  217. #endif
  218. /* Registers PROTENSET0 and PROTENSET1 were affected and renamed as CONFIG0 and CONFIG1. */
  219. #ifndef PROTENSET0
  220. #define PROTENSET0 CONFIG0
  221. #endif
  222. #ifndef PROTENSET1
  223. #define PROTENSET1 CONFIG1
  224. #endif
  225. #ifndef MPU_PROTENSET1_PROTREG63_Pos
  226. #define MPU_PROTENSET1_PROTREG63_Pos BPROT_CONFIG1_REGION63_Pos
  227. #endif
  228. #ifndef MPU_PROTENSET1_PROTREG63_Msk
  229. #define MPU_PROTENSET1_PROTREG63_Msk BPROT_CONFIG1_REGION63_Msk
  230. #endif
  231. #ifndef MPU_PROTENSET1_PROTREG63_Disabled
  232. #define MPU_PROTENSET1_PROTREG63_Disabled BPROT_CONFIG1_REGION63_Disabled
  233. #endif
  234. #ifndef MPU_PROTENSET1_PROTREG63_Enabled
  235. #define MPU_PROTENSET1_PROTREG63_Enabled BPROT_CONFIG1_REGION63_Enabled
  236. #endif
  237. #ifndef MPU_PROTENSET1_PROTREG63_Set
  238. #define MPU_PROTENSET1_PROTREG63_Set BPROT_CONFIG1_REGION63_Enabled
  239. #endif
  240. #ifndef MPU_PROTENSET1_PROTREG62_Pos
  241. #define MPU_PROTENSET1_PROTREG62_Pos BPROT_CONFIG1_REGION62_Pos
  242. #endif
  243. #ifndef MPU_PROTENSET1_PROTREG62_Msk
  244. #define MPU_PROTENSET1_PROTREG62_Msk BPROT_CONFIG1_REGION62_Msk
  245. #endif
  246. #ifndef MPU_PROTENSET1_PROTREG62_Disabled
  247. #define MPU_PROTENSET1_PROTREG62_Disabled BPROT_CONFIG1_REGION62_Disabled
  248. #endif
  249. #ifndef MPU_PROTENSET1_PROTREG62_Enabled
  250. #define MPU_PROTENSET1_PROTREG62_Enabled BPROT_CONFIG1_REGION62_Enabled
  251. #endif
  252. #ifndef MPU_PROTENSET1_PROTREG62_Set
  253. #define MPU_PROTENSET1_PROTREG62_Set BPROT_CONFIG1_REGION62_Enabled
  254. #endif
  255. #ifndef MPU_PROTENSET1_PROTREG61_Pos
  256. #define MPU_PROTENSET1_PROTREG61_Pos BPROT_CONFIG1_REGION61_Pos
  257. #endif
  258. #ifndef MPU_PROTENSET1_PROTREG61_Msk
  259. #define MPU_PROTENSET1_PROTREG61_Msk BPROT_CONFIG1_REGION61_Msk
  260. #endif
  261. #ifndef MPU_PROTENSET1_PROTREG61_Disabled
  262. #define MPU_PROTENSET1_PROTREG61_Disabled BPROT_CONFIG1_REGION61_Disabled
  263. #endif
  264. #ifndef MPU_PROTENSET1_PROTREG61_Enabled
  265. #define MPU_PROTENSET1_PROTREG61_Enabled BPROT_CONFIG1_REGION61_Enabled
  266. #endif
  267. #ifndef MPU_PROTENSET1_PROTREG61_Set
  268. #define MPU_PROTENSET1_PROTREG61_Set BPROT_CONFIG1_REGION61_Enabled
  269. #endif
  270. #ifndef MPU_PROTENSET1_PROTREG60_Pos
  271. #define MPU_PROTENSET1_PROTREG60_Pos BPROT_CONFIG1_REGION60_Pos
  272. #endif
  273. #ifndef MPU_PROTENSET1_PROTREG60_Msk
  274. #define MPU_PROTENSET1_PROTREG60_Msk BPROT_CONFIG1_REGION60_Msk
  275. #endif
  276. #ifndef MPU_PROTENSET1_PROTREG60_Disabled
  277. #define MPU_PROTENSET1_PROTREG60_Disabled BPROT_CONFIG1_REGION60_Disabled
  278. #endif
  279. #ifndef MPU_PROTENSET1_PROTREG60_Enabled
  280. #define MPU_PROTENSET1_PROTREG60_Enabled BPROT_CONFIG1_REGION60_Enabled
  281. #endif
  282. #ifndef MPU_PROTENSET1_PROTREG60_Set
  283. #define MPU_PROTENSET1_PROTREG60_Set BPROT_CONFIG1_REGION60_Enabled
  284. #endif
  285. #ifndef MPU_PROTENSET1_PROTREG59_Pos
  286. #define MPU_PROTENSET1_PROTREG59_Pos BPROT_CONFIG1_REGION59_Pos
  287. #endif
  288. #ifndef MPU_PROTENSET1_PROTREG59_Msk
  289. #define MPU_PROTENSET1_PROTREG59_Msk BPROT_CONFIG1_REGION59_Msk
  290. #endif
  291. #ifndef MPU_PROTENSET1_PROTREG59_Disabled
  292. #define MPU_PROTENSET1_PROTREG59_Disabled BPROT_CONFIG1_REGION59_Disabled
  293. #endif
  294. #ifndef MPU_PROTENSET1_PROTREG59_Enabled
  295. #define MPU_PROTENSET1_PROTREG59_Enabled BPROT_CONFIG1_REGION59_Enabled
  296. #endif
  297. #ifndef MPU_PROTENSET1_PROTREG59_Set
  298. #define MPU_PROTENSET1_PROTREG59_Set BPROT_CONFIG1_REGION59_Enabled
  299. #endif
  300. #ifndef MPU_PROTENSET1_PROTREG58_Pos
  301. #define MPU_PROTENSET1_PROTREG58_Pos BPROT_CONFIG1_REGION58_Pos
  302. #endif
  303. #ifndef MPU_PROTENSET1_PROTREG58_Msk
  304. #define MPU_PROTENSET1_PROTREG58_Msk BPROT_CONFIG1_REGION58_Msk
  305. #endif
  306. #ifndef MPU_PROTENSET1_PROTREG58_Disabled
  307. #define MPU_PROTENSET1_PROTREG58_Disabled BPROT_CONFIG1_REGION58_Disabled
  308. #endif
  309. #ifndef MPU_PROTENSET1_PROTREG58_Enabled
  310. #define MPU_PROTENSET1_PROTREG58_Enabled BPROT_CONFIG1_REGION58_Enabled
  311. #endif
  312. #ifndef MPU_PROTENSET1_PROTREG58_Set
  313. #define MPU_PROTENSET1_PROTREG58_Set BPROT_CONFIG1_REGION58_Enabled
  314. #endif
  315. #ifndef MPU_PROTENSET1_PROTREG57_Pos
  316. #define MPU_PROTENSET1_PROTREG57_Pos BPROT_CONFIG1_REGION57_Pos
  317. #endif
  318. #ifndef MPU_PROTENSET1_PROTREG57_Msk
  319. #define MPU_PROTENSET1_PROTREG57_Msk BPROT_CONFIG1_REGION57_Msk
  320. #endif
  321. #ifndef MPU_PROTENSET1_PROTREG57_Disabled
  322. #define MPU_PROTENSET1_PROTREG57_Disabled BPROT_CONFIG1_REGION57_Disabled
  323. #endif
  324. #ifndef MPU_PROTENSET1_PROTREG57_Enabled
  325. #define MPU_PROTENSET1_PROTREG57_Enabled BPROT_CONFIG1_REGION57_Enabled
  326. #endif
  327. #ifndef MPU_PROTENSET1_PROTREG57_Set
  328. #define MPU_PROTENSET1_PROTREG57_Set BPROT_CONFIG1_REGION57_Enabled
  329. #endif
  330. #ifndef MPU_PROTENSET1_PROTREG56_Pos
  331. #define MPU_PROTENSET1_PROTREG56_Pos BPROT_CONFIG1_REGION56_Pos
  332. #endif
  333. #ifndef MPU_PROTENSET1_PROTREG56_Msk
  334. #define MPU_PROTENSET1_PROTREG56_Msk BPROT_CONFIG1_REGION56_Msk
  335. #endif
  336. #ifndef MPU_PROTENSET1_PROTREG56_Disabled
  337. #define MPU_PROTENSET1_PROTREG56_Disabled BPROT_CONFIG1_REGION56_Disabled
  338. #endif
  339. #ifndef MPU_PROTENSET1_PROTREG56_Enabled
  340. #define MPU_PROTENSET1_PROTREG56_Enabled BPROT_CONFIG1_REGION56_Enabled
  341. #endif
  342. #ifndef MPU_PROTENSET1_PROTREG56_Set
  343. #define MPU_PROTENSET1_PROTREG56_Set BPROT_CONFIG1_REGION56_Enabled
  344. #endif
  345. #ifndef MPU_PROTENSET1_PROTREG55_Pos
  346. #define MPU_PROTENSET1_PROTREG55_Pos BPROT_CONFIG1_REGION55_Pos
  347. #endif
  348. #ifndef MPU_PROTENSET1_PROTREG55_Msk
  349. #define MPU_PROTENSET1_PROTREG55_Msk BPROT_CONFIG1_REGION55_Msk
  350. #endif
  351. #ifndef MPU_PROTENSET1_PROTREG55_Disabled
  352. #define MPU_PROTENSET1_PROTREG55_Disabled BPROT_CONFIG1_REGION55_Disabled
  353. #endif
  354. #ifndef MPU_PROTENSET1_PROTREG55_Enabled
  355. #define MPU_PROTENSET1_PROTREG55_Enabled BPROT_CONFIG1_REGION55_Enabled
  356. #endif
  357. #ifndef MPU_PROTENSET1_PROTREG55_Set
  358. #define MPU_PROTENSET1_PROTREG55_Set BPROT_CONFIG1_REGION55_Enabled
  359. #endif
  360. #ifndef MPU_PROTENSET1_PROTREG54_Pos
  361. #define MPU_PROTENSET1_PROTREG54_Pos BPROT_CONFIG1_REGION54_Pos
  362. #endif
  363. #ifndef MPU_PROTENSET1_PROTREG54_Msk
  364. #define MPU_PROTENSET1_PROTREG54_Msk BPROT_CONFIG1_REGION54_Msk
  365. #endif
  366. #ifndef MPU_PROTENSET1_PROTREG54_Disabled
  367. #define MPU_PROTENSET1_PROTREG54_Disabled BPROT_CONFIG1_REGION54_Disabled
  368. #endif
  369. #ifndef MPU_PROTENSET1_PROTREG54_Enabled
  370. #define MPU_PROTENSET1_PROTREG54_Enabled BPROT_CONFIG1_REGION54_Enabled
  371. #endif
  372. #ifndef MPU_PROTENSET1_PROTREG54_Set
  373. #define MPU_PROTENSET1_PROTREG54_Set BPROT_CONFIG1_REGION54_Enabled
  374. #endif
  375. #ifndef MPU_PROTENSET1_PROTREG53_Pos
  376. #define MPU_PROTENSET1_PROTREG53_Pos BPROT_CONFIG1_REGION53_Pos
  377. #endif
  378. #ifndef MPU_PROTENSET1_PROTREG53_Msk
  379. #define MPU_PROTENSET1_PROTREG53_Msk BPROT_CONFIG1_REGION53_Msk
  380. #endif
  381. #ifndef MPU_PROTENSET1_PROTREG53_Disabled
  382. #define MPU_PROTENSET1_PROTREG53_Disabled BPROT_CONFIG1_REGION53_Disabled
  383. #endif
  384. #ifndef MPU_PROTENSET1_PROTREG53_Enabled
  385. #define MPU_PROTENSET1_PROTREG53_Enabled BPROT_CONFIG1_REGION53_Enabled
  386. #endif
  387. #ifndef MPU_PROTENSET1_PROTREG53_Set
  388. #define MPU_PROTENSET1_PROTREG53_Set BPROT_CONFIG1_REGION53_Enabled
  389. #endif
  390. #ifndef MPU_PROTENSET1_PROTREG52_Pos
  391. #define MPU_PROTENSET1_PROTREG52_Pos BPROT_CONFIG1_REGION52_Pos
  392. #endif
  393. #ifndef MPU_PROTENSET1_PROTREG52_Msk
  394. #define MPU_PROTENSET1_PROTREG52_Msk BPROT_CONFIG1_REGION52_Msk
  395. #endif
  396. #ifndef MPU_PROTENSET1_PROTREG52_Disabled
  397. #define MPU_PROTENSET1_PROTREG52_Disabled BPROT_CONFIG1_REGION52_Disabled
  398. #endif
  399. #ifndef MPU_PROTENSET1_PROTREG52_Enabled
  400. #define MPU_PROTENSET1_PROTREG52_Enabled BPROT_CONFIG1_REGION52_Enabled
  401. #endif
  402. #ifndef MPU_PROTENSET1_PROTREG52_Set
  403. #define MPU_PROTENSET1_PROTREG52_Set BPROT_CONFIG1_REGION52_Enabled
  404. #endif
  405. #ifndef MPU_PROTENSET1_PROTREG51_Pos
  406. #define MPU_PROTENSET1_PROTREG51_Pos BPROT_CONFIG1_REGION51_Pos
  407. #endif
  408. #ifndef MPU_PROTENSET1_PROTREG51_Msk
  409. #define MPU_PROTENSET1_PROTREG51_Msk BPROT_CONFIG1_REGION51_Msk
  410. #endif
  411. #ifndef MPU_PROTENSET1_PROTREG51_Disabled
  412. #define MPU_PROTENSET1_PROTREG51_Disabled BPROT_CONFIG1_REGION51_Disabled
  413. #endif
  414. #ifndef MPU_PROTENSET1_PROTREG51_Enabled
  415. #define MPU_PROTENSET1_PROTREG51_Enabled BPROT_CONFIG1_REGION51_Enabled
  416. #endif
  417. #ifndef MPU_PROTENSET1_PROTREG51_Set
  418. #define MPU_PROTENSET1_PROTREG51_Set BPROT_CONFIG1_REGION51_Enabled
  419. #endif
  420. #ifndef MPU_PROTENSET1_PROTREG50_Pos
  421. #define MPU_PROTENSET1_PROTREG50_Pos BPROT_CONFIG1_REGION50_Pos
  422. #endif
  423. #ifndef MPU_PROTENSET1_PROTREG50_Msk
  424. #define MPU_PROTENSET1_PROTREG50_Msk BPROT_CONFIG1_REGION50_Msk
  425. #endif
  426. #ifndef MPU_PROTENSET1_PROTREG50_Disabled
  427. #define MPU_PROTENSET1_PROTREG50_Disabled BPROT_CONFIG1_REGION50_Disabled
  428. #endif
  429. #ifndef MPU_PROTENSET1_PROTREG50_Enabled
  430. #define MPU_PROTENSET1_PROTREG50_Enabled BPROT_CONFIG1_REGION50_Enabled
  431. #endif
  432. #ifndef MPU_PROTENSET1_PROTREG50_Set
  433. #define MPU_PROTENSET1_PROTREG50_Set BPROT_CONFIG1_REGION50_Enabled
  434. #endif
  435. #ifndef MPU_PROTENSET1_PROTREG49_Pos
  436. #define MPU_PROTENSET1_PROTREG49_Pos BPROT_CONFIG1_REGION49_Pos
  437. #endif
  438. #ifndef MPU_PROTENSET1_PROTREG49_Msk
  439. #define MPU_PROTENSET1_PROTREG49_Msk BPROT_CONFIG1_REGION49_Msk
  440. #endif
  441. #ifndef MPU_PROTENSET1_PROTREG49_Disabled
  442. #define MPU_PROTENSET1_PROTREG49_Disabled BPROT_CONFIG1_REGION49_Disabled
  443. #endif
  444. #ifndef MPU_PROTENSET1_PROTREG49_Enabled
  445. #define MPU_PROTENSET1_PROTREG49_Enabled BPROT_CONFIG1_REGION49_Enabled
  446. #endif
  447. #ifndef MPU_PROTENSET1_PROTREG49_Set
  448. #define MPU_PROTENSET1_PROTREG49_Set BPROT_CONFIG1_REGION49_Enabled
  449. #endif
  450. #ifndef MPU_PROTENSET1_PROTREG48_Pos
  451. #define MPU_PROTENSET1_PROTREG48_Pos BPROT_CONFIG1_REGION48_Pos
  452. #endif
  453. #ifndef MPU_PROTENSET1_PROTREG48_Msk
  454. #define MPU_PROTENSET1_PROTREG48_Msk BPROT_CONFIG1_REGION48_Msk
  455. #endif
  456. #ifndef MPU_PROTENSET1_PROTREG48_Disabled
  457. #define MPU_PROTENSET1_PROTREG48_Disabled BPROT_CONFIG1_REGION48_Disabled
  458. #endif
  459. #ifndef MPU_PROTENSET1_PROTREG48_Enabled
  460. #define MPU_PROTENSET1_PROTREG48_Enabled BPROT_CONFIG1_REGION48_Enabled
  461. #endif
  462. #ifndef MPU_PROTENSET1_PROTREG48_Set
  463. #define MPU_PROTENSET1_PROTREG48_Set BPROT_CONFIG1_REGION48_Enabled
  464. #endif
  465. #ifndef MPU_PROTENSET1_PROTREG47_Pos
  466. #define MPU_PROTENSET1_PROTREG47_Pos BPROT_CONFIG1_REGION47_Pos
  467. #endif
  468. #ifndef MPU_PROTENSET1_PROTREG47_Msk
  469. #define MPU_PROTENSET1_PROTREG47_Msk BPROT_CONFIG1_REGION47_Msk
  470. #endif
  471. #ifndef MPU_PROTENSET1_PROTREG47_Disabled
  472. #define MPU_PROTENSET1_PROTREG47_Disabled BPROT_CONFIG1_REGION47_Disabled
  473. #endif
  474. #ifndef MPU_PROTENSET1_PROTREG47_Enabled
  475. #define MPU_PROTENSET1_PROTREG47_Enabled BPROT_CONFIG1_REGION47_Enabled
  476. #endif
  477. #ifndef MPU_PROTENSET1_PROTREG47_Set
  478. #define MPU_PROTENSET1_PROTREG47_Set BPROT_CONFIG1_REGION47_Enabled
  479. #endif
  480. #ifndef MPU_PROTENSET1_PROTREG46_Pos
  481. #define MPU_PROTENSET1_PROTREG46_Pos BPROT_CONFIG1_REGION46_Pos
  482. #endif
  483. #ifndef MPU_PROTENSET1_PROTREG46_Msk
  484. #define MPU_PROTENSET1_PROTREG46_Msk BPROT_CONFIG1_REGION46_Msk
  485. #endif
  486. #ifndef MPU_PROTENSET1_PROTREG46_Disabled
  487. #define MPU_PROTENSET1_PROTREG46_Disabled BPROT_CONFIG1_REGION46_Disabled
  488. #endif
  489. #ifndef MPU_PROTENSET1_PROTREG46_Enabled
  490. #define MPU_PROTENSET1_PROTREG46_Enabled BPROT_CONFIG1_REGION46_Enabled
  491. #endif
  492. #ifndef MPU_PROTENSET1_PROTREG46_Set
  493. #define MPU_PROTENSET1_PROTREG46_Set BPROT_CONFIG1_REGION46_Enabled
  494. #endif
  495. #ifndef MPU_PROTENSET1_PROTREG45_Pos
  496. #define MPU_PROTENSET1_PROTREG45_Pos BPROT_CONFIG1_REGION45_Pos
  497. #endif
  498. #ifndef MPU_PROTENSET1_PROTREG45_Msk
  499. #define MPU_PROTENSET1_PROTREG45_Msk BPROT_CONFIG1_REGION45_Msk
  500. #endif
  501. #ifndef MPU_PROTENSET1_PROTREG45_Disabled
  502. #define MPU_PROTENSET1_PROTREG45_Disabled BPROT_CONFIG1_REGION45_Disabled
  503. #endif
  504. #ifndef MPU_PROTENSET1_PROTREG45_Enabled
  505. #define MPU_PROTENSET1_PROTREG45_Enabled BPROT_CONFIG1_REGION45_Enabled
  506. #endif
  507. #ifndef MPU_PROTENSET1_PROTREG45_Set
  508. #define MPU_PROTENSET1_PROTREG45_Set BPROT_CONFIG1_REGION45_Enabled
  509. #endif
  510. #ifndef MPU_PROTENSET1_PROTREG44_Pos
  511. #define MPU_PROTENSET1_PROTREG44_Pos BPROT_CONFIG1_REGION44_Pos
  512. #endif
  513. #ifndef MPU_PROTENSET1_PROTREG44_Msk
  514. #define MPU_PROTENSET1_PROTREG44_Msk BPROT_CONFIG1_REGION44_Msk
  515. #endif
  516. #ifndef MPU_PROTENSET1_PROTREG44_Disabled
  517. #define MPU_PROTENSET1_PROTREG44_Disabled BPROT_CONFIG1_REGION44_Disabled
  518. #endif
  519. #ifndef MPU_PROTENSET1_PROTREG44_Enabled
  520. #define MPU_PROTENSET1_PROTREG44_Enabled BPROT_CONFIG1_REGION44_Enabled
  521. #endif
  522. #ifndef MPU_PROTENSET1_PROTREG44_Set
  523. #define MPU_PROTENSET1_PROTREG44_Set BPROT_CONFIG1_REGION44_Enabled
  524. #endif
  525. #ifndef MPU_PROTENSET1_PROTREG43_Pos
  526. #define MPU_PROTENSET1_PROTREG43_Pos BPROT_CONFIG1_REGION43_Pos
  527. #endif
  528. #ifndef MPU_PROTENSET1_PROTREG43_Msk
  529. #define MPU_PROTENSET1_PROTREG43_Msk BPROT_CONFIG1_REGION43_Msk
  530. #endif
  531. #ifndef MPU_PROTENSET1_PROTREG43_Disabled
  532. #define MPU_PROTENSET1_PROTREG43_Disabled BPROT_CONFIG1_REGION43_Disabled
  533. #endif
  534. #ifndef MPU_PROTENSET1_PROTREG43_Enabled
  535. #define MPU_PROTENSET1_PROTREG43_Enabled BPROT_CONFIG1_REGION43_Enabled
  536. #endif
  537. #ifndef MPU_PROTENSET1_PROTREG43_Set
  538. #define MPU_PROTENSET1_PROTREG43_Set BPROT_CONFIG1_REGION43_Enabled
  539. #endif
  540. #ifndef MPU_PROTENSET1_PROTREG42_Pos
  541. #define MPU_PROTENSET1_PROTREG42_Pos BPROT_CONFIG1_REGION42_Pos
  542. #endif
  543. #ifndef MPU_PROTENSET1_PROTREG42_Msk
  544. #define MPU_PROTENSET1_PROTREG42_Msk BPROT_CONFIG1_REGION42_Msk
  545. #endif
  546. #ifndef MPU_PROTENSET1_PROTREG42_Disabled
  547. #define MPU_PROTENSET1_PROTREG42_Disabled BPROT_CONFIG1_REGION42_Disabled
  548. #endif
  549. #ifndef MPU_PROTENSET1_PROTREG42_Enabled
  550. #define MPU_PROTENSET1_PROTREG42_Enabled BPROT_CONFIG1_REGION42_Enabled
  551. #endif
  552. #ifndef MPU_PROTENSET1_PROTREG42_Set
  553. #define MPU_PROTENSET1_PROTREG42_Set BPROT_CONFIG1_REGION42_Enabled
  554. #endif
  555. #ifndef MPU_PROTENSET1_PROTREG41_Pos
  556. #define MPU_PROTENSET1_PROTREG41_Pos BPROT_CONFIG1_REGION41_Pos
  557. #endif
  558. #ifndef MPU_PROTENSET1_PROTREG41_Msk
  559. #define MPU_PROTENSET1_PROTREG41_Msk BPROT_CONFIG1_REGION41_Msk
  560. #endif
  561. #ifndef MPU_PROTENSET1_PROTREG41_Disabled
  562. #define MPU_PROTENSET1_PROTREG41_Disabled BPROT_CONFIG1_REGION41_Disabled
  563. #endif
  564. #ifndef MPU_PROTENSET1_PROTREG41_Enabled
  565. #define MPU_PROTENSET1_PROTREG41_Enabled BPROT_CONFIG1_REGION41_Enabled
  566. #endif
  567. #ifndef MPU_PROTENSET1_PROTREG41_Set
  568. #define MPU_PROTENSET1_PROTREG41_Set BPROT_CONFIG1_REGION41_Enabled
  569. #endif
  570. #ifndef MPU_PROTENSET1_PROTREG40_Pos
  571. #define MPU_PROTENSET1_PROTREG40_Pos BPROT_CONFIG1_REGION40_Pos
  572. #endif
  573. #ifndef MPU_PROTENSET1_PROTREG40_Msk
  574. #define MPU_PROTENSET1_PROTREG40_Msk BPROT_CONFIG1_REGION40_Msk
  575. #endif
  576. #ifndef MPU_PROTENSET1_PROTREG40_Disabled
  577. #define MPU_PROTENSET1_PROTREG40_Disabled BPROT_CONFIG1_REGION40_Disabled
  578. #endif
  579. #ifndef MPU_PROTENSET1_PROTREG40_Enabled
  580. #define MPU_PROTENSET1_PROTREG40_Enabled BPROT_CONFIG1_REGION40_Enabled
  581. #endif
  582. #ifndef MPU_PROTENSET1_PROTREG40_Set
  583. #define MPU_PROTENSET1_PROTREG40_Set BPROT_CONFIG1_REGION40_Enabled
  584. #endif
  585. #ifndef MPU_PROTENSET1_PROTREG39_Pos
  586. #define MPU_PROTENSET1_PROTREG39_Pos BPROT_CONFIG1_REGION39_Pos
  587. #endif
  588. #ifndef MPU_PROTENSET1_PROTREG39_Msk
  589. #define MPU_PROTENSET1_PROTREG39_Msk BPROT_CONFIG1_REGION39_Msk
  590. #endif
  591. #ifndef MPU_PROTENSET1_PROTREG39_Disabled
  592. #define MPU_PROTENSET1_PROTREG39_Disabled BPROT_CONFIG1_REGION39_Disabled
  593. #endif
  594. #ifndef MPU_PROTENSET1_PROTREG39_Enabled
  595. #define MPU_PROTENSET1_PROTREG39_Enabled BPROT_CONFIG1_REGION39_Enabled
  596. #endif
  597. #ifndef MPU_PROTENSET1_PROTREG39_Set
  598. #define MPU_PROTENSET1_PROTREG39_Set BPROT_CONFIG1_REGION39_Enabled
  599. #endif
  600. #ifndef MPU_PROTENSET1_PROTREG38_Pos
  601. #define MPU_PROTENSET1_PROTREG38_Pos BPROT_CONFIG1_REGION38_Pos
  602. #endif
  603. #ifndef MPU_PROTENSET1_PROTREG38_Msk
  604. #define MPU_PROTENSET1_PROTREG38_Msk BPROT_CONFIG1_REGION38_Msk
  605. #endif
  606. #ifndef MPU_PROTENSET1_PROTREG38_Disabled
  607. #define MPU_PROTENSET1_PROTREG38_Disabled BPROT_CONFIG1_REGION38_Disabled
  608. #endif
  609. #ifndef MPU_PROTENSET1_PROTREG38_Enabled
  610. #define MPU_PROTENSET1_PROTREG38_Enabled BPROT_CONFIG1_REGION38_Enabled
  611. #endif
  612. #ifndef MPU_PROTENSET1_PROTREG38_Set
  613. #define MPU_PROTENSET1_PROTREG38_Set BPROT_CONFIG1_REGION38_Enabled
  614. #endif
  615. #ifndef MPU_PROTENSET1_PROTREG37_Pos
  616. #define MPU_PROTENSET1_PROTREG37_Pos BPROT_CONFIG1_REGION37_Pos
  617. #endif
  618. #ifndef MPU_PROTENSET1_PROTREG37_Msk
  619. #define MPU_PROTENSET1_PROTREG37_Msk BPROT_CONFIG1_REGION37_Msk
  620. #endif
  621. #ifndef MPU_PROTENSET1_PROTREG37_Disabled
  622. #define MPU_PROTENSET1_PROTREG37_Disabled BPROT_CONFIG1_REGION37_Disabled
  623. #endif
  624. #ifndef MPU_PROTENSET1_PROTREG37_Enabled
  625. #define MPU_PROTENSET1_PROTREG37_Enabled BPROT_CONFIG1_REGION37_Enabled
  626. #endif
  627. #ifndef MPU_PROTENSET1_PROTREG37_Set
  628. #define MPU_PROTENSET1_PROTREG37_Set BPROT_CONFIG1_REGION37_Enabled
  629. #endif
  630. #ifndef MPU_PROTENSET1_PROTREG36_Pos
  631. #define MPU_PROTENSET1_PROTREG36_Pos BPROT_CONFIG1_REGION36_Pos
  632. #endif
  633. #ifndef MPU_PROTENSET1_PROTREG36_Msk
  634. #define MPU_PROTENSET1_PROTREG36_Msk BPROT_CONFIG1_REGION36_Msk
  635. #endif
  636. #ifndef MPU_PROTENSET1_PROTREG36_Disabled
  637. #define MPU_PROTENSET1_PROTREG36_Disabled BPROT_CONFIG1_REGION36_Disabled
  638. #endif
  639. #ifndef MPU_PROTENSET1_PROTREG36_Enabled
  640. #define MPU_PROTENSET1_PROTREG36_Enabled BPROT_CONFIG1_REGION36_Enabled
  641. #endif
  642. #ifndef MPU_PROTENSET1_PROTREG36_Set
  643. #define MPU_PROTENSET1_PROTREG36_Set BPROT_CONFIG1_REGION36_Enabled
  644. #endif
  645. #ifndef MPU_PROTENSET1_PROTREG35_Pos
  646. #define MPU_PROTENSET1_PROTREG35_Pos BPROT_CONFIG1_REGION35_Pos
  647. #endif
  648. #ifndef MPU_PROTENSET1_PROTREG35_Msk
  649. #define MPU_PROTENSET1_PROTREG35_Msk BPROT_CONFIG1_REGION35_Msk
  650. #endif
  651. #ifndef MPU_PROTENSET1_PROTREG35_Disabled
  652. #define MPU_PROTENSET1_PROTREG35_Disabled BPROT_CONFIG1_REGION35_Disabled
  653. #endif
  654. #ifndef MPU_PROTENSET1_PROTREG35_Enabled
  655. #define MPU_PROTENSET1_PROTREG35_Enabled BPROT_CONFIG1_REGION35_Enabled
  656. #endif
  657. #ifndef MPU_PROTENSET1_PROTREG35_Set
  658. #define MPU_PROTENSET1_PROTREG35_Set BPROT_CONFIG1_REGION35_Enabled
  659. #endif
  660. #ifndef MPU_PROTENSET1_PROTREG34_Pos
  661. #define MPU_PROTENSET1_PROTREG34_Pos BPROT_CONFIG1_REGION34_Pos
  662. #endif
  663. #ifndef MPU_PROTENSET1_PROTREG34_Msk
  664. #define MPU_PROTENSET1_PROTREG34_Msk BPROT_CONFIG1_REGION34_Msk
  665. #endif
  666. #ifndef MPU_PROTENSET1_PROTREG34_Disabled
  667. #define MPU_PROTENSET1_PROTREG34_Disabled BPROT_CONFIG1_REGION34_Disabled
  668. #endif
  669. #ifndef MPU_PROTENSET1_PROTREG34_Enabled
  670. #define MPU_PROTENSET1_PROTREG34_Enabled BPROT_CONFIG1_REGION34_Enabled
  671. #endif
  672. #ifndef MPU_PROTENSET1_PROTREG34_Set
  673. #define MPU_PROTENSET1_PROTREG34_Set BPROT_CONFIG1_REGION34_Enabled
  674. #endif
  675. #ifndef MPU_PROTENSET1_PROTREG33_Pos
  676. #define MPU_PROTENSET1_PROTREG33_Pos BPROT_CONFIG1_REGION33_Pos
  677. #endif
  678. #ifndef MPU_PROTENSET1_PROTREG33_Msk
  679. #define MPU_PROTENSET1_PROTREG33_Msk BPROT_CONFIG1_REGION33_Msk
  680. #endif
  681. #ifndef MPU_PROTENSET1_PROTREG33_Disabled
  682. #define MPU_PROTENSET1_PROTREG33_Disabled BPROT_CONFIG1_REGION33_Disabled
  683. #endif
  684. #ifndef MPU_PROTENSET1_PROTREG33_Enabled
  685. #define MPU_PROTENSET1_PROTREG33_Enabled BPROT_CONFIG1_REGION33_Enabled
  686. #endif
  687. #ifndef MPU_PROTENSET1_PROTREG33_Set
  688. #define MPU_PROTENSET1_PROTREG33_Set BPROT_CONFIG1_REGION33_Enabled
  689. #endif
  690. #ifndef MPU_PROTENSET1_PROTREG32_Pos
  691. #define MPU_PROTENSET1_PROTREG32_Pos BPROT_CONFIG1_REGION32_Pos
  692. #endif
  693. #ifndef MPU_PROTENSET1_PROTREG32_Msk
  694. #define MPU_PROTENSET1_PROTREG32_Msk BPROT_CONFIG1_REGION32_Msk
  695. #endif
  696. #ifndef MPU_PROTENSET1_PROTREG32_Disabled
  697. #define MPU_PROTENSET1_PROTREG32_Disabled BPROT_CONFIG1_REGION32_Disabled
  698. #endif
  699. #ifndef MPU_PROTENSET1_PROTREG32_Enabled
  700. #define MPU_PROTENSET1_PROTREG32_Enabled BPROT_CONFIG1_REGION32_Enabled
  701. #endif
  702. #ifndef MPU_PROTENSET1_PROTREG32_Set
  703. #define MPU_PROTENSET1_PROTREG32_Set BPROT_CONFIG1_REGION32_Enabled
  704. #endif
  705. #ifndef MPU_PROTENSET0_PROTREG31_Pos
  706. #define MPU_PROTENSET0_PROTREG31_Pos BPROT_CONFIG0_REGION31_Pos
  707. #endif
  708. #ifndef MPU_PROTENSET0_PROTREG31_Msk
  709. #define MPU_PROTENSET0_PROTREG31_Msk BPROT_CONFIG0_REGION31_Msk
  710. #endif
  711. #ifndef MPU_PROTENSET0_PROTREG31_Disabled
  712. #define MPU_PROTENSET0_PROTREG31_Disabled BPROT_CONFIG0_REGION31_Disabled
  713. #endif
  714. #ifndef MPU_PROTENSET0_PROTREG31_Enabled
  715. #define MPU_PROTENSET0_PROTREG31_Enabled BPROT_CONFIG0_REGION31_Enabled
  716. #endif
  717. #ifndef MPU_PROTENSET0_PROTREG31_Set
  718. #define MPU_PROTENSET0_PROTREG31_Set BPROT_CONFIG0_REGION31_Enabled
  719. #endif
  720. #ifndef MPU_PROTENSET0_PROTREG30_Pos
  721. #define MPU_PROTENSET0_PROTREG30_Pos BPROT_CONFIG0_REGION30_Pos
  722. #endif
  723. #ifndef MPU_PROTENSET0_PROTREG30_Msk
  724. #define MPU_PROTENSET0_PROTREG30_Msk BPROT_CONFIG0_REGION30_Msk
  725. #endif
  726. #ifndef MPU_PROTENSET0_PROTREG30_Disabled
  727. #define MPU_PROTENSET0_PROTREG30_Disabled BPROT_CONFIG0_REGION30_Disabled
  728. #endif
  729. #ifndef MPU_PROTENSET0_PROTREG30_Enabled
  730. #define MPU_PROTENSET0_PROTREG30_Enabled BPROT_CONFIG0_REGION30_Enabled
  731. #endif
  732. #ifndef MPU_PROTENSET0_PROTREG30_Set
  733. #define MPU_PROTENSET0_PROTREG30_Set BPROT_CONFIG0_REGION30_Enabled
  734. #endif
  735. #ifndef MPU_PROTENSET0_PROTREG29_Pos
  736. #define MPU_PROTENSET0_PROTREG29_Pos BPROT_CONFIG0_REGION29_Pos
  737. #endif
  738. #ifndef MPU_PROTENSET0_PROTREG29_Msk
  739. #define MPU_PROTENSET0_PROTREG29_Msk BPROT_CONFIG0_REGION29_Msk
  740. #endif
  741. #ifndef MPU_PROTENSET0_PROTREG29_Disabled
  742. #define MPU_PROTENSET0_PROTREG29_Disabled BPROT_CONFIG0_REGION29_Disabled
  743. #endif
  744. #ifndef MPU_PROTENSET0_PROTREG29_Enabled
  745. #define MPU_PROTENSET0_PROTREG29_Enabled BPROT_CONFIG0_REGION29_Enabled
  746. #endif
  747. #ifndef MPU_PROTENSET0_PROTREG29_Set
  748. #define MPU_PROTENSET0_PROTREG29_Set BPROT_CONFIG0_REGION29_Enabled
  749. #endif
  750. #ifndef MPU_PROTENSET0_PROTREG28_Pos
  751. #define MPU_PROTENSET0_PROTREG28_Pos BPROT_CONFIG0_REGION28_Pos
  752. #endif
  753. #ifndef MPU_PROTENSET0_PROTREG28_Msk
  754. #define MPU_PROTENSET0_PROTREG28_Msk BPROT_CONFIG0_REGION28_Msk
  755. #endif
  756. #ifndef MPU_PROTENSET0_PROTREG28_Disabled
  757. #define MPU_PROTENSET0_PROTREG28_Disabled BPROT_CONFIG0_REGION28_Disabled
  758. #endif
  759. #ifndef MPU_PROTENSET0_PROTREG28_Enabled
  760. #define MPU_PROTENSET0_PROTREG28_Enabled BPROT_CONFIG0_REGION28_Enabled
  761. #endif
  762. #ifndef MPU_PROTENSET0_PROTREG28_Set
  763. #define MPU_PROTENSET0_PROTREG28_Set BPROT_CONFIG0_REGION28_Enabled
  764. #endif
  765. #ifndef MPU_PROTENSET0_PROTREG27_Pos
  766. #define MPU_PROTENSET0_PROTREG27_Pos BPROT_CONFIG0_REGION27_Pos
  767. #endif
  768. #ifndef MPU_PROTENSET0_PROTREG27_Msk
  769. #define MPU_PROTENSET0_PROTREG27_Msk BPROT_CONFIG0_REGION27_Msk
  770. #endif
  771. #ifndef MPU_PROTENSET0_PROTREG27_Disabled
  772. #define MPU_PROTENSET0_PROTREG27_Disabled BPROT_CONFIG0_REGION27_Disabled
  773. #endif
  774. #ifndef MPU_PROTENSET0_PROTREG27_Enabled
  775. #define MPU_PROTENSET0_PROTREG27_Enabled BPROT_CONFIG0_REGION27_Enabled
  776. #endif
  777. #ifndef MPU_PROTENSET0_PROTREG27_Set
  778. #define MPU_PROTENSET0_PROTREG27_Set BPROT_CONFIG0_REGION27_Enabled
  779. #endif
  780. #ifndef MPU_PROTENSET0_PROTREG26_Pos
  781. #define MPU_PROTENSET0_PROTREG26_Pos BPROT_CONFIG0_REGION26_Pos
  782. #endif
  783. #ifndef MPU_PROTENSET0_PROTREG26_Msk
  784. #define MPU_PROTENSET0_PROTREG26_Msk BPROT_CONFIG0_REGION26_Msk
  785. #endif
  786. #ifndef MPU_PROTENSET0_PROTREG26_Disabled
  787. #define MPU_PROTENSET0_PROTREG26_Disabled BPROT_CONFIG0_REGION26_Disabled
  788. #endif
  789. #ifndef MPU_PROTENSET0_PROTREG26_Enabled
  790. #define MPU_PROTENSET0_PROTREG26_Enabled BPROT_CONFIG0_REGION26_Enabled
  791. #endif
  792. #ifndef MPU_PROTENSET0_PROTREG26_Set
  793. #define MPU_PROTENSET0_PROTREG26_Set BPROT_CONFIG0_REGION26_Enabled
  794. #endif
  795. #ifndef MPU_PROTENSET0_PROTREG25_Pos
  796. #define MPU_PROTENSET0_PROTREG25_Pos BPROT_CONFIG0_REGION25_Pos
  797. #endif
  798. #ifndef MPU_PROTENSET0_PROTREG25_Msk
  799. #define MPU_PROTENSET0_PROTREG25_Msk BPROT_CONFIG0_REGION25_Msk
  800. #endif
  801. #ifndef MPU_PROTENSET0_PROTREG25_Disabled
  802. #define MPU_PROTENSET0_PROTREG25_Disabled BPROT_CONFIG0_REGION25_Disabled
  803. #endif
  804. #ifndef MPU_PROTENSET0_PROTREG25_Enabled
  805. #define MPU_PROTENSET0_PROTREG25_Enabled BPROT_CONFIG0_REGION25_Enabled
  806. #endif
  807. #ifndef MPU_PROTENSET0_PROTREG25_Set
  808. #define MPU_PROTENSET0_PROTREG25_Set BPROT_CONFIG0_REGION25_Enabled
  809. #endif
  810. #ifndef MPU_PROTENSET0_PROTREG24_Pos
  811. #define MPU_PROTENSET0_PROTREG24_Pos BPROT_CONFIG0_REGION24_Pos
  812. #endif
  813. #ifndef MPU_PROTENSET0_PROTREG24_Msk
  814. #define MPU_PROTENSET0_PROTREG24_Msk BPROT_CONFIG0_REGION24_Msk
  815. #endif
  816. #ifndef MPU_PROTENSET0_PROTREG24_Disabled
  817. #define MPU_PROTENSET0_PROTREG24_Disabled BPROT_CONFIG0_REGION24_Disabled
  818. #endif
  819. #ifndef MPU_PROTENSET0_PROTREG24_Enabled
  820. #define MPU_PROTENSET0_PROTREG24_Enabled BPROT_CONFIG0_REGION24_Enabled
  821. #endif
  822. #ifndef MPU_PROTENSET0_PROTREG24_Set
  823. #define MPU_PROTENSET0_PROTREG24_Set BPROT_CONFIG0_REGION24_Enabled
  824. #endif
  825. #ifndef MPU_PROTENSET0_PROTREG23_Pos
  826. #define MPU_PROTENSET0_PROTREG23_Pos BPROT_CONFIG0_REGION23_Pos
  827. #endif
  828. #ifndef MPU_PROTENSET0_PROTREG23_Msk
  829. #define MPU_PROTENSET0_PROTREG23_Msk BPROT_CONFIG0_REGION23_Msk
  830. #endif
  831. #ifndef MPU_PROTENSET0_PROTREG23_Disabled
  832. #define MPU_PROTENSET0_PROTREG23_Disabled BPROT_CONFIG0_REGION23_Disabled
  833. #endif
  834. #ifndef MPU_PROTENSET0_PROTREG23_Enabled
  835. #define MPU_PROTENSET0_PROTREG23_Enabled BPROT_CONFIG0_REGION23_Enabled
  836. #endif
  837. #ifndef MPU_PROTENSET0_PROTREG23_Set
  838. #define MPU_PROTENSET0_PROTREG23_Set BPROT_CONFIG0_REGION23_Enabled
  839. #endif
  840. #ifndef MPU_PROTENSET0_PROTREG22_Pos
  841. #define MPU_PROTENSET0_PROTREG22_Pos BPROT_CONFIG0_REGION22_Pos
  842. #endif
  843. #ifndef MPU_PROTENSET0_PROTREG22_Msk
  844. #define MPU_PROTENSET0_PROTREG22_Msk BPROT_CONFIG0_REGION22_Msk
  845. #endif
  846. #ifndef MPU_PROTENSET0_PROTREG22_Disabled
  847. #define MPU_PROTENSET0_PROTREG22_Disabled BPROT_CONFIG0_REGION22_Disabled
  848. #endif
  849. #ifndef MPU_PROTENSET0_PROTREG22_Enabled
  850. #define MPU_PROTENSET0_PROTREG22_Enabled BPROT_CONFIG0_REGION22_Enabled
  851. #endif
  852. #ifndef MPU_PROTENSET0_PROTREG22_Set
  853. #define MPU_PROTENSET0_PROTREG22_Set BPROT_CONFIG0_REGION22_Enabled
  854. #endif
  855. #ifndef MPU_PROTENSET0_PROTREG21_Pos
  856. #define MPU_PROTENSET0_PROTREG21_Pos BPROT_CONFIG0_REGION21_Pos
  857. #endif
  858. #ifndef MPU_PROTENSET0_PROTREG21_Msk
  859. #define MPU_PROTENSET0_PROTREG21_Msk BPROT_CONFIG0_REGION21_Msk
  860. #endif
  861. #ifndef MPU_PROTENSET0_PROTREG21_Disabled
  862. #define MPU_PROTENSET0_PROTREG21_Disabled BPROT_CONFIG0_REGION21_Disabled
  863. #endif
  864. #ifndef MPU_PROTENSET0_PROTREG21_Enabled
  865. #define MPU_PROTENSET0_PROTREG21_Enabled BPROT_CONFIG0_REGION21_Enabled
  866. #endif
  867. #ifndef MPU_PROTENSET0_PROTREG21_Set
  868. #define MPU_PROTENSET0_PROTREG21_Set BPROT_CONFIG0_REGION21_Enabled
  869. #endif
  870. #ifndef MPU_PROTENSET0_PROTREG20_Pos
  871. #define MPU_PROTENSET0_PROTREG20_Pos BPROT_CONFIG0_REGION20_Pos
  872. #endif
  873. #ifndef MPU_PROTENSET0_PROTREG20_Msk
  874. #define MPU_PROTENSET0_PROTREG20_Msk BPROT_CONFIG0_REGION20_Msk
  875. #endif
  876. #ifndef MPU_PROTENSET0_PROTREG20_Disabled
  877. #define MPU_PROTENSET0_PROTREG20_Disabled BPROT_CONFIG0_REGION20_Disabled
  878. #endif
  879. #ifndef MPU_PROTENSET0_PROTREG20_Enabled
  880. #define MPU_PROTENSET0_PROTREG20_Enabled BPROT_CONFIG0_REGION20_Enabled
  881. #endif
  882. #ifndef MPU_PROTENSET0_PROTREG20_Set
  883. #define MPU_PROTENSET0_PROTREG20_Set BPROT_CONFIG0_REGION20_Enabled
  884. #endif
  885. #ifndef MPU_PROTENSET0_PROTREG19_Pos
  886. #define MPU_PROTENSET0_PROTREG19_Pos BPROT_CONFIG0_REGION19_Pos
  887. #endif
  888. #ifndef MPU_PROTENSET0_PROTREG19_Msk
  889. #define MPU_PROTENSET0_PROTREG19_Msk BPROT_CONFIG0_REGION19_Msk
  890. #endif
  891. #ifndef MPU_PROTENSET0_PROTREG19_Disabled
  892. #define MPU_PROTENSET0_PROTREG19_Disabled BPROT_CONFIG0_REGION19_Disabled
  893. #endif
  894. #ifndef MPU_PROTENSET0_PROTREG19_Enabled
  895. #define MPU_PROTENSET0_PROTREG19_Enabled BPROT_CONFIG0_REGION19_Enabled
  896. #endif
  897. #ifndef MPU_PROTENSET0_PROTREG19_Set
  898. #define MPU_PROTENSET0_PROTREG19_Set BPROT_CONFIG0_REGION19_Enabled
  899. #endif
  900. #ifndef MPU_PROTENSET0_PROTREG18_Pos
  901. #define MPU_PROTENSET0_PROTREG18_Pos BPROT_CONFIG0_REGION18_Pos
  902. #endif
  903. #ifndef MPU_PROTENSET0_PROTREG18_Msk
  904. #define MPU_PROTENSET0_PROTREG18_Msk BPROT_CONFIG0_REGION18_Msk
  905. #endif
  906. #ifndef MPU_PROTENSET0_PROTREG18_Disabled
  907. #define MPU_PROTENSET0_PROTREG18_Disabled BPROT_CONFIG0_REGION18_Disabled
  908. #endif
  909. #ifndef MPU_PROTENSET0_PROTREG18_Enabled
  910. #define MPU_PROTENSET0_PROTREG18_Enabled BPROT_CONFIG0_REGION18_Enabled
  911. #endif
  912. #ifndef MPU_PROTENSET0_PROTREG18_Set
  913. #define MPU_PROTENSET0_PROTREG18_Set BPROT_CONFIG0_REGION18_Enabled
  914. #endif
  915. #ifndef MPU_PROTENSET0_PROTREG17_Pos
  916. #define MPU_PROTENSET0_PROTREG17_Pos BPROT_CONFIG0_REGION17_Pos
  917. #endif
  918. #ifndef MPU_PROTENSET0_PROTREG17_Msk
  919. #define MPU_PROTENSET0_PROTREG17_Msk BPROT_CONFIG0_REGION17_Msk
  920. #endif
  921. #ifndef MPU_PROTENSET0_PROTREG17_Disabled
  922. #define MPU_PROTENSET0_PROTREG17_Disabled BPROT_CONFIG0_REGION17_Disabled
  923. #endif
  924. #ifndef MPU_PROTENSET0_PROTREG17_Enabled
  925. #define MPU_PROTENSET0_PROTREG17_Enabled BPROT_CONFIG0_REGION17_Enabled
  926. #endif
  927. #ifndef MPU_PROTENSET0_PROTREG17_Set
  928. #define MPU_PROTENSET0_PROTREG17_Set BPROT_CONFIG0_REGION17_Enabled
  929. #endif
  930. #ifndef MPU_PROTENSET0_PROTREG16_Pos
  931. #define MPU_PROTENSET0_PROTREG16_Pos BPROT_CONFIG0_REGION16_Pos
  932. #endif
  933. #ifndef MPU_PROTENSET0_PROTREG16_Msk
  934. #define MPU_PROTENSET0_PROTREG16_Msk BPROT_CONFIG0_REGION16_Msk
  935. #endif
  936. #ifndef MPU_PROTENSET0_PROTREG16_Disabled
  937. #define MPU_PROTENSET0_PROTREG16_Disabled BPROT_CONFIG0_REGION16_Disabled
  938. #endif
  939. #ifndef MPU_PROTENSET0_PROTREG16_Enabled
  940. #define MPU_PROTENSET0_PROTREG16_Enabled BPROT_CONFIG0_REGION16_Enabled
  941. #endif
  942. #ifndef MPU_PROTENSET0_PROTREG16_Set
  943. #define MPU_PROTENSET0_PROTREG16_Set BPROT_CONFIG0_REGION16_Enabled
  944. #endif
  945. #ifndef MPU_PROTENSET0_PROTREG16_Set
  946. #define MPU_PROTENSET0_PROTREG15_Pos BPROT_CONFIG0_REGION15_Pos
  947. #endif
  948. #ifndef MPU_PROTENSET0_PROTREG15_Msk
  949. #define MPU_PROTENSET0_PROTREG15_Msk BPROT_CONFIG0_REGION15_Msk
  950. #endif
  951. #ifndef MPU_PROTENSET0_PROTREG15_Disabled
  952. #define MPU_PROTENSET0_PROTREG15_Disabled BPROT_CONFIG0_REGION15_Disabled
  953. #endif
  954. #ifndef MPU_PROTENSET0_PROTREG15_Enabled
  955. #define MPU_PROTENSET0_PROTREG15_Enabled BPROT_CONFIG0_REGION15_Enabled
  956. #endif
  957. #ifndef MPU_PROTENSET0_PROTREG15_Set
  958. #define MPU_PROTENSET0_PROTREG15_Set BPROT_CONFIG0_REGION15_Enabled
  959. #endif
  960. #ifndef MPU_PROTENSET0_PROTREG14_Pos
  961. #define MPU_PROTENSET0_PROTREG14_Pos BPROT_CONFIG0_REGION14_Pos
  962. #endif
  963. #ifndef MPU_PROTENSET0_PROTREG14_Msk
  964. #define MPU_PROTENSET0_PROTREG14_Msk BPROT_CONFIG0_REGION14_Msk
  965. #endif
  966. #ifndef MPU_PROTENSET0_PROTREG14_Disabled
  967. #define MPU_PROTENSET0_PROTREG14_Disabled BPROT_CONFIG0_REGION14_Disabled
  968. #endif
  969. #ifndef MPU_PROTENSET0_PROTREG14_Enabled
  970. #define MPU_PROTENSET0_PROTREG14_Enabled BPROT_CONFIG0_REGION14_Enabled
  971. #endif
  972. #ifndef MPU_PROTENSET0_PROTREG14_Set
  973. #define MPU_PROTENSET0_PROTREG14_Set BPROT_CONFIG0_REGION14_Enabled
  974. #endif
  975. #ifndef MPU_PROTENSET0_PROTREG13_Pos
  976. #define MPU_PROTENSET0_PROTREG13_Pos BPROT_CONFIG0_REGION13_Pos
  977. #endif
  978. #ifndef MPU_PROTENSET0_PROTREG13_Msk
  979. #define MPU_PROTENSET0_PROTREG13_Msk BPROT_CONFIG0_REGION13_Msk
  980. #endif
  981. #ifndef MPU_PROTENSET0_PROTREG13_Disabled
  982. #define MPU_PROTENSET0_PROTREG13_Disabled BPROT_CONFIG0_REGION13_Disabled
  983. #endif
  984. #ifndef MPU_PROTENSET0_PROTREG13_Enabled
  985. #define MPU_PROTENSET0_PROTREG13_Enabled BPROT_CONFIG0_REGION13_Enabled
  986. #endif
  987. #ifndef MPU_PROTENSET0_PROTREG13_Set
  988. #define MPU_PROTENSET0_PROTREG13_Set BPROT_CONFIG0_REGION13_Enabled
  989. #endif
  990. #ifndef MPU_PROTENSET0_PROTREG12_Pos
  991. #define MPU_PROTENSET0_PROTREG12_Pos BPROT_CONFIG0_REGION12_Pos
  992. #endif
  993. #ifndef MPU_PROTENSET0_PROTREG12_Msk
  994. #define MPU_PROTENSET0_PROTREG12_Msk BPROT_CONFIG0_REGION12_Msk
  995. #endif
  996. #ifndef MPU_PROTENSET0_PROTREG12_Disabled
  997. #define MPU_PROTENSET0_PROTREG12_Disabled BPROT_CONFIG0_REGION12_Disabled
  998. #endif
  999. #ifndef MPU_PROTENSET0_PROTREG12_Enabled
  1000. #define MPU_PROTENSET0_PROTREG12_Enabled BPROT_CONFIG0_REGION12_Enabled
  1001. #endif
  1002. #ifndef MPU_PROTENSET0_PROTREG12_Set
  1003. #define MPU_PROTENSET0_PROTREG12_Set BPROT_CONFIG0_REGION12_Enabled
  1004. #endif
  1005. #ifndef MPU_PROTENSET0_PROTREG11_Pos
  1006. #define MPU_PROTENSET0_PROTREG11_Pos BPROT_CONFIG0_REGION11_Pos
  1007. #endif
  1008. #ifndef MPU_PROTENSET0_PROTREG11_Msk
  1009. #define MPU_PROTENSET0_PROTREG11_Msk BPROT_CONFIG0_REGION11_Msk
  1010. #endif
  1011. #ifndef MPU_PROTENSET0_PROTREG11_Disabled
  1012. #define MPU_PROTENSET0_PROTREG11_Disabled BPROT_CONFIG0_REGION11_Disabled
  1013. #endif
  1014. #ifndef MPU_PROTENSET0_PROTREG11_Enabled
  1015. #define MPU_PROTENSET0_PROTREG11_Enabled BPROT_CONFIG0_REGION11_Enabled
  1016. #endif
  1017. #ifndef MPU_PROTENSET0_PROTREG11_Set
  1018. #define MPU_PROTENSET0_PROTREG11_Set BPROT_CONFIG0_REGION11_Enabled
  1019. #endif
  1020. #ifndef MPU_PROTENSET0_PROTREG10_Pos
  1021. #define MPU_PROTENSET0_PROTREG10_Pos BPROT_CONFIG0_REGION10_Pos
  1022. #endif
  1023. #ifndef MPU_PROTENSET0_PROTREG10_Msk
  1024. #define MPU_PROTENSET0_PROTREG10_Msk BPROT_CONFIG0_REGION10_Msk
  1025. #endif
  1026. #ifndef MPU_PROTENSET0_PROTREG10_Disabled
  1027. #define MPU_PROTENSET0_PROTREG10_Disabled BPROT_CONFIG0_REGION10_Disabled
  1028. #endif
  1029. #ifndef MPU_PROTENSET0_PROTREG10_Enabled
  1030. #define MPU_PROTENSET0_PROTREG10_Enabled BPROT_CONFIG0_REGION10_Enabled
  1031. #endif
  1032. #ifndef MPU_PROTENSET0_PROTREG10_Set
  1033. #define MPU_PROTENSET0_PROTREG10_Set BPROT_CONFIG0_REGION10_Enabled
  1034. #endif
  1035. #ifndef MPU_PROTENSET0_PROTREG9_Pos
  1036. #define MPU_PROTENSET0_PROTREG9_Pos BPROT_CONFIG0_REGION9_Pos
  1037. #endif
  1038. #ifndef MPU_PROTENSET0_PROTREG9_Msk
  1039. #define MPU_PROTENSET0_PROTREG9_Msk BPROT_CONFIG0_REGION9_Msk
  1040. #endif
  1041. #ifndef MPU_PROTENSET0_PROTREG9_Disabled
  1042. #define MPU_PROTENSET0_PROTREG9_Disabled BPROT_CONFIG0_REGION9_Disabled
  1043. #endif
  1044. #ifndef MPU_PROTENSET0_PROTREG9_Enabled
  1045. #define MPU_PROTENSET0_PROTREG9_Enabled BPROT_CONFIG0_REGION9_Enabled
  1046. #endif
  1047. #ifndef MPU_PROTENSET0_PROTREG9_Set
  1048. #define MPU_PROTENSET0_PROTREG9_Set BPROT_CONFIG0_REGION9_Enabled
  1049. #endif
  1050. #ifndef MPU_PROTENSET0_PROTREG8_Pos
  1051. #define MPU_PROTENSET0_PROTREG8_Pos BPROT_CONFIG0_REGION8_Pos
  1052. #endif
  1053. #ifndef MPU_PROTENSET0_PROTREG8_Msk
  1054. #define MPU_PROTENSET0_PROTREG8_Msk BPROT_CONFIG0_REGION8_Msk
  1055. #endif
  1056. #ifndef MPU_PROTENSET0_PROTREG8_Disabled
  1057. #define MPU_PROTENSET0_PROTREG8_Disabled BPROT_CONFIG0_REGION8_Disabled
  1058. #endif
  1059. #ifndef MPU_PROTENSET0_PROTREG8_Enabled
  1060. #define MPU_PROTENSET0_PROTREG8_Enabled BPROT_CONFIG0_REGION8_Enabled
  1061. #endif
  1062. #ifndef MPU_PROTENSET0_PROTREG8_Set
  1063. #define MPU_PROTENSET0_PROTREG8_Set BPROT_CONFIG0_REGION8_Enabled
  1064. #endif
  1065. #ifndef MPU_PROTENSET0_PROTREG7_Pos
  1066. #define MPU_PROTENSET0_PROTREG7_Pos BPROT_CONFIG0_REGION7_Pos
  1067. #endif
  1068. #ifndef MPU_PROTENSET0_PROTREG7_Msk
  1069. #define MPU_PROTENSET0_PROTREG7_Msk BPROT_CONFIG0_REGION7_Msk
  1070. #endif
  1071. #ifndef MPU_PROTENSET0_PROTREG7_Disabled
  1072. #define MPU_PROTENSET0_PROTREG7_Disabled BPROT_CONFIG0_REGION7_Disabled
  1073. #endif
  1074. #ifndef MPU_PROTENSET0_PROTREG7_Enabled
  1075. #define MPU_PROTENSET0_PROTREG7_Enabled BPROT_CONFIG0_REGION7_Enabled
  1076. #endif
  1077. #ifndef MPU_PROTENSET0_PROTREG7_Set
  1078. #define MPU_PROTENSET0_PROTREG7_Set BPROT_CONFIG0_REGION7_Enabled
  1079. #endif
  1080. #ifndef MPU_PROTENSET0_PROTREG6_Pos
  1081. #define MPU_PROTENSET0_PROTREG6_Pos BPROT_CONFIG0_REGION6_Pos
  1082. #endif
  1083. #ifndef MPU_PROTENSET0_PROTREG6_Msk
  1084. #define MPU_PROTENSET0_PROTREG6_Msk BPROT_CONFIG0_REGION6_Msk
  1085. #endif
  1086. #ifndef MPU_PROTENSET0_PROTREG6_Disabled
  1087. #define MPU_PROTENSET0_PROTREG6_Disabled BPROT_CONFIG0_REGION6_Disabled
  1088. #endif
  1089. #ifndef MPU_PROTENSET0_PROTREG6_Enabled
  1090. #define MPU_PROTENSET0_PROTREG6_Enabled BPROT_CONFIG0_REGION6_Enabled
  1091. #endif
  1092. #ifndef MPU_PROTENSET0_PROTREG6_Set
  1093. #define MPU_PROTENSET0_PROTREG6_Set BPROT_CONFIG0_REGION6_Enabled
  1094. #endif
  1095. #ifndef MPU_PROTENSET0_PROTREG5_Pos
  1096. #define MPU_PROTENSET0_PROTREG5_Pos BPROT_CONFIG0_REGION5_Pos
  1097. #endif
  1098. #ifndef MPU_PROTENSET0_PROTREG5_Msk
  1099. #define MPU_PROTENSET0_PROTREG5_Msk BPROT_CONFIG0_REGION5_Msk
  1100. #endif
  1101. #ifndef MPU_PROTENSET0_PROTREG5_Disabled
  1102. #define MPU_PROTENSET0_PROTREG5_Disabled BPROT_CONFIG0_REGION5_Disabled
  1103. #endif
  1104. #ifndef MPU_PROTENSET0_PROTREG5_Enabled
  1105. #define MPU_PROTENSET0_PROTREG5_Enabled BPROT_CONFIG0_REGION5_Enabled
  1106. #endif
  1107. #ifndef MPU_PROTENSET0_PROTREG5_Set
  1108. #define MPU_PROTENSET0_PROTREG5_Set BPROT_CONFIG0_REGION5_Enabled
  1109. #endif
  1110. #ifndef MPU_PROTENSET0_PROTREG4_Pos
  1111. #define MPU_PROTENSET0_PROTREG4_Pos BPROT_CONFIG0_REGION4_Pos
  1112. #endif
  1113. #ifndef MPU_PROTENSET0_PROTREG4_Msk
  1114. #define MPU_PROTENSET0_PROTREG4_Msk BPROT_CONFIG0_REGION4_Msk
  1115. #endif
  1116. #ifndef MPU_PROTENSET0_PROTREG4_Disabled
  1117. #define MPU_PROTENSET0_PROTREG4_Disabled BPROT_CONFIG0_REGION4_Disabled
  1118. #endif
  1119. #ifndef MPU_PROTENSET0_PROTREG4_Enabled
  1120. #define MPU_PROTENSET0_PROTREG4_Enabled BPROT_CONFIG0_REGION4_Enabled
  1121. #endif
  1122. #ifndef MPU_PROTENSET0_PROTREG4_Set
  1123. #define MPU_PROTENSET0_PROTREG4_Set BPROT_CONFIG0_REGION4_Enabled
  1124. #endif
  1125. #ifndef MPU_PROTENSET0_PROTREG3_Pos
  1126. #define MPU_PROTENSET0_PROTREG3_Pos BPROT_CONFIG0_REGION3_Pos
  1127. #endif
  1128. #ifndef MPU_PROTENSET0_PROTREG3_Msk
  1129. #define MPU_PROTENSET0_PROTREG3_Msk BPROT_CONFIG0_REGION3_Msk
  1130. #endif
  1131. #ifndef MPU_PROTENSET0_PROTREG3_Disabled
  1132. #define MPU_PROTENSET0_PROTREG3_Disabled BPROT_CONFIG0_REGION3_Disabled
  1133. #endif
  1134. #ifndef MPU_PROTENSET0_PROTREG3_Enabled
  1135. #define MPU_PROTENSET0_PROTREG3_Enabled BPROT_CONFIG0_REGION3_Enabled
  1136. #endif
  1137. #ifndef MPU_PROTENSET0_PROTREG3_Set
  1138. #define MPU_PROTENSET0_PROTREG3_Set BPROT_CONFIG0_REGION3_Enabled
  1139. #endif
  1140. #ifndef MPU_PROTENSET0_PROTREG2_Pos
  1141. #define MPU_PROTENSET0_PROTREG2_Pos BPROT_CONFIG0_REGION2_Pos
  1142. #endif
  1143. #ifndef MPU_PROTENSET0_PROTREG2_Msk
  1144. #define MPU_PROTENSET0_PROTREG2_Msk BPROT_CONFIG0_REGION2_Msk
  1145. #endif
  1146. #ifndef MPU_PROTENSET0_PROTREG2_Disabled
  1147. #define MPU_PROTENSET0_PROTREG2_Disabled BPROT_CONFIG0_REGION2_Disabled
  1148. #endif
  1149. #ifndef MPU_PROTENSET0_PROTREG2_Enabled
  1150. #define MPU_PROTENSET0_PROTREG2_Enabled BPROT_CONFIG0_REGION2_Enabled
  1151. #endif
  1152. #ifndef MPU_PROTENSET0_PROTREG2_Set
  1153. #define MPU_PROTENSET0_PROTREG2_Set BPROT_CONFIG0_REGION2_Enabled
  1154. #endif
  1155. #ifndef MPU_PROTENSET0_PROTREG1_Pos
  1156. #define MPU_PROTENSET0_PROTREG1_Pos BPROT_CONFIG0_REGION1_Pos
  1157. #endif
  1158. #ifndef MPU_PROTENSET0_PROTREG1_Msk
  1159. #define MPU_PROTENSET0_PROTREG1_Msk BPROT_CONFIG0_REGION1_Msk
  1160. #endif
  1161. #ifndef MPU_PROTENSET0_PROTREG1_Disabled
  1162. #define MPU_PROTENSET0_PROTREG1_Disabled BPROT_CONFIG0_REGION1_Disabled
  1163. #endif
  1164. #ifndef MPU_PROTENSET0_PROTREG1_Enabled
  1165. #define MPU_PROTENSET0_PROTREG1_Enabled BPROT_CONFIG0_REGION1_Enabled
  1166. #endif
  1167. #ifndef MPU_PROTENSET0_PROTREG1_Set
  1168. #define MPU_PROTENSET0_PROTREG1_Set BPROT_CONFIG0_REGION1_Enabled
  1169. #endif
  1170. #ifndef MPU_PROTENSET0_PROTREG0_Pos
  1171. #define MPU_PROTENSET0_PROTREG0_Pos BPROT_CONFIG0_REGION0_Pos
  1172. #endif
  1173. #ifndef MPU_PROTENSET0_PROTREG0_Msk
  1174. #define MPU_PROTENSET0_PROTREG0_Msk BPROT_CONFIG0_REGION0_Msk
  1175. #endif
  1176. #ifndef MPU_PROTENSET0_PROTREG0_Disabled
  1177. #define MPU_PROTENSET0_PROTREG0_Disabled BPROT_CONFIG0_REGION0_Disabled
  1178. #endif
  1179. #ifndef MPU_PROTENSET0_PROTREG0_Enabled
  1180. #define MPU_PROTENSET0_PROTREG0_Enabled BPROT_CONFIG0_REGION0_Enabled
  1181. #endif
  1182. #ifndef MPU_PROTENSET0_PROTREG0_Set
  1183. #define MPU_PROTENSET0_PROTREG0_Set BPROT_CONFIG0_REGION0_Enabled
  1184. #endif
  1185. /* From nrf51_deprecated.h */
  1186. /* NVMC */
  1187. /* The register ERASEPROTECTEDPAGE changed name to ERASEPCR0 in the documentation. */
  1188. #ifndef ERASEPROTECTEDPAGE
  1189. #define ERASEPROTECTEDPAGE ERASEPCR0
  1190. #endif
  1191. /* IRQ */
  1192. /* COMP module was eliminated. Adapted to nrf52 headers. */
  1193. #ifndef LPCOMP_COMP_IRQHandler
  1194. #define LPCOMP_COMP_IRQHandler COMP_LPCOMP_IRQHandler
  1195. #endif
  1196. #ifndef LPCOMP_COMP_IRQn
  1197. #define LPCOMP_COMP_IRQn COMP_LPCOMP_IRQn
  1198. #endif
  1199. /* REFSEL register redefined enumerated values and added some more. */
  1200. #ifndef LPCOMP_REFSEL_REFSEL_SupplyOneEighthPrescaling
  1201. #define LPCOMP_REFSEL_REFSEL_SupplyOneEighthPrescaling LPCOMP_REFSEL_REFSEL_Ref1_8Vdd
  1202. #endif
  1203. #ifndef LPCOMP_REFSEL_REFSEL_SupplyTwoEighthsPrescaling
  1204. #define LPCOMP_REFSEL_REFSEL_SupplyTwoEighthsPrescaling LPCOMP_REFSEL_REFSEL_Ref2_8Vdd
  1205. #endif
  1206. #ifndef LPCOMP_REFSEL_REFSEL_SupplyThreeEighthsPrescaling
  1207. #define LPCOMP_REFSEL_REFSEL_SupplyThreeEighthsPrescaling LPCOMP_REFSEL_REFSEL_Ref3_8Vdd
  1208. #endif
  1209. #ifndef LPCOMP_REFSEL_REFSEL_SupplyFourEighthsPrescaling
  1210. #define LPCOMP_REFSEL_REFSEL_SupplyFourEighthsPrescaling LPCOMP_REFSEL_REFSEL_Ref4_8Vdd
  1211. #endif
  1212. #ifndef LPCOMP_REFSEL_REFSEL_SupplyFiveEighthsPrescaling
  1213. #define LPCOMP_REFSEL_REFSEL_SupplyFiveEighthsPrescaling LPCOMP_REFSEL_REFSEL_Ref5_8Vdd
  1214. #endif
  1215. #ifndef LPCOMP_REFSEL_REFSEL_SupplySixEighthsPrescaling
  1216. #define LPCOMP_REFSEL_REFSEL_SupplySixEighthsPrescaling LPCOMP_REFSEL_REFSEL_Ref6_8Vdd
  1217. #endif
  1218. #ifndef LPCOMP_REFSEL_REFSEL_SupplySevenEighthsPrescaling
  1219. #define LPCOMP_REFSEL_REFSEL_SupplySevenEighthsPrescaling LPCOMP_REFSEL_REFSEL_Ref7_8Vdd
  1220. #endif
  1221. /* RADIO */
  1222. /* The name of the field SKIPADDR was corrected. Old macros added for compatibility. */
  1223. #ifndef RADIO_CRCCNF_SKIP_ADDR_Pos
  1224. #define RADIO_CRCCNF_SKIP_ADDR_Pos RADIO_CRCCNF_SKIPADDR_Pos
  1225. #endif
  1226. #ifndef RADIO_CRCCNF_SKIP_ADDR_Msk
  1227. #define RADIO_CRCCNF_SKIP_ADDR_Msk RADIO_CRCCNF_SKIPADDR_Msk
  1228. #endif
  1229. #ifndef RADIO_CRCCNF_SKIP_ADDR_Include
  1230. #define RADIO_CRCCNF_SKIP_ADDR_Include RADIO_CRCCNF_SKIPADDR_Include
  1231. #endif
  1232. #ifndef RADIO_CRCCNF_SKIP_ADDR_Skip
  1233. #define RADIO_CRCCNF_SKIP_ADDR_Skip RADIO_CRCCNF_SKIPADDR_Skip
  1234. #endif
  1235. /* FICR */
  1236. /* The registers FICR.DEVICEID0 and FICR.DEVICEID1 were renamed into an array. */
  1237. #ifndef DEVICEID0
  1238. #define DEVICEID0 DEVICEID[0]
  1239. #endif
  1240. #ifndef DEVICEID1
  1241. #define DEVICEID1 DEVICEID[1]
  1242. #endif
  1243. /* The registers FICR.ER0, FICR.ER1, FICR.ER2 and FICR.ER3 were renamed into an array. */
  1244. #ifndef ER0
  1245. #define ER0 ER[0]
  1246. #endif
  1247. #ifndef ER1
  1248. #define ER1 ER[1]
  1249. #endif
  1250. #ifndef ER2
  1251. #define ER2 ER[2]
  1252. #endif
  1253. #ifndef ER3
  1254. #define ER3 ER[3]
  1255. #endif
  1256. /* The registers FICR.IR0, FICR.IR1, FICR.IR2 and FICR.IR3 were renamed into an array. */
  1257. #ifndef IR0
  1258. #define IR0 IR[0]
  1259. #endif
  1260. #ifndef IR1
  1261. #define IR1 IR[1]
  1262. #endif
  1263. #ifndef IR2
  1264. #define IR2 IR[2]
  1265. #endif
  1266. #ifndef IR3
  1267. #define IR3 IR[3]
  1268. #endif
  1269. /* The registers FICR.DEVICEADDR0 and FICR.DEVICEADDR1 were renamed into an array. */
  1270. #ifndef DEVICEADDR0
  1271. #define DEVICEADDR0 DEVICEADDR[0]
  1272. #endif
  1273. #ifndef DEVICEADDR1
  1274. #define DEVICEADDR1 DEVICEADDR[1]
  1275. #endif
  1276. /* PPI */
  1277. /* The tasks PPI.TASKS_CHGxEN and PPI.TASKS_CHGxDIS were renamed into an array of structs. */
  1278. #ifndef TASKS_CHG0EN
  1279. #define TASKS_CHG0EN TASKS_CHG[0].EN
  1280. #endif
  1281. #ifndef TASKS_CHG0DIS
  1282. #define TASKS_CHG0DIS TASKS_CHG[0].DIS
  1283. #endif
  1284. #ifndef TASKS_CHG1EN
  1285. #define TASKS_CHG1EN TASKS_CHG[1].EN
  1286. #endif
  1287. #ifndef TASKS_CHG1DIS
  1288. #define TASKS_CHG1DIS TASKS_CHG[1].DIS
  1289. #endif
  1290. #ifndef TASKS_CHG2EN
  1291. #define TASKS_CHG2EN TASKS_CHG[2].EN
  1292. #endif
  1293. #ifndef TASKS_CHG2DIS
  1294. #define TASKS_CHG2DIS TASKS_CHG[2].DIS
  1295. #endif
  1296. #ifndef TASKS_CHG3EN
  1297. #define TASKS_CHG3EN TASKS_CHG[3].EN
  1298. #endif
  1299. #ifndef TASKS_CHG3DIS
  1300. #define TASKS_CHG3DIS TASKS_CHG[3].DIS
  1301. #endif
  1302. /* The registers PPI.CHx_EEP and PPI.CHx_TEP were renamed into an array of structs. */
  1303. #ifndef CH0_EEP
  1304. #define CH0_EEP CH[0].EEP
  1305. #endif
  1306. #ifndef CH0_TEP
  1307. #define CH0_TEP CH[0].TEP
  1308. #endif
  1309. #ifndef CH1_EEP
  1310. #define CH1_EEP CH[1].EEP
  1311. #endif
  1312. #ifndef CH1_TEP
  1313. #define CH1_TEP CH[1].TEP
  1314. #endif
  1315. #ifndef CH2_EEP
  1316. #define CH2_EEP CH[2].EEP
  1317. #endif
  1318. #ifndef CH2_TEP
  1319. #define CH2_TEP CH[2].TEP
  1320. #endif
  1321. #ifndef CH3_EEP
  1322. #define CH3_EEP CH[3].EEP
  1323. #endif
  1324. #ifndef CH3_TEP
  1325. #define CH3_TEP CH[3].TEP
  1326. #endif
  1327. #ifndef CH4_EEP
  1328. #define CH4_EEP CH[4].EEP
  1329. #endif
  1330. #ifndef CH4_TEP
  1331. #define CH4_TEP CH[4].TEP
  1332. #endif
  1333. #ifndef CH5_EEP
  1334. #define CH5_EEP CH[5].EEP
  1335. #endif
  1336. #ifndef CH5_TEP
  1337. #define CH5_TEP CH[5].TEP
  1338. #endif
  1339. #ifndef CH6_EEP
  1340. #define CH6_EEP CH[6].EEP
  1341. #endif
  1342. #ifndef CH6_TEP
  1343. #define CH6_TEP CH[6].TEP
  1344. #endif
  1345. #ifndef CH7_EEP
  1346. #define CH7_EEP CH[7].EEP
  1347. #endif
  1348. #ifndef CH7_TEP
  1349. #define CH7_TEP CH[7].TEP
  1350. #endif
  1351. #ifndef CH8_EEP
  1352. #define CH8_EEP CH[8].EEP
  1353. #endif
  1354. #ifndef CH8_TEP
  1355. #define CH8_TEP CH[8].TEP
  1356. #endif
  1357. #ifndef CH9_EEP
  1358. #define CH9_EEP CH[9].EEP
  1359. #endif
  1360. #ifndef CH9_TEP
  1361. #define CH9_TEP CH[9].TEP
  1362. #endif
  1363. #ifndef CH10_EEP
  1364. #define CH10_EEP CH[10].EEP
  1365. #endif
  1366. #ifndef CH10_TEP
  1367. #define CH10_TEP CH[10].TEP
  1368. #endif
  1369. #ifndef CH11_EEP
  1370. #define CH11_EEP CH[11].EEP
  1371. #endif
  1372. #ifndef CH11_TEP
  1373. #define CH11_TEP CH[11].TEP
  1374. #endif
  1375. #ifndef CH12_EEP
  1376. #define CH12_EEP CH[12].EEP
  1377. #endif
  1378. #ifndef CH12_TEP
  1379. #define CH12_TEP CH[12].TEP
  1380. #endif
  1381. #ifndef CH13_EEP
  1382. #define CH13_EEP CH[13].EEP
  1383. #endif
  1384. #ifndef CH13_TEP
  1385. #define CH13_TEP CH[13].TEP
  1386. #endif
  1387. #ifndef CH14_EEP
  1388. #define CH14_EEP CH[14].EEP
  1389. #endif
  1390. #ifndef CH14_TEP
  1391. #define CH14_TEP CH[14].TEP
  1392. #endif
  1393. #ifndef CH15_EEP
  1394. #define CH15_EEP CH[15].EEP
  1395. #endif
  1396. #ifndef CH15_TEP
  1397. #define CH15_TEP CH[15].TEP
  1398. #endif
  1399. /* The registers PPI.CHG0, PPI.CHG1, PPI.CHG2 and PPI.CHG3 were renamed into an array. */
  1400. #ifndef CHG0
  1401. #define CHG0 CHG[0]
  1402. #endif
  1403. #ifndef CHG1
  1404. #define CHG1 CHG[1]
  1405. #endif
  1406. #ifndef CHG2
  1407. #define CHG2 CHG[2]
  1408. #endif
  1409. #ifndef CHG3
  1410. #define CHG3 CHG[3]
  1411. #endif
  1412. /* All bitfield macros for the CHGx registers therefore changed name. */
  1413. #ifndef PPI_CHG0_CH15_Pos
  1414. #define PPI_CHG0_CH15_Pos PPI_CHG_CH15_Pos
  1415. #endif
  1416. #ifndef PPI_CHG0_CH15_Msk
  1417. #define PPI_CHG0_CH15_Msk PPI_CHG_CH15_Msk
  1418. #endif
  1419. #ifndef PPI_CHG0_CH15_Excluded
  1420. #define PPI_CHG0_CH15_Excluded PPI_CHG_CH15_Excluded
  1421. #endif
  1422. #ifndef PPI_CHG0_CH15_Included
  1423. #define PPI_CHG0_CH15_Included PPI_CHG_CH15_Included
  1424. #endif
  1425. #ifndef PPI_CHG0_CH14_Pos
  1426. #define PPI_CHG0_CH14_Pos PPI_CHG_CH14_Pos
  1427. #endif
  1428. #ifndef PPI_CHG0_CH14_Msk
  1429. #define PPI_CHG0_CH14_Msk PPI_CHG_CH14_Msk
  1430. #endif
  1431. #ifndef PPI_CHG0_CH14_Excluded
  1432. #define PPI_CHG0_CH14_Excluded PPI_CHG_CH14_Excluded
  1433. #endif
  1434. #ifndef PPI_CHG0_CH14_Included
  1435. #define PPI_CHG0_CH14_Included PPI_CHG_CH14_Included
  1436. #endif
  1437. #ifndef PPI_CHG0_CH13_Pos
  1438. #define PPI_CHG0_CH13_Pos PPI_CHG_CH13_Pos
  1439. #endif
  1440. #ifndef PPI_CHG0_CH13_Msk
  1441. #define PPI_CHG0_CH13_Msk PPI_CHG_CH13_Msk
  1442. #endif
  1443. #ifndef PPI_CHG0_CH13_Excluded
  1444. #define PPI_CHG0_CH13_Excluded PPI_CHG_CH13_Excluded
  1445. #endif
  1446. #ifndef PPI_CHG0_CH13_Included
  1447. #define PPI_CHG0_CH13_Included PPI_CHG_CH13_Included
  1448. #endif
  1449. #ifndef PPI_CHG0_CH12_Pos
  1450. #define PPI_CHG0_CH12_Pos PPI_CHG_CH12_Pos
  1451. #endif
  1452. #ifndef PPI_CHG0_CH12_Msk
  1453. #define PPI_CHG0_CH12_Msk PPI_CHG_CH12_Msk
  1454. #endif
  1455. #ifndef PPI_CHG0_CH12_Excluded
  1456. #define PPI_CHG0_CH12_Excluded PPI_CHG_CH12_Excluded
  1457. #endif
  1458. #ifndef PPI_CHG0_CH12_Included
  1459. #define PPI_CHG0_CH12_Included PPI_CHG_CH12_Included
  1460. #endif
  1461. #ifndef PPI_CHG0_CH11_Pos
  1462. #define PPI_CHG0_CH11_Pos PPI_CHG_CH11_Pos
  1463. #endif
  1464. #ifndef PPI_CHG0_CH11_Msk
  1465. #define PPI_CHG0_CH11_Msk PPI_CHG_CH11_Msk
  1466. #endif
  1467. #ifndef PPI_CHG0_CH11_Excluded
  1468. #define PPI_CHG0_CH11_Excluded PPI_CHG_CH11_Excluded
  1469. #endif
  1470. #ifndef PPI_CHG0_CH11_Included
  1471. #define PPI_CHG0_CH11_Included PPI_CHG_CH11_Included
  1472. #endif
  1473. #ifndef PPI_CHG0_CH10_Pos
  1474. #define PPI_CHG0_CH10_Pos PPI_CHG_CH10_Pos
  1475. #endif
  1476. #ifndef PPI_CHG0_CH10_Msk
  1477. #define PPI_CHG0_CH10_Msk PPI_CHG_CH10_Msk
  1478. #endif
  1479. #ifndef PPI_CHG0_CH10_Excluded
  1480. #define PPI_CHG0_CH10_Excluded PPI_CHG_CH10_Excluded
  1481. #endif
  1482. #ifndef PPI_CHG0_CH10_Included
  1483. #define PPI_CHG0_CH10_Included PPI_CHG_CH10_Included
  1484. #endif
  1485. #ifndef PPI_CHG0_CH9_Pos
  1486. #define PPI_CHG0_CH9_Pos PPI_CHG_CH9_Pos
  1487. #endif
  1488. #ifndef PPI_CHG0_CH9_Msk
  1489. #define PPI_CHG0_CH9_Msk PPI_CHG_CH9_Msk
  1490. #endif
  1491. #ifndef PPI_CHG0_CH9_Excluded
  1492. #define PPI_CHG0_CH9_Excluded PPI_CHG_CH9_Excluded
  1493. #endif
  1494. #ifndef PPI_CHG0_CH9_Included
  1495. #define PPI_CHG0_CH9_Included PPI_CHG_CH9_Included
  1496. #endif
  1497. #ifndef PPI_CHG0_CH8_Pos
  1498. #define PPI_CHG0_CH8_Pos PPI_CHG_CH8_Pos
  1499. #endif
  1500. #ifndef PPI_CHG0_CH8_Msk
  1501. #define PPI_CHG0_CH8_Msk PPI_CHG_CH8_Msk
  1502. #endif
  1503. #ifndef PPI_CHG0_CH8_Excluded
  1504. #define PPI_CHG0_CH8_Excluded PPI_CHG_CH8_Excluded
  1505. #endif
  1506. #ifndef PPI_CHG0_CH8_Included
  1507. #define PPI_CHG0_CH8_Included PPI_CHG_CH8_Included
  1508. #endif
  1509. #ifndef PPI_CHG0_CH7_Pos
  1510. #define PPI_CHG0_CH7_Pos PPI_CHG_CH7_Pos
  1511. #endif
  1512. #ifndef PPI_CHG0_CH7_Msk
  1513. #define PPI_CHG0_CH7_Msk PPI_CHG_CH7_Msk
  1514. #endif
  1515. #ifndef PPI_CHG0_CH7_Excluded
  1516. #define PPI_CHG0_CH7_Excluded PPI_CHG_CH7_Excluded
  1517. #endif
  1518. #ifndef PPI_CHG0_CH7_Included
  1519. #define PPI_CHG0_CH7_Included PPI_CHG_CH7_Included
  1520. #endif
  1521. #ifndef PPI_CHG0_CH6_Pos
  1522. #define PPI_CHG0_CH6_Pos PPI_CHG_CH6_Pos
  1523. #endif
  1524. #ifndef PPI_CHG0_CH6_Msk
  1525. #define PPI_CHG0_CH6_Msk PPI_CHG_CH6_Msk
  1526. #endif
  1527. #ifndef PPI_CHG0_CH6_Excluded
  1528. #define PPI_CHG0_CH6_Excluded PPI_CHG_CH6_Excluded
  1529. #endif
  1530. #ifndef PPI_CHG0_CH6_Included
  1531. #define PPI_CHG0_CH6_Included PPI_CHG_CH6_Included
  1532. #endif
  1533. #ifndef PPI_CHG0_CH5_Pos
  1534. #define PPI_CHG0_CH5_Pos PPI_CHG_CH5_Pos
  1535. #endif
  1536. #ifndef PPI_CHG0_CH5_Msk
  1537. #define PPI_CHG0_CH5_Msk PPI_CHG_CH5_Msk
  1538. #endif
  1539. #ifndef PPI_CHG0_CH5_Excluded
  1540. #define PPI_CHG0_CH5_Excluded PPI_CHG_CH5_Excluded
  1541. #endif
  1542. #ifndef PPI_CHG0_CH5_Included
  1543. #define PPI_CHG0_CH5_Included PPI_CHG_CH5_Included
  1544. #endif
  1545. #ifndef PPI_CHG0_CH4_Pos
  1546. #define PPI_CHG0_CH4_Pos PPI_CHG_CH4_Pos
  1547. #endif
  1548. #ifndef PPI_CHG0_CH4_Msk
  1549. #define PPI_CHG0_CH4_Msk PPI_CHG_CH4_Msk
  1550. #endif
  1551. #ifndef PPI_CHG0_CH4_Excluded
  1552. #define PPI_CHG0_CH4_Excluded PPI_CHG_CH4_Excluded
  1553. #endif
  1554. #ifndef PPI_CHG0_CH4_Included
  1555. #define PPI_CHG0_CH4_Included PPI_CHG_CH4_Included
  1556. #endif
  1557. #ifndef PPI_CHG0_CH3_Pos
  1558. #define PPI_CHG0_CH3_Pos PPI_CHG_CH3_Pos
  1559. #endif
  1560. #ifndef PPI_CHG0_CH3_Msk
  1561. #define PPI_CHG0_CH3_Msk PPI_CHG_CH3_Msk
  1562. #endif
  1563. #ifndef PPI_CHG0_CH3_Excluded
  1564. #define PPI_CHG0_CH3_Excluded PPI_CHG_CH3_Excluded
  1565. #endif
  1566. #ifndef PPI_CHG0_CH3_Included
  1567. #define PPI_CHG0_CH3_Included PPI_CHG_CH3_Included
  1568. #endif
  1569. #ifndef PPI_CHG0_CH2_Pos
  1570. #define PPI_CHG0_CH2_Pos PPI_CHG_CH2_Pos
  1571. #endif
  1572. #ifndef PPI_CHG0_CH2_Msk
  1573. #define PPI_CHG0_CH2_Msk PPI_CHG_CH2_Msk
  1574. #endif
  1575. #ifndef PPI_CHG0_CH2_Excluded
  1576. #define PPI_CHG0_CH2_Excluded PPI_CHG_CH2_Excluded
  1577. #endif
  1578. #ifndef PPI_CHG0_CH2_Included
  1579. #define PPI_CHG0_CH2_Included PPI_CHG_CH2_Included
  1580. #endif
  1581. #ifndef PPI_CHG0_CH1_Pos
  1582. #define PPI_CHG0_CH1_Pos PPI_CHG_CH1_Pos
  1583. #endif
  1584. #ifndef PPI_CHG0_CH1_Msk
  1585. #define PPI_CHG0_CH1_Msk PPI_CHG_CH1_Msk
  1586. #endif
  1587. #ifndef PPI_CHG0_CH1_Excluded
  1588. #define PPI_CHG0_CH1_Excluded PPI_CHG_CH1_Excluded
  1589. #endif
  1590. #ifndef PPI_CHG0_CH1_Included
  1591. #define PPI_CHG0_CH1_Included PPI_CHG_CH1_Included
  1592. #endif
  1593. #ifndef PPI_CHG0_CH0_Pos
  1594. #define PPI_CHG0_CH0_Pos PPI_CHG_CH0_Pos
  1595. #endif
  1596. #ifndef PPI_CHG0_CH0_Msk
  1597. #define PPI_CHG0_CH0_Msk PPI_CHG_CH0_Msk
  1598. #endif
  1599. #ifndef PPI_CHG0_CH0_Excluded
  1600. #define PPI_CHG0_CH0_Excluded PPI_CHG_CH0_Excluded
  1601. #endif
  1602. #ifndef PPI_CHG0_CH0_Included
  1603. #define PPI_CHG0_CH0_Included PPI_CHG_CH0_Included
  1604. #endif
  1605. #ifndef PPI_CHG1_CH15_Pos
  1606. #define PPI_CHG1_CH15_Pos PPI_CHG_CH15_Pos
  1607. #endif
  1608. #ifndef PPI_CHG1_CH15_Msk
  1609. #define PPI_CHG1_CH15_Msk PPI_CHG_CH15_Msk
  1610. #endif
  1611. #ifndef PPI_CHG1_CH15_Excluded
  1612. #define PPI_CHG1_CH15_Excluded PPI_CHG_CH15_Excluded
  1613. #endif
  1614. #ifndef PPI_CHG1_CH15_Included
  1615. #define PPI_CHG1_CH15_Included PPI_CHG_CH15_Included
  1616. #endif
  1617. #ifndef PPI_CHG1_CH14_Pos
  1618. #define PPI_CHG1_CH14_Pos PPI_CHG_CH14_Pos
  1619. #endif
  1620. #ifndef PPI_CHG1_CH14_Msk
  1621. #define PPI_CHG1_CH14_Msk PPI_CHG_CH14_Msk
  1622. #endif
  1623. #ifndef PPI_CHG1_CH14_Excluded
  1624. #define PPI_CHG1_CH14_Excluded PPI_CHG_CH14_Excluded
  1625. #endif
  1626. #ifndef PPI_CHG1_CH14_Included
  1627. #define PPI_CHG1_CH14_Included PPI_CHG_CH14_Included
  1628. #endif
  1629. #ifndef PPI_CHG1_CH13_Pos
  1630. #define PPI_CHG1_CH13_Pos PPI_CHG_CH13_Pos
  1631. #endif
  1632. #ifndef PPI_CHG1_CH13_Msk
  1633. #define PPI_CHG1_CH13_Msk PPI_CHG_CH13_Msk
  1634. #endif
  1635. #ifndef PPI_CHG1_CH13_Excluded
  1636. #define PPI_CHG1_CH13_Excluded PPI_CHG_CH13_Excluded
  1637. #endif
  1638. #ifndef PPI_CHG1_CH13_Included
  1639. #define PPI_CHG1_CH13_Included PPI_CHG_CH13_Included
  1640. #endif
  1641. #ifndef PPI_CHG1_CH12_Pos
  1642. #define PPI_CHG1_CH12_Pos PPI_CHG_CH12_Pos
  1643. #endif
  1644. #ifndef PPI_CHG1_CH12_Msk
  1645. #define PPI_CHG1_CH12_Msk PPI_CHG_CH12_Msk
  1646. #endif
  1647. #ifndef PPI_CHG1_CH12_Excluded
  1648. #define PPI_CHG1_CH12_Excluded PPI_CHG_CH12_Excluded
  1649. #endif
  1650. #ifndef PPI_CHG1_CH12_Included
  1651. #define PPI_CHG1_CH12_Included PPI_CHG_CH12_Included
  1652. #endif
  1653. #ifndef PPI_CHG1_CH11_Pos
  1654. #define PPI_CHG1_CH11_Pos PPI_CHG_CH11_Pos
  1655. #endif
  1656. #ifndef PPI_CHG1_CH11_Msk
  1657. #define PPI_CHG1_CH11_Msk PPI_CHG_CH11_Msk
  1658. #endif
  1659. #ifndef PPI_CHG1_CH11_Excluded
  1660. #define PPI_CHG1_CH11_Excluded PPI_CHG_CH11_Excluded
  1661. #endif
  1662. #ifndef PPI_CHG1_CH11_Included
  1663. #define PPI_CHG1_CH11_Included PPI_CHG_CH11_Included
  1664. #endif
  1665. #ifndef PPI_CHG1_CH10_Pos
  1666. #define PPI_CHG1_CH10_Pos PPI_CHG_CH10_Pos
  1667. #endif
  1668. #ifndef PPI_CHG1_CH10_Msk
  1669. #define PPI_CHG1_CH10_Msk PPI_CHG_CH10_Msk
  1670. #endif
  1671. #ifndef PPI_CHG1_CH10_Excluded
  1672. #define PPI_CHG1_CH10_Excluded PPI_CHG_CH10_Excluded
  1673. #endif
  1674. #ifndef PPI_CHG1_CH10_Included
  1675. #define PPI_CHG1_CH10_Included PPI_CHG_CH10_Included
  1676. #endif
  1677. #ifndef PPI_CHG1_CH9_Pos
  1678. #define PPI_CHG1_CH9_Pos PPI_CHG_CH9_Pos
  1679. #endif
  1680. #ifndef PPI_CHG1_CH9_Msk
  1681. #define PPI_CHG1_CH9_Msk PPI_CHG_CH9_Msk
  1682. #endif
  1683. #ifndef PPI_CHG1_CH9_Excluded
  1684. #define PPI_CHG1_CH9_Excluded PPI_CHG_CH9_Excluded
  1685. #endif
  1686. #ifndef PPI_CHG1_CH9_Included
  1687. #define PPI_CHG1_CH9_Included PPI_CHG_CH9_Included
  1688. #endif
  1689. #ifndef PPI_CHG1_CH8_Pos
  1690. #define PPI_CHG1_CH8_Pos PPI_CHG_CH8_Pos
  1691. #endif
  1692. #ifndef PPI_CHG1_CH8_Msk
  1693. #define PPI_CHG1_CH8_Msk PPI_CHG_CH8_Msk
  1694. #endif
  1695. #ifndef PPI_CHG1_CH8_Excluded
  1696. #define PPI_CHG1_CH8_Excluded PPI_CHG_CH8_Excluded
  1697. #endif
  1698. #ifndef PPI_CHG1_CH8_Included
  1699. #define PPI_CHG1_CH8_Included PPI_CHG_CH8_Included
  1700. #endif
  1701. #ifndef PPI_CHG1_CH7_Pos
  1702. #define PPI_CHG1_CH7_Pos PPI_CHG_CH7_Pos
  1703. #endif
  1704. #ifndef PPI_CHG1_CH7_Msk
  1705. #define PPI_CHG1_CH7_Msk PPI_CHG_CH7_Msk
  1706. #endif
  1707. #ifndef PPI_CHG1_CH7_Excluded
  1708. #define PPI_CHG1_CH7_Excluded PPI_CHG_CH7_Excluded
  1709. #endif
  1710. #ifndef PPI_CHG1_CH7_Included
  1711. #define PPI_CHG1_CH7_Included PPI_CHG_CH7_Included
  1712. #endif
  1713. #ifndef PPI_CHG1_CH6_Pos
  1714. #define PPI_CHG1_CH6_Pos PPI_CHG_CH6_Pos
  1715. #endif
  1716. #ifndef PPI_CHG1_CH6_Msk
  1717. #define PPI_CHG1_CH6_Msk PPI_CHG_CH6_Msk
  1718. #endif
  1719. #ifndef PPI_CHG1_CH6_Excluded
  1720. #define PPI_CHG1_CH6_Excluded PPI_CHG_CH6_Excluded
  1721. #endif
  1722. #ifndef PPI_CHG1_CH6_Included
  1723. #define PPI_CHG1_CH6_Included PPI_CHG_CH6_Included
  1724. #endif
  1725. #ifndef PPI_CHG1_CH5_Pos
  1726. #define PPI_CHG1_CH5_Pos PPI_CHG_CH5_Pos
  1727. #endif
  1728. #ifndef PPI_CHG1_CH5_Msk
  1729. #define PPI_CHG1_CH5_Msk PPI_CHG_CH5_Msk
  1730. #endif
  1731. #ifndef PPI_CHG1_CH5_Excluded
  1732. #define PPI_CHG1_CH5_Excluded PPI_CHG_CH5_Excluded
  1733. #endif
  1734. #ifndef PPI_CHG1_CH5_Included
  1735. #define PPI_CHG1_CH5_Included PPI_CHG_CH5_Included
  1736. #endif
  1737. #ifndef PPI_CHG1_CH4_Pos
  1738. #define PPI_CHG1_CH4_Pos PPI_CHG_CH4_Pos
  1739. #endif
  1740. #ifndef PPI_CHG1_CH4_Msk
  1741. #define PPI_CHG1_CH4_Msk PPI_CHG_CH4_Msk
  1742. #endif
  1743. #ifndef PPI_CHG1_CH4_Excluded
  1744. #define PPI_CHG1_CH4_Excluded PPI_CHG_CH4_Excluded
  1745. #endif
  1746. #ifndef PPI_CHG1_CH4_Included
  1747. #define PPI_CHG1_CH4_Included PPI_CHG_CH4_Included
  1748. #endif
  1749. #ifndef PPI_CHG1_CH3_Pos
  1750. #define PPI_CHG1_CH3_Pos PPI_CHG_CH3_Pos
  1751. #endif
  1752. #ifndef PPI_CHG1_CH3_Msk
  1753. #define PPI_CHG1_CH3_Msk PPI_CHG_CH3_Msk
  1754. #endif
  1755. #ifndef PPI_CHG1_CH3_Excluded
  1756. #define PPI_CHG1_CH3_Excluded PPI_CHG_CH3_Excluded
  1757. #endif
  1758. #ifndef PPI_CHG1_CH3_Included
  1759. #define PPI_CHG1_CH3_Included PPI_CHG_CH3_Included
  1760. #endif
  1761. #ifndef PPI_CHG1_CH2_Pos
  1762. #define PPI_CHG1_CH2_Pos PPI_CHG_CH2_Pos
  1763. #endif
  1764. #ifndef PPI_CHG1_CH2_Msk
  1765. #define PPI_CHG1_CH2_Msk PPI_CHG_CH2_Msk
  1766. #endif
  1767. #ifndef PPI_CHG1_CH2_Excluded
  1768. #define PPI_CHG1_CH2_Excluded PPI_CHG_CH2_Excluded
  1769. #endif
  1770. #ifndef PPI_CHG1_CH2_Included
  1771. #define PPI_CHG1_CH2_Included PPI_CHG_CH2_Included
  1772. #endif
  1773. #ifndef PPI_CHG1_CH1_Pos
  1774. #define PPI_CHG1_CH1_Pos PPI_CHG_CH1_Pos
  1775. #endif
  1776. #ifndef PPI_CHG1_CH1_Msk
  1777. #define PPI_CHG1_CH1_Msk PPI_CHG_CH1_Msk
  1778. #endif
  1779. #ifndef PPI_CHG1_CH1_Excluded
  1780. #define PPI_CHG1_CH1_Excluded PPI_CHG_CH1_Excluded
  1781. #endif
  1782. #ifndef PPI_CHG1_CH1_Included
  1783. #define PPI_CHG1_CH1_Included PPI_CHG_CH1_Included
  1784. #endif
  1785. #ifndef PPI_CHG1_CH0_Pos
  1786. #define PPI_CHG1_CH0_Pos PPI_CHG_CH0_Pos
  1787. #endif
  1788. #ifndef PPI_CHG1_CH0_Msk
  1789. #define PPI_CHG1_CH0_Msk PPI_CHG_CH0_Msk
  1790. #endif
  1791. #ifndef PPI_CHG1_CH0_Excluded
  1792. #define PPI_CHG1_CH0_Excluded PPI_CHG_CH0_Excluded
  1793. #endif
  1794. #ifndef PPI_CHG1_CH0_Included
  1795. #define PPI_CHG1_CH0_Included PPI_CHG_CH0_Included
  1796. #endif
  1797. #ifndef PPI_CHG2_CH15_Pos
  1798. #define PPI_CHG2_CH15_Pos PPI_CHG_CH15_Pos
  1799. #endif
  1800. #ifndef PPI_CHG2_CH15_Msk
  1801. #define PPI_CHG2_CH15_Msk PPI_CHG_CH15_Msk
  1802. #endif
  1803. #ifndef PPI_CHG2_CH15_Excluded
  1804. #define PPI_CHG2_CH15_Excluded PPI_CHG_CH15_Excluded
  1805. #endif
  1806. #ifndef PPI_CHG2_CH15_Included
  1807. #define PPI_CHG2_CH15_Included PPI_CHG_CH15_Included
  1808. #endif
  1809. #ifndef PPI_CHG2_CH14_Pos
  1810. #define PPI_CHG2_CH14_Pos PPI_CHG_CH14_Pos
  1811. #endif
  1812. #ifndef PPI_CHG2_CH14_Msk
  1813. #define PPI_CHG2_CH14_Msk PPI_CHG_CH14_Msk
  1814. #endif
  1815. #ifndef PPI_CHG2_CH14_Excluded
  1816. #define PPI_CHG2_CH14_Excluded PPI_CHG_CH14_Excluded
  1817. #endif
  1818. #ifndef PPI_CHG2_CH14_Included
  1819. #define PPI_CHG2_CH14_Included PPI_CHG_CH14_Included
  1820. #endif
  1821. #ifndef PPI_CHG2_CH13_Pos
  1822. #define PPI_CHG2_CH13_Pos PPI_CHG_CH13_Pos
  1823. #endif
  1824. #ifndef PPI_CHG2_CH13_Msk
  1825. #define PPI_CHG2_CH13_Msk PPI_CHG_CH13_Msk
  1826. #endif
  1827. #ifndef PPI_CHG2_CH13_Excluded
  1828. #define PPI_CHG2_CH13_Excluded PPI_CHG_CH13_Excluded
  1829. #endif
  1830. #ifndef PPI_CHG2_CH13_Included
  1831. #define PPI_CHG2_CH13_Included PPI_CHG_CH13_Included
  1832. #endif
  1833. #ifndef PPI_CHG2_CH12_Pos
  1834. #define PPI_CHG2_CH12_Pos PPI_CHG_CH12_Pos
  1835. #endif
  1836. #ifndef PPI_CHG2_CH12_Msk
  1837. #define PPI_CHG2_CH12_Msk PPI_CHG_CH12_Msk
  1838. #endif
  1839. #ifndef PPI_CHG2_CH12_Excluded
  1840. #define PPI_CHG2_CH12_Excluded PPI_CHG_CH12_Excluded
  1841. #endif
  1842. #ifndef PPI_CHG2_CH12_Included
  1843. #define PPI_CHG2_CH12_Included PPI_CHG_CH12_Included
  1844. #endif
  1845. #ifndef PPI_CHG2_CH11_Pos
  1846. #define PPI_CHG2_CH11_Pos PPI_CHG_CH11_Pos
  1847. #endif
  1848. #ifndef PPI_CHG2_CH11_Msk
  1849. #define PPI_CHG2_CH11_Msk PPI_CHG_CH11_Msk
  1850. #endif
  1851. #ifndef PPI_CHG2_CH11_Excluded
  1852. #define PPI_CHG2_CH11_Excluded PPI_CHG_CH11_Excluded
  1853. #endif
  1854. #ifndef PPI_CHG2_CH11_Included
  1855. #define PPI_CHG2_CH11_Included PPI_CHG_CH11_Included
  1856. #endif
  1857. #ifndef PPI_CHG2_CH10_Pos
  1858. #define PPI_CHG2_CH10_Pos PPI_CHG_CH10_Pos
  1859. #endif
  1860. #ifndef PPI_CHG2_CH10_Msk
  1861. #define PPI_CHG2_CH10_Msk PPI_CHG_CH10_Msk
  1862. #endif
  1863. #ifndef PPI_CHG2_CH10_Excluded
  1864. #define PPI_CHG2_CH10_Excluded PPI_CHG_CH10_Excluded
  1865. #endif
  1866. #ifndef PPI_CHG2_CH10_Included
  1867. #define PPI_CHG2_CH10_Included PPI_CHG_CH10_Included
  1868. #endif
  1869. #ifndef PPI_CHG2_CH9_Pos
  1870. #define PPI_CHG2_CH9_Pos PPI_CHG_CH9_Pos
  1871. #endif
  1872. #ifndef PPI_CHG2_CH9_Msk
  1873. #define PPI_CHG2_CH9_Msk PPI_CHG_CH9_Msk
  1874. #endif
  1875. #ifndef PPI_CHG2_CH9_Excluded
  1876. #define PPI_CHG2_CH9_Excluded PPI_CHG_CH9_Excluded
  1877. #endif
  1878. #ifndef PPI_CHG2_CH9_Included
  1879. #define PPI_CHG2_CH9_Included PPI_CHG_CH9_Included
  1880. #endif
  1881. #ifndef PPI_CHG2_CH8_Pos
  1882. #define PPI_CHG2_CH8_Pos PPI_CHG_CH8_Pos
  1883. #endif
  1884. #ifndef PPI_CHG2_CH8_Msk
  1885. #define PPI_CHG2_CH8_Msk PPI_CHG_CH8_Msk
  1886. #endif
  1887. #ifndef PPI_CHG2_CH8_Excluded
  1888. #define PPI_CHG2_CH8_Excluded PPI_CHG_CH8_Excluded
  1889. #endif
  1890. #ifndef PPI_CHG2_CH8_Included
  1891. #define PPI_CHG2_CH8_Included PPI_CHG_CH8_Included
  1892. #endif
  1893. #ifndef PPI_CHG2_CH7_Pos
  1894. #define PPI_CHG2_CH7_Pos PPI_CHG_CH7_Pos
  1895. #endif
  1896. #ifndef PPI_CHG2_CH7_Msk
  1897. #define PPI_CHG2_CH7_Msk PPI_CHG_CH7_Msk
  1898. #endif
  1899. #ifndef PPI_CHG2_CH7_Excluded
  1900. #define PPI_CHG2_CH7_Excluded PPI_CHG_CH7_Excluded
  1901. #endif
  1902. #ifndef PPI_CHG2_CH7_Included
  1903. #define PPI_CHG2_CH7_Included PPI_CHG_CH7_Included
  1904. #endif
  1905. #ifndef PPI_CHG2_CH6_Pos
  1906. #define PPI_CHG2_CH6_Pos PPI_CHG_CH6_Pos
  1907. #endif
  1908. #ifndef PPI_CHG2_CH6_Msk
  1909. #define PPI_CHG2_CH6_Msk PPI_CHG_CH6_Msk
  1910. #endif
  1911. #ifndef PPI_CHG2_CH6_Excluded
  1912. #define PPI_CHG2_CH6_Excluded PPI_CHG_CH6_Excluded
  1913. #endif
  1914. #ifndef PPI_CHG2_CH6_Included
  1915. #define PPI_CHG2_CH6_Included PPI_CHG_CH6_Included
  1916. #endif
  1917. #ifndef PPI_CHG2_CH5_Pos
  1918. #define PPI_CHG2_CH5_Pos PPI_CHG_CH5_Pos
  1919. #endif
  1920. #ifndef PPI_CHG2_CH5_Msk
  1921. #define PPI_CHG2_CH5_Msk PPI_CHG_CH5_Msk
  1922. #endif
  1923. #ifndef PPI_CHG2_CH5_Excluded
  1924. #define PPI_CHG2_CH5_Excluded PPI_CHG_CH5_Excluded
  1925. #endif
  1926. #ifndef PPI_CHG2_CH5_Included
  1927. #define PPI_CHG2_CH5_Included PPI_CHG_CH5_Included
  1928. #endif
  1929. #ifndef PPI_CHG2_CH4_Pos
  1930. #define PPI_CHG2_CH4_Pos PPI_CHG_CH4_Pos
  1931. #endif
  1932. #ifndef PPI_CHG2_CH4_Msk
  1933. #define PPI_CHG2_CH4_Msk PPI_CHG_CH4_Msk
  1934. #endif
  1935. #ifndef PPI_CHG2_CH4_Excluded
  1936. #define PPI_CHG2_CH4_Excluded PPI_CHG_CH4_Excluded
  1937. #endif
  1938. #ifndef PPI_CHG2_CH4_Included
  1939. #define PPI_CHG2_CH4_Included PPI_CHG_CH4_Included
  1940. #endif
  1941. #ifndef PPI_CHG2_CH3_Pos
  1942. #define PPI_CHG2_CH3_Pos PPI_CHG_CH3_Pos
  1943. #endif
  1944. #ifndef PPI_CHG2_CH3_Msk
  1945. #define PPI_CHG2_CH3_Msk PPI_CHG_CH3_Msk
  1946. #endif
  1947. #ifndef PPI_CHG2_CH3_Excluded
  1948. #define PPI_CHG2_CH3_Excluded PPI_CHG_CH3_Excluded
  1949. #endif
  1950. #ifndef PPI_CHG2_CH3_Included
  1951. #define PPI_CHG2_CH3_Included PPI_CHG_CH3_Included
  1952. #endif
  1953. #ifndef PPI_CHG2_CH2_Pos
  1954. #define PPI_CHG2_CH2_Pos PPI_CHG_CH2_Pos
  1955. #endif
  1956. #ifndef PPI_CHG2_CH2_Msk
  1957. #define PPI_CHG2_CH2_Msk PPI_CHG_CH2_Msk
  1958. #endif
  1959. #ifndef PPI_CHG2_CH2_Excluded
  1960. #define PPI_CHG2_CH2_Excluded PPI_CHG_CH2_Excluded
  1961. #endif
  1962. #ifndef PPI_CHG2_CH2_Included
  1963. #define PPI_CHG2_CH2_Included PPI_CHG_CH2_Included
  1964. #endif
  1965. #ifndef PPI_CHG2_CH1_Pos
  1966. #define PPI_CHG2_CH1_Pos PPI_CHG_CH1_Pos
  1967. #endif
  1968. #ifndef PPI_CHG2_CH1_Msk
  1969. #define PPI_CHG2_CH1_Msk PPI_CHG_CH1_Msk
  1970. #endif
  1971. #ifndef PPI_CHG2_CH1_Excluded
  1972. #define PPI_CHG2_CH1_Excluded PPI_CHG_CH1_Excluded
  1973. #endif
  1974. #ifndef PPI_CHG2_CH1_Included
  1975. #define PPI_CHG2_CH1_Included PPI_CHG_CH1_Included
  1976. #endif
  1977. #ifndef PPI_CHG2_CH0_Pos
  1978. #define PPI_CHG2_CH0_Pos PPI_CHG_CH0_Pos
  1979. #endif
  1980. #ifndef PPI_CHG2_CH0_Msk
  1981. #define PPI_CHG2_CH0_Msk PPI_CHG_CH0_Msk
  1982. #endif
  1983. #ifndef PPI_CHG2_CH0_Excluded
  1984. #define PPI_CHG2_CH0_Excluded PPI_CHG_CH0_Excluded
  1985. #endif
  1986. #ifndef PPI_CHG2_CH0_Included
  1987. #define PPI_CHG2_CH0_Included PPI_CHG_CH0_Included
  1988. #endif
  1989. #ifndef PPI_CHG3_CH15_Pos
  1990. #define PPI_CHG3_CH15_Pos PPI_CHG_CH15_Pos
  1991. #endif
  1992. #ifndef PPI_CHG3_CH15_Msk
  1993. #define PPI_CHG3_CH15_Msk PPI_CHG_CH15_Msk
  1994. #endif
  1995. #ifndef PPI_CHG3_CH15_Excluded
  1996. #define PPI_CHG3_CH15_Excluded PPI_CHG_CH15_Excluded
  1997. #endif
  1998. #ifndef PPI_CHG3_CH15_Included
  1999. #define PPI_CHG3_CH15_Included PPI_CHG_CH15_Included
  2000. #endif
  2001. #ifndef PPI_CHG3_CH14_Pos
  2002. #define PPI_CHG3_CH14_Pos PPI_CHG_CH14_Pos
  2003. #endif
  2004. #ifndef PPI_CHG3_CH14_Msk
  2005. #define PPI_CHG3_CH14_Msk PPI_CHG_CH14_Msk
  2006. #endif
  2007. #ifndef PPI_CHG3_CH14_Excluded
  2008. #define PPI_CHG3_CH14_Excluded PPI_CHG_CH14_Excluded
  2009. #endif
  2010. #ifndef PPI_CHG3_CH14_Included
  2011. #define PPI_CHG3_CH14_Included PPI_CHG_CH14_Included
  2012. #endif
  2013. #ifndef PPI_CHG3_CH13_Pos
  2014. #define PPI_CHG3_CH13_Pos PPI_CHG_CH13_Pos
  2015. #endif
  2016. #ifndef PPI_CHG3_CH13_Msk
  2017. #define PPI_CHG3_CH13_Msk PPI_CHG_CH13_Msk
  2018. #endif
  2019. #ifndef PPI_CHG3_CH13_Excluded
  2020. #define PPI_CHG3_CH13_Excluded PPI_CHG_CH13_Excluded
  2021. #endif
  2022. #ifndef PPI_CHG3_CH13_Included
  2023. #define PPI_CHG3_CH13_Included PPI_CHG_CH13_Included
  2024. #endif
  2025. #ifndef PPI_CHG3_CH12_Pos
  2026. #define PPI_CHG3_CH12_Pos PPI_CHG_CH12_Pos
  2027. #endif
  2028. #ifndef PPI_CHG3_CH12_Msk
  2029. #define PPI_CHG3_CH12_Msk PPI_CHG_CH12_Msk
  2030. #endif
  2031. #ifndef PPI_CHG3_CH12_Excluded
  2032. #define PPI_CHG3_CH12_Excluded PPI_CHG_CH12_Excluded
  2033. #endif
  2034. #ifndef PPI_CHG3_CH12_Included
  2035. #define PPI_CHG3_CH12_Included PPI_CHG_CH12_Included
  2036. #endif
  2037. #ifndef PPI_CHG3_CH11_Pos
  2038. #define PPI_CHG3_CH11_Pos PPI_CHG_CH11_Pos
  2039. #endif
  2040. #ifndef PPI_CHG3_CH11_Msk
  2041. #define PPI_CHG3_CH11_Msk PPI_CHG_CH11_Msk
  2042. #endif
  2043. #ifndef PPI_CHG3_CH11_Excluded
  2044. #define PPI_CHG3_CH11_Excluded PPI_CHG_CH11_Excluded
  2045. #endif
  2046. #ifndef PPI_CHG3_CH11_Included
  2047. #define PPI_CHG3_CH11_Included PPI_CHG_CH11_Included
  2048. #endif
  2049. #ifndef PPI_CHG3_CH10_Pos
  2050. #define PPI_CHG3_CH10_Pos PPI_CHG_CH10_Pos
  2051. #endif
  2052. #ifndef PPI_CHG3_CH10_Msk
  2053. #define PPI_CHG3_CH10_Msk PPI_CHG_CH10_Msk
  2054. #endif
  2055. #ifndef PPI_CHG3_CH10_Excluded
  2056. #define PPI_CHG3_CH10_Excluded PPI_CHG_CH10_Excluded
  2057. #endif
  2058. #ifndef PPI_CHG3_CH10_Included
  2059. #define PPI_CHG3_CH10_Included PPI_CHG_CH10_Included
  2060. #endif
  2061. #ifndef PPI_CHG3_CH9_Pos
  2062. #define PPI_CHG3_CH9_Pos PPI_CHG_CH9_Pos
  2063. #endif
  2064. #ifndef PPI_CHG3_CH9_Msk
  2065. #define PPI_CHG3_CH9_Msk PPI_CHG_CH9_Msk
  2066. #endif
  2067. #ifndef PPI_CHG3_CH9_Excluded
  2068. #define PPI_CHG3_CH9_Excluded PPI_CHG_CH9_Excluded
  2069. #endif
  2070. #ifndef PPI_CHG3_CH9_Included
  2071. #define PPI_CHG3_CH9_Included PPI_CHG_CH9_Included
  2072. #endif
  2073. #ifndef PPI_CHG3_CH8_Pos
  2074. #define PPI_CHG3_CH8_Pos PPI_CHG_CH8_Pos
  2075. #endif
  2076. #ifndef PPI_CHG3_CH8_Msk
  2077. #define PPI_CHG3_CH8_Msk PPI_CHG_CH8_Msk
  2078. #endif
  2079. #ifndef PPI_CHG3_CH8_Excluded
  2080. #define PPI_CHG3_CH8_Excluded PPI_CHG_CH8_Excluded
  2081. #endif
  2082. #ifndef PPI_CHG3_CH8_Included
  2083. #define PPI_CHG3_CH8_Included PPI_CHG_CH8_Included
  2084. #endif
  2085. #ifndef PPI_CHG3_CH7_Pos
  2086. #define PPI_CHG3_CH7_Pos PPI_CHG_CH7_Pos
  2087. #endif
  2088. #ifndef PPI_CHG3_CH7_Msk
  2089. #define PPI_CHG3_CH7_Msk PPI_CHG_CH7_Msk
  2090. #endif
  2091. #ifndef PPI_CHG3_CH7_Excluded
  2092. #define PPI_CHG3_CH7_Excluded PPI_CHG_CH7_Excluded
  2093. #endif
  2094. #ifndef PPI_CHG3_CH7_Included
  2095. #define PPI_CHG3_CH7_Included PPI_CHG_CH7_Included
  2096. #endif
  2097. #ifndef PPI_CHG3_CH6_Pos
  2098. #define PPI_CHG3_CH6_Pos PPI_CHG_CH6_Pos
  2099. #endif
  2100. #ifndef PPI_CHG3_CH6_Msk
  2101. #define PPI_CHG3_CH6_Msk PPI_CHG_CH6_Msk
  2102. #endif
  2103. #ifndef PPI_CHG3_CH6_Excluded
  2104. #define PPI_CHG3_CH6_Excluded PPI_CHG_CH6_Excluded
  2105. #endif
  2106. #ifndef PPI_CHG3_CH6_Included
  2107. #define PPI_CHG3_CH6_Included PPI_CHG_CH6_Included
  2108. #endif
  2109. #ifndef PPI_CHG3_CH5_Pos
  2110. #define PPI_CHG3_CH5_Pos PPI_CHG_CH5_Pos
  2111. #endif
  2112. #ifndef PPI_CHG3_CH5_Msk
  2113. #define PPI_CHG3_CH5_Msk PPI_CHG_CH5_Msk
  2114. #endif
  2115. #ifndef PPI_CHG3_CH5_Excluded
  2116. #define PPI_CHG3_CH5_Excluded PPI_CHG_CH5_Excluded
  2117. #endif
  2118. #ifndef PPI_CHG3_CH5_Included
  2119. #define PPI_CHG3_CH5_Included PPI_CHG_CH5_Included
  2120. #endif
  2121. #ifndef PPI_CHG3_CH4_Pos
  2122. #define PPI_CHG3_CH4_Pos PPI_CHG_CH4_Pos
  2123. #endif
  2124. #ifndef PPI_CHG3_CH4_Msk
  2125. #define PPI_CHG3_CH4_Msk PPI_CHG_CH4_Msk
  2126. #endif
  2127. #ifndef PPI_CHG3_CH4_Excluded
  2128. #define PPI_CHG3_CH4_Excluded PPI_CHG_CH4_Excluded
  2129. #endif
  2130. #ifndef PPI_CHG3_CH4_Included
  2131. #define PPI_CHG3_CH4_Included PPI_CHG_CH4_Included
  2132. #endif
  2133. #ifndef PPI_CHG3_CH3_Pos
  2134. #define PPI_CHG3_CH3_Pos PPI_CHG_CH3_Pos
  2135. #endif
  2136. #ifndef PPI_CHG3_CH3_Msk
  2137. #define PPI_CHG3_CH3_Msk PPI_CHG_CH3_Msk
  2138. #endif
  2139. #ifndef PPI_CHG3_CH3_Excluded
  2140. #define PPI_CHG3_CH3_Excluded PPI_CHG_CH3_Excluded
  2141. #endif
  2142. #ifndef PPI_CHG3_CH3_Included
  2143. #define PPI_CHG3_CH3_Included PPI_CHG_CH3_Included
  2144. #endif
  2145. #ifndef PPI_CHG3_CH2_Pos
  2146. #define PPI_CHG3_CH2_Pos PPI_CHG_CH2_Pos
  2147. #endif
  2148. #ifndef PPI_CHG3_CH2_Msk
  2149. #define PPI_CHG3_CH2_Msk PPI_CHG_CH2_Msk
  2150. #endif
  2151. #ifndef PPI_CHG3_CH2_Excluded
  2152. #define PPI_CHG3_CH2_Excluded PPI_CHG_CH2_Excluded
  2153. #endif
  2154. #ifndef PPI_CHG3_CH2_Included
  2155. #define PPI_CHG3_CH2_Included PPI_CHG_CH2_Included
  2156. #endif
  2157. #ifndef PPI_CHG3_CH1_Pos
  2158. #define PPI_CHG3_CH1_Pos PPI_CHG_CH1_Pos
  2159. #endif
  2160. #ifndef PPI_CHG3_CH1_Msk
  2161. #define PPI_CHG3_CH1_Msk PPI_CHG_CH1_Msk
  2162. #endif
  2163. #ifndef PPI_CHG3_CH1_Excluded
  2164. #define PPI_CHG3_CH1_Excluded PPI_CHG_CH1_Excluded
  2165. #endif
  2166. #ifndef PPI_CHG3_CH1_Included
  2167. #define PPI_CHG3_CH1_Included PPI_CHG_CH1_Included
  2168. #endif
  2169. #ifndef PPI_CHG3_CH0_Pos
  2170. #define PPI_CHG3_CH0_Pos PPI_CHG_CH0_Pos
  2171. #endif
  2172. #ifndef PPI_CHG3_CH0_Msk
  2173. #define PPI_CHG3_CH0_Msk PPI_CHG_CH0_Msk
  2174. #endif
  2175. #ifndef PPI_CHG3_CH0_Excluded
  2176. #define PPI_CHG3_CH0_Excluded PPI_CHG_CH0_Excluded
  2177. #endif
  2178. #ifndef PPI_CHG3_CH0_Included
  2179. #define PPI_CHG3_CH0_Included PPI_CHG_CH0_Included
  2180. #endif
  2181. /*lint --flb "Leave library region" */
  2182. #endif /* NRF51_TO_NRF52_H */