[etherlab-users] Twincat communicate with yaskawa SGDV alarm A12 (Sync Error)

Gavin Lambert gavinl at compacsort.com
Tue Jun 2 03:58:38 CEST 2015


The “No app_time received up to now but master already active” warning is due to a race between the internal master starting to configure the slaves once ecrt_master_activate() is called and the realtime loop calling ecrt_master_send() for the first time.  As long as your master thread starts up faster than your slaves can be configured (which is usually the case, but not always if you have a small number of slaves or a particularly slow thread start-up time) then you shouldn’t get the warning (which also makes the DC times at the wrong phase from your PDO exchange; that may or may not matter to you – but it also happens if you don’t call ecrt_master_application_time() for the first time just prior to the send).

 

My preferred solution to avoid this warning is to start the realtime thread before calling ecrt_master_activate(), but make it sleep without calling the ecrt functions until a flag is set by the main thread after activating.  This way it’s already “hot” and the delay will be minimal, practically guaranteeing that it will win the race (since it requires multiple cycles to configure even a single slave).  It also means that I can deactivate, reconfigure, and reactivate the master without having to stop the realtime thread (although that requires some care and another patch, if using the usermode library).

 

From: Graeme Foot [mailto:Graeme.Foot at touchcut.com] 
Sent: Tuesday, 2 June 2015 13:41
To: Gavin Lambert
Cc: etherlab-users at etherlab.org
Subject: RE: [etherlab-users] Twincat communicate with yaskawa SGDV alarm A12 (Sync Error)

 

Hi,

 

Good comments to make.

 

Yes, the DC reference slave should be the first capable slave and definitely before (or at least the first) DC enabled slave.  However, I had some EK1100 modules (which at one stage were my first slaves) that just did not seem to provide a settled enough time for the yaskawa SGDV drives.  But when I changed my reference slave to an EL1008 slave (the next slave in the system) everything was fine.  I suspect the EK1100’s time was running too fast (or too slow, I can’t remember) compared to the SGDV’s time and it couldn’t adjust quick enough.

 

If you don’t call ecrt_master_application_time() before ecrt_master_activate() then you can get: "No app_time received up to now but master already active.".  However, as you say, you should call ecrt_master_application_time() in phase with your realtime cycle time.  I set my time just before going realtime and the first realtime period is scheduled to run 50 times my cycle period later.  The 50 times is to allow the rt_make_hard_real_time() call to go realtime.  As we are not yet realtime, this call can take a little time to happen.

 

Yes, I agree, the ecrt_master_send() should be as consistent as possible.  To allow this my cycles sequence is to perform the EtherCAT code below straight after waking up.  All other calculations and processing, to prepare for the next cycle, are performed after this.

 

Graeme.

 

 

From: Gavin Lambert [mailto:gavinl at compacsort.com] 
Sent: Tuesday, 2 June 2015 12:52 p.m.
To: Graeme Foot
Cc: etherlab-users at etherlab.org <mailto:etherlab-users at etherlab.org> 
Subject: RE: [etherlab-users] Twincat communicate with yaskawa SGDV alarm A12 (Sync Error)

 

FWIW, while I could be wrong about this, as far as I know it’s generally a bad idea to explicitly set the reference clock slave.  It defaults to being the first DC-capable slave on the network, and you shouldn’t set it to any other slave because of the way the DC sync datagrams work.  Specifically, any DC-capable slaves that are topologically earlier than the reference clock will not receive the reference clock’s time, but instead whichever value happens to have been initialised by the master (I haven’t checked exactly what this will be but I expect it’s probably either zero or the master’s time).  As a result these slaves will be desynched with the rest of the network.

 

Of course, you can get away with this if you don’t care about the DC times of any slaves prior to the selected reference clock, but it still seems like a bad habit unless there’s a very good reason to select some specific device (eg. known as a “better” clock) – but then you should try to get it as early in the network as possible.

 

Also, you’re not supposed to call ecrt_master_application_time() before ecrt_master_activate(); the master is expecting that the first application_time it receives is in phase with the application loop – ideally as close to the ecrt_master_send() call as possible.  (The examples don’t really make this clear, but the goal is to make the ecrt_master_send()call at as close to the desired cycle time as possible.  The sleep is at the other end of the loop because there is a natural delay between send and receive anyway and because the assumption is that the processing time is reasonably constant.)

 

