Firmware backup writing now uses OpenLocalFile

This commit is contained in:
Rafael Caetano 2019-05-13 23:05:50 +01:00
parent 99b07f9300
commit 3a9410b5d0
1 changed files with 2 additions and 2 deletions

View File

@ -130,11 +130,11 @@ void Reset()
// take a backup
const char* firmbkp = "firmware.bin.bak";
f = fopen(firmbkp, "rb");
f = Platform::OpenLocalFile(firmbkp, "rb");
if (f) fclose(f);
else
{
f = fopen(firmbkp, "wb");
f = Platform::OpenLocalFile(firmbkp, "wb");
fwrite(Firmware, 1, FirmwareLength, f);
fclose(f);
}