sleep implemented for command line, mainly for config files for firmware developers (#982)

This commit is contained in:
2024-09-30 16:57:53 +02:00
committed by GitHub
parent 2dc0963c56
commit 8144397b2c
7 changed files with 109 additions and 0 deletions

View File

@ -285,6 +285,7 @@ class Caller {
std::string signalindex(int action);
std::string signallist(int action);
std::string signalname(int action);
std::string sleep(int action);
std::string slowadc(int action);
std::string slowadcindex(int action);
std::string slowadclist(int action);
@ -631,6 +632,7 @@ class Caller {
{"signalindex", &Caller::signalindex},
{"signallist", &Caller::signallist},
{"signalname", &Caller::signalname},
{"sleep", &Caller::sleep},
{"slowadc", &Caller::slowadc},
{"slowadcindex", &Caller::slowadcindex},
{"slowadclist", &Caller::slowadclist},