Documentation and organization improvements

This commit is contained in:
Robert Sammelson 2023-05-15 00:56:36 -04:00
parent 2a43bf94bd
commit 1b4ccd0dde
No known key found for this signature in database
GPG key ID: 92F1F04EDB06B9E9
5 changed files with 131 additions and 49 deletions

View file

@ -3,22 +3,49 @@ pub use elm327::Elm327;
type Result<T> = std::result::Result<T, Error>;
/// A lower-level API for using an OBD-II device
pub trait Obd2BaseDevice: Obd2Reader {
/// Reset the device and the OBD-II interface
///
/// First the device is reset, if it is stateful. Then the OBD-II interface is reinitialized,
/// which resets the selected protocol on the device and rechecks the vehicle manufacturer if
/// needed.
fn reset(&mut self) -> Result<()>;
fn flush(&mut self) -> Result<()>;
fn send_serial_cmd(&mut self, data: &str) -> Result<()>;
fn cmd(&mut self, cmd: &str) -> Result<Option<String>> {
self.send_serial_cmd(cmd)?;
self.get_until_prompt()
/// Send an OBD-II command
fn send_cmd(&mut self, data: &[u8]) -> Result<()>;
/// Send an OBD-II command and get the reply
///
/// The reply is decoded into a String of mostly hex data. Depending on the format of the
/// response, some other characters may be included like line numbers for multiline responses
/// (of the format "0: AB CD ...").
fn cmd(&mut self, cmd: &[u8]) -> Result<Option<String>> {
self.send_cmd(cmd)?;
self.get_response()
.map(|o| o.and_then(|resp| String::from_utf8(resp).ok()))
}
}
/// An API for reading OBD-II response data
pub trait Obd2Reader {
/// Try to get a single line of data from the device
///
/// The trailing newline is not included. This function will never return an empty line, it
/// will retry until a line with data is found. If no data is available after a reasonable
/// timeout, `Ok(None)` will be returned.
fn get_line(&mut self) -> Result<Option<Vec<u8>>>;
fn get_until_prompt(&mut self) -> Result<Option<Vec<u8>>>;
/// Get an entire OBD-II response
///
/// Empty vectors are allowed to be returned. This function should always be called after a
/// command is sent, possibly after calling [get_line](Self::get_line) to read the first lines,
/// so that any metadata sent by the device after the response from the vehicle can be dealt
/// with.
fn get_response(&mut self) -> Result<Option<Vec<u8>>>;
}
/// Error type for low-level ODB-II communication issues
#[derive(thiserror::Error, Debug)]
pub enum Error {
#[error("FTDI error: `{0:?}`")]