- Notifications
You must be signed in to change notification settings - Fork53
ImplementWait forCdevPin withtokio runtime.#110
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
base:master
Are you sure you want to change the base?
Uh oh!
There was an error while loading.Please reload this page.
Conversation
Wait forCdevPin withtokio runtime.Wait forCdevPin withtokio runtime.reitermarkus commentedFeb 10, 2024
@rust-embedded/embedded-linux, please have a look here. |
warthog618 left a comment• edited
Loading Uh oh!
There was an error while loading.Please reload this page.
edited
Uh oh!
There was an error while loading.Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
Wrt thesecond commit:
The way you drop and re-request lines looks broken to me. You should be holding the request provided in new() and never dropping it. If you need to reconfigure the request usereq.reconfigure(), don't drop it and re-request it. Dropping and re-requesting can create glitches on output lines and drop buffered edge events on input lines.
You should not need to self.request()? in set_low(), set_high() and is_high() - you should already hold the request.
That goes for wait_for_edge() too - dropping and re-requesting the line will lose events.
In fact you might want to check the config there and reconfigure() if the edge detection is incorrect. Or just assume that the user set edge detection appropriately before passing the Request to new(). Either way, be aware that the kernel may have buffered events, and those may be the wrong type so you always need to filter.
And line 41 looks redundant - see line 32.
reitermarkus commentedFeb 14, 2024
@warthog618, thanks for the review,req.reconfigure() seems to be what I was missing. |
b6f76e3 to8d94decComparewarthog618 commentedFeb 15, 2024 • edited
Loading Uh oh!
There was an error while loading.Please reload this page.
edited
Uh oh!
There was an error while loading.Please reload this page.
FWIW, I forked your patch to take a closer look and see what it would take to fix it. Of course one thing lead to another and what I've ended up with might be considered a complete re-write. I haven't done any testing with it yet, but it solves all the issues I've found, including ones I didn't list above, like panics - don't panic, and adds StatefulOutputPin support. I'll look at getting that pushed to github so you can take a look and compare it with where you are at. This is myfork. That needs to be built against gpiocdev master, to get the derive Debug on the async wrappers, until that makes its way into a release. |
warthog618 commentedFeb 16, 2024
I've gotten my fork to a point I'm reasonably happy with, and have done a little testing with it - your I would like to tidy that up into a PR, if that is ok with you, and add a test suite for it as well. I'm probably trampling a bunch of norms, so sorry about that, but I'm terrible at reviewing on github and I figured this is the quickest way to get to a working solution. |
reitermarkus commentedFeb 16, 2024 • edited
Loading Uh oh!
There was an error while loading.Please reload this page.
edited
Uh oh!
There was an error while loading.Please reload this page.
@warthog618, I took a look at your changes and made some improvements in here accordingly. Instead of two different types for input/output pins, I used marker types, which is a bit more common for HALs I think.
No worries. I think suggesting changes in the “Files changed” tab would be a bit easier to manage than comparing a whole rewrite and avoid duplicating effort, though. |
reitermarkus commentedFeb 16, 2024
For simplicity, I also left out any conversions from/to |
warthog618 commentedFeb 16, 2024
Not familiar with markers, and don't see the advantage so far.
That is what I thought as well - but the changes rapidly became extensive and it was quicker to re-code than describe what I wanted to change.
I disagree - that allows for complex use cases that basic input/output doesn't, without wrapping gpiocdev functions. If the user has a complex use case, or even just want to set bias, they can construct the request themselves and then wrap that in a CdevPin and still get all the benefits of the embedded-hal traits. Speaking of which, do you support requesting a line without setting direction? You would be surprised how often that gets requested. |
reitermarkus commentedFeb 16, 2024
Which is why I said
even iflater means another PR immediately after this, but I think it's easier to review this PR without these additional constructors.
What does that mean exactly? Would the |
reitermarkus commentedFeb 16, 2024
For the implementation, you don't need an “inner” struct to share code between input/output pins, and the API user only has to import one type. It's also possible to then extend e.g. the |
warthog618 commentedFeb 16, 2024
It means requesting the pin in whatever state it currently is in. It still makes sense for InputPin.
So it is syntactic sugar. That approach looks like exposing all the internal variables that you want to hide and are not relevant for the HAL traits. |
eldruin commentedFeb 16, 2024
Thank you both for your work. It seems like there is a fruitful collaboration happening here. |
reitermarkus commentedFeb 16, 2024
That's how the STM32 HALs do it. Of course it depends on how much state you want to encode in types, i.e. whether you prefer compile-time or runtime checks for changing states. |
reitermarkus commentedFeb 16, 2024
So e.g. |
warthog618 commentedFeb 17, 2024
It could be thought of as a StatefulOutputPin where the initial value is read from the current line state rather than being provided by the user. Some users use that to store state, e.g. did I leave the led on??, despite the kernel explicitly not guaranteeing that the line will remain as set after you release it. To do that with the kernel uAPI you have to request the line without any direction set, read the value, then reconfigure the line to explicitly be an output to allow you to modify the value. (that aspect of the uAPI is intentionally awkward - you must explicitly request the line as an output to change its value to ensure you aren't flipping the line to an output by accident.)
I prefer compile time if at all possible, and after a quick look at the STM32 HALs my impression is that they feel the same and chose to expose their pin state to get the Rust compiler to do the access control on their peripheral registers for them at compile time. Nice. But that doesn't apply here - the kernel does that for you at run-time, and that can't be avoided. And you don't need to check or care what, for example, the bias setting is to read or write the line value, so I don't see the value in it being exposed in the type. Those attributes are orthogonal to the HAL traits. The only relevant state here is direction. |
reitermarkus commentedFeb 17, 2024
So in this case you prefer runtime checks, except for direction, which is the current state of this PR, correct?
It allows users to ensure a certain bias by specifying the corresponding type, and it allows implementing the API in a way that forbids useless operations at compile time, e.g. calling |
warthog618 commentedFeb 17, 2024
No, I do not prefer runtime checks, if you check my fork I explicitly refactored it into separate input/output classes to avoid runtime checks. I don't see how checks for bias etc are at all relevant to these HAL traits, so I don't see the need for any checks. But you do whatever works for you. |
reitermarkus commentedMar 7, 2024
I see what you mean. They are not relevant for the traits, they are only relevant to avoid exposing any implementation detail, i.e. usage of Correct me if I am wrong, I think we have different design goals in mind:
|
warthog618 commentedMar 7, 2024
Implementing traits should just be implementing those traits. If you go beyond that you need to ask yourself why the methods you are adding are not part of the traits. KISS.
My goal is to provide both - an implementation that does not require any knowledge of gpiocdev for basic use cases, while still allowing access to the underlying gpiocdev::Request for more complex cases. My version isgpiocdev_embedded_hal. |
Uh oh!
There was an error while loading.Please reload this page.
Depends on#92, i.e. we either need an enum error type, or completely switch to
gpiocdev. Both are breaking changes, so a complete switch seems preferable.Currently, allgpiocdev::Errors are unwrapped.Replaced
CdevPinimplementation to be based ongpiocdev::Request.Closes#92.