embedded-error
embedded-error copied to clipboard
A universal set of specific error kinds for use in embedded systems
This library models a serial error as such: ```rust pub enum SerialError { Overrun, FrameFormat, Parity, Noise, Impl(ImplError), } ``` However, the NXP i.MX RT1062 can report multiple errors per...
We need an enum of error kinds suitable for ADC (Analog->Digital Conversion) errors. Checklist for the implementation: - [ ] Public enumeration for an embedded peripheral with a recognisable name,...
We need an enum of error kinds suitable for Timer errors. Checklist for the implementation: - [ ] Public enumeration for an embedded peripheral with a recognisable name, marked as...
We need an enum of error kinds suitable for PWM (Pulse Width Modulation) errors. Checklist for the implementation: - [ ] Public enumeration for an embedded peripheral with a recognisable...
We need an enum of error kinds suitable for CAN (Controller Area Network) errors. Checklist for the implementation: - [ ] Public enumeration for an embedded peripheral with a recognisable...
We need an enum of error kinds suitable for I2S (Inter-IC Sound) errors. Checklist for the implementation: - [ ] Public enumeration for an embedded peripheral with a recognisable name,...