Removed windows from workflows.

Removed debug printing.
UnknownResponse now includes the length of the response.
Added new method for clearing the device state.
This commit is contained in:
lennard
2023-06-14 12:31:00 +02:00
parent d3245faddd
commit 5121e164df
4 changed files with 14 additions and 22 deletions

View File

@@ -20,7 +20,7 @@ fn main() {
#[test]
fn test_basic_device_access() {
let mut device = match Device::new() {
let _ = match Device::new() {
Ok(device) => device,
Err(_) => return
};