chg: renamed smartcard.c -> iso7816.c

chg: default standalone mode is LF_SAMY..    The HF_COLIN takes a lot of space
This commit is contained in:
iceman1001
2018-03-31 10:43:09 +02:00
parent 836d7370c3
commit a37518b1c3
5 changed files with 166 additions and 55 deletions

View File

@@ -1,34 +0,0 @@
#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;
}