Home
last modified time | relevance | path

Searched refs:startReg (Results 1 – 5 of 5) sorted by relevance

/hal_nxp-latest/mcux/mcux-sdk/components/pcal6524/
Dfsl_pcal6524.c25 static status_t PCAL6524_ReadPort(pcal6524_handle_t *handle, uint8_t startReg, uint32_t *value) in PCAL6524_ReadPort() argument
27 return handle->I2C_ReceiveFunc(handle->i2cAddr, startReg, 1U, (uint8_t *)value, 3U, 0U); in PCAL6524_ReadPort()
31 static status_t PCAL6524_WritePort(pcal6524_handle_t *handle, uint8_t startReg, uint32_t value) in PCAL6524_WritePort() argument
33 return handle->I2C_SendFunc(handle->i2cAddr, startReg, 1U, (uint8_t *)&value, 3U, 0U); in PCAL6524_WritePort()
38 uint8_t startReg, in PCAL6524_ModifyPortRegBits() argument
45 status = PCAL6524_ReadPort(handle, startReg, &regValue); in PCAL6524_ModifyPortRegBits()
66 status = PCAL6524_WritePort(handle, startReg, regValue); in PCAL6524_ModifyPortRegBits()
/hal_nxp-latest/mcux/mcux-sdk/components/adp5585/
Dfsl_adp5585.c25 static status_t ADP5585_ReadPort(adp5585_handle_t *handle, uint8_t startReg, uint16_t *value) in ADP5585_ReadPort() argument
27 return handle->I2C_ReceiveFunc(handle->i2cAddr, startReg, 1U, (uint8_t *)value, 2U, 0U); in ADP5585_ReadPort()
31 static status_t ADP5585_WritePort(adp5585_handle_t *handle, uint8_t startReg, uint16_t value) in ADP5585_WritePort() argument
33 return handle->I2C_SendFunc(handle->i2cAddr, startReg, 1U, (uint8_t *)&value, 2U, 0U); in ADP5585_WritePort()
38 uint8_t startReg, in ADP5585_ModifyPortRegBits() argument
45 status = ADP5585_ReadPort(handle, startReg, &regValue); in ADP5585_ModifyPortRegBits()
66 status = ADP5585_WritePort(handle, startReg, regValue); in ADP5585_ModifyPortRegBits()
/hal_nxp-latest/mcux/mcux-sdk/components/pca6416a/
Dfsl_pca6416a.c25 static status_t PCA6416A_ReadPort(pca6416a_handle_t *handle, uint8_t startReg, uint16_t *value) in PCA6416A_ReadPort() argument
27 return handle->I2C_ReceiveFunc(handle->i2cAddr, startReg, 1U, (uint8_t *)value, 2U, 0U); in PCA6416A_ReadPort()
31 static status_t PCA6416A_WritePort(pca6416a_handle_t *handle, uint8_t startReg, uint16_t value) in PCA6416A_WritePort() argument
33 return handle->I2C_SendFunc(handle->i2cAddr, startReg, 1U, (uint8_t *)&value, 2U, 0U); in PCA6416A_WritePort()
38 uint8_t startReg, in PCA6416A_ModifyPortRegBits() argument
45 status = PCA6416A_ReadPort(handle, startReg, &regValue); in PCA6416A_ModifyPortRegBits()
66 status = PCA6416A_WritePort(handle, startReg, regValue); in PCA6416A_ModifyPortRegBits()
/hal_nxp-latest/mcux/mcux-sdk/components/video/camera/device/sccb/
Dfsl_sccb.c28 uint32_t startReg, in SCCB_WriteMultiRegs() argument
33 return i2cSendFunc(i2cAddr, startReg, addrType, value, len); in SCCB_WriteMultiRegs()
Dfsl_sccb.h73 uint32_t startReg,