Dear,
Let's see if you can help me understand what I am seeing here, maybe I am just too tired.
SimpleLink SDK == v.5.2.
Project "bim".
Function "static void Bim_checkImages(void)", more precisely line 762.
/* First try finding a valid image on off-chip flash */ if( !(retVal = checkImagesExtFlash() ) ) { /* Could not find valid image on off-chip Flash. * Try finding application image on on-chip flash and jump to it */ checkImagesIntFlash(0); }
It is my understanding the condition should skip the "!". I mean checkImagesINTFlash(0) should be called when checkImagesEXTFlash returns 1, which means could not find copy and boot any external image.
Please let me know your opinion.