M
Mario
Hi,
After flashing eboot.nb0 and nk.nbo, without problems, we encountered
two issues:
1. I had to use EdbgOutputDebugString within OEMDebugInit function,
after OEMInitDebugSerial(), for the serial port to display debug
messages. If I did not inlclude it, I would not receive any of the
debug messages. The current code is the following:
BOOL OEMDebugInit (void)
{
OEMInitDebugSerial();
g_pOEMMultiBINNotify = OEMMultiBINNotify;
g_pOEMReportError = OEMReportError;
EdbgOutputDebugString ("At OEMDebugInit \r\n");
return TRUE;
}
2. I find that I am hanging up at the OEMLaunch function. It hangs
up on the following line. It never finishes sending the complete
message to the serial debug port.
OALMSG(OAL_INFO, (TEXT("INFO: OEMLaunch: Jumping to Virtual Address 0x
%X...\r\n\r\n\r\n"), dwLaunchAddr));
The message shown at the serial debug port would be like: OEMLaunch:
Jumping to Virt and it would freeze.
Could someone provide some guidance as why of the two errors that I am
seeing? Thanks.
After flashing eboot.nb0 and nk.nbo, without problems, we encountered
two issues:
1. I had to use EdbgOutputDebugString within OEMDebugInit function,
after OEMInitDebugSerial(), for the serial port to display debug
messages. If I did not inlclude it, I would not receive any of the
debug messages. The current code is the following:
BOOL OEMDebugInit (void)
{
OEMInitDebugSerial();
g_pOEMMultiBINNotify = OEMMultiBINNotify;
g_pOEMReportError = OEMReportError;
EdbgOutputDebugString ("At OEMDebugInit \r\n");
return TRUE;
}
2. I find that I am hanging up at the OEMLaunch function. It hangs
up on the following line. It never finishes sending the complete
message to the serial debug port.
OALMSG(OAL_INFO, (TEXT("INFO: OEMLaunch: Jumping to Virtual Address 0x
%X...\r\n\r\n\r\n"), dwLaunchAddr));
The message shown at the serial debug port would be like: OEMLaunch:
Jumping to Virt and it would freeze.
Could someone provide some guidance as why of the two errors that I am
seeing? Thanks.