[etherlab-users] Synchronizing the EtherCAT application time to the DC reference clock
Gavin Lambert
gavinl at compacsort.com
Fri Feb 2 00:21:42 CET 2018
Actually you typically shouldnt have Sync0 simultaneous with your
communication cycle; that causes problems. The goal is to get it into a
locked phase arrangement.
Sync0 is typically when the slaves actions trigger it asserts outputs and
captures inputs ideally both at that precise instant (though there might be
some delay if it needs to do one before the other). However there is
generally some setup time before Sync0 required (so you have to provide the
next cycles outputs at least this amount of time before Sync0) and some
transfer time after Sync0 required (so you have to wait that long after
Sync0 before you can read the inputs). The slaves documentation should
tell you how long each of these times are, and you need to allow a little
bit of extra time to cope with jitter on the masters end and the comms
delay of the network itself. If you have no clue, aiming for somewhere in
the middle of your sync cycle is usually a fairly safe bet.
The most important aspect of the EtherCAT comms cycle is when you call
ecrt_master_send. This is what actually sends (and receives back) the
datagrams and transfers all data to and from the slaves. Your goal is
always to make this call happen consistently with as little latency and
jitter as possible. None of the other calls matter in terms of timing.
ecrt_master_reference_clock_time retrieves the 32-bit time of the reference
slave as of when you called ecrt_master_send, provided that you called
ecrt_master_sync_slave_clocks at some previous point (each cycle).
ecrt_master_64bit_reference_clock_time retrieves the 64-bit time of the
reference slave as of when you called ecrt_master_send, provided that you
called ecrt_master_64bit_reference_clock_time_queue at some previous point
(each cycle).
(In principle doing both ecrt_master_64bit_reference_clock_time_queue and
ecrt_master_sync_slave_clocks on every cycle is a bit wasteful. It would be
better if you could just do a 64-bit sync, but this is not supported at
present. If youre worried about bandwidth then you should call
ecrt_master_sync_slave_clocks on every cycle and
ecrt_master_64bit_reference_clock_time_queue only occasionally. You cannot
omit calling ecrt_master_sync_slave_clocks.)
For maximum consistency, you should call ecrt_master_application_time
immediately prior to ecrt_master_send. You should also call it on each
cycle, although in practice it matters most when its doing the slave DC
configuration, which will span several cycles across the slaves shortly
after activating the master. Also rather than using a monotonically
increasing value as it appears youre using at the moment, I think its more
typical to use the actual PC clock time, corrected for the offset between
the master clock and the reference clock. Im not sure which is better
though.
(Also note that most things work best when you always use the first
DC-capable slave as the reference clock, which is the default. If youre
explicitly designating a clock elsewhere on the network then there might be
complications.)
If you are trying to synchronise the reference clock to the master (which
you are not; it tends to be less accurate), you also have to call
ecrt_master_sync_reference_clock between ecrt_master_application_time and
ecrt_master_send. It doesnt matter when you call
ecrt_master_sync_slave_clocks as long as you do it periodically (typically
recommended once per cycle, unless you have a really fast cycle time). If
youre using ecrt_master_reference_clock_time then you have to sync slave
clocks at least as often as you ask for the time.
ecrt_master_receive can be called at any time after the packets arrive back,
which will be shortly after ecrt_master_send (exactly how long depends on
your network size) but its most common to use this time to do a proper
idle sleep and process it at the start of the next cycle rather than the end
of the previous one. That can cause higher jitter if your processing times
arent consistent, however (unless you have two smaller sleeps rather than
one large one), so the way youre doing it isnt a bad one. You do have to
call it before anything else that uses the results of the datagrams, such as
the time calls above.
If you can hook a scope up to a slaves SYNC0 and SOF pins (if accessible),
that will give you the best idea of how your timing cycle looks.
From: Matthias Bartsch
Sent: Friday, 2 February 2018 05:12
To: etherlab-users at etherlab.org
Subject: [etherlab-users] Synchronizing the EtherCAT application time to the
DC reference clock
Hello everybody!
Im using the unofficial patch set from https://github.com/ribalda/ethercat
(2017-11-08).
My RTAI communication cycle is synchronized to the DC slave reference clock
(average jitter < 1µs). I need to extrapolate the position of servo drives
to the beginning of my cycle.
Im not sure about the right use of the functions for reading the reference
clock.
I want to start my cycle at the time of the Sync0 interrupt.
My questions are: When is the time sampled that I get by calling
ecrt_master_64bit_reference_clock_time(m_poMaster,
&ui64RefClockTime)); ?
How I have to initialize my application time (first call of
ecrt_master_application_time(
))?
My synchronisation seems to work but Im not sure about the phase shift
between the Sync0 event and the start of my communication cycle.
My code looks something like this:
In the first real time cycle I call:
ecrt_master_application_time(m_poMaster, m_ui64AppTime_ns); // with
m_ui64AppTime_ns=0
ecrt_master_sync_slave_clocks(m_poMaster);
ecrt_domain_queue(m_po_domainInput);
ecrt_master_send(m_poMaster);
// busy wait 25µs for getting the answer
ecrt_master_receive(m_poMaster);
ecrt_domain_process(m_po_domainInput);
//
//
. Later sending the output data
In the next cycles I do this:
ecrt_master_receive(m_poMaster);
ecrt_domain_process(m_po_domainOutput);
ecrt_master_64bit_reference_clock_time_queue(m_poMaster);
ecrt_domain_queue(m_po_domainInput);
ecrt_master_send(m_poMaster);
// busy wait 25µs for getting the answer
ecrt_master_receive(m_poMaster);
ecrt_domain_process(m_po_domainInput);
uint64_t ui64RefClockTime;
ecrt_master_64bit_reference_clock_time(m_poMaster, &ui64RefClockTime));
m_ui64AppTime_ns += static_cast<uint64_t>((m_io__dNominalCycleTime) * 1e9);
ecrt_master_application_time(m_poMaster, m_ui64AppTime_ns);
m_out_iDcSysTimeDifferenceMaster = m_ui64AppTime_ns - ui64RefClockTime;
// Time drift value
ecrt_master_sync_slave_clocks(m_poMaster);
With kind regards
Matthias Bartsch
ARADEX AG
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.etherlab.org/pipermail/etherlab-users/attachments/20180202/5aac1706/attachment-0003.htm>
More information about the Etherlab-users
mailing list