File tree Expand file tree Collapse file tree 16 files changed +104
-20
lines changed
ethercat_advantech_modules/src
ethercat_beckhoff_modules/src
ethercat_maxon_drives/src
ethercat_omron_modules/src
ethercat_schneider_drives/src Expand file tree Collapse file tree 16 files changed +104
-20
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,11 @@ class Advantech_AMAX5051 : public ethercat_interface::EcSlave
21
21
{
22
22
public:
23
23
Advantech_AMAX5051 ()
24
- : EcSlave(0x000013FE , 0x00035051 ) {}
24
+ : EcSlave(0x000013FE , 0x00035051 )
25
+ {
26
+ std::cerr << " The Advantech_AMAX5051 plugin is depreciated and will be removed in the future."
27
+ << " Use the GenericEcSlave plugin instead." << std::endl;
28
+ }
25
29
virtual ~Advantech_AMAX5051 () {}
26
30
virtual void processData (size_t index, uint8_t * domain_address)
27
31
{
Original file line number Diff line number Diff line change @@ -21,7 +21,11 @@ class Advantech_AMAX5056 : public ethercat_interface::EcSlave
21
21
{
22
22
public:
23
23
Advantech_AMAX5056 ()
24
- : EcSlave(0x000013FE , 0x00035056 ) {}
24
+ : EcSlave(0x000013FE , 0x00035056 )
25
+ {
26
+ std::cerr << " The Advantech_AMAX5056 plugin is depreciated and will be removed in the future."
27
+ << " Use the GenericEcSlave plugin instead." << std::endl;
28
+ }
25
29
virtual ~Advantech_AMAX5056 () {}
26
30
virtual void processData (size_t index, uint8_t * domain_address)
27
31
{
Original file line number Diff line number Diff line change @@ -21,7 +21,11 @@ class ATI_FTSensor : public ethercat_interface::EcSlave
21
21
{
22
22
public:
23
23
ATI_FTSensor ()
24
- : EcSlave(0x00000732 , 0x26483052 ) {}
24
+ : EcSlave(0x00000732 , 0x26483052 )
25
+ {
26
+ std::cerr << " The ATI_FTSensor plugin is depreciated and will be removed in the future."
27
+ << " Use the GenericEcSlave plugin instead." << std::endl;
28
+ }
25
29
virtual ~ATI_FTSensor () {}
26
30
virtual void processData (size_t index, uint8_t * domain_address)
27
31
{
Original file line number Diff line number Diff line change @@ -21,7 +21,11 @@ class Beckhoff_EK1100 : public ethercat_interface::EcSlave
21
21
{
22
22
public:
23
23
Beckhoff_EK1100 ()
24
- : EcSlave(0x00000002 , 0x044c2c52 ) {}
24
+ : EcSlave(0x00000002 , 0x044c2c52 )
25
+ {
26
+ std::cerr << " The Beckhoff_EK1100 plugin is depreciated and will be removed in the future."
27
+ << " Use the GenericEcSlave plugin instead." << std::endl;
28
+ }
25
29
virtual ~Beckhoff_EK1100 () {}
26
30
};
27
31
Original file line number Diff line number Diff line change @@ -21,7 +21,11 @@ class Beckhoff_EL1008 : public ethercat_interface::EcSlave
21
21
{
22
22
public:
23
23
Beckhoff_EL1008 ()
24
- : EcSlave(0x00000002 , 0x03f03052 ) {}
24
+ : EcSlave(0x00000002 , 0x03f03052 )
25
+ {
26
+ std::cerr << " The Beckhoff_EL1008 plugin is depreciated and will be removed in the future."
27
+ << " Use the GenericEcSlave plugin instead." << std::endl;
28
+ }
25
29
virtual ~Beckhoff_EL1008 () {}
26
30
virtual void processData (size_t index, uint8_t * domain_address)
27
31
{
@@ -116,7 +120,11 @@ class Beckhoff_EL1018 : public ethercat_interface::EcSlave
116
120
{
117
121
public:
118
122
Beckhoff_EL1018 ()
119
- : EcSlave(0x00000002 , 0x03fa3052 ) {}
123
+ : EcSlave(0x00000002 , 0x03fa3052 )
124
+ {
125
+ std::cerr << " The Beckhoff_EL1018 plugin is depreciated and will be removed in the future."
126
+ << " Use the GenericEcSlave plugin instead." << std::endl;
127
+ }
120
128
virtual ~Beckhoff_EL1018 () {}
121
129
virtual void processData (size_t index, uint8_t * domain_address)
122
130
{
Original file line number Diff line number Diff line change @@ -21,7 +21,11 @@ class Beckhoff_EL2008 : public ethercat_interface::EcSlave
21
21
{
22
22
public:
23
23
Beckhoff_EL2008 ()
24
- : EcSlave(0x00000002 , 0x07d83052 ) {}
24
+ : EcSlave(0x00000002 , 0x07d83052 )
25
+ {
26
+ std::cerr << " The Beckhoff_EL2008 plugin is depreciated and will be removed in the future."
27
+ << " Use the GenericEcSlave plugin instead." << std::endl;
28
+ }
25
29
virtual ~Beckhoff_EL2008 () {}
26
30
virtual void processData (size_t index, uint8_t * domain_address)
27
31
{
@@ -130,7 +134,11 @@ class Beckhoff_EL2088 : public ethercat_interface::EcSlave
130
134
{
131
135
public:
132
136
Beckhoff_EL2088 ()
133
- : EcSlave(0x00000002 , 0x08283052 ) {}
137
+ : EcSlave(0x00000002 , 0x08283052 )
138
+ {
139
+ std::cerr << " The Beckhoff_EL2088 plugin is depreciated and will be removed in the future."
140
+ << " Use the GenericEcSlave plugin instead." << std::endl;
141
+ }
134
142
virtual ~Beckhoff_EL2088 () {}
135
143
virtual void processData (size_t index, uint8_t * domain_address)
136
144
{
Original file line number Diff line number Diff line change @@ -21,7 +21,11 @@ class Beckhoff_EL2124 : public ethercat_interface::EcSlave
21
21
{
22
22
public:
23
23
Beckhoff_EL2124 ()
24
- : EcSlave(0x00000002 , 0x084c3052 ) {}
24
+ : EcSlave(0x00000002 , 0x084c3052 )
25
+ {
26
+ std::cerr << " The Beckhoff_EL2124 plugin is depreciated and will be removed in the future."
27
+ << " Use the GenericEcSlave plugin instead." << std::endl;
28
+ }
25
29
virtual ~Beckhoff_EL2124 () {}
26
30
virtual void processData (size_t index, uint8_t * domain_address)
27
31
{
Original file line number Diff line number Diff line change @@ -21,7 +21,11 @@ class Beckhoff_EL3102 : public ethercat_interface::EcSlave
21
21
{
22
22
public:
23
23
Beckhoff_EL3102 ()
24
- : EcSlave(0x00000002 , 0x0c1e3052 ) {}
24
+ : EcSlave(0x00000002 , 0x0c1e3052 )
25
+ {
26
+ std::cerr << " The Beckhoff_EL3102 plugin is depreciated and will be removed in the future."
27
+ << " Use the GenericEcSlave plugin instead." << std::endl;
28
+ }
25
29
virtual ~Beckhoff_EL3102 () {}
26
30
virtual void processData (size_t index, uint8_t * domain_address)
27
31
{
@@ -97,7 +101,11 @@ class Beckhoff_EL3104 : public ethercat_interface::EcSlave
97
101
{
98
102
public:
99
103
Beckhoff_EL3104 ()
100
- : EcSlave(0x00000002 , 0x0c203052 ) {}
104
+ : EcSlave(0x00000002 , 0x0c203052 )
105
+ {
106
+ std::cerr << " The Beckhoff_EL3104 plugin is depreciated and will be removed in the future."
107
+ << " Use the GenericEcSlave plugin instead." << std::endl;
108
+ }
101
109
virtual ~Beckhoff_EL3104 () {}
102
110
virtual void processData (size_t index, uint8_t domain_address)
103
111
{
Original file line number Diff line number Diff line change @@ -21,7 +21,11 @@ class Beckhoff_EL4134 : public ethercat_interface::EcSlave
21
21
{
22
22
public:
23
23
Beckhoff_EL4134 ()
24
- : EcSlave(0x00000002 , 0x10263052 ) {}
24
+ : EcSlave(0x00000002 , 0x10263052 )
25
+ {
26
+ std::cerr << " The Beckhoff_EL4134 plugin is depreciated and will be removed in the future."
27
+ << " Use the GenericEcSlave plugin instead." << std::endl;
28
+ }
25
29
virtual ~Beckhoff_EL4134 () {}
26
30
virtual void processData (size_t index, uint8_t * domain_address)
27
31
{
@@ -109,7 +113,11 @@ class Beckhoff_EL4132 : public ethercat_interface::EcSlave
109
113
{
110
114
public:
111
115
Beckhoff_EL4132 ()
112
- : EcSlave(0x00000002 , 0x10243052 ) {}
116
+ : EcSlave(0x00000002 , 0x10243052 )
117
+ {
118
+ std::cerr << " The Beckhoff_EL4132 plugin is depreciated and will be removed in the future."
119
+ << " Use the GenericEcSlave plugin instead." << std::endl;
120
+ }
113
121
virtual ~Beckhoff_EL4132 () {}
114
122
virtual void processData (size_t index, uint8_t * domain_address)
115
123
{
Original file line number Diff line number Diff line change @@ -24,7 +24,11 @@ class Beckhoff_EL5101 : public ethercat_interface::EcSlave
24
24
{
25
25
public:
26
26
Beckhoff_EL5101 ()
27
- : EcSlave(0x00000002 , 0x13ed3052 ) {}
27
+ : EcSlave(0x00000002 , 0x13ed3052 )
28
+ {
29
+ std::cerr << " The Beckhoff_EL5101 plugin is depreciated and will be removed in the future."
30
+ << " Use the GenericEcSlave plugin instead." << std::endl;
31
+ }
28
32
virtual ~Beckhoff_EL5101 () {}
29
33
virtual void processData (size_t index, uint8_t * domain_address)
30
34
{
You can’t perform that action at this time.
0 commit comments