Files
Upsilon/ion/src/f730/bench/command/ping.cpp
2019-01-10 18:25:02 +01:00

20 lines
223 B
C++

#include "command.h"
namespace Ion {
namespace Device {
namespace Bench {
namespace Command {
void Ping(const char * input) {
if (input != nullptr) {
reply(sSyntaxError);
return;
}
reply("PONG");
}
}
}
}
}