revise seq
This commit is contained in:
parent
2d175a0489
commit
62d0bd5990
1 changed files with 5 additions and 3 deletions
|
|
@ -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.
|
||||
```
|
||||
|
|
|
|||
Loading…
Reference in a new issue