Home AMX User Forum AMX Technical Discussion

Controler LOG File

Hallo to everybody,
I am trinig to create LOG File for the Contoler to make diagnostic. I try to write down all the mesages that can get from the telnet .
The problem is that I do not know how to get the messages from the telent, any ideas?

What I try is :

DEFINE_DEVICE

dvMaster = 0:0:0

DEFINE_EVENT

data_event[dvMaster]
{
string:
{
send_string 0, data.text

}
}

Comments

  • It is not possible to get the system's log directly into the NetLinx program. You may program a client IP application into your code, which opens a telnet to the master's IP and then emulates a SHOW LOG ALL (or whatever terminal function you want to have). It may also possible to do that by RS232 from a control port to the programming port.
  • DHawthorneDHawthorne Posts: 4,584
    You might want to look at this : http://www.amxforums.com/showthread.php?t=1187 . Just make sure you download the latest version there.
  • Thanks Dave Hawthorne

    This is exactly what I need. Great Module
    I have to chack some system that make problems evrey two tree weeks.
Sign In or Register to comment.