Update readme, slash configs

This commit is contained in:
Luke D. Jones
2025-01-12 17:36:10 +13:00
parent 2123f369ad
commit 128bc3fce1
113 changed files with 1545 additions and 1305 deletions

View File

@@ -9,7 +9,7 @@ pub enum SlashError {
NoDevice,
UnsupportedDevice,
DataBufferLength,
ParseError(String),
ParseError(String)
}
impl fmt::Display for SlashError {
@@ -24,7 +24,7 @@ impl fmt::Display for SlashError {
f,
"The data buffer was incorrect length for generating USB packets"
),
SlashError::UnsupportedDevice => write!(f, "Unsupported Slash device found"),
SlashError::UnsupportedDevice => write!(f, "Unsupported Slash device found")
}
}
}