From: etherlab-users [mailto:etherlab-users-bounces at etherlab.org] On Behalf Of Graeme Foot
Sent: Tuesday, 2 June 2015 11:45
To: 陈成细; etherlab-users at etherlab.org <mailto:etherlab-users at etherlab.org> 
Subject: Re: [etherlab-users] Twincat communicate with yaskawa SGDV alarm A12 (Sync Error)

 

Hi,

 

1) If your cycle time is 4ms, I think it should instead be:

0x60C2, 0x01 = 4

0x60C2, 0x02 = -3

 

Eg:

  ecrt_slave_config_sdo8(dev->slaveConfig, 0x60C2, 0x01, (uint8_t)4);

  ecrt_slave_config_sdo8(dev->slaveConfig, 0x60C2, 0x02, (int8_t)(-3));

 

Where the first parameter is the significand and the second parameter is the exponent.  So:

(0x60C2, 0x01) * 10 ^ (0x60C2, 0x02)  =  4 * 10 ^ -3  =  0.004 seconds  =  4 ms

 

 

2) I’m currently patching against 1.5.2 (2526).  Yes it is still quite old but I haven’t needed to (or had the time) to move on.  I don’t think any of my patches have made it into the master.  My current DC patch is: etherlabmaster-1.5.2-2526-c_dc_helpers.patch (attached).  There is still the odd issue with some of the slaves taking a while to sync on startup.  This has been solved by other people but I haven’t had a chance to add it in myself yet.

 

I don’t think the EK1100, EL1008 and EL2008 modules are able to be set up as DC slaves, but they can be used as the reference clock slave.

 

Before starting realtime polling I set the reference clock slave using (where refSlaveConfig is the slaveConfig of the module I select via a config file):

  ecrt_master_select_reference_clock(ecMod->master, refSlaveConfig);

 

This is after ecrt_master_application_time() and before ecrt_master_activate().

 

 

My realtime loop is:

 

  // receive process data

  ecrt_master_receive(ecMod->master);

 

  // process domain data

  for (i = 0; i < EC_DOMAIN_COUNT; i++)

  {

    ecrt_domain_process(ecMod->domains[i].domain);

  }

 

  // check domain state, check master state

  ...

 

  // prepare pdo data

  ...

 

  // send process data

  for (i = 0; i < EC_DOMAIN_COUNT; i++)

  {

    ecrt_domain_queue(ecMod->domains[i].domain);

  }

 

  // always sync distributed clock (just before master_send)

  ecMod_syncDistClock(ecMod);

  

  // do the send

  ecrt_master_send(ecMod->master);   

  

  // update the master clock (if this module provides the ref slave)

  // Note: called after ecrt_master_send to reduce time jitter

  ecMod_updateMasterClock(ecMod);

 

 

My syncDistClock function gets the current ref slave time and requests the slaves to sync to the ref slave:

 

  // cache prev master time and get now

  masterTime      = (uint32_t)ecMod->m_dcTime;

  ecMod->m_dcTime = filterTime( rt_get_time_ns() );

 

  // get lower 32 bit of clock time from reference slave (after first scan)

  if (ecMod->m_getDCDiff)

  {

    int      res;

    uint32_t slaveTime;

    res = ecrt_master_reference_clock_time(ecMod->master, &slaveTime);

 

    switch (res)

    {

      case 0 :

      {

        // calc time diff

        ecMod->m_dcDiff = masterTime - slaveTime;

      } break;

 

      default :

      {

        // no ref clock found or datagram failure

        ecMod->m_dcDiff = 0;

      }

    }

  }

  else

  {

    ecMod->m_dcDiff    = 0;

    ecMod->m_getDCDiff = true;

  }

 

  // call to sync slaves to ref slave 

  // (which is used for ecrt_master_reference_clock_time)

  ecrt_master_sync_slave_clocks(ecMod->master);

 

  // update the master time for the next cycle (in nano-seconds)

 // (this is required for the master to figure out the modules initial

  //  dc time)

  ecrt_master_application_time(ecMod->master, ecMod->m_dcTime + g_app.scanTimeNS);

 

 

