Home
last modified time | relevance | path

Searched refs:HWREG16 (Results 1 – 9 of 9) sorted by relevance

/hal_ti-latest/simplelink/source/ti/devices/msp432p4xx/inc/
Dmsp432p401m_classic.h69 #define AESACTL0 (HWREG16(0x40003C00)) /*!< AES Accelerat…
70 #define AESACTL1 (HWREG16(0x40003C02)) /*!< AES Accelerat…
71 #define AESASTAT (HWREG16(0x40003C04)) /*!< AES Accelerat…
72 #define AESAKEY (HWREG16(0x40003C06)) /*!< AES Accelerat…
73 #define AESADIN (HWREG16(0x40003C08)) /*!< AES Accelerat…
74 #define AESADOUT (HWREG16(0x40003C0A)) /*!< AES Accelerat…
75 #define AESAXDIN (HWREG16(0x40003C0C)) /*!< AES Accelerat…
76 #define AESAXIN (HWREG16(0x40003C0E)) /*!< AES Accelerat…
92 #define CAPTIO0CTL (HWREG16(0x4000540E)) /*!< Capacitive To…
103 #define CAPTIO1CTL (HWREG16(0x4000580E)) /*!< Capacitive To…
[all …]
Dmsp432p401r_classic.h69 #define AESACTL0 (HWREG16(0x40003C00)) /*!< AES Accelerat…
70 #define AESACTL1 (HWREG16(0x40003C02)) /*!< AES Accelerat…
71 #define AESASTAT (HWREG16(0x40003C04)) /*!< AES Accelerat…
72 #define AESAKEY (HWREG16(0x40003C06)) /*!< AES Accelerat…
73 #define AESADIN (HWREG16(0x40003C08)) /*!< AES Accelerat…
74 #define AESADOUT (HWREG16(0x40003C0A)) /*!< AES Accelerat…
75 #define AESAXDIN (HWREG16(0x40003C0C)) /*!< AES Accelerat…
76 #define AESAXIN (HWREG16(0x40003C0E)) /*!< AES Accelerat…
92 #define CAPTIO0CTL (HWREG16(0x4000540E)) /*!< Capacitive To…
103 #define CAPTIO1CTL (HWREG16(0x4000580E)) /*!< Capacitive To…
[all …]
Dmsp_compatibility.h41 #define HWREG16(x) (*((volatile uint16_t *)(x))) macro
43 #define HWREG(x) (HWREG16(x))
53 #define HWREGBIT16(x, b) (HWREG16(((uint32_t)(x) & 0xF0000000) | 0x02000000 | (((uint32_t)(x) & 0x…
/hal_ti-latest/simplelink/source/ti/devices/msp432p4xx/driverlib/
Dgpio.c69 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()
[all …]
Dcrc32.c75 HWREG16(&(CRC32->DI32)) = dataIn & 0xFFFF; in CRC32_set32BitData()
76 HWREG16(&(CRC32->DI32)) = (uint16_t)( in CRC32_set32BitData()
105 HWREG16(&(CRC32->DIRB32)) = dataIn & 0xFFFF; in CRC32_set32BitDataReversed()
106 HWREG16(&(CRC32->DIRB32)) = (uint16_t)( in CRC32_set32BitDataReversed()
Ddriverlib.h87 #define HWREG16(x) (*((volatile uint16_t *)(x))) macro
89 #define HWREG(x) (HWREG16(x))
Dsysctl.c281 return HWREG16(TLV_BASE + refVoltage + temperature); in SysCtl_getTempCalibrationConstant()
Dsysctl_a.c170 return HWREG16(TLV_BASE + refVoltage + temperature); in SysCtl_A_getTempCalibrationConstant()
Di2c.c111 HWREG16( in I2C_initSlave()