#include "usb_cmd.h"
#include "cmdmain.h"
#include "ui.h"
-#include "loclass/des.h"
+#include "polarssl/des.h"
#include "cmdhfmf.h"
#include "cmdhf14a.h"
#include "mifare.h"
}
static void ul_switch_on_field(void) {
- UsbCommand c = {CMD_READER_ISO_14443a, {ISO14A_CONNECT | ISO14A_NO_DISCONNECT, 0, 0}};
- clearCommandBuffer();
- SendCommand(&c);
-}
-
-void ul_switch_off_field(void) {
- UsbCommand c = {CMD_READER_ISO_14443a, {0, 0, 0}};
+ UsbCommand c = {CMD_READER_ISO_14443a, {ISO14A_CONNECT | ISO14A_NO_DISCONNECT | ISO14A_NO_RATS, 0, 0}};
clearCommandBuffer();
SendCommand(&c);
}