After updating to v13.01.029, @ping started giving me "incorrect parameter" errors this morning, from a btm file that has been running well for years. The command is
After some fussing around, I discovered that the timeout argument is the culprit. If I leave it out
, the function works, and surprise, if I put it between double quotes
it also works but if the target doesn't respond, the function waits well past the specified 1-second timeout.
--
Peter
Code:
set var=%@ping[192.168.1.21,1,64]
Code:
set var=%@ping[192.168.1.21,,64]
Code:
set var=%@ping[192.168.1.21,"1",64]
--
Peter