Home AMX User Forum AMXForums Archive Threads Tips and Tricks
Options

Can I reboot a TPI-PRO using REBOOT (D:P:S)

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

Comments

  • Options
    drop the ()
    REBOOT 10003

    or

    REBOOT dvTPIPRO
    (or whatever your device name is)

    Chris
  • Options
    That worked!

    Thanks for your help with this.

    Elmer
Sign In or Register to comment.