Job Schedule Strings
The flexible job scheduler has up to 32 jobs that can be used for different purposes (e.g. deliver data; contact update server).
Each job can have eight different time slots (e.g. for different times throughout the week).
Each job schedule is programmed with a string that has the following structure:
00:00:15
= every 15 seconds@
character restricts to a time range (default start time is 00:00:00, and default end time is 24:00:00)
@23:00
= at (or from) 11 pm@6:00-23:30
= between 6:00am (inclusive) and 11:30pm.#
character specifies the day bit-field
#62
= weekdays (2 + 4 + 8 + 16 + 32)#65
= weekends (1 + 64)#d
= weekdays, Mon-Fri, same as #62
#e
= weekends, Sat+Sun, same as #65
#a
= all days (#127
= 1+2+4+8+16+32+64),
) separates the entriesThe end time is exclusive.
So, for example, 2:00@12:00-18:00
will fire at 12:00, 14:00, and 16:00 only.
This method allows for clarity when changing the interval, say to 0:00:01
.
00:00:30@8-18, 00:05:00
Every 30s between 8am and 6pm,
and 5 minutes outside those times
00:00:30@8-18#2,00:00:45@8-18#60,00:05:00
Every 30s between 8am and 6pm on Monday;
every 45s between 8am and 6pm on Tue-Fri,
and 5 minutes otherwise.
4@8-18,12
Every 4 hours between 8am and 8pm,
and every 12hrs otherwise (00:00:00 & 12:00:00)
@12:30
An event that occurs each day at 12:30pm