documentation/graphs/fsm_coe_map.dot
changeset 1174 235f34ca50e2
parent 1173 2ec9651a6c89
child 1175 4684e0206eb9
equal deleted inserted replaced
1173:2ec9651a6c89 1174:235f34ca50e2
     1 
       
     2 /* $Id$ */
       
     3 
       
     4 digraph readpdomapping {
       
     5     size="7,9"
       
     6     center=1
       
     7 	ratio=fill
       
     8 
       
     9     next_sync [shape=point,label=""]
       
    10     next_pdo [shape=point,label=""]
       
    11     next_pdo_entry [shape=point,label=""]
       
    12 
       
    13     start -> next_sync [label="first SM"]
       
    14 
       
    15     next_sync -> pdo_count [weight=5]
       
    16     next_sync -> end
       
    17 
       
    18     pdo_count -> next_pdo [weight=5]
       
    19 
       
    20     next_pdo -> pdo [weight=5]
       
    21     next_pdo -> next_sync
       
    22 
       
    23     pdo -> pdo_entry_count [weight=5]
       
    24 
       
    25     pdo_entry_count -> next_pdo_entry [weight=10]
       
    26 
       
    27     next_pdo_entry -> pdo_entry [weight=5]
       
    28     next_pdo_entry -> next_pdo
       
    29 
       
    30     pdo_entry -> next_pdo_entry
       
    31 
       
    32     end
       
    33 }