My updateMasterClock function is responsible for tracking and filtering the master time drift.  This drift is added to the rtai time.  So whenever I need to get an rtai time I need to wrap it in the filterTime() function.  When I need the realtime cycle to sleep for the next period (using rt_sleep_until(wakeTime)) the wake time is adjusted by the filtered time.

 

 

(Note: error checking removed to hopefully make clearer)

 

 

I hope this helps,

 

Graeme.

 

 

 

From: 陈成细 [mailto:crazyintermilan at gmail.com] 
Sent: Friday, 29 May 2015 2:19 p.m.
To: Graeme Foot
Subject: Re: Twincat communicate with yaskawa SGDV alarm A12 (Sync Error)

 

Dear Graeme Foot,

Thanks for your kindly guide in the mailing list and private email. In the recently half year, I do on the track and make in progress to drive my yaskawa servopack and servo motor via etherlab master.

First of all, I would like update my status to you. 

1. I create three domain, readdomain, write domain for yaskawa, another domain for others.

2. I can make motor rotate in free run mode without setup DC

3. Two times success to drive motor with DC, others 5000ms sync error

My setup:

ubuntu 14.04, xenomai real time kernel, etherlab1.52 stable 

I do my homework already, and I think the answer already in the mailing list, so I have several point need to make clear.

1. <http://lists.etherlab.org/pipermail/etherlab-users/2012/001562.html> post you mention 
     

Hi,

Yes I have thanks.  My cycle time is 1ms.  I have set:
0x60C2, 0x01 = 1
0x60C2, 0x02 = -3 

Graeme.

My cycle time use 4ms, I set 

0x60C2, 0x01 = 01
0x60C2, 0x02 = FD

refer to


 

2. Regarding DC patch <http://thread.gmane.org/gmane.network.etherlab.user/1421>, do you have latest patch for etherlab1.52 stable, since it is years ago, or already merged into 1.52?

I understand that 5000ms sync error caused by DC time offset calculation inaccurate. First of all, I select yaskawa slave as reference clock, then sync master to reference clock? If I add EK1100, EL1008, and EL2008, also I have to sync these slaves to reference clock?

As now my implement in my loop as follow:

// send process data 

  // update application time
  master->app_time += master->app_time_period;
  ecrt_master_application_time(master->master, master->app_time);
  // sync ref clock to master
  if (master->sync_ref_cycles > 0) {
    if (master->sync_ref_cnt == 0) {
      master->sync_ref_cnt = master->sync_ref_cycles;
      ecrt_master_sync_reference_clock(master->master);
    }
    master->sync_ref_cnt--;
  }
  // sync slaves to ref clock
  ecrt_master_sync_slave_clocks(master->master);
  // send domain data
  ecrt_domain_queue(master->domain);
  ecrt_master_send(master->master);
  

As follow <http://lists.etherlab.org/pipermail/etherlab-users/2014/002461.html>, I have to use 

ecrt_master_reference_clock_time()instead of ecrt_master_sync_reference_clock(master->master).
Sorry, I am totally lost here. And should select slave as reference clock outside loop?
Thanks!
-chengxi

 

 

 

On Fri, Aug 29, 2014 at 11:52 AM, 陈成细 <crazyintermilan at gmail.com <mailto:crazyintermilan at gmail.com> > wrote:

Dear Graeme,

Thank you for your reply, it is really helpful.

My whole system only one set yaskawa servopack and motor, maybe i have to read out cycle time of servopack , and set twincat the same cycle time.

Since i bought second hand yaskawa SGDV servopack, i just want use twincat to confirm that my servopack can work well and to configure .xml.

It seems quite headache, i will try to fix it anyway.

Best regards!

Chengxi

 

On Fri, Aug 29, 2014 at 8:25 AM, Graeme Foot <Graeme.Foot at touchcut.com <mailto:Graeme.Foot at touchcut.com> > wrote:

Hi,

 

I've never tried using TwinCAT with the SGDV drives.  The drives are quite unforgiving if your master cycle is a bit out of sync or has reasonable jitter, so the only way I got mine to be happy was to use a slave as the distributed clock master and I sync the EtherCAT master to that.  I believe this is also the default method for TwinCAT but there is possibly some setup required to tell it which slave should be the DC master and also which slave should then also be running in DC mode.

 

