Time Functions

ROS.DurationMethod
Duration(sec::Int, nsec::Int)

Constructor, creates a Duration.

source
ROS.RateMethod
Rate(frequency::Number)

Constructor, creates a Rate.

source
ROS.RateMethod
Rate(duration)

Constructor, creates a Rate from a Duration.

source
ROS.TimeMethod
Time(sec::Int, ncsec::Int)

Constructor, creates Time.

source
ROS.cycleTimeMethod
cycleTime(rate)

Get the actual run time of a cycle from start to sleep.

source
ROS.expectedCycleTimeMethod
expectedCycleTime(rate)

Get the expected cycle time – one over the frequency passed in to the constructor.

source
ROS.isValidMethod
isValid(time)

Returns whether or not the current time source is valid. Simulation time is valid if it is non-zero.

source
ROS.nowMethod
now(time)

Retrieve the current time. If ROS clock time is in use, this returns the time according to the ROS clock. Otherwise returns the current wall clock time.

source
ROS.resetMethod
reset(rate)

Sets the start time for the rate to now.

source
ROS.setNowMethod
setNow(time, now) = @cxx t->setNow(now)

Set now to now time.

source
ROS.sleepMethod
sleep(duration)

Sleep for the amount of time specified by this Duration. If a signal interrupts the sleep, resleeps for the time remaining.

source
ROS.sleepMethod
sleep(rate)

Sleeps for any leftover time in a cycle. Calculated from the last time sleep, reset, or the constructor was called.

source
ROS.toSecMethod
toSec(duration)

Turn Duration into floating point seconds.

source
ROS.toSecMethod
toSec(time)

Turn Time into floating point seconds.

source