Files
Upsilon/ion/src/device/bench/command/standby.cpp
2019-04-08 16:58:45 +02:00

23 lines
333 B
C++

#include "command.h"
#include <ion.h>
namespace Ion {
namespace Device {
namespace Bench {
namespace Command {
void Standby(const char * input) {
if (input != nullptr) {
reply(sSyntaxError);
return;
}
reply(sOK);
Ion::Timing::msleep(100);
//Ion::Power::standby(); TODO Decomment once the method exists
}
}
}
}
}