Serialport Support
- allow communication to elm327 device via a serialport - allow creation of elm327 device without requiring unwrap() - added some extra documentation - expose reset() functionality of device - serial_comm and ftdi_comm abstractions added
This commit is contained in:
parent
db4b4d990d
commit
821e80aaaf
14 changed files with 213 additions and 60 deletions
|
@ -13,7 +13,7 @@ pub trait Obd2Device {
|
|||
///
|
||||
/// The responses are a list with one element for each ECU that responds. The data is decoded
|
||||
/// into the ODB-II bytes from the vehicle and the first byte of the response---representing
|
||||
/// the mode the vehicle recieved---is validated and removed.
|
||||
/// the mode the vehicle received---is validated and removed.
|
||||
fn obd_mode_command(&mut self, mode: u8) -> Result<Vec<Vec<u8>>>;
|
||||
|
||||
/// Send command and get list of OBD-II responses as an array
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue