(&self)
| 97 | type TxToken = TxToken; |
| 98 | |
| 99 | fn capabilities(&self) -> DeviceCapabilities { |
| 100 | let mut caps = DeviceCapabilities::default(); |
| 101 | caps.max_transmission_unit = 1500; |
| 102 | caps.max_burst_size = Some(1); |
| 103 | caps |
| 104 | } |
| 105 | |
| 106 | fn receive(&'a mut self) -> Option<(Self::RxToken, Self::TxToken)> { |
| 107 | match message::rcall(self.handle.as_ref(), |
nothing calls this directly
no outgoing calls
no test coverage detected