Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
long VTIL_ResetDelayedTxTpDt(); //Form 1 long VTIL_ResetDelayedTxTpDt(dbNode node); //Form 2
on start { long res; res = VTIL_DelayTxTpDt(6, 4, 200); // Delays four TP.DT messages by 200 ms, starting with packet no. 6. if(res != 0) { write("An error occurred: %d", res); } } on key 'a'{ long res; res = VTIL_ResetDelayedTxTpDt(); // Resets all delayed TP.DT messages. if(res != 0) { write("An error occurred: %d", res); } }