Hi,
We build our application to generate a firmware for HSFS and another one for non-HSFS.
During the Start-Up in both devices, we have noticed that the HSFS needs ~3.283700s
compared to NonHSFS needs only ~0.354450s.
The analysis shows that the bootloader needs aprox. 2.92840s in the functon Bootloader_parseMultiCoreAppImage(), which in case of HSFS calls the following code for the authentication:
// FOR HSFS
if(Bootloader_socIsAuthRequired() == TRUE)
{
/* Device is HS, verify image. */
status = Bootloader_verifyMulticoreImage(handle);
}
Do you have some idea, why the bootloader take so long in this part? and how we can optimize this?
Thanks&Regards
Karen Agüero Meza