You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I get the following error when trying to read from a &mut [u8]
^^ the trait `embedded_io::Read` is not implemented for `[u8]`
|
= help: the trait `embedded_io::Read` is implemented for `&[u8]`
= note: required for `&mut [u8]` to implement `embedded_io::Read`
It appears that the trait is implemented for &[u8] and not &mut [u8]. That currently causes issues with some code I'm working with, and it should be an easy fix so I'll go ahead and fork+pr.
The text was updated successfully, but these errors were encountered:
I get the following error when trying to read from a
&mut [u8]
It appears that the trait is implemented for &[u8] and not &mut [u8]. That currently causes issues with some code I'm working with, and it should be an easy fix so I'll go ahead and fork+pr.
The text was updated successfully, but these errors were encountered: