remove detach response

This commit is contained in:
brentru 2023-09-06 14:17:11 -04:00
parent 71fd9e6190
commit feff3090bc
3 changed files with 0 additions and 12 deletions

View file

@ -35,7 +35,6 @@ message UARTResponse {
oneof payload {
wippersnapper.uart.v1.UARTDeviceAttachResponse resp_uart_device_attach = 1;
wippersnapper.uart.v1.UARTDeviceEvent resp_uart_device_event = 2;
wippersnapper.uart.v1.UARTDeviceDetachResponse resp_uart_device_detach = 3;
}
}

View file

@ -53,8 +53,6 @@ autonumber
IO Broker --> Device: UARTDeviceDetachRequest
Device --> UART Class: Detach UART device from UART bus according to device_id.
UART Class --> Device: UARTDeviceDetachResponse
Device --> IO Broker: UARTDeviceDetachResponse
```

View file

@ -44,15 +44,6 @@ message UARTDeviceDetachRequest {
string device_id = 1[(nanopb).max_size = 15]; /** The unique identifier of the device to detach from the UART bus. */
}
/*
* UARTDeviceDetachResponse represents a message sent from a device to IO to
* confirm that a device has been detached from the UART bus.
*/
message UARTDeviceDetachResponse {
string device_id = 1[(nanopb).max_size = 15]; /** The unique identifier of the device to detach from the UART bus. */
bool is_success = 2; /** True if the UARTDeviceDetachRequest was successful, False otherwise. */
}
/**
* UARTDeviceEvent represents incoming data from a UART sensor.
*/