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

@ -259,9 +259,9 @@ static int CmdIOProxClone(const char *Cmd) {
static command_t CommandTable[] = {
{"help", CmdHelp, AlwaysAvailable, "this help"},
{"demod", CmdIOProxDemod, AlwaysAvailable, "demodulate an IOProx tag from the GraphBuffer"},
{"read", CmdIOProxRead, AlwaysAvailable, "attempt to read and extract tag data"},
{"clone", CmdIOProxClone, IfPm3Present, "clone IOProx to T55x7"},
{"sim", CmdIOProxSim, IfPm3Present, "simulate IOProx tag"},
{"read", CmdIOProxRead, IfPm3Lf, "attempt to read and extract tag data"},
{"clone", CmdIOProxClone, IfPm3Lf, "clone IOProx to T55x7"},
{"sim", CmdIOProxSim, IfPm3Lf, "simulate IOProx tag"},
{NULL, NULL, NULL, NULL}
};