| 91 | } |
| 92 | |
| 93 | DriverState poll() override { |
| 94 | if (mShouldFail) { |
| 95 | return DriverState::ERROR; |
| 96 | } |
| 97 | // Fake implementation: always return READY (transmission completes instantly) |
| 98 | if (!mTransmittingChannels.empty()) { |
| 99 | mTransmittingChannels.clear(); |
| 100 | } |
| 101 | return DriverState::READY; |
| 102 | } |
| 103 | |
| 104 | private: |
| 105 | void beginTransmission(fl::span<const ChannelDataPtr> channels) { |
no test coverage detected