author | Florian Pose <fp@igh-essen.com> |
Thu, 12 Jun 2008 13:30:20 +0000 | |
changeset 1007 | b6c3527697c3 |
parent 926 | 6bb33c6ec770 |
child 1055 | 2be8918682fa |
permissions | -rw-r--r-- |
799 | 1 |
/****************************************************************************** |
2 |
* |
|
3 |
* $Id$ |
|
4 |
* |
|
5 |
* Copyright (C) 2006 Florian Pose, Ingenieurgemeinschaft IgH |
|
6 |
* |
|
7 |
* This file is part of the IgH EtherCAT Master. |
|
8 |
* |
|
9 |
* The IgH EtherCAT Master is free software; you can redistribute it |
|
10 |
* and/or modify it under the terms of the GNU General Public License |
|
11 |
* as published by the Free Software Foundation; either version 2 of the |
|
12 |
* License, or (at your option) any later version. |
|
13 |
* |
|
14 |
* The IgH EtherCAT Master is distributed in the hope that it will be |
|
15 |
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
16 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
17 |
* GNU General Public License for more details. |
|
18 |
* |
|
19 |
* You should have received a copy of the GNU General Public License |
|
20 |
* along with the IgH EtherCAT Master; if not, write to the Free Software |
|
21 |
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
|
22 |
* |
|
23 |
* The right to use EtherCAT Technology is granted and comes free of |
|
24 |
* charge under condition of compatibility of product made by |
|
25 |
* Licensee. People intending to distribute/sell products based on the |
|
26 |
* code, have to sign an agreement to guarantee that products using |
|
27 |
* software based on IgH EtherCAT master stay compatible with the actual |
|
28 |
* EtherCAT specification (which are released themselves as an open |
|
29 |
* standard) as the (only) precondition to have the right to use EtherCAT |
|
30 |
* Technology, IP and trade marks. |
|
31 |
* |
|
32 |
*****************************************************************************/ |
|
33 |
||
34 |
/** \file |
|
879
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
35 |
* EtherCAT Pdo mapping state machine. |
799 | 36 |
*/ |
37 |
||
38 |
/*****************************************************************************/ |
|
39 |
||
40 |
#include "globals.h" |
|
41 |
#include "master.h" |
|
42 |
#include "mailbox.h" |
|
43 |
#include "slave_config.h" |
|
44 |
||
879
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
45 |
#include "fsm_pdo_mapping.h" |
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
46 |
|
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
47 |
/*****************************************************************************/ |
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
48 |
|
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
49 |
void ec_fsm_pdo_mapping_state_start(ec_fsm_pdo_mapping_t *); |
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
50 |
void ec_fsm_pdo_mapping_state_zero_count(ec_fsm_pdo_mapping_t *); |
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
51 |
void ec_fsm_pdo_mapping_state_add_entry(ec_fsm_pdo_mapping_t *); |
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
52 |
void ec_fsm_pdo_mapping_state_entry_count(ec_fsm_pdo_mapping_t *); |
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
53 |
void ec_fsm_pdo_mapping_state_end(ec_fsm_pdo_mapping_t *); |
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
54 |
void ec_fsm_pdo_mapping_state_error(ec_fsm_pdo_mapping_t *); |
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
55 |
|
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
56 |
void ec_fsm_pdo_mapping_next_pdo(ec_fsm_pdo_mapping_t *); |
799 | 57 |
|
58 |
/*****************************************************************************/ |
|
59 |
||
60 |
/** Constructor. |
|
61 |
*/ |
|
879
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
62 |
void ec_fsm_pdo_mapping_init( |
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
63 |
ec_fsm_pdo_mapping_t *fsm, /**< Pdo mapping state machine. */ |
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
64 |
ec_fsm_coe_t *fsm_coe /**< CoE state machine to use. */ |
799 | 65 |
) |
66 |
{ |
|
67 |
fsm->fsm_coe = fsm_coe; |
|
854
f4f53be425ac
Removed ec_sdodata_t; CoE state machines work on ec_sdo_request_t.
Florian Pose <fp@igh-essen.com>
parents:
835
diff
changeset
|
68 |
ec_sdo_request_init(&fsm->request); |
799 | 69 |
} |
70 |
||
71 |
/*****************************************************************************/ |
|
72 |
||
73 |
/** Destructor. |
|
74 |
*/ |
|
879
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
75 |
void ec_fsm_pdo_mapping_clear( |
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
76 |
ec_fsm_pdo_mapping_t *fsm /**< Pdo mapping state machine. */ |
799 | 77 |
) |
78 |
{ |
|
854
f4f53be425ac
Removed ec_sdodata_t; CoE state machines work on ec_sdo_request_t.
Florian Pose <fp@igh-essen.com>
parents:
835
diff
changeset
|
79 |
ec_sdo_request_clear(&fsm->request); |
799 | 80 |
} |
81 |
||
82 |
/*****************************************************************************/ |
|
83 |
||
879
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
84 |
/** Start Pdo mapping state machine. |
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
85 |
*/ |
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
86 |
void ec_fsm_pdo_mapping_start( |
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
87 |
ec_fsm_pdo_mapping_t *fsm, /**< Pdo mapping state machine. */ |
799 | 88 |
ec_slave_t *slave /**< slave to configure */ |
89 |
) |
|
90 |
{ |
|
91 |
fsm->slave = slave; |
|
879
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
92 |
fsm->state = ec_fsm_pdo_mapping_state_start; |
799 | 93 |
} |
94 |
||
95 |
/*****************************************************************************/ |
|
96 |
||
97 |
/** Get running state. |
|
98 |
* |
|
99 |
* \return false, if state machine has terminated |
|
100 |
*/ |
|
879
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
101 |
int ec_fsm_pdo_mapping_running( |
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
102 |
const ec_fsm_pdo_mapping_t *fsm /**< Pdo mapping state machine. */ |
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
103 |
) |
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
104 |
{ |
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
105 |
return fsm->state != ec_fsm_pdo_mapping_state_end |
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
106 |
&& fsm->state != ec_fsm_pdo_mapping_state_error; |
799 | 107 |
} |
108 |
||
109 |
/*****************************************************************************/ |
|
110 |
||
111 |
/** Executes the current state. |
|
112 |
* |
|
113 |
* \return false, if state machine has terminated |
|
114 |
*/ |
|
879
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
115 |
int ec_fsm_pdo_mapping_exec( |
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
116 |
ec_fsm_pdo_mapping_t *fsm /**< Pdo mapping state machine. */ |
799 | 117 |
) |
118 |
{ |
|
119 |
fsm->state(fsm); |
|
879
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
120 |
return ec_fsm_pdo_mapping_running(fsm); |
799 | 121 |
} |
122 |
||
123 |
/*****************************************************************************/ |
|
124 |
||
125 |
/** Get execution result. |
|
126 |
* |
|
127 |
* \return true, if the state machine terminated gracefully |
|
128 |
*/ |
|
879
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
129 |
int ec_fsm_pdo_mapping_success( |
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
130 |
const ec_fsm_pdo_mapping_t *fsm /**< Pdo mapping state machine. */ |
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
131 |
) |
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
132 |
{ |
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
133 |
return fsm->state == ec_fsm_pdo_mapping_state_end; |
799 | 134 |
} |
135 |
||
136 |
/****************************************************************************** |
|
137 |
* State functions. |
|
138 |
*****************************************************************************/ |
|
139 |
||
879
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
140 |
/** Start Pdo mapping. |
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
141 |
*/ |
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
142 |
void ec_fsm_pdo_mapping_state_start( |
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
143 |
ec_fsm_pdo_mapping_t *fsm /**< Pdo mapping state machine. */ |
799 | 144 |
) |
145 |
{ |
|
146 |
if (!fsm->slave->config) { |
|
879
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
147 |
fsm->state = ec_fsm_pdo_mapping_state_end; |
799 | 148 |
return; |
149 |
} |
|
150 |
||
151 |
fsm->pdo = NULL; |
|
890
1115793a76ed
Debug messaged on configuring assignment and mapping.
Florian Pose <fp@igh-essen.com>
parents:
879
diff
changeset
|
152 |
fsm->num_configured_pdos = 0; |
879
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
153 |
ec_fsm_pdo_mapping_next_pdo(fsm); |
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
154 |
} |
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
155 |
|
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
156 |
/*****************************************************************************/ |
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
157 |
|
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
158 |
/** Process mapping of next Pdo. |
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
159 |
*/ |
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
160 |
void ec_fsm_pdo_mapping_next_pdo( |
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
161 |
ec_fsm_pdo_mapping_t *fsm /**< Pdo mapping state machine. */ |
799 | 162 |
) |
163 |
{ |
|
164 |
ec_direction_t dir; |
|
879
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
165 |
const ec_pdo_list_t *pdos; |
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
166 |
const ec_pdo_t *pdo, *assigned_pdo; |
799 | 167 |
|
168 |
for (dir = EC_DIR_OUTPUT; dir <= EC_DIR_INPUT; dir++) { |
|
879
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
169 |
pdos = &fsm->slave->config->pdos[dir]; |
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
170 |
|
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
171 |
list_for_each_entry(pdo, &pdos->list, list) { |
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
172 |
if (fsm->pdo) { // there was a Pdo mapping changed in the last run |
890
1115793a76ed
Debug messaged on configuring assignment and mapping.
Florian Pose <fp@igh-essen.com>
parents:
879
diff
changeset
|
173 |
if (pdo == fsm->pdo) // this is the previously configured Pdo |
801
6b1e2b0ed8bc
Cleaned up Pdo mapping and configuration state machines.
Florian Pose <fp@igh-essen.com>
parents:
800
diff
changeset
|
174 |
fsm->pdo = NULL; // take the next one |
799 | 175 |
} else { |
879
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
176 |
if ((assigned_pdo = ec_slave_find_pdo(fsm->slave, pdo->index))) |
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
177 |
if (ec_pdo_equal_entries(pdo, assigned_pdo)) |
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
178 |
continue; // Pdo entries mapped correctly |
799 | 179 |
|
180 |
fsm->pdo = pdo; |
|
890
1115793a76ed
Debug messaged on configuring assignment and mapping.
Florian Pose <fp@igh-essen.com>
parents:
879
diff
changeset
|
181 |
fsm->num_configured_pdos++; |
801
6b1e2b0ed8bc
Cleaned up Pdo mapping and configuration state machines.
Florian Pose <fp@igh-essen.com>
parents:
800
diff
changeset
|
182 |
break; |
799 | 183 |
} |
184 |
} |
|
185 |
} |
|
186 |
||
801
6b1e2b0ed8bc
Cleaned up Pdo mapping and configuration state machines.
Florian Pose <fp@igh-essen.com>
parents:
800
diff
changeset
|
187 |
if (!fsm->pdo) { |
890
1115793a76ed
Debug messaged on configuring assignment and mapping.
Florian Pose <fp@igh-essen.com>
parents:
879
diff
changeset
|
188 |
if (fsm->slave->master->debug_level && !fsm->num_configured_pdos) |
1115793a76ed
Debug messaged on configuring assignment and mapping.
Florian Pose <fp@igh-essen.com>
parents:
879
diff
changeset
|
189 |
EC_DBG("Pdo mappings of slave %u are already configured" |
1115793a76ed
Debug messaged on configuring assignment and mapping.
Florian Pose <fp@igh-essen.com>
parents:
879
diff
changeset
|
190 |
" correctly.\n", fsm->slave->ring_position); |
879
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
191 |
fsm->state = ec_fsm_pdo_mapping_state_end; |
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
192 |
return; |
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
193 |
} |
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
194 |
|
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
195 |
// Pdo mapping has to be changed. Does the slave support this? |
877 | 196 |
if (!(fsm->slave->sii.mailbox_protocols & EC_MBOX_COE) |
835
23fd8b510803
Evaluate CoE details from general category; moved current consumption
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
197 |
|| (fsm->slave->sii.has_general |
23fd8b510803
Evaluate CoE details from general category; moved current consumption
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
198 |
&& !fsm->slave->sii.coe_details.enable_pdo_configuration)) { |
879
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
199 |
EC_ERR("Slave %u does not support changing the Pdo mapping!\n", |
835
23fd8b510803
Evaluate CoE details from general category; moved current consumption
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
200 |
fsm->slave->ring_position); |
879
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
201 |
fsm->state = ec_fsm_pdo_mapping_state_error; |
835
23fd8b510803
Evaluate CoE details from general category; moved current consumption
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
202 |
return; |
23fd8b510803
Evaluate CoE details from general category; moved current consumption
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
203 |
} |
23fd8b510803
Evaluate CoE details from general category; moved current consumption
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
204 |
|
799 | 205 |
if (fsm->slave->master->debug_level) { |
879
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
206 |
EC_DBG("Changing mapping of Pdo 0x%04X of slave %u.\n", |
799 | 207 |
fsm->pdo->index, fsm->slave->ring_position); |
208 |
} |
|
209 |
||
854
f4f53be425ac
Removed ec_sdodata_t; CoE state machines work on ec_sdo_request_t.
Florian Pose <fp@igh-essen.com>
parents:
835
diff
changeset
|
210 |
if (ec_sdo_request_alloc(&fsm->request, 4)) { |
879
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
211 |
fsm->state = ec_fsm_pdo_mapping_state_error; |
854
f4f53be425ac
Removed ec_sdodata_t; CoE state machines work on ec_sdo_request_t.
Florian Pose <fp@igh-essen.com>
parents:
835
diff
changeset
|
212 |
return; |
f4f53be425ac
Removed ec_sdodata_t; CoE state machines work on ec_sdo_request_t.
Florian Pose <fp@igh-essen.com>
parents:
835
diff
changeset
|
213 |
} |
f4f53be425ac
Removed ec_sdodata_t; CoE state machines work on ec_sdo_request_t.
Florian Pose <fp@igh-essen.com>
parents:
835
diff
changeset
|
214 |
|
814 | 215 |
// set mapped Pdo count to zero |
875
c5df898a3618
Fixed access to data pointers in Pdo config and Pdo mapping FSM's.
Florian Pose <fp@igh-essen.com>
parents:
859
diff
changeset
|
216 |
EC_WRITE_U8(fsm->request.data, 0); |
854
f4f53be425ac
Removed ec_sdodata_t; CoE state machines work on ec_sdo_request_t.
Florian Pose <fp@igh-essen.com>
parents:
835
diff
changeset
|
217 |
fsm->request.data_size = 1; |
f4f53be425ac
Removed ec_sdodata_t; CoE state machines work on ec_sdo_request_t.
Florian Pose <fp@igh-essen.com>
parents:
835
diff
changeset
|
218 |
ec_sdo_request_address(&fsm->request, fsm->pdo->index, 0); |
858
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
854
diff
changeset
|
219 |
ecrt_sdo_request_write(&fsm->request); |
799 | 220 |
if (fsm->slave->master->debug_level) |
221 |
EC_DBG("Setting entry count to zero for Pdo 0x%04X.\n", |
|
222 |
fsm->pdo->index); |
|
223 |
||
879
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
224 |
fsm->state = ec_fsm_pdo_mapping_state_zero_count; |
859
233e32f428e1
Replaced ec_fsm_coe_\(upload\|download\)() with ec_fsm_coe_transfer();
Florian Pose <fp@igh-essen.com>
parents:
858
diff
changeset
|
225 |
ec_fsm_coe_transfer(fsm->fsm_coe, fsm->slave, &fsm->request); |
799 | 226 |
ec_fsm_coe_exec(fsm->fsm_coe); // execute immediately |
227 |
} |
|
228 |
||
229 |
/*****************************************************************************/ |
|
230 |
||
231 |
/** Process next Pdo entry. |
|
232 |
*/ |
|
879
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
233 |
ec_pdo_entry_t *ec_fsm_pdo_mapping_next_entry( |
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
234 |
const ec_fsm_pdo_mapping_t *fsm, /**< Pdo mapping state machine. */ |
799 | 235 |
const struct list_head *list /**< current entry list item */ |
236 |
) |
|
237 |
{ |
|
238 |
list = list->next; |
|
239 |
if (list == &fsm->pdo->entries) |
|
240 |
return NULL; // no next entry |
|
241 |
return list_entry(list, ec_pdo_entry_t, list); |
|
242 |
} |
|
243 |
||
244 |
/*****************************************************************************/ |
|
245 |
||
246 |
/** Starts to add a Pdo entry. |
|
247 |
*/ |
|
879
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
248 |
void ec_fsm_pdo_mapping_add_entry( |
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
249 |
ec_fsm_pdo_mapping_t *fsm /**< Pdo mapping state machine. */ |
799 | 250 |
) |
251 |
{ |
|
252 |
uint32_t value; |
|
253 |
||
254 |
value = fsm->entry->index << 16 |
|
255 |
| fsm->entry->subindex << 8 | fsm->entry->bit_length; |
|
875
c5df898a3618
Fixed access to data pointers in Pdo config and Pdo mapping FSM's.
Florian Pose <fp@igh-essen.com>
parents:
859
diff
changeset
|
256 |
EC_WRITE_U32(fsm->request.data, value); |
854
f4f53be425ac
Removed ec_sdodata_t; CoE state machines work on ec_sdo_request_t.
Florian Pose <fp@igh-essen.com>
parents:
835
diff
changeset
|
257 |
fsm->request.data_size = 4; |
f4f53be425ac
Removed ec_sdodata_t; CoE state machines work on ec_sdo_request_t.
Florian Pose <fp@igh-essen.com>
parents:
835
diff
changeset
|
258 |
ec_sdo_request_address(&fsm->request, fsm->pdo->index, fsm->entry_count); |
858
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
854
diff
changeset
|
259 |
ecrt_sdo_request_write(&fsm->request); |
799 | 260 |
if (fsm->slave->master->debug_level) |
261 |
EC_DBG("Configuring Pdo entry %08X at position %u.\n", |
|
262 |
value, fsm->entry_count); |
|
263 |
||
879
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
264 |
fsm->state = ec_fsm_pdo_mapping_state_add_entry; |
859
233e32f428e1
Replaced ec_fsm_coe_\(upload\|download\)() with ec_fsm_coe_transfer();
Florian Pose <fp@igh-essen.com>
parents:
858
diff
changeset
|
265 |
ec_fsm_coe_transfer(fsm->fsm_coe, fsm->slave, &fsm->request); |
799 | 266 |
ec_fsm_coe_exec(fsm->fsm_coe); // execute immediately |
267 |
} |
|
268 |
||
269 |
/*****************************************************************************/ |
|
270 |
||
879
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
271 |
/** Set the number of mapped entries to zero. |
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
272 |
*/ |
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
273 |
void ec_fsm_pdo_mapping_state_zero_count( |
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
274 |
ec_fsm_pdo_mapping_t *fsm /**< Pdo mapping state machine. */ |
799 | 275 |
) |
276 |
{ |
|
277 |
if (ec_fsm_coe_exec(fsm->fsm_coe)) return; |
|
278 |
||
279 |
if (!ec_fsm_coe_success(fsm->fsm_coe)) { |
|
879
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
280 |
EC_ERR("Failed to clear Pdo mapping for slave %u.\n", |
799 | 281 |
fsm->slave->ring_position); |
879
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
282 |
fsm->state = ec_fsm_pdo_mapping_state_error; |
799 | 283 |
return; |
284 |
} |
|
285 |
||
286 |
// find first entry |
|
287 |
if (!(fsm->entry = |
|
879
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
288 |
ec_fsm_pdo_mapping_next_entry(fsm, &fsm->pdo->entries))) { |
799 | 289 |
if (fsm->slave->master->debug_level) |
879
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
290 |
EC_DBG("No entries to map for Pdo 0x%04X of slave %u.\n", |
799 | 291 |
fsm->pdo->index, fsm->slave->ring_position); |
879
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
292 |
ec_fsm_pdo_mapping_next_pdo(fsm); |
799 | 293 |
return; |
294 |
} |
|
295 |
||
296 |
// add first entry |
|
297 |
fsm->entry_count = 1; |
|
879
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
298 |
ec_fsm_pdo_mapping_add_entry(fsm); |
799 | 299 |
} |
300 |
||
301 |
/*****************************************************************************/ |
|
302 |
||
303 |
/** Add a Pdo entry. |
|
304 |
*/ |
|
879
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
305 |
void ec_fsm_pdo_mapping_state_add_entry( |
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
306 |
ec_fsm_pdo_mapping_t *fsm /**< Pdo mapping state machine. */ |
799 | 307 |
) |
308 |
{ |
|
309 |
if (ec_fsm_coe_exec(fsm->fsm_coe)) return; |
|
310 |
||
311 |
if (!ec_fsm_coe_success(fsm->fsm_coe)) { |
|
926
6bb33c6ec770
Output subindices with %02X.
Florian Pose <fp@igh-essen.com>
parents:
890
diff
changeset
|
312 |
EC_ERR("Failed to add entry 0x%04X:%02X for slave %u.\n", |
799 | 313 |
fsm->entry->index, fsm->entry->subindex, |
314 |
fsm->slave->ring_position); |
|
879
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
315 |
fsm->state = ec_fsm_pdo_mapping_state_error; |
799 | 316 |
return; |
317 |
} |
|
318 |
||
319 |
// find next entry |
|
879
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
320 |
if (!(fsm->entry = ec_fsm_pdo_mapping_next_entry(fsm, &fsm->entry->list))) { |
799 | 321 |
// No more entries to add. Write entry count. |
875
c5df898a3618
Fixed access to data pointers in Pdo config and Pdo mapping FSM's.
Florian Pose <fp@igh-essen.com>
parents:
859
diff
changeset
|
322 |
EC_WRITE_U8(fsm->request.data, fsm->entry_count); |
854
f4f53be425ac
Removed ec_sdodata_t; CoE state machines work on ec_sdo_request_t.
Florian Pose <fp@igh-essen.com>
parents:
835
diff
changeset
|
323 |
fsm->request.data_size = 1; |
f4f53be425ac
Removed ec_sdodata_t; CoE state machines work on ec_sdo_request_t.
Florian Pose <fp@igh-essen.com>
parents:
835
diff
changeset
|
324 |
ec_sdo_request_address(&fsm->request, fsm->pdo->index, 0); |
858
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
854
diff
changeset
|
325 |
ecrt_sdo_request_write(&fsm->request); |
799 | 326 |
if (fsm->slave->master->debug_level) |
327 |
EC_DBG("Setting number of Pdo entries to %u.\n", |
|
328 |
fsm->entry_count); |
|
329 |
||
879
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
330 |
fsm->state = ec_fsm_pdo_mapping_state_entry_count; |
859
233e32f428e1
Replaced ec_fsm_coe_\(upload\|download\)() with ec_fsm_coe_transfer();
Florian Pose <fp@igh-essen.com>
parents:
858
diff
changeset
|
331 |
ec_fsm_coe_transfer(fsm->fsm_coe, fsm->slave, &fsm->request); |
799 | 332 |
ec_fsm_coe_exec(fsm->fsm_coe); // execute immediately |
333 |
return; |
|
334 |
} |
|
335 |
||
336 |
// add next entry |
|
337 |
fsm->entry_count++; |
|
879
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
338 |
ec_fsm_pdo_mapping_add_entry(fsm); |
799 | 339 |
} |
340 |
||
341 |
/*****************************************************************************/ |
|
342 |
||
343 |
/** Set the number of entries. |
|
344 |
*/ |
|
879
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
345 |
void ec_fsm_pdo_mapping_state_entry_count( |
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
346 |
ec_fsm_pdo_mapping_t *fsm /**< Pdo mapping state machine. */ |
799 | 347 |
) |
348 |
{ |
|
349 |
if (ec_fsm_coe_exec(fsm->fsm_coe)) return; |
|
350 |
||
351 |
if (!ec_fsm_coe_success(fsm->fsm_coe)) { |
|
352 |
EC_ERR("Failed to set number of entries for slave %u.\n", |
|
353 |
fsm->slave->ring_position); |
|
879
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
354 |
fsm->state = ec_fsm_pdo_mapping_state_error; |
799 | 355 |
return; |
356 |
} |
|
357 |
||
358 |
if (fsm->slave->master->debug_level) |
|
879
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
359 |
EC_DBG("Successfully configured mapping for Pdo 0x%04X on slave %u.\n", |
799 | 360 |
fsm->pdo->index, fsm->slave->ring_position); |
361 |
||
879
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
362 |
ec_fsm_pdo_mapping_next_pdo(fsm); |
799 | 363 |
} |
364 |
||
365 |
/****************************************************************************** |
|
366 |
* Common state functions |
|
367 |
*****************************************************************************/ |
|
368 |
||
369 |
/** State: ERROR. |
|
370 |
*/ |
|
879
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
371 |
void ec_fsm_pdo_mapping_state_error( |
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
372 |
ec_fsm_pdo_mapping_t *fsm /**< Pdo mapping state machine. */ |
799 | 373 |
) |
374 |
{ |
|
375 |
} |
|
376 |
||
377 |
/*****************************************************************************/ |
|
378 |
||
379 |
/** State: END. |
|
380 |
*/ |
|
879
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
381 |
void ec_fsm_pdo_mapping_state_end( |
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
382 |
ec_fsm_pdo_mapping_t *fsm /**< Pdo mapping state machine. */ |
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
383 |
) |
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
384 |
{ |
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
385 |
} |
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
386 |
|
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
877
diff
changeset
|
387 |
/*****************************************************************************/ |