mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-10 17:49:32 +08:00
standalone: hf_15sim: adapt instruction depending on flash presence
This commit is contained in:
parent
d73576ecf5
commit
4a45aaf065
1 changed files with 5 additions and 0 deletions
|
@ -43,10 +43,15 @@
|
|||
|
||||
static void DownloadTraceInstructions(void) {
|
||||
Dbprintf("");
|
||||
#ifndef WITH_FLASH
|
||||
Dbprintf("To get the trace from flash and display it:");
|
||||
Dbprintf("1. mem spiffs dump -s "HF_15693SIM_LOGFILE" -d hf_15693sim.trace");
|
||||
Dbprintf("2. trace load -f hf_15693sim.trace");
|
||||
Dbprintf("3. trace list -t 15 -1");
|
||||
#else
|
||||
Dbprintf("To get the trace from PM3 memory:");
|
||||
Dbprintf("trace list -t 15");
|
||||
#endif
|
||||
}
|
||||
|
||||
void ModInfo(void) {
|
||||
|
|
Loading…
Reference in a new issue