author | Florian Pose <fp@igh-essen.com> |
Fri, 30 Nov 2012 15:24:38 +0100 | |
branch | stable-1.5 |
changeset 2452 | abc1d1caead7 |
parent 2433 | 3bdd7a747fae |
permissions | -rw-r--r-- |
270 | 1 |
------------------------------------------------------------------------------- |
2 |
||
3 |
This is the FEATURES file of the IgH EtherCAT Master. |
|
4 |
||
5 |
$Id$ |
|
6 |
||
1319 | 7 |
vim: spelllang=en spell |
8 |
||
270 | 9 |
------------------------------------------------------------------------------- |
10 |
||
11 |
General Features: |
|
12 |
||
1319 | 13 |
* EtherCAT master implementation conforming to IEC/PAS 62407. |
14 |
- Runs as kernel module for Linux 2.6. |
|
15 |
- Multiple masters possible on one machine. |
|
270 | 16 |
|
1590 | 17 |
* Native EtherCAT-capable versions of standard Linux drivers for wide-spread |
18 |
Ethernet devices, as well as a generic driver for all chips supported by the |
|
19 |
Linux kernel. |
|
20 |
- Interrupt-less operation of Ethernet devices when using native drivers. |
|
21 |
- Easy implementation of additional native Ethernet drivers through common |
|
22 |
device interface. |
|
1319 | 23 |
- Operation possible with any device supported by the standard drivers, |
24 |
including PCMCIA devices. |
|
1590 | 25 |
- For any other hardware, the generic driver can be used. It uses the lower |
26 |
layers of the Linux network stack. |
|
270 | 27 |
|
1319 | 28 |
* Supports any realtime environment through independent architecture. |
29 |
- RTAI, Xenomai, RT-Preempt, etc. |
|
2433
3bdd7a747fae
Re-worked and seamlessly integrated RTDM interface.
Florian Pose <fp@igh-essen.com>
parents:
2421
diff
changeset
|
30 |
- RTDM Interface for userspace realtime enviroments |
1320 | 31 |
- Operation possible without any realtime extension at all. |
270 | 32 |
|
1319 | 33 |
* Common API for Realtime-Applications in kernel- and userspace. |
34 |
- Requesting and releasing masters. |
|
35 |
- Dynamic slave configuration, even for slaves that are offline. |
|
1327
4d179b06dd3c
merge -c1604 branches/stable-1.4: Fixed spelling of EtherCAT terms.
Florian Pose <fp@igh-essen.com>
parents:
1320
diff
changeset
|
36 |
- Detailed configuration of the slaves' PDOs and SDOs. |
4d179b06dd3c
merge -c1604 branches/stable-1.4: Fixed spelling of EtherCAT terms.
Florian Pose <fp@igh-essen.com>
parents:
1320
diff
changeset
|
37 |
- Creation of process data domains (see below). Registration of PDO entries |
1319 | 38 |
for exchange within a domain. |
39 |
- Monitoring the states of masters, slave configurations and domains. |
|
1327
4d179b06dd3c
merge -c1604 branches/stable-1.4: Fixed spelling of EtherCAT terms.
Florian Pose <fp@igh-essen.com>
parents:
1320
diff
changeset
|
40 |
- SDO handlers for application-triggered CoE transfers (see below). |
1319 | 41 |
- VoE handlers for Vendor-specific mailbox protocols (see below). |
42 |
- Similar userspace implementation of the kernel API via a C-library. |
|
270 | 43 |
- Avoidance of unnecessary copy operations for process data. |
44 |
||
45 |
* Separating slave groups through domains. |
|
46 |
- Handling of multiple slave groups with different sampling rates. |
|
47 |
- Automatic calculation of process data mapping, FMMU- and sync manager |
|
48 |
configuration within the domains. |
|
1319 | 49 |
- Process data exchange can be monitored via a per-domain mechanism. |
270 | 50 |
|
1083
1322dc34cb37
Updated header docs, features and news file.
Florian Pose <fp@igh-essen.com>
parents:
555
diff
changeset
|
51 |
* Master finite state machine (FSM). |
1320 | 52 |
- The same state machine runs both in idle mode and in realtime operation. |
53 |
- Bus monitoring: Slave states are read cyclically. Automatic scanning of the |
|
54 |
bus after a topology change. |
|
1319 | 55 |
- Automatic configuration of slaves, if a application-layer state change is |
56 |
requested. |
|
270 | 57 |
|
1364 | 58 |
* Implementation of the "CANopen over EtherCAT" (CoE) mailbox protocol. |
1319 | 59 |
- Configuration of CoE-capable slaves. |
1327
4d179b06dd3c
merge -c1604 branches/stable-1.4: Fixed spelling of EtherCAT terms.
Florian Pose <fp@igh-essen.com>
parents:
1320
diff
changeset
|
60 |
- SDO information service (dictionary listing). |
4d179b06dd3c
merge -c1604 branches/stable-1.4: Fixed spelling of EtherCAT terms.
Florian Pose <fp@igh-essen.com>
parents:
1320
diff
changeset
|
61 |
- SDO transfers both via the application interface and the command-line tool. |
270 | 62 |
|
1364 | 63 |
* Implementation of the "Ethernet over EtherCAT" (EoE) mailbox protocol. |
1320 | 64 |
- Virtual network interface for any EoE-capable slave. |
65 |
- Both a switched and a routed EoE network architecture is natively supported |
|
66 |
and configurable with standard tools. |
|
67 |
||
1364 | 68 |
* Implementation of the "Vendor-specific over EtherCAT" (VoE) mailbox protocol. |
2421 | 69 |
- Communication with vendor-specific mailbox protocols via the API. |
270 | 70 |
|
1364 | 71 |
* Implementation of the "File Access over EtherCAT" (FoE) mailbox protocol. |
72 |
- Loading and storing files via the command-line tool. |
|
73 |
- Updating a slave's firmware can be done easily. |
|
74 |
||
1319 | 75 |
* Userspace command-line tool 'ethercat'. |
76 |
- Detailed information about master, slaves, domains and bus configuration. |
|
1364 | 77 |
- Setting the master's debug level. |
1319 | 78 |
- Reading/Writing alias addresses. |
79 |
- Listing slave configurations. |
|
80 |
- Viewing process data. |
|
1327
4d179b06dd3c
merge -c1604 branches/stable-1.4: Fixed spelling of EtherCAT terms.
Florian Pose <fp@igh-essen.com>
parents:
1320
diff
changeset
|
81 |
- SDO download/upload; listing SDO dictionaries. |
1364 | 82 |
- Loading and storing files via FoE. |
1319 | 83 |
- Access to slave registers. |
84 |
- Slave SII (EEPROM) access. |
|
1320 | 85 |
- Controlling application-layer states. |
1319 | 86 |
- Generation of slave description XML from existing slaves. |
270 | 87 |
|
1319 | 88 |
* Seamless integration in any GNU/Linux distribution. |
1320 | 89 |
- "Linux Standard Base"-compatible init script for master control. |
1319 | 90 |
- Master and Ethernet device configuration via sysconfig file. |
270 | 91 |
|
1319 | 92 |
* Virtual read-only network interface for debugging and traffic monitoring |
93 |
purposes (using Wireshark, etc.). No additional hardware necessary. |
|
270 | 94 |
|
95 |
------------------------------------------------------------------------------- |