From c640c63e51f5b2fb0133a3a3ef98b207274adc51 Mon Sep 17 00:00:00 2001 From: Philippe Teuwen Date: Wed, 1 May 2019 23:18:21 +0200 Subject: [PATCH] Replace WITH_FELICA by dynamic detection in client --- client/cmdhffelica.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/client/cmdhffelica.c b/client/cmdhffelica.c index 6565dc2b2..b434521e0 100644 --- a/client/cmdhffelica.c +++ b/client/cmdhffelica.c @@ -535,14 +535,14 @@ static int CmdHFFelicaCmdRaw(const char *Cmd) { static command_t CommandTable[] = { {"help", CmdHelp, AlwaysAvailable, "This help"}, - {"list", CmdHFFelicaList, IfPm3Present, "List ISO 18092/FeliCa history"}, - {"reader", CmdHFFelicaReader, IfPm3Present, "Act like an ISO18092/FeliCa reader"}, - {"sim", CmdHFFelicaSim, IfPm3Present, " -- Simulate ISO 18092/FeliCa tag"}, - {"sniff", CmdHFFelicaSniff, IfPm3Present, "sniff ISO 18092/Felica traffic"}, - {"raw", CmdHFFelicaCmdRaw, IfPm3Present, "Send raw hex data to tag"}, + {"list", CmdHFFelicaList, IfPm3Felica, "List ISO 18092/FeliCa history"}, + {"reader", CmdHFFelicaReader, IfPm3Felica, "Act like an ISO18092/FeliCa reader"}, + {"sim", CmdHFFelicaSim, IfPm3Felica, " -- Simulate ISO 18092/FeliCa tag"}, + {"sniff", CmdHFFelicaSniff, IfPm3Felica, "sniff ISO 18092/Felica traffic"}, + {"raw", CmdHFFelicaCmdRaw, IfPm3Felica, "Send raw hex data to tag"}, - {"litesim", CmdHFFelicaSimLite, IfPm3Present, " - only reply to poll request"}, - {"litedump", CmdHFFelicaDumpLite, IfPm3Present, "Wait for and try dumping FelicaLite"}, + {"litesim", CmdHFFelicaSimLite, IfPm3Felica, " - only reply to poll request"}, + {"litedump", CmdHFFelicaDumpLite, IfPm3Felica, "Wait for and try dumping FelicaLite"}, {NULL, NULL, NULL, NULL} };