The official Mbed 2 C/C++ SDK provides the software platform and libraries to build your applications.

Dependents:   hello SerialTestv11 SerialTestv12 Sierpinski ... more

mbed 2

This is the mbed 2 library. If you'd like to learn about Mbed OS please see the mbed-os docs.

Committer:
AnnaBridge
Date:
Thu Nov 09 11:14:10 2017 +0000
Revision:
157:e7ca05fa8600
Parent:
156:ff21514d8981
Release 155 of the mbed library.

Who changed what in which revision?

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