mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-22 06:13:51 -07:00
fix breaking compilation
This commit is contained in:
parent
0f7fc67b9c
commit
452981faa4
1 changed files with 6 additions and 2 deletions
|
@ -200,9 +200,13 @@ void RunMod(void) {
|
||||||
Dbprintf("[!] Trace length (bytes) = %u", trace_len);
|
Dbprintf("[!] Trace length (bytes) = %u", trace_len);
|
||||||
|
|
||||||
uint8_t *trace_buffer = BigBuf_get_addr();
|
uint8_t *trace_buffer = BigBuf_get_addr();
|
||||||
if (!exists_in_spiffs(HF_15693SSIM_LOGFILE)) {
|
if (!exists_in_spiffs(HF_15693SIM_LOGFILE)) {
|
||||||
rdv40_spiffs_write(
|
rdv40_spiffs_write(
|
||||||
HF_15693SIM_LOGFILE, trace_buffer, trace_len, RDV40_SPIFFS_SAFETY_SAFE);
|
HF_15693SIM_LOGFILE,
|
||||||
|
trace_buffer,
|
||||||
|
trace_len,
|
||||||
|
RDV40_SPIFFS_SAFETY_SAFE
|
||||||
|
);
|
||||||
Dbprintf("[!] Wrote trace to "HF_15693SIM_LOGFILE);
|
Dbprintf("[!] Wrote trace to "HF_15693SIM_LOGFILE);
|
||||||
} else {
|
} else {
|
||||||
rdv40_spiffs_append(
|
rdv40_spiffs_append(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue