Can I reboot a TPI-PRO using REBOOT (D:P:S)
elmerduncan
Posts: 4
Hello. I use the following code to reboot our NI-4100....
// 3 AM SUNDAY, IF THE SYSTEM IS OFF
IF (TIME='03:01:00' && DAY='SUN' && (!SYS_POWER))
{
REBOOT (0) //REBOOT THE MASTER
}
Is it possible to use REBOOT to restart a TPI-PRO-DVI-2, defined at 10003?
I've tried using the following telnet command on the controller, but it reboots the controller, instead of the TPI-PRO.
REBOOT (10003:1:1)
Elmer Duncan
// 3 AM SUNDAY, IF THE SYSTEM IS OFF
IF (TIME='03:01:00' && DAY='SUN' && (!SYS_POWER))
{
REBOOT (0) //REBOOT THE MASTER
}
Is it possible to use REBOOT to restart a TPI-PRO-DVI-2, defined at 10003?
I've tried using the following telnet command on the controller, but it reboots the controller, instead of the TPI-PRO.
REBOOT (10003:1:1)
Elmer Duncan
0
Comments
REBOOT 10003
or
REBOOT dvTPIPRO
(or whatever your device name is)
Chris
Thanks for your help with this.
Elmer