X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/902cb3c00b49535f0de9a3b6d5ba0c54260ccac1..c936a22f1921f5dd8ebf49a8d1a0fab60337dd31:/armsrc/epa.c

diff --git a/armsrc/epa.c b/armsrc/epa.c
index 73c3a755..b0ae5e0d 100644
--- a/armsrc/epa.c
+++ b/armsrc/epa.c
@@ -423,7 +423,7 @@ int EPA_Setup()
 	// card select information
 	iso14a_card_select_t card_select_info;
 	// power up the field
-	iso14443a_setup();
+	iso14443a_setup(FPGA_HF_ISO14443A_READER_MOD);
 
 	// select the card
 	return_code = iso14443a_select_card(uid, &card_select_info, NULL);
@@ -432,7 +432,7 @@ int EPA_Setup()
 	}
 
 	// send the PPS request
-	ReaderTransmit((uint8_t *)pps, sizeof(pps));
+	ReaderTransmit((uint8_t *)pps, sizeof(pps), NULL);
 	uint8_t pps_response[3];
 	return_code = ReaderReceive(pps_response);
 	if (return_code != 3 || pps_response[0] != 0xD0) {