author | Florian Pose <fp@igh-essen.com> |
Tue, 26 Jan 2010 11:38:25 +0100 | |
changeset 1794 | 94e0e1756dec |
parent 1382 | cb2188d111f3 |
child 1804 | 742607c464c4 |
permissions | -rw-r--r-- |
1142 | 1 |
/***************************************************************************** |
2 |
* |
|
1363
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1327
diff
changeset
|
3 |
* $Id$ |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1327
diff
changeset
|
4 |
* |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1327
diff
changeset
|
5 |
* Copyright (C) 2006-2009 Florian Pose, Ingenieurgemeinschaft IgH |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1327
diff
changeset
|
6 |
* |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1327
diff
changeset
|
7 |
* This file is part of the IgH EtherCAT Master. |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1327
diff
changeset
|
8 |
* |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1327
diff
changeset
|
9 |
* The IgH EtherCAT Master is free software; you can redistribute it and/or |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1327
diff
changeset
|
10 |
* modify it under the terms of the GNU General Public License version 2, as |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1327
diff
changeset
|
11 |
* published by the Free Software Foundation. |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1327
diff
changeset
|
12 |
* |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1327
diff
changeset
|
13 |
* The IgH EtherCAT Master is distributed in the hope that it will be useful, |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1327
diff
changeset
|
14 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1327
diff
changeset
|
15 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1327
diff
changeset
|
16 |
* Public License for more details. |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1327
diff
changeset
|
17 |
* |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1327
diff
changeset
|
18 |
* You should have received a copy of the GNU General Public License along |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1327
diff
changeset
|
19 |
* with the IgH EtherCAT Master; if not, write to the Free Software |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1327
diff
changeset
|
20 |
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1327
diff
changeset
|
21 |
* |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1327
diff
changeset
|
22 |
* --- |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1327
diff
changeset
|
23 |
* |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1327
diff
changeset
|
24 |
* The license mentioned above concerns the source code only. Using the |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1327
diff
changeset
|
25 |
* EtherCAT technology and brand is only permitted in compliance with the |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1327
diff
changeset
|
26 |
* industrial property and similar rights of Beckhoff Automation GmbH. |
1142 | 27 |
* |
28 |
****************************************************************************/ |
|
29 |
||
30 |
#include <iostream> |
|
31 |
#include <iomanip> |
|
32 |
using namespace std; |
|
33 |
||
34 |
#include "CommandSdos.h" |
|
35 |
||
36 |
/*****************************************************************************/ |
|
37 |
||
38 |
CommandSdos::CommandSdos(): |
|
1327
4d179b06dd3c
merge -c1604 branches/stable-1.4: Fixed spelling of EtherCAT terms.
Florian Pose <fp@igh-essen.com>
parents:
1184
diff
changeset
|
39 |
SdoCommand("sdos", "List SDO dictionaries.") |
1142 | 40 |
{ |
41 |
} |
|
42 |
||
43 |
/*****************************************************************************/ |
|
44 |
||
45 |
string CommandSdos::helpString() const |
|
46 |
{ |
|
47 |
stringstream str; |
|
48 |
||
49 |
str << getName() << " [OPTIONS]" << endl |
|
50 |
<< endl |
|
51 |
<< getBriefDescription() << endl |
|
52 |
<< endl |
|
1327
4d179b06dd3c
merge -c1604 branches/stable-1.4: Fixed spelling of EtherCAT terms.
Florian Pose <fp@igh-essen.com>
parents:
1184
diff
changeset
|
53 |
<< "SDO dictionary information is displayed in two layers," << endl |
1142 | 54 |
<< "which are indented accordingly:" << endl |
55 |
<< endl |
|
1327
4d179b06dd3c
merge -c1604 branches/stable-1.4: Fixed spelling of EtherCAT terms.
Florian Pose <fp@igh-essen.com>
parents:
1184
diff
changeset
|
56 |
<< "1) SDOs - Hexadecimal SDO index and the name. Example:" << endl |
1142 | 57 |
<< endl |
1327
4d179b06dd3c
merge -c1604 branches/stable-1.4: Fixed spelling of EtherCAT terms.
Florian Pose <fp@igh-essen.com>
parents:
1184
diff
changeset
|
58 |
<< " SDO 0x1018, \"Identity object\"" << endl |
1142 | 59 |
<< endl |
1327
4d179b06dd3c
merge -c1604 branches/stable-1.4: Fixed spelling of EtherCAT terms.
Florian Pose <fp@igh-essen.com>
parents:
1184
diff
changeset
|
60 |
<< "2) SDO entries - SDO index and SDO entry subindex (both" << endl |
1382
cb2188d111f3
Read SDO entry access rights.
Florian Pose <fp@igh-essen.com>
parents:
1373
diff
changeset
|
61 |
<< " hexadecimal) followed by the access rights (see" << endl |
cb2188d111f3
Read SDO entry access rights.
Florian Pose <fp@igh-essen.com>
parents:
1373
diff
changeset
|
62 |
<< " below), the data type, the length in bit, and the" << endl |
cb2188d111f3
Read SDO entry access rights.
Florian Pose <fp@igh-essen.com>
parents:
1373
diff
changeset
|
63 |
<< " description. Example:" << endl |
1142 | 64 |
<< endl |
1382
cb2188d111f3
Read SDO entry access rights.
Florian Pose <fp@igh-essen.com>
parents:
1373
diff
changeset
|
65 |
<< " 0x1018:01, rwrwrw, uint32, 32 bit, \"Vendor id\"" << endl |
1142 | 66 |
<< endl |
1382
cb2188d111f3
Read SDO entry access rights.
Florian Pose <fp@igh-essen.com>
parents:
1373
diff
changeset
|
67 |
<< "The access rights are specified for the AL states PREOP," << endl |
cb2188d111f3
Read SDO entry access rights.
Florian Pose <fp@igh-essen.com>
parents:
1373
diff
changeset
|
68 |
<< "SAFEOP and OP. An 'r' means, that the entry is readable" << endl |
cb2188d111f3
Read SDO entry access rights.
Florian Pose <fp@igh-essen.com>
parents:
1373
diff
changeset
|
69 |
<< "in the corresponding state, an 'w' means writable," << endl |
cb2188d111f3
Read SDO entry access rights.
Florian Pose <fp@igh-essen.com>
parents:
1373
diff
changeset
|
70 |
<< "respectively. If a right is not granted, a dash '-' is" << endl |
cb2188d111f3
Read SDO entry access rights.
Florian Pose <fp@igh-essen.com>
parents:
1373
diff
changeset
|
71 |
<< "shown." << endl |
cb2188d111f3
Read SDO entry access rights.
Florian Pose <fp@igh-essen.com>
parents:
1373
diff
changeset
|
72 |
<< endl |
1327
4d179b06dd3c
merge -c1604 branches/stable-1.4: Fixed spelling of EtherCAT terms.
Florian Pose <fp@igh-essen.com>
parents:
1184
diff
changeset
|
73 |
<< "If the --quiet option is given, only the SDOs are output." |
1142 | 74 |
<< endl << endl |
75 |
<< "Command-specific options:" << endl |
|
1157
04d1c950cf9d
Added --help for alias and position parameters.
Florian Pose <fp@igh-essen.com>
parents:
1151
diff
changeset
|
76 |
<< " --alias -a <alias>" << endl |
04d1c950cf9d
Added --help for alias and position parameters.
Florian Pose <fp@igh-essen.com>
parents:
1151
diff
changeset
|
77 |
<< " --position -p <pos> Slave selection. See the help of" << endl |
04d1c950cf9d
Added --help for alias and position parameters.
Florian Pose <fp@igh-essen.com>
parents:
1151
diff
changeset
|
78 |
<< " the 'slaves' command." << endl |
1327
4d179b06dd3c
merge -c1604 branches/stable-1.4: Fixed spelling of EtherCAT terms.
Florian Pose <fp@igh-essen.com>
parents:
1184
diff
changeset
|
79 |
<< " --quiet -q Only output SDOs (without the" << endl |
4d179b06dd3c
merge -c1604 branches/stable-1.4: Fixed spelling of EtherCAT terms.
Florian Pose <fp@igh-essen.com>
parents:
1184
diff
changeset
|
80 |
<< " SDO entries)." << endl |
1142 | 81 |
<< endl |
82 |
<< numericInfo(); |
|
83 |
||
84 |
return str.str(); |
|
85 |
} |
|
86 |
||
87 |
/****************************************************************************/ |
|
88 |
||
89 |
void CommandSdos::execute(MasterDevice &m, const StringVector &args) |
|
90 |
{ |
|
1151 | 91 |
SlaveList slaves; |
92 |
SlaveList::const_iterator si; |
|
93 |
bool showHeader; |
|
94 |
||
1373
e651000f1ff1
Complain about given arguments if none are required.
Florian Pose <fp@igh-essen.com>
parents:
1363
diff
changeset
|
95 |
if (args.size()) { |
e651000f1ff1
Complain about given arguments if none are required.
Florian Pose <fp@igh-essen.com>
parents:
1363
diff
changeset
|
96 |
stringstream err; |
e651000f1ff1
Complain about given arguments if none are required.
Florian Pose <fp@igh-essen.com>
parents:
1363
diff
changeset
|
97 |
err << "'" << getName() << "' takes no arguments!"; |
e651000f1ff1
Complain about given arguments if none are required.
Florian Pose <fp@igh-essen.com>
parents:
1363
diff
changeset
|
98 |
throwInvalidUsageException(err); |
e651000f1ff1
Complain about given arguments if none are required.
Florian Pose <fp@igh-essen.com>
parents:
1363
diff
changeset
|
99 |
} |
e651000f1ff1
Complain about given arguments if none are required.
Florian Pose <fp@igh-essen.com>
parents:
1363
diff
changeset
|
100 |
|
1142 | 101 |
m.open(MasterDevice::Read); |
1151 | 102 |
slaves = selectedSlaves(m); |
103 |
showHeader = slaves.size() > 1; |
|
1142 | 104 |
|
1151 | 105 |
for (si = slaves.begin(); si != slaves.end(); si++) { |
106 |
listSlaveSdos(m, *si, showHeader); |
|
1142 | 107 |
} |
108 |
} |
|
109 |
||
110 |
/****************************************************************************/ |
|
111 |
||
112 |
void CommandSdos::listSlaveSdos( |
|
113 |
MasterDevice &m, |
|
1151 | 114 |
const ec_ioctl_slave_t &slave, |
115 |
bool showHeader |
|
1142 | 116 |
) |
117 |
{ |
|
118 |
ec_ioctl_slave_sdo_t sdo; |
|
119 |
ec_ioctl_slave_sdo_entry_t entry; |
|
120 |
unsigned int i, j; |
|
1184
75cd6681eb08
Introduced SdoCommand class to replace coe_datatypes.[ch]; added CoE abort codes in user space-
Florian Pose <fp@igh-essen.com>
parents:
1157
diff
changeset
|
121 |
const DataType *d; |
1142 | 122 |
|
1151 | 123 |
if (showHeader) |
124 |
cout << "=== Slave " << slave.position << " ===" << endl; |
|
1142 | 125 |
|
126 |
for (i = 0; i < slave.sdo_count; i++) { |
|
1151 | 127 |
m.getSdo(&sdo, slave.position, i); |
1142 | 128 |
|
1327
4d179b06dd3c
merge -c1604 branches/stable-1.4: Fixed spelling of EtherCAT terms.
Florian Pose <fp@igh-essen.com>
parents:
1184
diff
changeset
|
129 |
cout << "SDO 0x" |
1142 | 130 |
<< hex << setfill('0') |
131 |
<< setw(4) << sdo.sdo_index |
|
132 |
<< ", \"" << sdo.name << "\"" << endl; |
|
133 |
||
134 |
if (getVerbosity() == Quiet) |
|
135 |
continue; |
|
136 |
||
137 |
for (j = 0; j <= sdo.max_subindex; j++) { |
|
1151 | 138 |
m.getSdoEntry(&entry, slave.position, -i, j); |
1142 | 139 |
|
140 |
cout << " 0x" << hex << setfill('0') |
|
141 |
<< setw(4) << sdo.sdo_index << ":" |
|
142 |
<< setw(2) << (unsigned int) entry.sdo_entry_subindex |
|
1382
cb2188d111f3
Read SDO entry access rights.
Florian Pose <fp@igh-essen.com>
parents:
1373
diff
changeset
|
143 |
<< ", " |
cb2188d111f3
Read SDO entry access rights.
Florian Pose <fp@igh-essen.com>
parents:
1373
diff
changeset
|
144 |
<< (entry.read_access[EC_SDO_ENTRY_ACCESS_PREOP] ? "r" : "-") |
cb2188d111f3
Read SDO entry access rights.
Florian Pose <fp@igh-essen.com>
parents:
1373
diff
changeset
|
145 |
<< (entry.write_access[EC_SDO_ENTRY_ACCESS_PREOP] ? "w" : "-") |
cb2188d111f3
Read SDO entry access rights.
Florian Pose <fp@igh-essen.com>
parents:
1373
diff
changeset
|
146 |
<< (entry.read_access[EC_SDO_ENTRY_ACCESS_SAFEOP] ? "r" : "-") |
cb2188d111f3
Read SDO entry access rights.
Florian Pose <fp@igh-essen.com>
parents:
1373
diff
changeset
|
147 |
<< (entry.write_access[EC_SDO_ENTRY_ACCESS_SAFEOP] ? "w" : "-") |
cb2188d111f3
Read SDO entry access rights.
Florian Pose <fp@igh-essen.com>
parents:
1373
diff
changeset
|
148 |
<< (entry.read_access[EC_SDO_ENTRY_ACCESS_OP] ? "r" : "-") |
cb2188d111f3
Read SDO entry access rights.
Florian Pose <fp@igh-essen.com>
parents:
1373
diff
changeset
|
149 |
<< (entry.write_access[EC_SDO_ENTRY_ACCESS_OP] ? "w" : "-") |
1142 | 150 |
<< ", "; |
151 |
||
152 |
if ((d = findDataType(entry.data_type))) { |
|
153 |
cout << d->name; |
|
154 |
} else { |
|
155 |
cout << "type " << setw(4) << entry.data_type; |
|
156 |
} |
|
157 |
||
158 |
cout << ", " << dec << entry.bit_length << " bit, \"" |
|
159 |
<< entry.description << "\"" << endl; |
|
160 |
} |
|
161 |
} |
|
162 |
} |
|
163 |
||
164 |
/*****************************************************************************/ |