-
Notifications
You must be signed in to change notification settings - Fork 202
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
SpiDevice's interface can't be used for streaming transactions #583
Comments
+1 ; though from a bit of research I think this might have been a design decision at some point. (the original interface seems to have been closure based, and changed in #443 ; but I haven't finished reading the history on it ) (edit: #478 seems to have a lot of discussion on this topic in it) The lack of some way to acquire CS leads to "interesting" solutions, like in the embedded-sdmmc crate: SdCard relies on an SpiDevice, and a separate CS pin, because it needs to perform multiple and variable transactions while the CS pin is asserted. For one project I have SPI Devices (custom SPI slave) that take a command, process it, and while processing will generate a 'busy' byte until the response is ready, and then play the response, all within a single CS assertion. That interaction isn't allowed with the current SpiDevice trait. |
The problem is that not all SPI implementations support this. Notably, I think the Linux HAL implementation runs into this problem. The traits here in However, keep in mind that individual HAL implementations are free to add additional APIs to expose such features. You won't get a HAL generic interface from this, but when writing an application, this may not even be necessary. If |
for anyone reading this: don't do this, it breaks bus sharing. issue filed. |
It'd be useful if embedded-hal could expose a trait for these complex uses,
so that when they are possible on a platform they can be exploited. If
there was a trait or similar for 'acquire/release exclusive access to the
bus', it'd provide a more standardized mechanism for lib authors to work
with; and would mean the advice 'drivers should implement spidevice' could
be updated.
|
In the meantime, does it seem like a reasonable stop-gap for my project to handle SPI bus sharing by just passing the |
Yep, that's an expected way to share |
There are applications where, when writing data to an SPI device, it is more efficient to write the data in a single transaction rather than multiple transactions (my use case is an SPI screen that can write multiple lines in a single transaction).
However, with the current
SpiDevice
interface, I would need to create a slice ofOperation
s in order to be able to write all the lines in a single transaction. Because I need a new Operation for each separate line, this requires 128 lines * 8 bytes per slice = 1KiB of additional data just for the pointers (the framebuffer itself is only 2 KiB!). The chip I am targeting only has 40KiB of memory total, so this is a substantial amount of overhead.The interface is now stabilized because the crate is at 1.0, but is there some change that can be made to improve this situation? (e.g. an interface that takes an iterator of
Operations
, a closure-based interface, or something similar)The text was updated successfully, but these errors were encountered: