NMX_SystemReset_1

<< Click to Display Table of Contents >>

Navigation:  NmxDLL Reference Guide > API (programming interface) > Miscellaneous >

NMX_SystemReset_1

This function allows restarting the whole measurement system (device). Use this function only if advised by the support.

 

Definition


NMX_STATUS NMX_SystemReset_1(

 NMX_PHANDLE pHandle,

 unsigned long ulDelayMaster,

 unsigned long ulDelaySlave);

 

Parameter


pHandle

Connection Handle.

ulDelayMaster

Time in ms, until the Master-Box (-> first measurement box) will be restarted.

ulDelaySlave

Time in ms, until all Slave-Boxes will be restarted.

 

Typical function call (C example)


NMX_SystemReset_1(pHandle, 2000, 500);

 

.Net DLL specific implementation


NMX_MSTATUS SystemReset_1(System::IntPtr pHandle, System::UInt32 ulDelayMaster, System::UInt32 ulDelaySlave);

 

Comments


The delay for the Master must be longer than the delay for the Slaves. Use the following values:

ulDelayMaster = 2000;

ulDelaySlave = 500;

The reset command is send to all Slave-Boxes via the Link interface between the boxes. If the Link interface does not work properly, no slave can be reset.