summaryrefslogtreecommitdiffstats
path: root/images/user/test-tftp-seq-3.puml
blob: 4777e6673cd846298d5f8a82a66e2ea0cadf2ace (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
'
' Tester TFTP Sequence 3:
'
'  Reset Filter Trigger
'
' Copyright (c) 2018 Chris Johns <chrisj@rtems.org>
' All rights reserved.
'
@startuml

 participant Start
 participant Reset
 participant UBoot
 participant TFTP

 note right of Start
  ""target_reset_regex"" triggers on an async
  target console match
 end note

 Start --> UBoot : target already running
 activate UBoot
 Reset --> UBoot : target running
 activate Reset
 UBoot -->> Reset : ""target_reset_command""
 UBoot --> TFTP : download
 deactivate UBoot
 activate TFTP
 TFTP -->> Reset : ""target_reset_command""
 deactivate TFTP
 deactivate Reset

@enduml