This commit is contained in:
iceman1001 2021-03-15 15:53:37 +01:00
commit 93ff663755

View file

@ -77,14 +77,14 @@ static void DownloadTraceInstructions(void) {
} }
void ModInfo(void) { void ModInfo(void) {
DbpString(" ISO14443a sniff, storing in flashmem"); DbpString(" HF 14A SNIFF, a ISO14443a sniffer with storing in flashmem");
DownloadTraceInstructions(); DownloadTraceInstructions();
} }
void RunMod(void) { void RunMod(void) {
StandAloneMode(); StandAloneMode();
Dbprintf("Starting standalone mode: hf_14asniff"); Dbprintf(_YELLOW_("HF 14A SNIFF started"));
rdv40_spiffs_lazy_mount(); rdv40_spiffs_lazy_mount();
SniffIso14443a(0); SniffIso14443a(0);
@ -118,7 +118,7 @@ void RunMod(void) {
SpinErr(LED_A, 200, 5); SpinErr(LED_A, 200, 5);
SpinDelay(100); SpinDelay(100);
Dbprintf("-=[ exit ]=-");
LEDsoff(); LEDsoff();
SpinDelay(300);
DownloadTraceInstructions(); DownloadTraceInstructions();
} }