author | Florian Pose <fp@igh-essen.com> |
Fri, 25 Apr 2008 12:23:52 +0000 | |
changeset 905 | 6d74ebc603ee |
parent 904 | ba6f222aa06e |
child 907 | 570ae1c64465 |
permissions | -rw-r--r-- |
271 | 1 |
------------------------------------------------------------------------------- |
194
c21e7c12dd50
Moved fragen.txt outside the source tree, renamed todo.txt to TODO
Florian Pose <fp@igh-essen.com>
parents:
diff
changeset
|
2 |
|
c21e7c12dd50
Moved fragen.txt outside the source tree, renamed todo.txt to TODO
Florian Pose <fp@igh-essen.com>
parents:
diff
changeset
|
3 |
EtherCAT master TODO |
c21e7c12dd50
Moved fragen.txt outside the source tree, renamed todo.txt to TODO
Florian Pose <fp@igh-essen.com>
parents:
diff
changeset
|
4 |
|
c21e7c12dd50
Moved fragen.txt outside the source tree, renamed todo.txt to TODO
Florian Pose <fp@igh-essen.com>
parents:
diff
changeset
|
5 |
$Id$ |
c21e7c12dd50
Moved fragen.txt outside the source tree, renamed todo.txt to TODO
Florian Pose <fp@igh-essen.com>
parents:
diff
changeset
|
6 |
|
271 | 7 |
------------------------------------------------------------------------------- |
194
c21e7c12dd50
Moved fragen.txt outside the source tree, renamed todo.txt to TODO
Florian Pose <fp@igh-essen.com>
parents:
diff
changeset
|
8 |
|
776 | 9 |
Version 1.4.0: |
547 | 10 |
|
899 | 11 |
* Remove self_configured flag to avoid unnecessary process data |
12 |
interruptions. |
|
13 |
* Replace Sysfs interface with cdev and a user space program |
|
14 |
to replace lsec; move a few sysfs attributes to proc. |
|
900
f8b5c6d21705
Removed bus validation; slave configuration during realtime operation;
Florian Pose <fp@igh-essen.com>
parents:
899
diff
changeset
|
15 |
* Implement realtime interface via cdev. |
899 | 16 |
* Make scanning and configuration run parallel (each). |
866 | 17 |
* Mailbox state machine using toggle bits. |
18 |
* Mailbox protocol handlers. |
|
776 | 19 |
* Remove get_cycles() calls and references to cpu_khz to increase |
20 |
portability. |
|
21 |
* Remove ecdb.h and let lsec output PDO information 'cut-and-pastable' for |
|
22 |
applications. |
|
819 | 23 |
* SDO write access in sysfs. |
776 | 24 |
* Update documentation. |
899 | 25 |
* Supply new ec_master_state_t. |
833 | 26 |
* Scanning of Sdo dictionary / writing EEPROM in OPERATION state. |
845 | 27 |
* Adapt remaining examples. |
900
f8b5c6d21705
Removed bus validation; slave configuration during realtime operation;
Florian Pose <fp@igh-essen.com>
parents:
899
diff
changeset
|
28 |
* READMEs for examples. |
848 | 29 |
* Separate Pdo and Pdo entry classes. |
30 |
* Attach Pdo names. |
|
855 | 31 |
* Wait for bus scanning, even when link is not up at ecrt_request_master(). |
857 | 32 |
* Implement ecrt_slave_config_state(). |
899 | 33 |
* Add something like lsec -n to show numeric vendor IDs. |
900
f8b5c6d21705
Removed bus validation; slave configuration during realtime operation;
Florian Pose <fp@igh-essen.com>
parents:
899
diff
changeset
|
34 |
* Remove the end state of the master state machine. |
f8b5c6d21705
Removed bus validation; slave configuration during realtime operation;
Florian Pose <fp@igh-essen.com>
parents:
899
diff
changeset
|
35 |
* Check the position of the acknowledge state. |
f8b5c6d21705
Removed bus validation; slave configuration during realtime operation;
Florian Pose <fp@igh-essen.com>
parents:
899
diff
changeset
|
36 |
* Remove the xmldev files. |
f8b5c6d21705
Removed bus validation; slave configuration during realtime operation;
Florian Pose <fp@igh-essen.com>
parents:
899
diff
changeset
|
37 |
* Separate CoE debugging. |
f8b5c6d21705
Removed bus validation; slave configuration during realtime operation;
Florian Pose <fp@igh-essen.com>
parents:
899
diff
changeset
|
38 |
* Make ecrt_master_slave_config() return no error when slave is not present |
f8b5c6d21705
Removed bus validation; slave configuration during realtime operation;
Florian Pose <fp@igh-essen.com>
parents:
899
diff
changeset
|
39 |
or invalid. |
547 | 40 |
|
776 | 41 |
Future issues: |
42 |
||
899 | 43 |
* Distributed clocks. |
44 |
* Move slave handlers and state machines, etc. into a user space daemon (move |
|
45 |
kernel threads to user space daemon with a TCP interface replacing the |
|
46 |
cdev). |
|
831
ded9519c8d6e
Reading of Pdo mapping via CoE during scan.
Florian Pose <fp@igh-essen.com>
parents:
819
diff
changeset
|
47 |
* Mailbox gateway. |
ded9519c8d6e
Reading of Pdo mapping via CoE during scan.
Florian Pose <fp@igh-essen.com>
parents:
819
diff
changeset
|
48 |
* Slave-to-slave communication. |
776 | 49 |
* Redundancy with 2 network adapters. |
50 |
* Interface/buffers for asynchronous domain IO. |
|
51 |
||
52 |
Smaller issues: |
|
53 |
||
866 | 54 |
* Evaluate SII Size field (0x003E) to determine maximum SII memory size. |
833 | 55 |
* Unite fsm_pdo_mapping, fsm_pdo_config and fsm_coe_map. |
776 | 56 |
* Clear sync managers in INIT. |
57 |
* Simplify FSMs with <state>_enter() functions. |
|
58 |
* Read out CRC counters. |
|
59 |
* Optimize alignment of process data. |
|
60 |
* Evaluate EEPROM contents after writing. |
|
61 |
* Configure slave ports to automatically open on link detection. |
|
62 |
* Interrupt master state machines state scan for other jobs. |
|
63 |
* Master state machine, slave configuration: Do not check every slave on |
|
64 |
a cycle. |
|
65 |
* Only execute one EoE handler per EoE cycle. |
|
66 |
||
67 |
Less important issues: |
|
68 |
||
69 |
* File access over EtherCAT (FoE). |
|
70 |
* Allow VLAN tagging. |
|
71 |
* Determine number of frames, the NIC can handle. |
|
351 | 72 |
|
271 | 73 |
------------------------------------------------------------------------------- |