Merge pull request #2413 from JomerDev/better-read_packet-doc
Add buffer size info to read_packet docs
This commit is contained in:
commit
49ee0564ed
1 changed files with 1 additions and 0 deletions
|
@ -439,6 +439,7 @@ impl<'d, D: Driver<'d>> Receiver<'d, D> {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Reads a single packet from the OUT endpoint.
|
/// Reads a single packet from the OUT endpoint.
|
||||||
|
/// Must be called with a buffer large enough to hold max_packet_size bytes.
|
||||||
pub async fn read_packet(&mut self, data: &mut [u8]) -> Result<usize, EndpointError> {
|
pub async fn read_packet(&mut self, data: &mut [u8]) -> Result<usize, EndpointError> {
|
||||||
self.read_ep.read(data).await
|
self.read_ep.read(data).await
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue