mirror of
https://gitlab.com/etherlab.org/ethercat.git
synced 2026-08-20 21:51:25 +08:00
-> "Pdo mapping"; created ecrt_slave_config_pdo_assign_clear() and ecrt_slave_config_pdo_mapping_clear().
20 lines
483 B
Plaintext
20 lines
483 B
Plaintext
|
|
/* $Id$ */
|
|
|
|
digraph pdomapping {
|
|
size="7,9"
|
|
center=1
|
|
ratio=fill
|
|
|
|
next_sync [shape=point,label=""]
|
|
|
|
start -> next_sync [label="First SM"]
|
|
next_sync -> end [label="No more SMs"]
|
|
next_sync -> zero_count [label="Next SM"]
|
|
zero_count -> next_sync [label="No Pdos"]
|
|
zero_count -> add_pdo [label="Map first Pdo", weight=5]
|
|
add_pdo -> add_pdo [label="Map next Pdo"]
|
|
add_pdo -> pdo_count [label="No more Pdos", weight=5]
|
|
pdo_count -> next_sync
|
|
}
|