Lines Matching refs:HWREG16
69 HWREG16(baseAddress + OFS_LIB_PASEL0) &= ~selectedPins; in GPIO_setAsOutputPin()
70 HWREG16(baseAddress + OFS_LIB_PASEL1) &= ~selectedPins; in GPIO_setAsOutputPin()
71 HWREG16(baseAddress + OFS_LIB_PADIR) |= selectedPins; in GPIO_setAsOutputPin()
79 HWREG16(baseAddress + OFS_LIB_PASEL0) &= ~selectedPins; in GPIO_setAsInputPin()
80 HWREG16(baseAddress + OFS_LIB_PASEL1) &= ~selectedPins; in GPIO_setAsInputPin()
81 HWREG16(baseAddress + OFS_LIB_PADIR) &= ~selectedPins; in GPIO_setAsInputPin()
82 HWREG16(baseAddress + OFS_LIB_PAREN) &= ~selectedPins; in GPIO_setAsInputPin()
92 HWREG16(baseAddress + OFS_LIB_PADIR) |= selectedPins; in GPIO_setAsPeripheralModuleFunctionOutputPin()
96 HWREG16(baseAddress + OFS_LIB_PASEL0) |= selectedPins; in GPIO_setAsPeripheralModuleFunctionOutputPin()
97 HWREG16(baseAddress + OFS_LIB_PASEL1) &= ~selectedPins; in GPIO_setAsPeripheralModuleFunctionOutputPin()
100 HWREG16(baseAddress + OFS_LIB_PASEL0) &= ~selectedPins; in GPIO_setAsPeripheralModuleFunctionOutputPin()
101 HWREG16(baseAddress + OFS_LIB_PASEL1) |= selectedPins; in GPIO_setAsPeripheralModuleFunctionOutputPin()
104 HWREG16(baseAddress + OFS_LIB_PASEL0) |= selectedPins; in GPIO_setAsPeripheralModuleFunctionOutputPin()
105 HWREG16(baseAddress + OFS_LIB_PASEL1) |= selectedPins; in GPIO_setAsPeripheralModuleFunctionOutputPin()
116 HWREG16(baseAddress + OFS_LIB_PADIR) &= ~selectedPins; in GPIO_setAsPeripheralModuleFunctionInputPin()
120 HWREG16(baseAddress + OFS_LIB_PASEL0) |= selectedPins; in GPIO_setAsPeripheralModuleFunctionInputPin()
121 HWREG16(baseAddress + OFS_LIB_PASEL1) &= ~selectedPins; in GPIO_setAsPeripheralModuleFunctionInputPin()
124 HWREG16(baseAddress + OFS_LIB_PASEL0) &= ~selectedPins; in GPIO_setAsPeripheralModuleFunctionInputPin()
125 HWREG16(baseAddress + OFS_LIB_PASEL1) |= selectedPins; in GPIO_setAsPeripheralModuleFunctionInputPin()
128 HWREG16(baseAddress + OFS_LIB_PASEL0) |= selectedPins; in GPIO_setAsPeripheralModuleFunctionInputPin()
129 HWREG16(baseAddress + OFS_LIB_PASEL1) |= selectedPins; in GPIO_setAsPeripheralModuleFunctionInputPin()
141 HWREG16(baseAddress + OFS_LIB_PAOUT) |= selectedPins; in GPIO_setOutputHighOnPin()
151 HWREG16(baseAddress + OFS_LIB_PAOUT) &= ~selectedPins; in GPIO_setOutputLowOnPin()
161 HWREG16(baseAddress + OFS_LIB_PAOUT) ^= selectedPins; in GPIO_toggleOutputOnPin()
171 HWREG16(baseAddress + OFS_LIB_PASEL0) &= ~selectedPins; in GPIO_setAsInputPinWithPullDownResistor()
172 HWREG16(baseAddress + OFS_LIB_PASEL1) &= ~selectedPins; in GPIO_setAsInputPinWithPullDownResistor()
174 HWREG16(baseAddress + OFS_LIB_PADIR) &= ~selectedPins; in GPIO_setAsInputPinWithPullDownResistor()
175 HWREG16(baseAddress + OFS_LIB_PAREN) |= selectedPins; in GPIO_setAsInputPinWithPullDownResistor()
176 HWREG16(baseAddress + OFS_LIB_PAOUT) &= ~selectedPins; in GPIO_setAsInputPinWithPullDownResistor()
186 HWREG16(baseAddress + OFS_LIB_PASEL0) &= ~selectedPins; in GPIO_setAsInputPinWithPullUpResistor()
187 HWREG16(baseAddress + OFS_LIB_PASEL1) &= ~selectedPins; in GPIO_setAsInputPinWithPullUpResistor()
188 HWREG16(baseAddress + OFS_LIB_PADIR) &= ~selectedPins; in GPIO_setAsInputPinWithPullUpResistor()
189 HWREG16(baseAddress + OFS_LIB_PAREN) |= selectedPins; in GPIO_setAsInputPinWithPullUpResistor()
190 HWREG16(baseAddress + OFS_LIB_PAOUT) |= selectedPins; in GPIO_setAsInputPinWithPullUpResistor()
200 inputPinValue = HWREG16(baseAddress + OFS_LIB_PAIN) & (selectedPins); in GPIO_getInputPinValue()
213 HWREG16(baseAddress + OFS_LIB_PAIE) |= selectedPins; in GPIO_enableInterrupt()
223 HWREG16(baseAddress + OFS_LIB_PAIE) &= ~selectedPins; in GPIO_disableInterrupt()
233 return HWREG16(baseAddress + OFS_LIB_PAIFG) & selectedPins; in GPIO_getInterruptStatus()
244 HWREG16(baseAddress + OFS_LIB_PAIFG) &= ~selectedPins; in GPIO_clearInterruptFlag()
256 HWREG16(baseAddress + OFS_LIB_PAIES) &= ~selectedPins; in GPIO_interruptEdgeSelect()
258 HWREG16(baseAddress + OFS_LIB_PAIES) |= selectedPins; in GPIO_interruptEdgeSelect()
286 return (HWREG16(baseAddr + OFS_LIB_PAIE) & pendingInts); in GPIO_getEnabledInterruptStatus()