| 70 | } |
| 71 | |
| 72 | DriverState poll() override { |
| 73 | // Mock implementation: always return READY after transmission |
| 74 | if (!mTransmittingChannels.empty()) { |
| 75 | mTransmittingChannels.clear(); |
| 76 | } |
| 77 | return DriverState::READY; |
| 78 | } |
| 79 | |
| 80 | fl::string getName() const override { return mName; } |
| 81 |
no test coverage detected