additional message

This commit is contained in:
tharexde 2020-12-04 22:42:54 +01:00
commit 0e28c60fd0

View file

@ -500,9 +500,12 @@ int CmdEM4x50Chk(const char *Cmd) {
// upload to flash. // upload to flash.
res = flashmem_spiffs_load(destfn, keys, datalen + 2); res = flashmem_spiffs_load(destfn, keys, datalen + 2);
if (res != PM3_SUCCESS) { if (res != PM3_SUCCESS) {
PrintAndLogEx(WARNING, "\nSPIFFS upload failed"); PrintAndLogEx(WARNING, "SPIFFS upload failed");
return res; return res;
} }
} else {
PrintAndLogEx(WARNING, "no flash memory available");
return PM3_EFLASH;
} }
clearCommandBuffer(); clearCommandBuffer();