SOEM/soem/ethercatdc.h

34 lines
839 B
C
Raw Permalink Normal View History

2014-11-25 16:10:29 +01:00
/*
* Licensed under the GNU General Public License version 2 with exceptions. See
* LICENSE file in the project root for full license information
2014-11-25 16:10:29 +01:00
*/
2015-11-04 13:02:33 +01:00
/** \file
2014-11-25 16:10:29 +01:00
* \brief
2015-11-04 13:02:33 +01:00
* Headerfile for ethercatdc.c
2014-11-25 16:10:29 +01:00
*/
#ifndef _EC_ECATDC_H
#define _EC_ECATDC_H
#ifdef __cplusplus
extern "C"
{
#endif
#ifdef EC_VER1
boolean ec_configdc();
void ec_dcsync0(uint16 slave, boolean act, uint32 CyclTime, int32 CyclShift);
void ec_dcsync01(uint16 slave, boolean act, uint32 CyclTime0, uint32 CyclTime1, int32 CyclShift);
2014-11-25 16:10:29 +01:00
#endif
boolean ecx_configdc(ecx_contextt *context);
void ecx_dcsync0(ecx_contextt *context, uint16 slave, boolean act, uint32 CyclTime, int32 CyclShift);
void ecx_dcsync01(ecx_contextt *context, uint16 slave, boolean act, uint32 CyclTime0, uint32 CyclTime1, int32 CyclShift);
2014-11-25 16:10:29 +01:00
#ifdef __cplusplus
}
#endif
#endif /* _EC_ECATDC_H */