Replace WITH_LF by dynamic detection in client

This commit is contained in:
Philippe Teuwen 2019-05-02 00:02:38 +02:00
commit 32bb9511ec
24 changed files with 108 additions and 108 deletions

View file

@ -276,11 +276,11 @@ static int CmdPyramidSim(const char *Cmd) {
}
static command_t CommandTable[] = {
{"help", CmdHelp, AlwaysAvailable, "this help"},
{"demod", CmdPyramidDemod, IfPm3Present, "demodulate a Pyramid FSK tag from the GraphBuffer"},
{"read", CmdPyramidRead, IfPm3Present, "attempt to read and extract tag data"},
{"clone", CmdPyramidClone, IfPm3Present, "clone pyramid tag"},
{"sim", CmdPyramidSim, IfPm3Present, "simulate pyramid tag"},
{"help", CmdHelp, AlwaysAvailable, "this help"},
{"demod", CmdPyramidDemod, AlwaysAvailable, "demodulate a Pyramid FSK tag from the GraphBuffer"},
{"read", CmdPyramidRead, IfPm3Lf, "attempt to read and extract tag data"},
{"clone", CmdPyramidClone, IfPm3Lf, "clone pyramid tag"},
{"sim", CmdPyramidSim, IfPm3Lf, "simulate pyramid tag"},
{NULL, NULL, NULL, NULL}
};