Timing diagram constraints overlapping

0 votes
asked Jan 15 in Wanted features by Alora
Hello,

I encounter the same pb. Arrows of constraints are overlapping (not the names), and it make the diagram not clear. Is there a way to manage that correctly ?

@startuml
robust "Tracker Board" as Track
concise "Article" as ART

ART is ""
Track is Idle

@118 as :T_critical_path_begin
@133 as :T_critical_path_end

@0
ART is "B pos."
@+10
ART is ""
@2
Track is "Trigger Acq"
@3
Track is "Idle"

@53
ART is "F pos."
@+10
ART is ""
@55
Track is "Trigger Acq"
@56
Track is Idle

@65
Track is "Consolidate verdict"
'163ms - 5ms
@68
ART is "D. pos" : "Reject decision position"
@+10
ART is ""
@71
Track is "Command reject valve"

@+2
Track is Idle

@Track
@2 <-> @3 : {T_trig_pos_B}
@2 <-> @65 : {T_trig_base_to_all_res_recv}
@55 <-> @56 : {T_trig_pos_F}

highlight :T_critical_path_begin to :T_critical_path_end #LightGoldenRodYellow : Critical path

@enduml

1 Answer

0 votes
answered Jan 15 by The-Lu (87,580 points)

Hello A.,

Yes there is an Issue.

See similar request here:

Then here is a workaround adding a Binary line for the Constraints comment as:

binary "Constraint" as C <<transparent>>

@C
@2 <-> @65 : {T_trig_base_to_all_res_recv}

Enjoy,
Regards,
Th.

...