Updated Doxygen documentation.

This commit is contained in:
Florian Pose
2007-09-24 12:12:11 +00:00
parent e8703b64d3
commit c5b3ade0c0
25 changed files with 201 additions and 44 deletions
+2 -2
View File
@@ -35,8 +35,8 @@
\file
EtherCAT Slave Database.
\warn Please do not create any dependencies to this file! It may be changed
between releases. Provide a copy, if you want to use it in foreign
\attention Please do not create any dependencies to this file! It may be
changed between releases. Provide a copy, if you want to use it in foreign
projects.
*/
+14
View File
@@ -59,10 +59,24 @@
/*****************************************************************************/
/**
* EtherCAT real-time interface major version number.
*/
#define ECRT_VER_MAJOR 1
/**
* EtherCAT real-time interface minor version number.
*/
#define ECRT_VER_MINOR 3
/**
* EtherCAT real-time interface version word generator.
*/
#define ECRT_VERSION(a,b) (((a) << 8) + (b))
/**
* EtherCAT real-time interface version word.
*/
#define ECRT_VERSION_MAGIC ECRT_VERSION(ECRT_VER_MAJOR, ECRT_VER_MINOR)
/*****************************************************************************/