-
Notifications
You must be signed in to change notification settings - Fork 40
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
Adapt to embedded-hal-1.0.0-alpha.1 #43
Conversation
r? @ryankurte (rust_highfive has picked a reviewer for you, use r? to override) |
44816d1
to
948480d
Compare
948480d
to
0df951c
Compare
Curious as to what's holding this back? Reason I'm asking is I'm trying to submit a PR to add Controller Area Network (CAN) support. The changes in this PR would help me do so as I'm referencing another PR that implements the CAN traits and is a fork off If something is preventing these changes from going to Thanks |
hey, this is unlikely to land until the upstream |
Yeah, I did contemplate that thought, was just hesitant to go that route as my PR would include another PR's changes which seemed a little bit funky as you would have the same changes in two places. I figured that if you where good with the changes here, you might prefer having a v1.0.0 branch here, ie have a vNext branch and allow folks to PR into that and keep master for any hot fixes that might come up. Multiple ways to skin the cat, it's your house, I'll go whichever route you like |
hey @posborne how would you feel about doing a maintenance / alpha split like we have with |
@ryankurte That seems reasonable to me. |
I adapted this to the
embedded-hal-1.0.0-alpha.1
release.As part of it I also replaced
void
withcore::convert::Infallible
.(blocked on rust-embedded/embedded-hal#177)