-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Nightly no u8 -> u16 conversion #46
Comments
I believe this is not a matter of compiling with nightly, rather that you're compiling for a target with The reason is that the necessary traits are only implemented for 32 bit and 64 bit, see here Lines 354 to 468 in 0522880
You might want to implement the 16 bit equivalent. I just opted not using this crate but plain old conversions |
I am compiling an embedded program for the Arduino, requiring the rust nightly version. It seems, that this crate cannot convert
u8
tou16
on the nightly version.My code, basically the example from the readme with all necessary steps for the embedded code.
Compilation error:
I believe the error is appropriate in this repo. If i am wrong, please inform me.
The text was updated successfully, but these errors were encountered: