mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 13:53:55 -07: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) {
|
static void DownloadTraceInstructions(void) {
|
||||||
Dbprintf("");
|
Dbprintf("");
|
||||||
|
#ifndef WITH_FLASH
|
||||||
Dbprintf("To get the trace from flash and display it:");
|
Dbprintf("To get the trace from flash and display it:");
|
||||||
Dbprintf("1. mem spiffs dump -s "HF_15693SIM_LOGFILE" -d hf_15693sim.trace");
|
Dbprintf("1. mem spiffs dump -s "HF_15693SIM_LOGFILE" -d hf_15693sim.trace");
|
||||||
Dbprintf("2. trace load -f hf_15693sim.trace");
|
Dbprintf("2. trace load -f hf_15693sim.trace");
|
||||||
Dbprintf("3. trace list -t 15 -1");
|
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) {
|
void ModInfo(void) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue