FieldPoint Family

cancel
Showing results for 
Search instead for 
Did you mean: 

How to programmatically read status info from watch dog timer in fp 1600

I am creating a labview 6i application that needs to confirm the status of the Fieldpoint modules and confirm that the communication link between the modules and the application (ethernet) is working before starting processing. Specificially, I am using the FP-1600 and other modules. Embedded in the FP-1600 is a Watch Dog Timer that checks to see if the modules connected to the FP-1600 are working. Is there anyway to programmatically query the embedded Watch Dog Timer for the status of the connected FieldPoint Modules? Is there any way to programmatically check that the FP modules are functioning properly?
0 Kudos
Message 1 of 3
(3,644 Views)
First of all, the Watchdog timer does not check to see that the I/O modules are working. The watchdog timer is a communications monitor that says if the FP-1600 loses communication with (all) clients, it is to assume the clients are down (whether due to blue screen, power-loss, etc...), and set any output channels (that are configured with watchdog data) to their appropriate values.

Programmatically querying the status of the Watchdog, acts as subscription which in turn will keep the watchdog alive. It is possible to check whether or not a watchdog occured using DataSockets (LabVIEW 6i or higher) with a URL such as the one that follows:
lookout:\\130.164.44.6\FP\Control\WatchdogOccurred

Using the FieldPoint VI's, any loss of communications with a FieldPoint
Ethernet module will result in an error code of 33162 or 33163. You will receive the 33162 error if you are unable to connect to the FP-1600 when you launch the FieldPoint Server, if you have lost communications, you will see error code 33163. So, by monitoring the error output of the FieldPoint Read/Write/Advise VI's, you can tell if you are receiving data or if you have lost your link to the module.

Regards,
Aaron
LabVIEW Champion, CLA, CPI
0 Kudos
Message 2 of 3
(3,644 Views)
When using the lookout protocol, what is the data type of WatchdogOcurred?
0 Kudos
Message 3 of 3
(3,644 Views)