I2C Controller¶
The PxI2CController class implements the functionality of an I2C Controller. It provides methods to write and read data to/from I2C devices.
PxI2CController
¶
PxI2CController(
exerciser: AqProtocolExerciser,
*args,
config: I2CControllerConfig | None = None,
**kwargs
)
An I2C controller device class.
This class provides a high-level interface to an I2C controller with base I2C fuctionality.
It does not automatically create an actual instance on the Protocol Exerciser until user call
the attach_to_bus method.
Typical usage example:
i2c_bus = PxI2CBus(exerciser_session)
i2c_controller = PxI2CController(exerciser_session)
i2c_controller.attach_to_bus(i2c_bus)
... # Do any operation from this controller
i2c_controller.detach_from_bus()
| METHOD | DESCRIPTION |
|---|---|
i2c_write |
Perform a write operation to an I2C device. |
i2c_write_addr |
Perform a write operation to an I2C device with sub-address. |
i2c_read |
Perform a read operation from an I2C device. |
i2c_read_addr |
Perform a read operation from an I2C device with sub-address. |
add_event_handler |
Add an event handler to the current device instance. |
remove_event_handler |
Remove an event handler. |
get_event_handlers |
Retreive handlers registerd on this device. |
on_event |
Add an event handler to the instance by decorator. |
config |
Set the config of the controller. |
detach_from_bus |
Detach the device from the bus. |
perform_operation |
Send an operation. |
attach_to_bus |
Attach the controller to a bus. |
send_i2c_transactions |
Send a sequence of I2C transactions. |
send_transactions |
Send a sequence of I2C transactions. |
i2c_scan_all |
Perform scan operation that scanning all available targets. |
| ATTRIBUTE | DESCRIPTION |
|---|---|
available_events_map |
A reverse mapping of |
is_attached |
Check if the device is attached to a bus.
TYPE:
|
state |
Get the state of the device.
TYPE:
|
name |
Get the name of the device.
TYPE:
|
cts_op_name |
Get the name of CTS operation.
TYPE:
|
available_events_map
¶
A reverse mapping of field_name_by_number, which uses field name as key.
i2c_write
¶
Perform a write operation to an I2C device.
This method sends data to an I2C device with a given address.
| PARAMETER | DESCRIPTION |
|---|---|
|
The address of the I2C device to write to.
TYPE:
|
|
The data to be written to the I2C device. |
| RETURNS | DESCRIPTION |
|---|---|
int | None
|
The number of bytes written. Returns None if the target NACKs. |
| RAISES | DESCRIPTION |
|---|---|
ValueError
|
|
i2c_write_addr
¶
Perform a write operation to an I2C device with sub-address.
This method sends data to an I2C device with a given address and sub_address.
| PARAMETER | DESCRIPTION |
|---|---|
|
The address of the I2C device to write to.
TYPE:
|
|
The sub-address of the I2C device to write to. May be a single byte value or a list of bytes for multi-byte address phases. |
|
The data to be written to the I2C device. |
| RETURNS | DESCRIPTION |
|---|---|
int | None
|
The number of bytes written. Returns None if the target NACKs. |
| RAISES | DESCRIPTION |
|---|---|
OverflowError
|
If |
ValueError
|
If |
i2c_read
¶
Perform a read operation from an I2C device.
This method tries to read data from an I2C device with a given address.
It may return less than count bytes if the target aborts the read operation early.
| PARAMETER | DESCRIPTION |
|---|---|
|
The address of the I2C device to read from.
TYPE:
|
|
The number of bytes to read from the I2C device.
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
list[int]
|
The data read from the I2C device. Returns an empty list if the target NACKs. |
| RAISES | DESCRIPTION |
|---|---|
ValueError
|
Cannot perform read operation with count less or equal to 0. |
i2c_read_addr
¶
Perform a read operation from an I2C device with sub-address.
This method tries to read data from an I2C device with a given address and
sub_address. It may return an amount of data which is less than count if the
target aborts the read operation earlier.
| PARAMETER | DESCRIPTION |
|---|---|
|
The address of the I2C device to read from.
TYPE:
|
|
The sub-address of the I2C device to read from. May be a single byte value or a list of bytes for multi-byte address phases. |
|
The number of bytes to read from the I2C device.
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
list[int]
|
The data read from the I2C device. Returns an empty list if the target NACKs. |
| RAISES | DESCRIPTION |
|---|---|
OverflowError
|
If |
ValueError
|
If |
add_event_handler
¶
Add an event handler to the current device instance.
get_event_handlers
¶
Retreive handlers registerd on this device.
on_event
¶
Add an event handler to the instance by decorator.
detach_from_bus
¶
Detach the device from the bus.
The opposite of the attach_to_bus method.
perform_operation
¶
Send an operation.
attach_to_bus
¶
attach_to_bus(bus: PxAbstractBus) -> None
Attach the controller to a bus.
This method is used to make the device aware of the bus it is connected to. It is used to set the bus attribute of the device.
Note
This method will not automatically create an actual instance on
the Protocol Exerciser until user call the attach_to_bus method.
| PARAMETER | DESCRIPTION |
|---|---|
|
The bus to attach the device to
TYPE:
|
| RAISES | DESCRIPTION |
|---|---|
ValueError
|
If the device is already attached to a bus |
send_i2c_transactions
¶
send_i2c_transactions(transactions: list[I2CTransaction]) -> list[I2CTransaction]
Send a sequence of I2C transactions.
This method enqueue a sequence of I2C transactions to be sent to the I2C bus,
starting from a START pattern end with STOP.
Each element in transactions is an pxmsg.I2CTransaction object, which contains one of the
supported transaction type listed below:
- pxmsg.I2CWriteTransaction
- pxmsg.I2CReadTransaction
The transactions are sent in the order they are provided.
| PARAMETER | DESCRIPTION |
|---|---|
|
A list of
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
PxError
|
If the transaction fails.
TYPE:
|
send_transactions
¶
Send a sequence of I2C transactions.
Alias for :meth:send_i2c_transactions.
i2c_scan_all
¶
Perform scan operation that scanning all available targets.
This method scan all the available targets by sending write to all the targets. Then check each target return ACK or NACK, and set the corresponding element in returned list.
| RETURNS | DESCRIPTION |
|---|---|
list[bool]
|
The list contains the ACK or NACK. Can check whether the target was available by taking the address as index to access the list. |