My DC clock master slave is generally an EL1008 module, but only because this is the first slave we have that supports it.  From memory we used to use a EK1100 coupler but I think I recall having some issues where it wasn't stable enough for some reason.

 

The main thing is to always maintain consistent and as much as possible jitter free communications.  I'm not sure how to do that with TwinCAT.

 

 

Regards,

Graeme.

 

  _____  

From: 陈成细 [mailto:crazyintermilan at gmail.com <mailto:crazyintermilan at gmail.com> ] 
Sent: Thursday, 28 August 2014 14:07
To: Graeme Foot
Subject: Twincat communicate with yaskawa SGDV alarm A12 (Sync Error)

 

Dear Graeme,

Currently i am trying to connect twincat with yaskawa SGDV driver, I meet CoE- Emergency then synchronization error. After I search from website, luckily i read your posts (http://article.gmane.org/gmane.network.etherlab.user/1378/match= ). 


Since i am just start to learn ethercat as a hobby, first step i use tool TwinCat to communicate with SGDV driver follow the manual(https://www.google.com.sg/url?sa=t <https://www.google.com.sg/url?sa=t&rct=j&q=&esrc=s&source=web&cd=2&cad=rja&uact=8&ved=0CCMQFjAB&url=https%3A%2F%2Fwww.yaskawa.com%2Fpycprd%2Flookup%2Fgetdocument%2FjvgyvE5ZTUY_5CC1znzBof23DM0-2qtf20mzhvc2NVVttd_tKgqgkH4jzlPaKN9jwUZxdmOOXgfix7X3yhLYM72qJQdo3XppBhywnUPr1Oy7mtRZ76i_VGFJpKtk9N9SimCMNzyqbNZCaOJGSoV4BG4Gs6GA9Tys&ei=JY3-U9rQJI6UauyUgJAO&usg=AFQjCNHSkmEEGvsiw09L8yuCE1L46XrLEQ&bvm=bv.74035653,d.d2s> &rct=j&q=&esrc=s&source=web&cd=2&cad=rja&uact=8&ved=0CCMQFjAB&url=https%3A%2F%2Fwww.yaskawa.com%2Fpycprd%2Flookup%2Fgetdocument%2FjvgyvE5ZTUY_5CC1znzBof23DM0-2qtf20mzhvc2NVVttd_tKgqgkH4jzlPaKN9jwUZxdmOOXgfix7X3yhLYM72qJQdo3XppBhywnUPr1Oy7mtRZ76i_VGFJpKtk9N9SimCMNzyqbNZCaOJGSoV4BG4Gs6GA9Tys&ei=JY3-U9rQJI6UauyUgJAO&usg=AFQjCNHSkmEEGvsiw09L8yuCE1L46XrLEQ&bvm=bv.74035653,d.d2s)

After i read your posts, i think maybe the problems are as follow:

1. SGDV parameter setting( since i reset all parameter to factory setting)?

2. Sync mode slection?

3. Twincat cycle time setting?

4. Laptop CPU calibrate?

I am appreciated if you  can give any hint to help me solve this error. Next step i would like build the communicate by etherlab master under linux xenomai. There still quite a long way to go.

Thanks!

-- 

Best regards!
陈成细
R&D Engineer

(\__/)
(='.'=) This is Bunny. Copy and paste bunny into your
(")_(") signature to help him gain world domination.




-- 

Best regards!
陈成细
R&D Engineer

(\__/)
(='.'=) This is Bunny. Copy and paste bunny into your
(")_(") signature to help him gain world domination.




-- 

Best regards!
陈成细
R&D Engineer

(\__/)
(='.'=) This is Bunny. Copy and paste bunny into your
(")_(") signature to help him gain world domination.

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.etherlab.org/pipermail/etherlab-users/attachments/20150602/d1360074/attachment-0003.htm>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: image001.jpg
Type: image/jpeg
Size: 29956 bytes
Desc: not available
URL: <http://lists.etherlab.org/pipermail/etherlab-users/attachments/20150602/d1360074/attachment-0004.jpg>


More information about the Etherlab-users mailing list