Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00046 #ifndef _ethercatsoe_
00047 #define _ethercatsoe_
00048
00049 #define EC_SOE_DATASTATE_B 0x01
00050 #define EC_SOE_NAME_B 0x02
00051 #define EC_SOE_ATTRIBUTE_B 0x04
00052 #define EC_SOE_UNIT_B 0x08
00053 #define EC_SOE_MIN_B 0x10
00054 #define EC_SOE_MAX_B 0x20
00055 #define EC_SOE_VALUE_B 0x40
00056 #define EC_SOE_DEFAULT_B 0x80
00057
00058 #define EC_SOE_MAXNAME 60
00059 #define EC_SOE_MAXMAPPING 64
00060
00061 #define EC_IDN_MDTCONFIG 24
00062 #define EC_IDN_ATCONFIG 16
00063
00065 typedef struct PACKED
00066 {
00068 uint16 currentlength;
00070 uint16 maxlength;
00071 char name[EC_SOE_MAXNAME];
00072 } ec_SoEnamet;
00073
00075 typedef struct PACKED
00076 {
00078 uint16 currentlength;
00080 uint16 maxlength;
00081 union
00082 {
00083 uint8 byte[8];
00084 uint16 word[4];
00085 uint32 dword[2];
00086 uint64 lword[1];
00087 };
00088 } ec_SoElistt;
00089
00091 typedef struct PACKED
00092 {
00094 uint16 currentlength;
00096 uint16 maxlength;
00097 uint16 idn[EC_SOE_MAXMAPPING];
00098 } ec_SoEmappingt;
00099
00100 #define EC_SOE_LENGTH_1 0x00
00101 #define EC_SOE_LENGTH_2 0x01
00102 #define EC_SOE_LENGTH_4 0x02
00103 #define EC_SOE_LENGTH_8 0x03
00104 #define EC_SOE_TYPE_BINARY 0x00
00105 #define EC_SOE_TYPE_UINT 0x01
00106 #define EC_SOE_TYPE_INT 0x02
00107 #define EC_SOE_TYPE_HEX 0x03
00108 #define EC_SOE_TYPE_STRING 0x04
00109 #define EC_SOE_TYPE_IDN 0x05
00110 #define EC_SOE_TYPE_FLOAT 0x06
00111 #define EC_SOE_TYPE_PARAMETER 0x07
00112
00114 typedef struct PACKED
00115 {
00117 uint32 evafactor :16;
00119 uint32 length :2;
00121 uint32 list :1;
00123 uint32 command :1;
00125 uint32 datatype :3;
00126 uint32 reserved1 :1;
00128 uint32 decimals :4;
00130 uint32 wppreop :1;
00132 uint32 wpsafeop :1;
00134 uint32 wpop :1;
00135 uint32 reserved2 :1;
00136 } ec_SoEattributet;
00137
00138 int ec_SoEread(uint16 slave, uint8 driveNo, uint8 elementflags, uint16 idn, int *psize, void *p, int timeout);
00139 int ec_SoEwrite(uint16 slave, uint8 driveNo, uint8 elementflags, uint16 idn, int psize, void *p, int timeout);
00140 int ec_readIDNmap(uint16 slave, int *Osize, int *Isize);
00141
00142 #endif