diff --git a/CHANGELOG.md b/CHANGELOG.md index c9db1e8..1d4d780 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +### Added + +- New `DisplayError` variant `RSError` to use with problems with the display's reset signal + ### Changed - Return `DCError` instead of `BusWriteError` on errors (de-)asserting the DC signal in 8-bit GPIO interfaces @@ -17,7 +21,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - Support for 8bit and 16bit iterators as data format - Support for 16bit slice data format with target endian -- Deconstructurs for included display-interface implementations +- Deconstructors for included display-interface implementations ### Changed diff --git a/src/lib.rs b/src/lib.rs index 2f53a37..1540d40 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -24,6 +24,8 @@ pub enum DisplayError { CSError, /// The requested DataFormat is not implemented by this display interface implementation DataFormatNotImplemented, + /// Unable to assert or de-assert reset signal + RSError, } /// DI specific data format wrapper around slices of various widths