convert sendOLD -> MIX for simple cmds

This commit is contained in:
iceman1001 2019-05-07 19:13:14 +02:00
commit 39272ba1fb
6 changed files with 8 additions and 8 deletions

View file

@ -1079,7 +1079,7 @@ static int CmdHF14AAntiFuzz(const char *Cmd) {
CLIParserFree();
clearCommandBuffer();
SendCommandOLD(CMD_ANTIFUZZ_ISO_14443a, arg0, 0, 0, NULL, 0);
SendCommandMIX(CMD_ANTIFUZZ_ISO_14443a, arg0, 0, 0, NULL, 0);
return 0;
}

View file

@ -281,7 +281,7 @@ static int CmdHFiClassList(const char *Cmd) {
static int CmdHFiClassSniff(const char *Cmd) {
char cmdp = tolower(param_getchar(Cmd, 0));
if (cmdp == 'h') return usage_hf_iclass_sniff();
SendCommandOLD(CMD_SNIFF_ICLASS, 0, 0, 0, NULL, 0);
SendCommandMIX(CMD_SNIFF_ICLASS, 0, 0, 0, NULL, 0);
return 0;
}

View file

@ -808,7 +808,7 @@ int legic_get_type(legic_card_select_t *card) {
if (card == NULL) return 1;
clearCommandBuffer();
SendCommandOLD(CMD_LEGIC_INFO, 0, 0, 0, NULL, 0);
SendCommandMIX(CMD_LEGIC_INFO, 0, 0, 0, NULL, 0);
PacketResponseNG resp;
if (!WaitForResponseTimeout(CMD_ACK, &resp, 1500))
return 2;

View file

@ -2291,7 +2291,7 @@ static int CmdHF14AMfSniff(const char *Cmd) {
PrintAndLogEx(NORMAL, "-------------------------------------------------------------------------\n");
clearCommandBuffer();
SendCommandOLD(CMD_MIFARE_SNIFFER, 0, 0, 0, NULL, 0);
SendCommandMIX(CMD_MIFARE_SNIFFER, 0, 0, 0, NULL, 0);
PacketResponseNG resp;
@ -2420,7 +2420,7 @@ int CmdHF14AMfDbg(const char *Cmd) {
uint8_t dbgMode = param_get8ex(Cmd, 0, 0, 10);
if (dbgMode > 4) return usage_hf14_dbg();
SendCommandOLD(CMD_MIFARE_SET_DBGMODE, dbgMode, 0, 0, NULL, 0);
SendCommandMIX(CMD_MIFARE_SET_DBGMODE, dbgMode, 0, 0, NULL, 0);
return 0;
}

View file

@ -390,7 +390,7 @@ int CmdLFSniff(const char *Cmd) {
if (cmdp == 'h') return usage_lf_sniff();
clearCommandBuffer();
SendCommandOLD(CMD_LF_SNIFF_RAW_ADC_SAMPLES, 0, 0, 0, NULL, 0);
SendCommandMIX(CMD_LF_SNIFF_RAW_ADC_SAMPLES, 0, 0, 0, NULL, 0);
WaitForResponse(CMD_ACK, NULL);
getSamples(0, false);
return 0;

View file

@ -906,7 +906,7 @@ returns:
int detect_classic_nackbug(bool verbose) {
clearCommandBuffer();
SendCommandOLD(CMD_MIFARE_NACK_DETECT, 0, 0, 0, NULL, 0);
SendCommandMIX(CMD_MIFARE_NACK_DETECT, 0, 0, 0, NULL, 0);
PacketResponseNG resp;
if (verbose)
@ -991,7 +991,7 @@ void detect_classic_magic(void) {
uint8_t isGeneration = 0;
PacketResponseNG resp;
clearCommandBuffer();
SendCommandOLD(CMD_MIFARE_CIDENT, 0, 0, 0, NULL, 0);
SendCommandMIX(CMD_MIFARE_CIDENT, 0, 0, 0, NULL, 0);
if (WaitForResponseTimeout(CMD_ACK, &resp, 1500))
isGeneration = resp.oldarg[0] & 0xff;