@brief Install the manager-owned poll-needed callback for ISR wakeups. Implementations that can signal from an ISR should store this callback and invoke it after updating their own state. Implementations without such a signal can ignore it; the manager will still make progress via bounded timeout slices.
| 238 | /// such a signal can ignore it; the manager will still make progress via |
| 239 | /// bounded timeout slices. |
| 240 | virtual void setPollNeededCallback(PollNeededCallback callback) FL_NOEXCEPT { |
| 241 | (void)callback; |
| 242 | } |
| 243 | |
| 244 | /// @brief Block until this driver finishes any in-flight transmit. |
| 245 | /// |
no outgoing calls
no test coverage detected