Other Parts Discussed in Thread: SYSBIOS
Tool/software:
The use of C6748 products requires UBL to upgrade the app After power on, UBL retrieves the bin file of the APP through UART2 and transfers it to the RAM address 0x1180000. After the transfer is completed, it jumps to the APP for operation
The current issue is that the app needs to jump twice before it can run (determined by serial port printing)
0x11804820 is the map file of the app
Uint32 gAppPoint = 0x11804820;
static void (*APPEntry)(void);
void JumpToApp(void)
{
APPEntry = (void (*)(void)) gAppPoint;
(*APPEntry)();
}








