This commit is contained in:
iceman1001
2018-06-03 23:32:02 +02:00
parent d2d126878e
commit a2c7158f78
13 changed files with 25 additions and 30 deletions

View File

@@ -2322,7 +2322,7 @@ int CmdHF14AMfucSetPwd(const char *Cmd){
//
int CmdHF14AMfucSetUid(const char *Cmd){
UsbCommand c;
UsbCommand c = {CMD_MIFAREU_READBL};
UsbCommand resp;
uint8_t uid[7] = {0x00};
char cmdp = param_getchar(Cmd, 0);
@@ -2335,7 +2335,6 @@ int CmdHF14AMfucSetUid(const char *Cmd){
}
// read block2.
c.cmd = CMD_MIFAREU_READBL;
c.arg[0] = 2;
clearCommandBuffer();
SendCommand(&c);