-
Notifications
You must be signed in to change notification settings - Fork 209
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
rtic migration strategy for eh-1.0 #862
Comments
After some work with Switching from
|
This has been resolved by just moving to embedded-hal 1.0. |
I am trying to compile some examples with
embeddeded-hal 1.0.0-rc.2
usingstm32f4xx-hal
from github which now uses it. One problem is that types fordelay_ms
anddelay_us
are now inembedded_hal::delay::DelayNs
. This causescortex-m-rtic = ">=1.0"
to fail compiling.Looking for a new github version I discovered that I should be migrating to
rtic v2
. I really want to understand the changes,async
functions, etc, before I jump into that, but the bigger problem is needing to use nightly.Since release of
eh-1.0
is planned before the end of the month, is it intended that everyone usingrtic
will be forced to use nightly in order to switch to the release ofembeddeded-hal 1.0.0
? Or will there be acortex-m-rtic
with delay types fromDelayNs
? Or is there some other migration strategy I should try?The text was updated successfully, but these errors were encountered: