getRdDriver method

Axi4ReadMainDriver? getRdDriver(
  1. int channelId
)

Get the ith channel's read driver.

Implementation

Axi4ReadMainDriver? getRdDriver(int channelId) =>
    _readAddrToChannel.containsKey(channelId)
        ? rdAgents[_readAddrToChannel[channelId]!].driver
        : null;