Sergey Solodunov / nRF51822

Dependencies:   nrf51-sdk

Fork of nRF51822 by Nordic Semiconductor

Committer:
rgrover1
Date:
Wed Dec 02 10:32:52 2015 +0000
Revision:
498:d72c7e78ee13
Parent:
496:08bd8a46630b
Synchronized with git rev a583502f
Author: Liyou Zhou
Update files to nrf51 sdk 8.1.0

Who changed what in which revision?

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