All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog and this project adheres to Semantic Versioning.
v1.0.0-alpha.1 - 2020-06-16
*** This is an alpha release with breaking changes (sorry) ***
- A nonblocking trait for interfacing with random number generation hardware.
- All traits have been marked as proven (
unprovenfeature has been removed). - All trait methods have been made fallible.
- All trait methods have been renamed
try_*(i.e.try_send) for consistency. - The
Capture,Pwm,PwmPinandQeitraits have been moved into their owncapture,pwmandqeimodules for consistency. - Void has been replaced with
core::convert::Infalliblewhich should be used in trait implementations where methods cannot fail. - A new process has been adopted for the addition of traits to the embedded-hal.
- The minimum supported Rust version is 1.35 due to this issue.
v0.2.3 - 2019-05-09
- A new version of the digital
OutputPin,StatefulOutputPin,ToggleableOutputPinandInputPintraits has been added underdigital::v2. These traits are now fallible and their methods now return aResulttype as setting an output pin and reading an input pin could potentially fail. See here for more info. - Compatibility shims between
digital::v1anddigital::v2traits allowing v1 traits to be implicitly promoted to v2, and for v2 traits to be explicitly cast to v1 wrappers.
- The current versions of the
OutputPin,StatefulOutputPin,ToggleableOutputPinandInputPintraits have been marked as deprecated. Please use the new versions included indigital::v2. See here for more info.
v0.2.2 - 2018-11-03
- Added the Rust Code of Conduct to this repository
- The first ADC-related trait. This is a simple trait for one-shot conversions.
- Iterator-based blocking write and write+read traits have been added to I2C and SPI.
- New helper constants for SPI modes.
- A new trait for a cancellable countdown.
- New traits for watchdog timer management, including startup, feeding, and stopping.
- Updated docs to clarify I2C address bit widths and expectations.
v0.2.1 - 2018-05-14
- Auto-generated documentation (docs.rs) now includes the unproven traits.
v0.2.0 - 2018-05-12
- A
ToggeableOutputPintrait has been added. This trait contains a single method:togglethat can be used to toggle the state of a push-pull pin.
- [breaking-change] The signature of
CountDown.waitchanged; it now returnsnb::Result<(), Void>. WhereVoidis the stable alternative to the never type,!, provided by the stablevoidcrate. Implementations of theCountDowntrait will have to be updated to use the new signature. With this change this crate compiles on the stable and beta channels.
-
[breaking-change] the
OutputPin.is_{low,high}methods have been moved into its own traitStatefulOutputPinand renamed tois_set_{low,high}. -
It has been clarified in the documentation that
OutputPinmust be implemented for push-pull output pins (and e.g. not for open drain output pins).
- Re-export most / unchanged traits from embedded-hal v0.2.x to allow inter-operation between HAL implementations and drivers that are using different minor versions.
v0.1.2 - 2018-02-14
- Unproven
blocking::serial::*traits
v0.1.1 - 2018-02-06
- Unproven
digital::InputPintrait
Initial release