Release 1.11

This commit is contained in:
2021-01-12 23:16:18 +01:00
parent 4431f67f75
commit 7f7b1173c0
84 changed files with 4307 additions and 5788 deletions

4
arexx/help.rx Normal file
View File

@ -0,0 +1,4 @@
/* Show the ARexx commands supported by TimeKeeper */
Options RESULTS
Address TIMEKEEPER.1 'help'
SAY (RESULT)

3
arexx/lastsync.rx Normal file
View File

@ -0,0 +1,3 @@
/* Show when the last response from a NTP server was received */
Options RESULTS
Address TIMEKEEPER.1 'LastSync'; SAY (RESULT)

2
arexx/setinterval.rx Normal file
View File

@ -0,0 +1,2 @@
/* Set interval */
Address TIMEKEEPER.1 'set interval 20000'

14
arexx/settings.rx Normal file
View File

@ -0,0 +1,14 @@
/* Show TimeKeeper runtime configuration / setting values */
Options RESULTS
SAY ('TimeKeeper runtime settings:')
SAY ('----------------------------')
Address TIMEKEEPER.1 'get server'; SAY ('SERVER =' RESULT)
Address TIMEKEEPER.1 'get port'; SAY ('PORT =' RESULT)
Address TIMEKEEPER.1 'get interval'; SAY ('INTERVAL =' RESULT 'milliseconds')
Address TIMEKEEPER.1 'get threshold'; SAY ('THRESHOLD =' RESULT 'microseconds')
Address TIMEKEEPER.1 'get ReadOnly'; SAY ('READONLY =' RESULT)
Address TIMEKEEPER.1 'get Expert'; SAY ('EXPERT =' RESULT)
Address TIMEKEEPER.1 'get timeout'; SAY ('TIMEOUT =' RESULT 'milliseconds')
Address TIMEKEEPER.1 'get CX_POPUP'; SAY ('POPUP =' RESULT)
Address TIMEKEEPER.1 'get CX_POPKEY'; SAY ('POPKEY =' RESULT)
Address TIMEKEEPER.1 'get CX_PRIORITY'; SAY ('PRIORITY =' RESULT)

9
arexx/setvalues.rx Normal file
View File

@ -0,0 +1,9 @@
/* Setup new settings */
Address TIMEKEEPER.1 'stop'
Address TIMEKEEPER.1 'set server ch.pool.ntp.org'
Address TIMEKEEPER.1 'set port 123'
Address TIMEKEEPER.1 'set interval 20000'
Address TIMEKEEPER.1 'set threshold 200000'
Address TIMEKEEPER.1 'set timeout 5000'
Address TIMEKEEPER.1 'set CX_Priority 25'
Address TIMEKEEPER.1 'start'

2
arexx/show.rx Normal file
View File

@ -0,0 +1,2 @@
/* Show TimeKeeper settings window */
Address TIMEKEEPER.1 'show'

3
arexx/shutdown.rx Normal file
View File

@ -0,0 +1,3 @@
/* Shutdown TimeKeeper commodity */
SAY ('Requesting shutdown ...')
Address TIMEKEEPER.1 SHUTDOWN

3
arexx/start.rx Normal file
View File

@ -0,0 +1,3 @@
/* Start TimeKeeper synchronization */
SAY ('Starting TimeKeeper synchronization ...')
Address TIMEKEEPER.1 'start'

5
arexx/status.rx Normal file
View File

@ -0,0 +1,5 @@
/* Show TimeKeeper synchronization status */
Options RESULTS
Address TIMEKEEPER.1 'status'; SAY (RESULT)
Address TIMEKEEPER.1 'LastSync'; SAY ('Last response from NTP server was:' RESULT)
Address TIMEKEEPER.1 'LastAdjust'; SAY ('Last clock adjustment was:' RESULT)

3
arexx/stop.rx Normal file
View File

@ -0,0 +1,3 @@
/* Stop TimeKeeper synchronization */
SAY ('Stopping TimeKeeper synchronization ...')
Address TIMEKEEPER.1 'stop'

3
arexx/timezone.rx Normal file
View File

@ -0,0 +1,3 @@
/* Show current timezone in TimeKeeper */
Options RESULTS
Address TIMEKEEPER.1 'timezone'; SAY (RESULT)