Mouse code for the MacroRat

Dependencies:   ITG3200 QEI

Committer:
sahilmgandhi
Date:
Sun May 14 23:18:57 2017 +0000
Revision:
18:6a4db94011d3
Publishing again

Who changed what in which revision?

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