Rt_xtt

This file is read by rt_xtt when started and the file is searched from the directory where
you start rt_xtt. The file configures hot-keys to perform different kinds of commands.

Valid commands are:

Command // This will perform a xtt command
SetDig // This will set a digital signal to TRUE
ToggleDig // This will toggle the state of a digital signal
ResetDig // This will reset a digital signal to FALSE

To bind a hot-key to a command you first define the key and then state the command.
For example to bind the keystroke F5 to a command that acknowledges a type A alarm:

Control F5: Command(event ack /prio=A)

A typical Rt_xtt-file could look something like this:

#
# Function key definition file
#
Control F5: Command(event ack /prio=A)
Control F6: Command(event ack /prio=NOA) # ack non A-alarms
Control F7: Command(show alarm) # open alarm list
Control F8: Command(show event) # open event list
# Below opens a graph defined by a XttGraph-object in the node hierarchy.
# The $Node-expression will be replaced by the node-object on this node.
# This makes the Rt_xtt-file work on different nodes.
Alt F12: Command(open graph /object=$Node-Pictures-rkt_overview)
# Below opens a graph defined by a XttGraph-object in the node hierarchy.
# The /focus-syntax sets focus on a object in the graph named NewPlate
Control F9: Command(open graph /object=*-Pictures-rkt_platepic/focus="NewPlate")
Control F10: Command(open graph /object=*-Bilder-rkt_cells/focus="Check_no")
# Below closes all open graphs except rkt_overview.
Control F11: Command(close all/except=rkt_overview)
Shift F1: SetDig(VWX-RKT-RB-DS-OnOffMan_1_2.ActualValue)
Shift F6: ResetDig(VWX-RKT-RI-RP-CalcPrePos.ActualValue)
Shift Control v: ToggleDig(VWX-RKT-COM-VWXSVR-BlockOrder_RKT.ActualValue)