mirror of
https://github.com/openshwprojects/OpenBK7231T_App.git
synced 2026-02-05 23:15:26 +00:00
24 lines
783 B
Batchfile
24 lines
783 B
Batchfile
|
|
// Waitfor syntax samples
|
|
// WaitFor can support following operators:
|
|
// - no operator (default, it means equals)
|
|
// - operator < (less)
|
|
// - operator > (more)
|
|
// - operator ! (not requal)
|
|
|
|
// default usage - wait for NoPingTime to reach exact value 100
|
|
waitFor NoPingTime 100
|
|
|
|
// extra operator - wait for NoPingTime to become less than 100
|
|
// (this will be triggered anytime variable changes to value less than 100)
|
|
waitFor NoPingTime < 100
|
|
|
|
// extra operator - wait for NoPingTime to become more than 100
|
|
// (this will be triggered anytime variable changes to value more than 100)
|
|
waitFor NoPingTime > 100
|
|
|
|
// extra operator - wait for NoPingTime to become different than 100
|
|
// (this will be triggered anytime variable changes to value other than 100)
|
|
waitFor NoPingTime ! 100
|
|
|