Axi4DataChannelDriver constructor
- required Component parent,
- required Axi4SystemInterface sIntf,
- required Axi4DataChannelInterface rIntf,
- required Sequencer<
Axi4DataPacket> sequencer, - int? timeoutCycles = 500,
- int? dropDelayCycles = 30,
- String name = 'axi4DataChannelInterface',
Creates a new Axi4RequestChannelDriver.
Implementation
Axi4DataChannelDriver({
required Component parent,
required this.sIntf,
required this.rIntf,
required super.sequencer,
super.timeoutCycles = 500,
super.dropDelayCycles = 30,
String name = 'axi4DataChannelInterface',
}) : super(
name,
parent,
clk: sIntf.clk,
) {
isWr = rIntf is Axi4BaseWChannelInterface;
isRd = rIntf is Axi4BaseRChannelInterface;
}