mirror of
https://git.rtems.org/rtems-docs/
synced 2025-05-15 23:46:56 +08:00
36 lines
668 B
Plaintext
36 lines
668 B
Plaintext
'
|
|
' Tester TFTP Sequence 1:
|
|
'
|
|
' Pass and Fail
|
|
'
|
|
' Copyright (c) 2018 Chris Johns <chrisj@rtems.org>
|
|
' All rights reserved.
|
|
'
|
|
@startuml
|
|
|
|
participant Start
|
|
participant Reset
|
|
participant UBoot
|
|
participant TFTP
|
|
participant Test
|
|
participant Finish
|
|
|
|
note right of Start: target_on_command run before the first test
|
|
|
|
Start --> UBoot: tester running, target has reset
|
|
activate UBoot
|
|
Start -->> Reset: target_on_command
|
|
activate Reset
|
|
Reset --> UBoot: target power on
|
|
deactivate Reset
|
|
UBoot --> TFTP: download
|
|
deactivate UBoot
|
|
activate TFTP
|
|
TFTP --> Test: execute
|
|
deactivate TFTP
|
|
activate Test
|
|
Test --> Finish: test pass or fail?
|
|
deactivate TFTP
|
|
|
|
@enduml
|