2014-11-25 23:10:29 +08:00
|
|
|
/** \file
|
|
|
|
* \brief Example code for Simple Open EtherCAT master
|
|
|
|
*
|
|
|
|
* Usage : red_test [ifname1] [ifname2] [cycletime]
|
|
|
|
* ifname is NIC interface, f.e. eth0
|
|
|
|
* cycletime in us, f.e. 500
|
|
|
|
*
|
|
|
|
* This is a redundancy test.
|
|
|
|
*
|
2015-11-04 20:02:33 +08:00
|
|
|
* (c)Arthur Ketels 2008
|
2014-11-25 23:10:29 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sched.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <pthread.h>
|
|
|
|
#include <math.h>
|
|
|
|
|
2015-12-18 22:56:33 +08:00
|
|
|
#include "ethercat.h"
|
2014-11-25 23:10:29 +08:00
|
|
|
|
|
|
|
#define NSEC_PER_SEC 1000000000
|
|
|
|
|
|
|
|
struct sched_param schedp;
|
|
|
|
char IOmap[4096];
|
|
|
|
pthread_t thread1;
|
|
|
|
struct timeval tv, t1, t2;
|
|
|
|
int dorun = 0;
|
|
|
|
int deltat, tmax = 0;
|
|
|
|
int64 toff;
|
|
|
|
int DCdiff;
|
|
|
|
int os;
|
|
|
|
uint8 ob;
|
|
|
|
uint16 ob2;
|
|
|
|
pthread_cond_t cond = PTHREAD_COND_INITIALIZER;
|
|
|
|
pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
|
|
|
|
uint8 *digout = 0;
|
|
|
|
int wcounter;
|
|
|
|
|
|
|
|
void redtest(char *ifname, char *ifname2)
|
|
|
|
{
|
|
|
|
int cnt, i, j, oloop, iloop;
|
2015-11-04 20:02:33 +08:00
|
|
|
|
2014-11-25 23:10:29 +08:00
|
|
|
printf("Starting Redundant test\n");
|
2015-11-04 20:02:33 +08:00
|
|
|
|
2014-11-25 23:10:29 +08:00
|
|
|
/* initialise SOEM, bind socket to ifname */
|
|
|
|
if (ec_init_redundant(ifname, ifname2))
|
2015-11-04 20:02:33 +08:00
|
|
|
{
|
2014-11-25 23:10:29 +08:00
|
|
|
printf("ec_init on %s succeeded.\n",ifname);
|
|
|
|
/* find and auto-config slaves */
|
|
|
|
if ( ec_config(FALSE, &IOmap) > 0 )
|
|
|
|
{
|
|
|
|
printf("%d slaves found and configured.\n",ec_slavecount);
|
|
|
|
/* wait for all slaves to reach SAFE_OP state */
|
|
|
|
ec_statecheck(0, EC_STATE_SAFE_OP, EC_TIMEOUTSTATE);
|
2015-11-04 20:02:33 +08:00
|
|
|
|
2014-11-25 23:10:29 +08:00
|
|
|
/* configure DC options for every DC capable slave found in the list */
|
|
|
|
ec_configdc();
|
2015-11-04 20:02:33 +08:00
|
|
|
|
2014-11-25 23:10:29 +08:00
|
|
|
/* read indevidual slave state and store in ec_slave[] */
|
|
|
|
ec_readstate();
|
|
|
|
for(cnt = 1; cnt <= ec_slavecount ; cnt++)
|
|
|
|
{
|
|
|
|
printf("Slave:%d Name:%s Output size:%3dbits Input size:%3dbits State:%2d delay:%d.%d\n",
|
|
|
|
cnt, ec_slave[cnt].name, ec_slave[cnt].Obits, ec_slave[cnt].Ibits,
|
|
|
|
ec_slave[cnt].state, (int)ec_slave[cnt].pdelay, ec_slave[cnt].hasdc);
|
|
|
|
printf(" Out:%8.8x,%4d In:%8.8x,%4d\n",
|
|
|
|
(int)ec_slave[cnt].outputs, ec_slave[cnt].Obytes, (int)ec_slave[cnt].inputs, ec_slave[cnt].Ibytes);
|
|
|
|
/* check for EL2004 or EL2008 */
|
|
|
|
if( !digout && ((ec_slave[cnt].eep_id == 0x07d43052) || (ec_slave[cnt].eep_id == 0x07d83052)))
|
|
|
|
{
|
|
|
|
digout = ec_slave[cnt].outputs;
|
2015-11-04 20:02:33 +08:00
|
|
|
}
|
2014-11-25 23:10:29 +08:00
|
|
|
}
|
|
|
|
printf("Request operational state for all slaves\n");
|
|
|
|
ec_slave[0].state = EC_STATE_OPERATIONAL;
|
|
|
|
/* request OP state for all slaves */
|
|
|
|
ec_writestate(0);
|
|
|
|
/* wait for all slaves to reach OP state */
|
2019-05-24 19:49:10 +08:00
|
|
|
ec_statecheck(0, EC_STATE_OPERATIONAL, 5 * EC_TIMEOUTSTATE);
|
2014-11-25 23:10:29 +08:00
|
|
|
oloop = ec_slave[0].Obytes;
|
|
|
|
if ((oloop == 0) && (ec_slave[0].Obits > 0)) oloop = 1;
|
|
|
|
if (oloop > 8) oloop = 8;
|
|
|
|
iloop = ec_slave[0].Ibytes;
|
|
|
|
if ((iloop == 0) && (ec_slave[0].Ibits > 0)) iloop = 1;
|
|
|
|
if (iloop > 8) iloop = 8;
|
|
|
|
if (ec_slave[0].state == EC_STATE_OPERATIONAL )
|
|
|
|
{
|
|
|
|
printf("Operational state reached for all slaves.\n");
|
|
|
|
dorun = 1;
|
|
|
|
/* acyclic loop 5000 x 20ms = 10s */
|
|
|
|
for(i = 1; i <= 5000; i++)
|
|
|
|
{
|
|
|
|
printf("Processdata cycle %5d , Wck %3d, DCtime %12lld, O:", dorun, wcounter , ec_DCtime);
|
|
|
|
for(j = 0 ; j < oloop; j++)
|
|
|
|
{
|
|
|
|
printf(" %2.2x", *(ec_slave[0].outputs + j));
|
|
|
|
}
|
|
|
|
printf(" I:");
|
|
|
|
for(j = 0 ; j < iloop; j++)
|
|
|
|
{
|
|
|
|
printf(" %2.2x", *(ec_slave[0].inputs + j));
|
2015-11-04 20:02:33 +08:00
|
|
|
}
|
2014-11-25 23:10:29 +08:00
|
|
|
printf("\n");
|
|
|
|
usleep(20000);
|
|
|
|
}
|
|
|
|
dorun = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
printf("Not all slaves reached operational state.\n");
|
2015-11-04 20:02:33 +08:00
|
|
|
}
|
2014-11-25 23:10:29 +08:00
|
|
|
printf("Request safe operational state for all slaves\n");
|
|
|
|
ec_slave[0].state = EC_STATE_SAFE_OP;
|
|
|
|
/* request SAFE_OP state for all slaves */
|
|
|
|
ec_writestate(0);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
printf("No slaves found!\n");
|
|
|
|
}
|
|
|
|
printf("End redundant test, close socket\n");
|
|
|
|
/* stop SOEM, close socket */
|
|
|
|
ec_close();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
printf("No socket connection on %s\nExcecute as root\n",ifname);
|
2015-11-04 20:02:33 +08:00
|
|
|
}
|
|
|
|
}
|
2014-11-25 23:10:29 +08:00
|
|
|
|
|
|
|
/* add ns to timespec */
|
|
|
|
void add_timespec(struct timespec *ts, int64 addtime)
|
|
|
|
{
|
|
|
|
int64 sec, nsec;
|
2015-11-04 20:02:33 +08:00
|
|
|
|
2014-11-25 23:10:29 +08:00
|
|
|
nsec = addtime % NSEC_PER_SEC;
|
|
|
|
sec = (addtime - nsec) / NSEC_PER_SEC;
|
|
|
|
ts->tv_sec += sec;
|
|
|
|
ts->tv_nsec += nsec;
|
2020-11-10 05:41:50 +08:00
|
|
|
if ( ts->tv_nsec >= NSEC_PER_SEC )
|
2015-11-04 20:02:33 +08:00
|
|
|
{
|
2014-11-25 23:10:29 +08:00
|
|
|
nsec = ts->tv_nsec % NSEC_PER_SEC;
|
|
|
|
ts->tv_sec += (ts->tv_nsec - nsec) / NSEC_PER_SEC;
|
|
|
|
ts->tv_nsec = nsec;
|
2015-11-04 20:02:33 +08:00
|
|
|
}
|
|
|
|
}
|
2014-11-25 23:10:29 +08:00
|
|
|
|
|
|
|
/* PI calculation to get linux time synced to DC time */
|
|
|
|
void ec_sync(int64 reftime, int64 cycletime , int64 *offsettime)
|
|
|
|
{
|
|
|
|
static int64 integral = 0;
|
|
|
|
int64 delta;
|
|
|
|
/* set linux sync point 50us later than DC sync, just as example */
|
|
|
|
delta = (reftime - 50000) % cycletime;
|
|
|
|
if(delta> (cycletime / 2)) { delta= delta - cycletime; }
|
|
|
|
if(delta>0){ integral++; }
|
|
|
|
if(delta<0){ integral--; }
|
|
|
|
*offsettime = -(delta / 100) - (integral / 20);
|
2015-11-04 20:02:33 +08:00
|
|
|
}
|
2014-11-25 23:10:29 +08:00
|
|
|
|
|
|
|
/* RT EtherCAT thread */
|
|
|
|
void ecatthread( void *ptr )
|
|
|
|
{
|
|
|
|
struct timespec ts;
|
|
|
|
struct timeval tp;
|
|
|
|
int rc;
|
|
|
|
int ht;
|
|
|
|
int64 cycletime;
|
2015-11-04 20:02:33 +08:00
|
|
|
|
2014-11-25 23:10:29 +08:00
|
|
|
rc = pthread_mutex_lock(&mutex);
|
|
|
|
rc = gettimeofday(&tp, NULL);
|
|
|
|
|
|
|
|
/* Convert from timeval to timespec */
|
|
|
|
ts.tv_sec = tp.tv_sec;
|
|
|
|
ht = (tp.tv_usec / 1000) + 1; /* round to nearest ms */
|
|
|
|
ts.tv_nsec = ht * 1000000;
|
|
|
|
cycletime = *(int*)ptr * 1000; /* cycletime in ns */
|
|
|
|
toff = 0;
|
|
|
|
dorun = 0;
|
|
|
|
while(1)
|
2015-11-04 20:02:33 +08:00
|
|
|
{
|
2014-11-25 23:10:29 +08:00
|
|
|
/* calculate next cycle start */
|
|
|
|
add_timespec(&ts, cycletime + toff);
|
|
|
|
/* wait to cycle start */
|
|
|
|
rc = pthread_cond_timedwait(&cond, &mutex, &ts);
|
|
|
|
if (dorun>0)
|
|
|
|
{
|
|
|
|
rc = gettimeofday(&tp, NULL);
|
|
|
|
|
|
|
|
ec_send_processdata();
|
2015-11-04 20:02:33 +08:00
|
|
|
|
2014-11-25 23:10:29 +08:00
|
|
|
wcounter = ec_receive_processdata(EC_TIMEOUTRET);
|
2015-11-04 20:02:33 +08:00
|
|
|
|
2014-11-25 23:10:29 +08:00
|
|
|
dorun++;
|
|
|
|
/* if we have some digital output, cycle */
|
2015-11-04 20:02:33 +08:00
|
|
|
if( digout ) *digout = (uint8) ((dorun / 16) & 0xff);
|
|
|
|
|
2014-11-25 23:10:29 +08:00
|
|
|
if (ec_slave[0].hasdc)
|
2015-11-04 20:02:33 +08:00
|
|
|
{
|
2014-11-25 23:10:29 +08:00
|
|
|
/* calulate toff to get linux time and DC synced */
|
|
|
|
ec_sync(ec_DCtime, cycletime, &toff);
|
2015-11-04 20:02:33 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-11-25 23:10:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
int iret1;
|
|
|
|
int ctime;
|
|
|
|
struct sched_param param;
|
|
|
|
int policy = SCHED_OTHER;
|
2015-11-04 20:02:33 +08:00
|
|
|
|
2014-11-25 23:10:29 +08:00
|
|
|
printf("SOEM (Simple Open EtherCAT Master)\nRedundancy test\n");
|
2015-11-04 20:02:33 +08:00
|
|
|
|
2014-11-25 23:10:29 +08:00
|
|
|
memset(&schedp, 0, sizeof(schedp));
|
|
|
|
/* do not set priority above 49, otherwise sockets are starved */
|
|
|
|
schedp.sched_priority = 30;
|
|
|
|
sched_setscheduler(0, SCHED_FIFO, &schedp);
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
usleep(1000);
|
|
|
|
}
|
|
|
|
while (dorun);
|
2015-11-04 20:02:33 +08:00
|
|
|
|
2014-11-25 23:10:29 +08:00
|
|
|
if (argc > 3)
|
2015-11-04 20:02:33 +08:00
|
|
|
{
|
2014-11-25 23:10:29 +08:00
|
|
|
dorun = 1;
|
|
|
|
ctime = atoi(argv[3]);
|
|
|
|
/* create RT thread */
|
2015-11-04 20:02:33 +08:00
|
|
|
iret1 = pthread_create( &thread1, NULL, (void *) &ecatthread, (void*) &ctime);
|
2014-11-25 23:10:29 +08:00
|
|
|
memset(¶m, 0, sizeof(param));
|
|
|
|
/* give it higher priority */
|
|
|
|
param.sched_priority = 40;
|
|
|
|
iret1 = pthread_setschedparam(thread1, policy, ¶m);
|
|
|
|
|
|
|
|
/* start acyclic part */
|
|
|
|
redtest(argv[1],argv[2]);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
printf("Usage: red_test ifname1 ifname2 cycletime\nifname = eth0 for example\ncycletime in us\n");
|
2015-11-04 20:02:33 +08:00
|
|
|
}
|
|
|
|
|
2014-11-25 23:10:29 +08:00
|
|
|
schedp.sched_priority = 0;
|
|
|
|
sched_setscheduler(0, SCHED_OTHER, &schedp);
|
|
|
|
|
|
|
|
printf("End program\n");
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|