auto_uds

GitHub crates.io version docs.rs docs CI build

This crate provides low-level no_std structs and enums of the Unified Diagnostic Services specification for the road vehicles iso-14229-1 in Rust.

Usage

All values are presented as Rust enum, and can be converted to/from their underlying numeric values using the From and TryFrom traits. Additionally, there is a ByteWrapper<T> enum that distinguishes between the Standand(T) and Extended(u8) values.

```rust use autouds::{UdsError, UdsErrorByte}; use autouds::UdsError::*;

fn main() { asserteq!(UdsError::tryfrom(0x10), Ok(GeneralReject)); assert_eq!(UdsErrorByte::from(0x10), UdsErrorByte::Standard(GeneralReject));

assert!(UdsError::try_from(0xA0).is_err());
assert_eq!(UdsErrorByte::from(0xA0), UdsErrorByte::Extended(0xA0));

} ```

Credits

The code was forked from the amazing rnd-ash/ecu_diagnostics project. The code was forked from the last MIT-versioned code before the MIT to GPL license migration.