proxmark3/armsrc/smartcard.c

35 lines
388 B
C
Raw Normal View History

2018-03-04 21:14:08 +08:00
#include "smartcard.h"
/*
PA5 SIM I/O
PA7 SIM CLOCK
PA10 SIM RESET
Both RX / TX is connected to PA5
*/
void SmartCardSetup(void) {
// PA5 ->
// PA7 ->
// PA10 ->
}
void SmartCardStop(void) {
StopTicks();
Dbprintf("SmartCardStop");
LED_A_OFF();
}
bool SmartCardInit(void) {
StartTicks();
LED_A_ON();
SmartCardSetup();
Dbprintf("SmartCardInit");
return true;
}