Jonathan Austin / nRF51822

Dependents:   microbit_rubber_ducky microbit_mouse_BLE microbit_mouse_BLE_daybreak_version microbit_presenter

Fork of nRF51822 by Nordic Semiconductor

Committer:
JonnyA
Date:
Wed Aug 31 18:59:36 2016 +0000
Revision:
616:b52326e38ebd
Parent:
607:e98331f1d6b5
Workaround for build system bug

Who changed what in which revision?

UserRevisionLine numberNew contents of line
vcoubard 607:e98331f1d6b5 1 /*
vcoubard 607:e98331f1d6b5 2 * Copyright (c) Nordic Semiconductor ASA
vcoubard 607:e98331f1d6b5 3 * All rights reserved.
vcoubard 607:e98331f1d6b5 4 *
vcoubard 607:e98331f1d6b5 5 * Redistribution and use in source and binary forms, with or without modification,
vcoubard 607:e98331f1d6b5 6 * are permitted provided that the following conditions are met:
vcoubard 607:e98331f1d6b5 7 *
vcoubard 607:e98331f1d6b5 8 * 1. Redistributions of source code must retain the above copyright notice, this
vcoubard 607:e98331f1d6b5 9 * list of conditions and the following disclaimer.
vcoubard 607:e98331f1d6b5 10 *
vcoubard 607:e98331f1d6b5 11 * 2. Redistributions in binary form must reproduce the above copyright notice, this
vcoubard 607:e98331f1d6b5 12 * list of conditions and the following disclaimer in the documentation and/or
vcoubard 607:e98331f1d6b5 13 * other materials provided with the distribution.
vcoubard 607:e98331f1d6b5 14 *
vcoubard 607:e98331f1d6b5 15 * 3. Neither the name of Nordic Semiconductor ASA nor the names of other
vcoubard 607:e98331f1d6b5 16 * contributors to this software may be used to endorse or promote products
vcoubard 607:e98331f1d6b5 17 * derived from this software without specific prior written permission.
vcoubard 607:e98331f1d6b5 18 *
vcoubard 607:e98331f1d6b5 19 *
vcoubard 607:e98331f1d6b5 20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
vcoubard 607:e98331f1d6b5 21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
vcoubard 607:e98331f1d6b5 22 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
vcoubard 607:e98331f1d6b5 23 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
vcoubard 607:e98331f1d6b5 24 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
vcoubard 607:e98331f1d6b5 25 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
vcoubard 607:e98331f1d6b5 26 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
vcoubard 607:e98331f1d6b5 27 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
vcoubard 607:e98331f1d6b5 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
vcoubard 607:e98331f1d6b5 29 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
vcoubard 607:e98331f1d6b5 30 *
vcoubard 607:e98331f1d6b5 31 */
vcoubard 607:e98331f1d6b5 32
vcoubard 607:e98331f1d6b5 33 #ifndef NRF51_DEPRECATED_H
vcoubard 607:e98331f1d6b5 34 #define NRF51_DEPRECATED_H
vcoubard 607:e98331f1d6b5 35
vcoubard 607:e98331f1d6b5 36 /*lint ++flb "Enter library region */
vcoubard 607:e98331f1d6b5 37
vcoubard 607:e98331f1d6b5 38 /* This file is given to prevent your SW from not compiling with the updates made to nrf51.h and
vcoubard 607:e98331f1d6b5 39 * nrf51_bitfields.h. The macros defined in this file were available previously. Do not use these
vcoubard 607:e98331f1d6b5 40 * macros on purpose. Use the ones defined in nrf51.h and nrf51_bitfields.h instead.
vcoubard 607:e98331f1d6b5 41 */
vcoubard 607:e98331f1d6b5 42
vcoubard 607:e98331f1d6b5 43 /* NVMC */
vcoubard 607:e98331f1d6b5 44 /* The register ERASEPROTECTEDPAGE is called ERASEPCR0 in the documentation. */
vcoubard 607:e98331f1d6b5 45 #define ERASEPROTECTEDPAGE ERASEPCR0
vcoubard 607:e98331f1d6b5 46
vcoubard 607:e98331f1d6b5 47
vcoubard 607:e98331f1d6b5 48 /* LPCOMP */
vcoubard 607:e98331f1d6b5 49 /* The interrupt ISR was renamed. Adding old name to the macros. */
vcoubard 607:e98331f1d6b5 50 #define LPCOMP_COMP_IRQHandler LPCOMP_IRQHandler
vcoubard 607:e98331f1d6b5 51 #define LPCOMP_COMP_IRQn LPCOMP_IRQn
vcoubard 607:e98331f1d6b5 52
vcoubard 607:e98331f1d6b5 53
vcoubard 607:e98331f1d6b5 54 /* MPU */
vcoubard 607:e98331f1d6b5 55 /* The field MPU.PERR0.LPCOMP_COMP was renamed. Added into deprecated in case somebody was using the macros defined for it. */
vcoubard 607:e98331f1d6b5 56 #define MPU_PERR0_LPCOMP_COMP_Pos MPU_PERR0_LPCOMP_Pos
vcoubard 607:e98331f1d6b5 57 #define MPU_PERR0_LPCOMP_COMP_Msk MPU_PERR0_LPCOMP_Msk
vcoubard 607:e98331f1d6b5 58 #define MPU_PERR0_LPCOMP_COMP_InRegion1 MPU_PERR0_LPCOMP_InRegion1
vcoubard 607:e98331f1d6b5 59 #define MPU_PERR0_LPCOMP_COMP_InRegion0 MPU_PERR0_LPCOMP_InRegion0
vcoubard 607:e98331f1d6b5 60
vcoubard 607:e98331f1d6b5 61
vcoubard 607:e98331f1d6b5 62 /* POWER */
vcoubard 607:e98331f1d6b5 63 /* The field POWER.RAMON.OFFRAM3 was eliminated. Added into deprecated in case somebody was using the macros defined for it. */
vcoubard 607:e98331f1d6b5 64 #define POWER_RAMON_OFFRAM3_Pos (19UL)
vcoubard 607:e98331f1d6b5 65 #define POWER_RAMON_OFFRAM3_Msk (0x1UL << POWER_RAMON_OFFRAM3_Pos)
vcoubard 607:e98331f1d6b5 66 #define POWER_RAMON_OFFRAM3_RAM3Off (0UL)
vcoubard 607:e98331f1d6b5 67 #define POWER_RAMON_OFFRAM3_RAM3On (1UL)
vcoubard 607:e98331f1d6b5 68 /* The field POWER.RAMON.OFFRAM2 was eliminated. Added into deprecated in case somebody was using the macros defined for it. */
vcoubard 607:e98331f1d6b5 69 #define POWER_RAMON_OFFRAM2_Pos (18UL)
vcoubard 607:e98331f1d6b5 70 #define POWER_RAMON_OFFRAM2_Msk (0x1UL << POWER_RAMON_OFFRAM2_Pos)
vcoubard 607:e98331f1d6b5 71 #define POWER_RAMON_OFFRAM2_RAM2Off (0UL)
vcoubard 607:e98331f1d6b5 72 #define POWER_RAMON_OFFRAM2_RAM2On (1UL)
vcoubard 607:e98331f1d6b5 73 /* The field POWER.RAMON.ONRAM3 was eliminated. Added into deprecated in case somebody was using the macros defined for it. */
vcoubard 607:e98331f1d6b5 74 #define POWER_RAMON_ONRAM3_Pos (3UL)
vcoubard 607:e98331f1d6b5 75 #define POWER_RAMON_ONRAM3_Msk (0x1UL << POWER_RAMON_ONRAM3_Pos)
vcoubard 607:e98331f1d6b5 76 #define POWER_RAMON_ONRAM3_RAM3Off (0UL)
vcoubard 607:e98331f1d6b5 77 #define POWER_RAMON_ONRAM3_RAM3On (1UL)
vcoubard 607:e98331f1d6b5 78 /* The field POWER.RAMON.ONRAM2 was eliminated. Added into deprecated in case somebody was using the macros defined for it. */
vcoubard 607:e98331f1d6b5 79 #define POWER_RAMON_ONRAM2_Pos (2UL)
vcoubard 607:e98331f1d6b5 80 #define POWER_RAMON_ONRAM2_Msk (0x1UL << POWER_RAMON_ONRAM2_Pos)
vcoubard 607:e98331f1d6b5 81 #define POWER_RAMON_ONRAM2_RAM2Off (0UL)
vcoubard 607:e98331f1d6b5 82 #define POWER_RAMON_ONRAM2_RAM2On (1UL)
vcoubard 607:e98331f1d6b5 83
vcoubard 607:e98331f1d6b5 84
vcoubard 607:e98331f1d6b5 85 /* RADIO */
vcoubard 607:e98331f1d6b5 86 /* The enumerated value RADIO.TXPOWER.TXPOWER.Neg40dBm was renamed. Added into deprecated with the new macro name. */
vcoubard 607:e98331f1d6b5 87 #define RADIO_TXPOWER_TXPOWER_Neg40dBm RADIO_TXPOWER_TXPOWER_Neg30dBm
vcoubard 607:e98331f1d6b5 88 /* The name of the field SKIPADDR was corrected. Old macros added for compatibility. */
vcoubard 607:e98331f1d6b5 89 #define RADIO_CRCCNF_SKIP_ADDR_Pos RADIO_CRCCNF_SKIPADDR_Pos
vcoubard 607:e98331f1d6b5 90 #define RADIO_CRCCNF_SKIP_ADDR_Msk RADIO_CRCCNF_SKIPADDR_Msk
vcoubard 607:e98331f1d6b5 91 #define RADIO_CRCCNF_SKIP_ADDR_Include RADIO_CRCCNF_SKIPADDR_Include
vcoubard 607:e98331f1d6b5 92 #define RADIO_CRCCNF_SKIP_ADDR_Skip RADIO_CRCCNF_SKIPADDR_Skip
vcoubard 607:e98331f1d6b5 93 /* The name of the field PLLLOCK was corrected. Old macros added for compatibility. */
vcoubard 607:e98331f1d6b5 94 #define RADIO_TEST_PLL_LOCK_Pos RADIO_TEST_PLLLOCK_Pos
vcoubard 607:e98331f1d6b5 95 #define RADIO_TEST_PLL_LOCK_Msk RADIO_TEST_PLLLOCK_Msk
vcoubard 607:e98331f1d6b5 96 #define RADIO_TEST_PLL_LOCK_Disabled RADIO_TEST_PLLLOCK_Disabled
vcoubard 607:e98331f1d6b5 97 #define RADIO_TEST_PLL_LOCK_Enabled RADIO_TEST_PLLLOCK_Enabled
vcoubard 607:e98331f1d6b5 98 /* The name of the field CONSTCARRIER was corrected. Old macros added for compatibility. */
vcoubard 607:e98331f1d6b5 99 #define RADIO_TEST_CONST_CARRIER_Pos RADIO_TEST_CONSTCARRIER_Pos
vcoubard 607:e98331f1d6b5 100 #define RADIO_TEST_CONST_CARRIER_Msk RADIO_TEST_CONSTCARRIER_Msk
vcoubard 607:e98331f1d6b5 101 #define RADIO_TEST_CONST_CARRIER_Disabled RADIO_TEST_CONSTCARRIER_Disabled
vcoubard 607:e98331f1d6b5 102 #define RADIO_TEST_CONST_CARRIER_Enabled RADIO_TEST_CONSTCARRIER_Enabled
vcoubard 607:e98331f1d6b5 103
vcoubard 607:e98331f1d6b5 104
vcoubard 607:e98331f1d6b5 105 /* FICR */
vcoubard 607:e98331f1d6b5 106 /* The registers FICR.SIZERAMBLOCK0, FICR.SIZERAMBLOCK1, FICR.SIZERAMBLOCK2 and FICR.SIZERAMBLOCK3 were renamed into an array. */
vcoubard 607:e98331f1d6b5 107 #define SIZERAMBLOCK0 SIZERAMBLOCKS
vcoubard 607:e98331f1d6b5 108 #define SIZERAMBLOCK1 SIZERAMBLOCKS
vcoubard 607:e98331f1d6b5 109 #define SIZERAMBLOCK2 SIZERAMBLOCK[2] /*!< Note that this macro will disapear when SIZERAMBLOCK array is eliminated. SIZERAMBLOCK is a deprecated array. */
vcoubard 607:e98331f1d6b5 110 #define SIZERAMBLOCK3 SIZERAMBLOCK[3] /*!< Note that this macro will disapear when SIZERAMBLOCK array is eliminated. SIZERAMBLOCK is a deprecated array. */
vcoubard 607:e98331f1d6b5 111 /* The registers FICR.DEVICEID0 and FICR.DEVICEID1 were renamed into an array. */
vcoubard 607:e98331f1d6b5 112 #define DEVICEID0 DEVICEID[0]
vcoubard 607:e98331f1d6b5 113 #define DEVICEID1 DEVICEID[1]
vcoubard 607:e98331f1d6b5 114 /* The registers FICR.ER0, FICR.ER1, FICR.ER2 and FICR.ER3 were renamed into an array. */
vcoubard 607:e98331f1d6b5 115 #define ER0 ER[0]
vcoubard 607:e98331f1d6b5 116 #define ER1 ER[1]
vcoubard 607:e98331f1d6b5 117 #define ER2 ER[2]
vcoubard 607:e98331f1d6b5 118 #define ER3 ER[3]
vcoubard 607:e98331f1d6b5 119 /* The registers FICR.IR0, FICR.IR1, FICR.IR2 and FICR.IR3 were renamed into an array. */
vcoubard 607:e98331f1d6b5 120 #define IR0 IR[0]
vcoubard 607:e98331f1d6b5 121 #define IR1 IR[1]
vcoubard 607:e98331f1d6b5 122 #define IR2 IR[2]
vcoubard 607:e98331f1d6b5 123 #define IR3 IR[3]
vcoubard 607:e98331f1d6b5 124 /* The registers FICR.DEVICEADDR0 and FICR.DEVICEADDR1 were renamed into an array. */
vcoubard 607:e98331f1d6b5 125 #define DEVICEADDR0 DEVICEADDR[0]
vcoubard 607:e98331f1d6b5 126 #define DEVICEADDR1 DEVICEADDR[1]
vcoubard 607:e98331f1d6b5 127
vcoubard 607:e98331f1d6b5 128
vcoubard 607:e98331f1d6b5 129 /* PPI */
vcoubard 607:e98331f1d6b5 130 /* The tasks PPI.TASKS_CHGxEN and PPI.TASKS_CHGxDIS were renamed into an array of structs. */
vcoubard 607:e98331f1d6b5 131 #define TASKS_CHG0EN TASKS_CHG[0].EN
vcoubard 607:e98331f1d6b5 132 #define TASKS_CHG0DIS TASKS_CHG[0].DIS
vcoubard 607:e98331f1d6b5 133 #define TASKS_CHG1EN TASKS_CHG[1].EN
vcoubard 607:e98331f1d6b5 134 #define TASKS_CHG1DIS TASKS_CHG[1].DIS
vcoubard 607:e98331f1d6b5 135 #define TASKS_CHG2EN TASKS_CHG[2].EN
vcoubard 607:e98331f1d6b5 136 #define TASKS_CHG2DIS TASKS_CHG[2].DIS
vcoubard 607:e98331f1d6b5 137 #define TASKS_CHG3EN TASKS_CHG[3].EN
vcoubard 607:e98331f1d6b5 138 #define TASKS_CHG3DIS TASKS_CHG[3].DIS
vcoubard 607:e98331f1d6b5 139 /* The registers PPI.CHx_EEP and PPI.CHx_TEP were renamed into an array of structs. */
vcoubard 607:e98331f1d6b5 140 #define CH0_EEP CH[0].EEP
vcoubard 607:e98331f1d6b5 141 #define CH0_TEP CH[0].TEP
vcoubard 607:e98331f1d6b5 142 #define CH1_EEP CH[1].EEP
vcoubard 607:e98331f1d6b5 143 #define CH1_TEP CH[1].TEP
vcoubard 607:e98331f1d6b5 144 #define CH2_EEP CH[2].EEP
vcoubard 607:e98331f1d6b5 145 #define CH2_TEP CH[2].TEP
vcoubard 607:e98331f1d6b5 146 #define CH3_EEP CH[3].EEP
vcoubard 607:e98331f1d6b5 147 #define CH3_TEP CH[3].TEP
vcoubard 607:e98331f1d6b5 148 #define CH4_EEP CH[4].EEP
vcoubard 607:e98331f1d6b5 149 #define CH4_TEP CH[4].TEP
vcoubard 607:e98331f1d6b5 150 #define CH5_EEP CH[5].EEP
vcoubard 607:e98331f1d6b5 151 #define CH5_TEP CH[5].TEP
vcoubard 607:e98331f1d6b5 152 #define CH6_EEP CH[6].EEP
vcoubard 607:e98331f1d6b5 153 #define CH6_TEP CH[6].TEP
vcoubard 607:e98331f1d6b5 154 #define CH7_EEP CH[7].EEP
vcoubard 607:e98331f1d6b5 155 #define CH7_TEP CH[7].TEP
vcoubard 607:e98331f1d6b5 156 #define CH8_EEP CH[8].EEP
vcoubard 607:e98331f1d6b5 157 #define CH8_TEP CH[8].TEP
vcoubard 607:e98331f1d6b5 158 #define CH9_EEP CH[9].EEP
vcoubard 607:e98331f1d6b5 159 #define CH9_TEP CH[9].TEP
vcoubard 607:e98331f1d6b5 160 #define CH10_EEP CH[10].EEP
vcoubard 607:e98331f1d6b5 161 #define CH10_TEP CH[10].TEP
vcoubard 607:e98331f1d6b5 162 #define CH11_EEP CH[11].EEP
vcoubard 607:e98331f1d6b5 163 #define CH11_TEP CH[11].TEP
vcoubard 607:e98331f1d6b5 164 #define CH12_EEP CH[12].EEP
vcoubard 607:e98331f1d6b5 165 #define CH12_TEP CH[12].TEP
vcoubard 607:e98331f1d6b5 166 #define CH13_EEP CH[13].EEP
vcoubard 607:e98331f1d6b5 167 #define CH13_TEP CH[13].TEP
vcoubard 607:e98331f1d6b5 168 #define CH14_EEP CH[14].EEP
vcoubard 607:e98331f1d6b5 169 #define CH14_TEP CH[14].TEP
vcoubard 607:e98331f1d6b5 170 #define CH15_EEP CH[15].EEP
vcoubard 607:e98331f1d6b5 171 #define CH15_TEP CH[15].TEP
vcoubard 607:e98331f1d6b5 172 /* The registers PPI.CHG0, PPI.CHG1, PPI.CHG2 and PPI.CHG3 were renamed into an array. */
vcoubard 607:e98331f1d6b5 173 #define CHG0 CHG[0]
vcoubard 607:e98331f1d6b5 174 #define CHG1 CHG[1]
vcoubard 607:e98331f1d6b5 175 #define CHG2 CHG[2]
vcoubard 607:e98331f1d6b5 176 #define CHG3 CHG[3]
vcoubard 607:e98331f1d6b5 177 /* All bitfield macros for the CHGx registers therefore changed name. */
vcoubard 607:e98331f1d6b5 178 #define PPI_CHG0_CH15_Pos PPI_CHG_CH15_Pos
vcoubard 607:e98331f1d6b5 179 #define PPI_CHG0_CH15_Msk PPI_CHG_CH15_Msk
vcoubard 607:e98331f1d6b5 180 #define PPI_CHG0_CH15_Excluded PPI_CHG_CH15_Excluded
vcoubard 607:e98331f1d6b5 181 #define PPI_CHG0_CH15_Included PPI_CHG_CH15_Included
vcoubard 607:e98331f1d6b5 182 #define PPI_CHG0_CH14_Pos PPI_CHG_CH14_Pos
vcoubard 607:e98331f1d6b5 183 #define PPI_CHG0_CH14_Msk PPI_CHG_CH14_Msk
vcoubard 607:e98331f1d6b5 184 #define PPI_CHG0_CH14_Excluded PPI_CHG_CH14_Excluded
vcoubard 607:e98331f1d6b5 185 #define PPI_CHG0_CH14_Included PPI_CHG_CH14_Included
vcoubard 607:e98331f1d6b5 186 #define PPI_CHG0_CH13_Pos PPI_CHG_CH13_Pos
vcoubard 607:e98331f1d6b5 187 #define PPI_CHG0_CH13_Msk PPI_CHG_CH13_Msk
vcoubard 607:e98331f1d6b5 188 #define PPI_CHG0_CH13_Excluded PPI_CHG_CH13_Excluded
vcoubard 607:e98331f1d6b5 189 #define PPI_CHG0_CH13_Included PPI_CHG_CH13_Included
vcoubard 607:e98331f1d6b5 190 #define PPI_CHG0_CH12_Pos PPI_CHG_CH12_Pos
vcoubard 607:e98331f1d6b5 191 #define PPI_CHG0_CH12_Msk PPI_CHG_CH12_Msk
vcoubard 607:e98331f1d6b5 192 #define PPI_CHG0_CH12_Excluded PPI_CHG_CH12_Excluded
vcoubard 607:e98331f1d6b5 193 #define PPI_CHG0_CH12_Included PPI_CHG_CH12_Included
vcoubard 607:e98331f1d6b5 194 #define PPI_CHG0_CH11_Pos PPI_CHG_CH11_Pos
vcoubard 607:e98331f1d6b5 195 #define PPI_CHG0_CH11_Msk PPI_CHG_CH11_Msk
vcoubard 607:e98331f1d6b5 196 #define PPI_CHG0_CH11_Excluded PPI_CHG_CH11_Excluded
vcoubard 607:e98331f1d6b5 197 #define PPI_CHG0_CH11_Included PPI_CHG_CH11_Included
vcoubard 607:e98331f1d6b5 198 #define PPI_CHG0_CH10_Pos PPI_CHG_CH10_Pos
vcoubard 607:e98331f1d6b5 199 #define PPI_CHG0_CH10_Msk PPI_CHG_CH10_Msk
vcoubard 607:e98331f1d6b5 200 #define PPI_CHG0_CH10_Excluded PPI_CHG_CH10_Excluded
vcoubard 607:e98331f1d6b5 201 #define PPI_CHG0_CH10_Included PPI_CHG_CH10_Included
vcoubard 607:e98331f1d6b5 202 #define PPI_CHG0_CH9_Pos PPI_CHG_CH9_Pos
vcoubard 607:e98331f1d6b5 203 #define PPI_CHG0_CH9_Msk PPI_CHG_CH9_Msk
vcoubard 607:e98331f1d6b5 204 #define PPI_CHG0_CH9_Excluded PPI_CHG_CH9_Excluded
vcoubard 607:e98331f1d6b5 205 #define PPI_CHG0_CH9_Included PPI_CHG_CH9_Included
vcoubard 607:e98331f1d6b5 206 #define PPI_CHG0_CH8_Pos PPI_CHG_CH8_Pos
vcoubard 607:e98331f1d6b5 207 #define PPI_CHG0_CH8_Msk PPI_CHG_CH8_Msk
vcoubard 607:e98331f1d6b5 208 #define PPI_CHG0_CH8_Excluded PPI_CHG_CH8_Excluded
vcoubard 607:e98331f1d6b5 209 #define PPI_CHG0_CH8_Included PPI_CHG_CH8_Included
vcoubard 607:e98331f1d6b5 210 #define PPI_CHG0_CH7_Pos PPI_CHG_CH7_Pos
vcoubard 607:e98331f1d6b5 211 #define PPI_CHG0_CH7_Msk PPI_CHG_CH7_Msk
vcoubard 607:e98331f1d6b5 212 #define PPI_CHG0_CH7_Excluded PPI_CHG_CH7_Excluded
vcoubard 607:e98331f1d6b5 213 #define PPI_CHG0_CH7_Included PPI_CHG_CH7_Included
vcoubard 607:e98331f1d6b5 214 #define PPI_CHG0_CH6_Pos PPI_CHG_CH6_Pos
vcoubard 607:e98331f1d6b5 215 #define PPI_CHG0_CH6_Msk PPI_CHG_CH6_Msk
vcoubard 607:e98331f1d6b5 216 #define PPI_CHG0_CH6_Excluded PPI_CHG_CH6_Excluded
vcoubard 607:e98331f1d6b5 217 #define PPI_CHG0_CH6_Included PPI_CHG_CH6_Included
vcoubard 607:e98331f1d6b5 218 #define PPI_CHG0_CH5_Pos PPI_CHG_CH5_Pos
vcoubard 607:e98331f1d6b5 219 #define PPI_CHG0_CH5_Msk PPI_CHG_CH5_Msk
vcoubard 607:e98331f1d6b5 220 #define PPI_CHG0_CH5_Excluded PPI_CHG_CH5_Excluded
vcoubard 607:e98331f1d6b5 221 #define PPI_CHG0_CH5_Included PPI_CHG_CH5_Included
vcoubard 607:e98331f1d6b5 222 #define PPI_CHG0_CH4_Pos PPI_CHG_CH4_Pos
vcoubard 607:e98331f1d6b5 223 #define PPI_CHG0_CH4_Msk PPI_CHG_CH4_Msk
vcoubard 607:e98331f1d6b5 224 #define PPI_CHG0_CH4_Excluded PPI_CHG_CH4_Excluded
vcoubard 607:e98331f1d6b5 225 #define PPI_CHG0_CH4_Included PPI_CHG_CH4_Included
vcoubard 607:e98331f1d6b5 226 #define PPI_CHG0_CH3_Pos PPI_CHG_CH3_Pos
vcoubard 607:e98331f1d6b5 227 #define PPI_CHG0_CH3_Msk PPI_CHG_CH3_Msk
vcoubard 607:e98331f1d6b5 228 #define PPI_CHG0_CH3_Excluded PPI_CHG_CH3_Excluded
vcoubard 607:e98331f1d6b5 229 #define PPI_CHG0_CH3_Included PPI_CHG_CH3_Included
vcoubard 607:e98331f1d6b5 230 #define PPI_CHG0_CH2_Pos PPI_CHG_CH2_Pos
vcoubard 607:e98331f1d6b5 231 #define PPI_CHG0_CH2_Msk PPI_CHG_CH2_Msk
vcoubard 607:e98331f1d6b5 232 #define PPI_CHG0_CH2_Excluded PPI_CHG_CH2_Excluded
vcoubard 607:e98331f1d6b5 233 #define PPI_CHG0_CH2_Included PPI_CHG_CH2_Included
vcoubard 607:e98331f1d6b5 234 #define PPI_CHG0_CH1_Pos PPI_CHG_CH1_Pos
vcoubard 607:e98331f1d6b5 235 #define PPI_CHG0_CH1_Msk PPI_CHG_CH1_Msk
vcoubard 607:e98331f1d6b5 236 #define PPI_CHG0_CH1_Excluded PPI_CHG_CH1_Excluded
vcoubard 607:e98331f1d6b5 237 #define PPI_CHG0_CH1_Included PPI_CHG_CH1_Included
vcoubard 607:e98331f1d6b5 238 #define PPI_CHG0_CH0_Pos PPI_CHG_CH0_Pos
vcoubard 607:e98331f1d6b5 239 #define PPI_CHG0_CH0_Msk PPI_CHG_CH0_Msk
vcoubard 607:e98331f1d6b5 240 #define PPI_CHG0_CH0_Excluded PPI_CHG_CH0_Excluded
vcoubard 607:e98331f1d6b5 241 #define PPI_CHG0_CH0_Included PPI_CHG_CH0_Included
vcoubard 607:e98331f1d6b5 242 #define PPI_CHG1_CH15_Pos PPI_CHG_CH15_Pos
vcoubard 607:e98331f1d6b5 243 #define PPI_CHG1_CH15_Msk PPI_CHG_CH15_Msk
vcoubard 607:e98331f1d6b5 244 #define PPI_CHG1_CH15_Excluded PPI_CHG_CH15_Excluded
vcoubard 607:e98331f1d6b5 245 #define PPI_CHG1_CH15_Included PPI_CHG_CH15_Included
vcoubard 607:e98331f1d6b5 246 #define PPI_CHG1_CH14_Pos PPI_CHG_CH14_Pos
vcoubard 607:e98331f1d6b5 247 #define PPI_CHG1_CH14_Msk PPI_CHG_CH14_Msk
vcoubard 607:e98331f1d6b5 248 #define PPI_CHG1_CH14_Excluded PPI_CHG_CH14_Excluded
vcoubard 607:e98331f1d6b5 249 #define PPI_CHG1_CH14_Included PPI_CHG_CH14_Included
vcoubard 607:e98331f1d6b5 250 #define PPI_CHG1_CH13_Pos PPI_CHG_CH13_Pos
vcoubard 607:e98331f1d6b5 251 #define PPI_CHG1_CH13_Msk PPI_CHG_CH13_Msk
vcoubard 607:e98331f1d6b5 252 #define PPI_CHG1_CH13_Excluded PPI_CHG_CH13_Excluded
vcoubard 607:e98331f1d6b5 253 #define PPI_CHG1_CH13_Included PPI_CHG_CH13_Included
vcoubard 607:e98331f1d6b5 254 #define PPI_CHG1_CH12_Pos PPI_CHG_CH12_Pos
vcoubard 607:e98331f1d6b5 255 #define PPI_CHG1_CH12_Msk PPI_CHG_CH12_Msk
vcoubard 607:e98331f1d6b5 256 #define PPI_CHG1_CH12_Excluded PPI_CHG_CH12_Excluded
vcoubard 607:e98331f1d6b5 257 #define PPI_CHG1_CH12_Included PPI_CHG_CH12_Included
vcoubard 607:e98331f1d6b5 258 #define PPI_CHG1_CH11_Pos PPI_CHG_CH11_Pos
vcoubard 607:e98331f1d6b5 259 #define PPI_CHG1_CH11_Msk PPI_CHG_CH11_Msk
vcoubard 607:e98331f1d6b5 260 #define PPI_CHG1_CH11_Excluded PPI_CHG_CH11_Excluded
vcoubard 607:e98331f1d6b5 261 #define PPI_CHG1_CH11_Included PPI_CHG_CH11_Included
vcoubard 607:e98331f1d6b5 262 #define PPI_CHG1_CH10_Pos PPI_CHG_CH10_Pos
vcoubard 607:e98331f1d6b5 263 #define PPI_CHG1_CH10_Msk PPI_CHG_CH10_Msk
vcoubard 607:e98331f1d6b5 264 #define PPI_CHG1_CH10_Excluded PPI_CHG_CH10_Excluded
vcoubard 607:e98331f1d6b5 265 #define PPI_CHG1_CH10_Included PPI_CHG_CH10_Included
vcoubard 607:e98331f1d6b5 266 #define PPI_CHG1_CH9_Pos PPI_CHG_CH9_Pos
vcoubard 607:e98331f1d6b5 267 #define PPI_CHG1_CH9_Msk PPI_CHG_CH9_Msk
vcoubard 607:e98331f1d6b5 268 #define PPI_CHG1_CH9_Excluded PPI_CHG_CH9_Excluded
vcoubard 607:e98331f1d6b5 269 #define PPI_CHG1_CH9_Included PPI_CHG_CH9_Included
vcoubard 607:e98331f1d6b5 270 #define PPI_CHG1_CH8_Pos PPI_CHG_CH8_Pos
vcoubard 607:e98331f1d6b5 271 #define PPI_CHG1_CH8_Msk PPI_CHG_CH8_Msk
vcoubard 607:e98331f1d6b5 272 #define PPI_CHG1_CH8_Excluded PPI_CHG_CH8_Excluded
vcoubard 607:e98331f1d6b5 273 #define PPI_CHG1_CH8_Included PPI_CHG_CH8_Included
vcoubard 607:e98331f1d6b5 274 #define PPI_CHG1_CH7_Pos PPI_CHG_CH7_Pos
vcoubard 607:e98331f1d6b5 275 #define PPI_CHG1_CH7_Msk PPI_CHG_CH7_Msk
vcoubard 607:e98331f1d6b5 276 #define PPI_CHG1_CH7_Excluded PPI_CHG_CH7_Excluded
vcoubard 607:e98331f1d6b5 277 #define PPI_CHG1_CH7_Included PPI_CHG_CH7_Included
vcoubard 607:e98331f1d6b5 278 #define PPI_CHG1_CH6_Pos PPI_CHG_CH6_Pos
vcoubard 607:e98331f1d6b5 279 #define PPI_CHG1_CH6_Msk PPI_CHG_CH6_Msk
vcoubard 607:e98331f1d6b5 280 #define PPI_CHG1_CH6_Excluded PPI_CHG_CH6_Excluded
vcoubard 607:e98331f1d6b5 281 #define PPI_CHG1_CH6_Included PPI_CHG_CH6_Included
vcoubard 607:e98331f1d6b5 282 #define PPI_CHG1_CH5_Pos PPI_CHG_CH5_Pos
vcoubard 607:e98331f1d6b5 283 #define PPI_CHG1_CH5_Msk PPI_CHG_CH5_Msk
vcoubard 607:e98331f1d6b5 284 #define PPI_CHG1_CH5_Excluded PPI_CHG_CH5_Excluded
vcoubard 607:e98331f1d6b5 285 #define PPI_CHG1_CH5_Included PPI_CHG_CH5_Included
vcoubard 607:e98331f1d6b5 286 #define PPI_CHG1_CH4_Pos PPI_CHG_CH4_Pos
vcoubard 607:e98331f1d6b5 287 #define PPI_CHG1_CH4_Msk PPI_CHG_CH4_Msk
vcoubard 607:e98331f1d6b5 288 #define PPI_CHG1_CH4_Excluded PPI_CHG_CH4_Excluded
vcoubard 607:e98331f1d6b5 289 #define PPI_CHG1_CH4_Included PPI_CHG_CH4_Included
vcoubard 607:e98331f1d6b5 290 #define PPI_CHG1_CH3_Pos PPI_CHG_CH3_Pos
vcoubard 607:e98331f1d6b5 291 #define PPI_CHG1_CH3_Msk PPI_CHG_CH3_Msk
vcoubard 607:e98331f1d6b5 292 #define PPI_CHG1_CH3_Excluded PPI_CHG_CH3_Excluded
vcoubard 607:e98331f1d6b5 293 #define PPI_CHG1_CH3_Included PPI_CHG_CH3_Included
vcoubard 607:e98331f1d6b5 294 #define PPI_CHG1_CH2_Pos PPI_CHG_CH2_Pos
vcoubard 607:e98331f1d6b5 295 #define PPI_CHG1_CH2_Msk PPI_CHG_CH2_Msk
vcoubard 607:e98331f1d6b5 296 #define PPI_CHG1_CH2_Excluded PPI_CHG_CH2_Excluded
vcoubard 607:e98331f1d6b5 297 #define PPI_CHG1_CH2_Included PPI_CHG_CH2_Included
vcoubard 607:e98331f1d6b5 298 #define PPI_CHG1_CH1_Pos PPI_CHG_CH1_Pos
vcoubard 607:e98331f1d6b5 299 #define PPI_CHG1_CH1_Msk PPI_CHG_CH1_Msk
vcoubard 607:e98331f1d6b5 300 #define PPI_CHG1_CH1_Excluded PPI_CHG_CH1_Excluded
vcoubard 607:e98331f1d6b5 301 #define PPI_CHG1_CH1_Included PPI_CHG_CH1_Included
vcoubard 607:e98331f1d6b5 302 #define PPI_CHG1_CH0_Pos PPI_CHG_CH0_Pos
vcoubard 607:e98331f1d6b5 303 #define PPI_CHG1_CH0_Msk PPI_CHG_CH0_Msk
vcoubard 607:e98331f1d6b5 304 #define PPI_CHG1_CH0_Excluded PPI_CHG_CH0_Excluded
vcoubard 607:e98331f1d6b5 305 #define PPI_CHG1_CH0_Included PPI_CHG_CH0_Included
vcoubard 607:e98331f1d6b5 306 #define PPI_CHG2_CH15_Pos PPI_CHG_CH15_Pos
vcoubard 607:e98331f1d6b5 307 #define PPI_CHG2_CH15_Msk PPI_CHG_CH15_Msk
vcoubard 607:e98331f1d6b5 308 #define PPI_CHG2_CH15_Excluded PPI_CHG_CH15_Excluded
vcoubard 607:e98331f1d6b5 309 #define PPI_CHG2_CH15_Included PPI_CHG_CH15_Included
vcoubard 607:e98331f1d6b5 310 #define PPI_CHG2_CH14_Pos PPI_CHG_CH14_Pos
vcoubard 607:e98331f1d6b5 311 #define PPI_CHG2_CH14_Msk PPI_CHG_CH14_Msk
vcoubard 607:e98331f1d6b5 312 #define PPI_CHG2_CH14_Excluded PPI_CHG_CH14_Excluded
vcoubard 607:e98331f1d6b5 313 #define PPI_CHG2_CH14_Included PPI_CHG_CH14_Included
vcoubard 607:e98331f1d6b5 314 #define PPI_CHG2_CH13_Pos PPI_CHG_CH13_Pos
vcoubard 607:e98331f1d6b5 315 #define PPI_CHG2_CH13_Msk PPI_CHG_CH13_Msk
vcoubard 607:e98331f1d6b5 316 #define PPI_CHG2_CH13_Excluded PPI_CHG_CH13_Excluded
vcoubard 607:e98331f1d6b5 317 #define PPI_CHG2_CH13_Included PPI_CHG_CH13_Included
vcoubard 607:e98331f1d6b5 318 #define PPI_CHG2_CH12_Pos PPI_CHG_CH12_Pos
vcoubard 607:e98331f1d6b5 319 #define PPI_CHG2_CH12_Msk PPI_CHG_CH12_Msk
vcoubard 607:e98331f1d6b5 320 #define PPI_CHG2_CH12_Excluded PPI_CHG_CH12_Excluded
vcoubard 607:e98331f1d6b5 321 #define PPI_CHG2_CH12_Included PPI_CHG_CH12_Included
vcoubard 607:e98331f1d6b5 322 #define PPI_CHG2_CH11_Pos PPI_CHG_CH11_Pos
vcoubard 607:e98331f1d6b5 323 #define PPI_CHG2_CH11_Msk PPI_CHG_CH11_Msk
vcoubard 607:e98331f1d6b5 324 #define PPI_CHG2_CH11_Excluded PPI_CHG_CH11_Excluded
vcoubard 607:e98331f1d6b5 325 #define PPI_CHG2_CH11_Included PPI_CHG_CH11_Included
vcoubard 607:e98331f1d6b5 326 #define PPI_CHG2_CH10_Pos PPI_CHG_CH10_Pos
vcoubard 607:e98331f1d6b5 327 #define PPI_CHG2_CH10_Msk PPI_CHG_CH10_Msk
vcoubard 607:e98331f1d6b5 328 #define PPI_CHG2_CH10_Excluded PPI_CHG_CH10_Excluded
vcoubard 607:e98331f1d6b5 329 #define PPI_CHG2_CH10_Included PPI_CHG_CH10_Included
vcoubard 607:e98331f1d6b5 330 #define PPI_CHG2_CH9_Pos PPI_CHG_CH9_Pos
vcoubard 607:e98331f1d6b5 331 #define PPI_CHG2_CH9_Msk PPI_CHG_CH9_Msk
vcoubard 607:e98331f1d6b5 332 #define PPI_CHG2_CH9_Excluded PPI_CHG_CH9_Excluded
vcoubard 607:e98331f1d6b5 333 #define PPI_CHG2_CH9_Included PPI_CHG_CH9_Included
vcoubard 607:e98331f1d6b5 334 #define PPI_CHG2_CH8_Pos PPI_CHG_CH8_Pos
vcoubard 607:e98331f1d6b5 335 #define PPI_CHG2_CH8_Msk PPI_CHG_CH8_Msk
vcoubard 607:e98331f1d6b5 336 #define PPI_CHG2_CH8_Excluded PPI_CHG_CH8_Excluded
vcoubard 607:e98331f1d6b5 337 #define PPI_CHG2_CH8_Included PPI_CHG_CH8_Included
vcoubard 607:e98331f1d6b5 338 #define PPI_CHG2_CH7_Pos PPI_CHG_CH7_Pos
vcoubard 607:e98331f1d6b5 339 #define PPI_CHG2_CH7_Msk PPI_CHG_CH7_Msk
vcoubard 607:e98331f1d6b5 340 #define PPI_CHG2_CH7_Excluded PPI_CHG_CH7_Excluded
vcoubard 607:e98331f1d6b5 341 #define PPI_CHG2_CH7_Included PPI_CHG_CH7_Included
vcoubard 607:e98331f1d6b5 342 #define PPI_CHG2_CH6_Pos PPI_CHG_CH6_Pos
vcoubard 607:e98331f1d6b5 343 #define PPI_CHG2_CH6_Msk PPI_CHG_CH6_Msk
vcoubard 607:e98331f1d6b5 344 #define PPI_CHG2_CH6_Excluded PPI_CHG_CH6_Excluded
vcoubard 607:e98331f1d6b5 345 #define PPI_CHG2_CH6_Included PPI_CHG_CH6_Included
vcoubard 607:e98331f1d6b5 346 #define PPI_CHG2_CH5_Pos PPI_CHG_CH5_Pos
vcoubard 607:e98331f1d6b5 347 #define PPI_CHG2_CH5_Msk PPI_CHG_CH5_Msk
vcoubard 607:e98331f1d6b5 348 #define PPI_CHG2_CH5_Excluded PPI_CHG_CH5_Excluded
vcoubard 607:e98331f1d6b5 349 #define PPI_CHG2_CH5_Included PPI_CHG_CH5_Included
vcoubard 607:e98331f1d6b5 350 #define PPI_CHG2_CH4_Pos PPI_CHG_CH4_Pos
vcoubard 607:e98331f1d6b5 351 #define PPI_CHG2_CH4_Msk PPI_CHG_CH4_Msk
vcoubard 607:e98331f1d6b5 352 #define PPI_CHG2_CH4_Excluded PPI_CHG_CH4_Excluded
vcoubard 607:e98331f1d6b5 353 #define PPI_CHG2_CH4_Included PPI_CHG_CH4_Included
vcoubard 607:e98331f1d6b5 354 #define PPI_CHG2_CH3_Pos PPI_CHG_CH3_Pos
vcoubard 607:e98331f1d6b5 355 #define PPI_CHG2_CH3_Msk PPI_CHG_CH3_Msk
vcoubard 607:e98331f1d6b5 356 #define PPI_CHG2_CH3_Excluded PPI_CHG_CH3_Excluded
vcoubard 607:e98331f1d6b5 357 #define PPI_CHG2_CH3_Included PPI_CHG_CH3_Included
vcoubard 607:e98331f1d6b5 358 #define PPI_CHG2_CH2_Pos PPI_CHG_CH2_Pos
vcoubard 607:e98331f1d6b5 359 #define PPI_CHG2_CH2_Msk PPI_CHG_CH2_Msk
vcoubard 607:e98331f1d6b5 360 #define PPI_CHG2_CH2_Excluded PPI_CHG_CH2_Excluded
vcoubard 607:e98331f1d6b5 361 #define PPI_CHG2_CH2_Included PPI_CHG_CH2_Included
vcoubard 607:e98331f1d6b5 362 #define PPI_CHG2_CH1_Pos PPI_CHG_CH1_Pos
vcoubard 607:e98331f1d6b5 363 #define PPI_CHG2_CH1_Msk PPI_CHG_CH1_Msk
vcoubard 607:e98331f1d6b5 364 #define PPI_CHG2_CH1_Excluded PPI_CHG_CH1_Excluded
vcoubard 607:e98331f1d6b5 365 #define PPI_CHG2_CH1_Included PPI_CHG_CH1_Included
vcoubard 607:e98331f1d6b5 366 #define PPI_CHG2_CH0_Pos PPI_CHG_CH0_Pos
vcoubard 607:e98331f1d6b5 367 #define PPI_CHG2_CH0_Msk PPI_CHG_CH0_Msk
vcoubard 607:e98331f1d6b5 368 #define PPI_CHG2_CH0_Excluded PPI_CHG_CH0_Excluded
vcoubard 607:e98331f1d6b5 369 #define PPI_CHG2_CH0_Included PPI_CHG_CH0_Included
vcoubard 607:e98331f1d6b5 370 #define PPI_CHG3_CH15_Pos PPI_CHG_CH15_Pos
vcoubard 607:e98331f1d6b5 371 #define PPI_CHG3_CH15_Msk PPI_CHG_CH15_Msk
vcoubard 607:e98331f1d6b5 372 #define PPI_CHG3_CH15_Excluded PPI_CHG_CH15_Excluded
vcoubard 607:e98331f1d6b5 373 #define PPI_CHG3_CH15_Included PPI_CHG_CH15_Included
vcoubard 607:e98331f1d6b5 374 #define PPI_CHG3_CH14_Pos PPI_CHG_CH14_Pos
vcoubard 607:e98331f1d6b5 375 #define PPI_CHG3_CH14_Msk PPI_CHG_CH14_Msk
vcoubard 607:e98331f1d6b5 376 #define PPI_CHG3_CH14_Excluded PPI_CHG_CH14_Excluded
vcoubard 607:e98331f1d6b5 377 #define PPI_CHG3_CH14_Included PPI_CHG_CH14_Included
vcoubard 607:e98331f1d6b5 378 #define PPI_CHG3_CH13_Pos PPI_CHG_CH13_Pos
vcoubard 607:e98331f1d6b5 379 #define PPI_CHG3_CH13_Msk PPI_CHG_CH13_Msk
vcoubard 607:e98331f1d6b5 380 #define PPI_CHG3_CH13_Excluded PPI_CHG_CH13_Excluded
vcoubard 607:e98331f1d6b5 381 #define PPI_CHG3_CH13_Included PPI_CHG_CH13_Included
vcoubard 607:e98331f1d6b5 382 #define PPI_CHG3_CH12_Pos PPI_CHG_CH12_Pos
vcoubard 607:e98331f1d6b5 383 #define PPI_CHG3_CH12_Msk PPI_CHG_CH12_Msk
vcoubard 607:e98331f1d6b5 384 #define PPI_CHG3_CH12_Excluded PPI_CHG_CH12_Excluded
vcoubard 607:e98331f1d6b5 385 #define PPI_CHG3_CH12_Included PPI_CHG_CH12_Included
vcoubard 607:e98331f1d6b5 386 #define PPI_CHG3_CH11_Pos PPI_CHG_CH11_Pos
vcoubard 607:e98331f1d6b5 387 #define PPI_CHG3_CH11_Msk PPI_CHG_CH11_Msk
vcoubard 607:e98331f1d6b5 388 #define PPI_CHG3_CH11_Excluded PPI_CHG_CH11_Excluded
vcoubard 607:e98331f1d6b5 389 #define PPI_CHG3_CH11_Included PPI_CHG_CH11_Included
vcoubard 607:e98331f1d6b5 390 #define PPI_CHG3_CH10_Pos PPI_CHG_CH10_Pos
vcoubard 607:e98331f1d6b5 391 #define PPI_CHG3_CH10_Msk PPI_CHG_CH10_Msk
vcoubard 607:e98331f1d6b5 392 #define PPI_CHG3_CH10_Excluded PPI_CHG_CH10_Excluded
vcoubard 607:e98331f1d6b5 393 #define PPI_CHG3_CH10_Included PPI_CHG_CH10_Included
vcoubard 607:e98331f1d6b5 394 #define PPI_CHG3_CH9_Pos PPI_CHG_CH9_Pos
vcoubard 607:e98331f1d6b5 395 #define PPI_CHG3_CH9_Msk PPI_CHG_CH9_Msk
vcoubard 607:e98331f1d6b5 396 #define PPI_CHG3_CH9_Excluded PPI_CHG_CH9_Excluded
vcoubard 607:e98331f1d6b5 397 #define PPI_CHG3_CH9_Included PPI_CHG_CH9_Included
vcoubard 607:e98331f1d6b5 398 #define PPI_CHG3_CH8_Pos PPI_CHG_CH8_Pos
vcoubard 607:e98331f1d6b5 399 #define PPI_CHG3_CH8_Msk PPI_CHG_CH8_Msk
vcoubard 607:e98331f1d6b5 400 #define PPI_CHG3_CH8_Excluded PPI_CHG_CH8_Excluded
vcoubard 607:e98331f1d6b5 401 #define PPI_CHG3_CH8_Included PPI_CHG_CH8_Included
vcoubard 607:e98331f1d6b5 402 #define PPI_CHG3_CH7_Pos PPI_CHG_CH7_Pos
vcoubard 607:e98331f1d6b5 403 #define PPI_CHG3_CH7_Msk PPI_CHG_CH7_Msk
vcoubard 607:e98331f1d6b5 404 #define PPI_CHG3_CH7_Excluded PPI_CHG_CH7_Excluded
vcoubard 607:e98331f1d6b5 405 #define PPI_CHG3_CH7_Included PPI_CHG_CH7_Included
vcoubard 607:e98331f1d6b5 406 #define PPI_CHG3_CH6_Pos PPI_CHG_CH6_Pos
vcoubard 607:e98331f1d6b5 407 #define PPI_CHG3_CH6_Msk PPI_CHG_CH6_Msk
vcoubard 607:e98331f1d6b5 408 #define PPI_CHG3_CH6_Excluded PPI_CHG_CH6_Excluded
vcoubard 607:e98331f1d6b5 409 #define PPI_CHG3_CH6_Included PPI_CHG_CH6_Included
vcoubard 607:e98331f1d6b5 410 #define PPI_CHG3_CH5_Pos PPI_CHG_CH5_Pos
vcoubard 607:e98331f1d6b5 411 #define PPI_CHG3_CH5_Msk PPI_CHG_CH5_Msk
vcoubard 607:e98331f1d6b5 412 #define PPI_CHG3_CH5_Excluded PPI_CHG_CH5_Excluded
vcoubard 607:e98331f1d6b5 413 #define PPI_CHG3_CH5_Included PPI_CHG_CH5_Included
vcoubard 607:e98331f1d6b5 414 #define PPI_CHG3_CH4_Pos PPI_CHG_CH4_Pos
vcoubard 607:e98331f1d6b5 415 #define PPI_CHG3_CH4_Msk PPI_CHG_CH4_Msk
vcoubard 607:e98331f1d6b5 416 #define PPI_CHG3_CH4_Excluded PPI_CHG_CH4_Excluded
vcoubard 607:e98331f1d6b5 417 #define PPI_CHG3_CH4_Included PPI_CHG_CH4_Included
vcoubard 607:e98331f1d6b5 418 #define PPI_CHG3_CH3_Pos PPI_CHG_CH3_Pos
vcoubard 607:e98331f1d6b5 419 #define PPI_CHG3_CH3_Msk PPI_CHG_CH3_Msk
vcoubard 607:e98331f1d6b5 420 #define PPI_CHG3_CH3_Excluded PPI_CHG_CH3_Excluded
vcoubard 607:e98331f1d6b5 421 #define PPI_CHG3_CH3_Included PPI_CHG_CH3_Included
vcoubard 607:e98331f1d6b5 422 #define PPI_CHG3_CH2_Pos PPI_CHG_CH2_Pos
vcoubard 607:e98331f1d6b5 423 #define PPI_CHG3_CH2_Msk PPI_CHG_CH2_Msk
vcoubard 607:e98331f1d6b5 424 #define PPI_CHG3_CH2_Excluded PPI_CHG_CH2_Excluded
vcoubard 607:e98331f1d6b5 425 #define PPI_CHG3_CH2_Included PPI_CHG_CH2_Included
vcoubard 607:e98331f1d6b5 426 #define PPI_CHG3_CH1_Pos PPI_CHG_CH1_Pos
vcoubard 607:e98331f1d6b5 427 #define PPI_CHG3_CH1_Msk PPI_CHG_CH1_Msk
vcoubard 607:e98331f1d6b5 428 #define PPI_CHG3_CH1_Excluded PPI_CHG_CH1_Excluded
vcoubard 607:e98331f1d6b5 429 #define PPI_CHG3_CH1_Included PPI_CHG_CH1_Included
vcoubard 607:e98331f1d6b5 430 #define PPI_CHG3_CH0_Pos PPI_CHG_CH0_Pos
vcoubard 607:e98331f1d6b5 431 #define PPI_CHG3_CH0_Msk PPI_CHG_CH0_Msk
vcoubard 607:e98331f1d6b5 432 #define PPI_CHG3_CH0_Excluded PPI_CHG_CH0_Excluded
vcoubard 607:e98331f1d6b5 433 #define PPI_CHG3_CH0_Included PPI_CHG_CH0_Included
vcoubard 607:e98331f1d6b5 434
vcoubard 607:e98331f1d6b5 435
vcoubard 607:e98331f1d6b5 436
vcoubard 607:e98331f1d6b5 437 /*lint --flb "Leave library region" */
vcoubard 607:e98331f1d6b5 438
vcoubard 607:e98331f1d6b5 439 #endif /* NRF51_DEPRECATED_H */
vcoubard 607:e98331f1d6b5 440