aboutsummaryrefslogtreecommitdiff
path: root/embassy-embedded-hal/src/shared_bus
Commit message (Collapse)AuthorAgeFilesLines
* Rustfmt for edition 2024.Dario Nieuwenhuis2025-10-064-6/+6
|
* Clippy fixesDion Dokter2025-09-183-13/+13
|
* Add clone impl on shared i2cDion Dokter2025-09-182-0/+36
|
* fix: remove static lifetime requirements from i2c shared bus.Preston Peranich2025-07-311-4/+4
|
* Add proper error handling if CS is not droppedShaw Drastin2025-02-071-2/+14
|
* SpiDevice cancel safety: always set CS pin to high on dropShaw Drastin2025-02-041-4/+11
| | | | | If a transfer is dropped, the CS will stay in a low state, which seems to be unsafe.
* embassy-embedded-hal: add support for all word sizes to async shared spi.Dario Nieuwenhuis2024-05-201-6/+8
|
* embassy-embedded-hal: remove Word generic for blocking SpiDeviceWithConfig.Dario Nieuwenhuis2024-05-201-11/+4
|
* PR remarksRagarnoy2024-05-201-1/+1
|
* rustmftRagarnoy2024-05-201-8/+4
|
* Remove old embedded-hal trait implementationsragarnoy2024-05-201-94/+4
|
* Add Copy and 'static constraint to Word type in SPI structsRagarnoy2024-05-201-4/+9
|
* rustfmtRagarnoy2024-05-201-13/+23
|
* Improve flexibility by introducing SPI word size as a generic parameterRagarnoy2024-05-201-16/+63
|
* Allow changing Spi/I2cDeviceWithConfig's config at runtimeCaleb Jamison2024-03-234-0/+20
|
* Forward transaction() from blocking I2cDevice to underlying busSebastian Goll2024-03-201-6/+10
|
* Remove nightly and unstable-traits features in preparation for 1.75.Dario Nieuwenhuis2023-11-293-15/+11
|
* Update embedded-(hal,io,nal).Dario Nieuwenhuis2023-11-293-19/+27
|
* shared_bus/blocking/spi: fix build and behaviour when "time" disabledTorin Cooper-Bennun2023-11-271-2/+10
| | | | | new behaviour: check for DelayUs presence in operations instead of shortcircuiting
* embassy-embedded-hal: don't use feature(try_blocks).Dario Nieuwenhuis2023-11-241-16/+36
|
* time: Update examples, tests, and other code to use new Timer::after_x ↵Adam Greig2023-10-151-6/+2
| | | | convenience methods
* eh: update set_config and add get_configxoviat2023-10-015-9/+15
|
* update embedded-hal crates.Dario Nieuwenhuis2023-07-043-219/+31
|
* Fix tests.Dario Nieuwenhuis2023-05-292-6/+4
|
* Remove debugCaleb Jamison2023-05-221-2/+0
|
* Add i2c transactionCaleb Jamison2023-05-221-6/+13
|
* Update embedded-hal crates.Dario Nieuwenhuis2023-04-064-127/+295
|
* Switch to async-fn-in-traitDario Nieuwenhuis2022-11-252-111/+66
|
* Update embedded-hal versions and explicitly pinUlf Lilleengen2022-09-293-9/+8
|
* split `embassy-util` into `embassy-futures`, `embassy-sync`.Dario Nieuwenhuis2022-08-224-14/+14
|
* Remove Forever, switch to static_cell.Dario Nieuwenhuis2022-08-224-8/+8
|
* Split embassy crate into embassy-executor, embassy-util.Dario Nieuwenhuis2022-07-294-14/+14
|
* Add defmt support to embassy-embedded-hal errorsMatous Hybl2022-07-241-0/+2
|
* embassy-embedded-hal: docsDario Nieuwenhuis2022-07-195-0/+37
|
* Rename XXBusDevice to XXDevice.Dario Nieuwenhuis2022-07-185-106/+106
|
* CleanupHenrik Alsér2022-07-103-26/+28
|
* Add asynch mod to shared_busHenrik Alsér2022-07-106-44/+42
|
* Add embassy-embedded-hal nightly featureHenrik Alsér2022-07-092-0/+6
|
* Associated typeHenrik Alsér2022-07-094-109/+114
|
* Merge upstreamHenrik Alsér2022-07-082-6/+6
|
* Merge upstreamHenrik Alsér2022-07-082-0/+118
|\
| * Add EH 0.2 impls + example docsHenrik Alsér2022-07-062-0/+119
| |
* | Shared buses with SetConfigHenrik Alsér2022-07-084-0/+273
|/
* spi shared bus: assert/deassert CS inside the lock.Dario Nieuwenhuis2022-07-061-11/+10
|
* Mutex for SPIHenrik Alsér2022-07-061-29/+18
|
* MutexHenrik Alsér2022-07-062-44/+59
|
* Add blocking shared bus for i2c and SPIHenrik Alsér2022-07-064-2/+145
|
* Run rustfmt.Dario Nieuwenhuis2022-06-122-9/+8
|
* Async shared bus for SPI & I2C + rename embassy-traits (#769)Henrik Alsér2022-05-263-0/+234
* Rename embassy-traits to embassy-embedded-hal * Rename embassy-traits to embassy-embedded-hal * Add shared bus for SPI and I2C * rustfmt * EHA alpha 1 * Rename embedded-traits in examples * rustfmt * rustfmt Co-authored-by: Henrik Alsér <[email protected]>