Question
Firmware Upgrade failed CubeProgrammer_API
I am testing firmware upgrade API from CubeProgrammer_API. For some reason, it keeps printing that the firmware upgrade failed, but when i check the firmware version of my device, the firmware has been updated. Does anyone know what is the cause of it? The code below is taken from the source code
bool retValueFusUp = firmwareUpgrade(L"../test file/stm32wb5x_BLE_LLD_fw.bin", 0x08065000, FIRST_INSTALL_NOT_ACTIVE, START_STACK_NOT_ACTIVE, VERIFY_FILE_DOWLOAD_FILE);
if (retValueFusUp == false)
{
logMessage(Error, "\nFUS Upgrade failed\n");
return(1);
}

