revise seq

This commit is contained in:
brentru 2023-07-25 16:35:41 -04:00
parent 2d175a0489
commit 62d0bd5990

View file

@ -20,15 +20,17 @@ sequenceDiagram
autonumber
IO-->>WS Device: UARTDeviceAttachRequest
WS Device-->>WS Device Decoder: UARTDeviceAttachRequest
Note over WS Device, WS Device Decoder: Decodes UARTDeviceAttachRequest and finds UARTBusData, polling_interval and and device_id
WS Device Decoder-->>WS Device UART: UARTBusData
Note over WS Device Decoder, WS Device UART: Initializes UART bus using configuration within UARTBusData.
WS Device Decoder-->>WS Device UART: device_id and polling_interval
Note over WS Device Decoder, WS Device UART: Initializes UART device on bus and associates it with a driver and a polling period.
WS Device Decoder-->>WS Device UART: device_id, polling_interval
Note over WS Device Decoder, WS Device UART: Initializes a UART device on the UART bus and associates it with a driver and a polling period.
WS Device UART-->>WS Device: UARTDeviceAttachResponse
WS Device-->>IO: UARTDeviceAttachResponse
Note over WS Device, IO: Returns true if successful, False if not.
```