Lines Matching defs:base

101 uint32_t I2C_GetInstance(I2C_Type *base)  in I2C_GetInstance()
157 void I2C_MasterInit(I2C_Type *base, const i2c_master_config_t *masterConfig, uint32_t srcClock_Hz) in I2C_MasterInit()
180 void I2C_MasterDeinit(I2C_Type *base) in I2C_MasterDeinit()
200 void I2C_MasterSetBaudRate(I2C_Type *base, uint32_t baudRate_Bps, uint32_t srcClock_Hz) in I2C_MasterSetBaudRate()
238 static uint32_t I2C_PendingStatusWait(I2C_Type *base) in I2C_PendingStatusWait()
278 status_t I2C_MasterStart(I2C_Type *base, uint8_t address, i2c_direction_t direction) in I2C_MasterStart()
299 status_t I2C_MasterStop(I2C_Type *base) in I2C_MasterStop()
327 status_t I2C_MasterWriteBlocking(I2C_Type *base, const void *txBuff, size_t txSize, uint32_t flags) in I2C_MasterWriteBlocking()
443 status_t I2C_MasterReadBlocking(I2C_Type *base, void *rxBuff, size_t rxSize, uint32_t flags) in I2C_MasterReadBlocking()
542 status_t I2C_MasterTransferBlocking(I2C_Type *base, i2c_master_transfer_t *xfer) in I2C_MasterTransferBlocking()
623 void I2C_MasterTransferCreateHandle(I2C_Type *base, in I2C_MasterTransferCreateHandle()
663 status_t I2C_MasterTransferNonBlocking(I2C_Type *base, i2c_master_handle_t *handle, i2c_master_tran… in I2C_MasterTransferNonBlocking()
700 status_t I2C_MasterTransferGetCount(I2C_Type *base, i2c_master_handle_t *handle, size_t *count) in I2C_MasterTransferGetCount()
732 status_t I2C_MasterTransferAbort(I2C_Type *base, i2c_master_handle_t *handle) in I2C_MasterTransferAbort()
783 static status_t I2C_InitTransferStateMachine(I2C_Type *base, i2c_master_handle_t *handle, i2c_maste… in I2C_InitTransferStateMachine()
850 static status_t I2C_RunTransferStateMachine(I2C_Type *base, i2c_master_handle_t *handle, bool *isDo… in I2C_RunTransferStateMachine()
1028 void I2C_MasterTransferHandleIRQ(I2C_Type *base, void *i2cHandle) in I2C_MasterTransferHandleIRQ()
1062 static void I2C_SlaveInternalStateMachineReset(I2C_Type *base) in I2C_SlaveInternalStateMachineReset()
1129 static uint32_t I2C_SlavePollPending(I2C_Type *base) in I2C_SlavePollPending()
1164 static void I2C_SlaveInvokeEvent(I2C_Type *base, i2c_slave_handle_t *handle, i2c_slave_transfer_eve… in I2C_SlaveInvokeEvent()
1202 static bool I2C_SlaveAddressIRQ(I2C_Type *base, i2c_slave_handle_t *handle) in I2C_SlaveAddressIRQ()
1279 static status_t I2C_SlaveTransferNonBlockingInternal(I2C_Type *base, in I2C_SlaveTransferNonBlockingInternal()
1348I2C_Type *base, volatile i2c_slave_transfer_t *transfer, const void *txData, size_t txSize, uint32… in I2C_SlaveSetSendBuffer()
1378I2C_Type *base, volatile i2c_slave_transfer_t *transfer, void *rxData, size_t rxSize, uint32_t eve… in I2C_SlaveSetReceiveBuffer()
1395 void I2C_SlaveSetAddress(I2C_Type *base, in I2C_SlaveSetAddress()
1455 status_t I2C_SlaveInit(I2C_Type *base, const i2c_slave_config_t *slaveConfig, uint32_t srcClock_Hz) in I2C_SlaveInit()
1506 void I2C_SlaveDeinit(I2C_Type *base) in I2C_SlaveDeinit()
1527 status_t I2C_SlaveWriteBlocking(I2C_Type *base, const uint8_t *txBuff, size_t txSize) in I2C_SlaveWriteBlocking()
1614 status_t I2C_SlaveReadBlocking(I2C_Type *base, uint8_t *rxBuff, size_t rxSize) in I2C_SlaveReadBlocking()
1703 void I2C_SlaveTransferCreateHandle(I2C_Type *base, in I2C_SlaveTransferCreateHandle()
1766 status_t I2C_SlaveTransferNonBlocking(I2C_Type *base, i2c_slave_handle_t *handle, uint32_t eventMas… in I2C_SlaveTransferNonBlocking()
1780 status_t I2C_SlaveTransferGetCount(I2C_Type *base, i2c_slave_handle_t *handle, size_t *count) in I2C_SlaveTransferGetCount()
1810 void I2C_SlaveTransferAbort(I2C_Type *base, i2c_slave_handle_t *handle) in I2C_SlaveTransferAbort()
1830 void I2C_SlaveTransferHandleIRQ(I2C_Type *base, void *i2cHandle) in I2C_SlaveTransferHandleIRQ()
1957 static void I2C_TransferCommonIRQHandler(I2C_Type *base, void *handle) in I2C_TransferCommonIRQHandler()