Problem with loading OS

  • Thread starter Thread starter Mario
  • Start date Start date
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.
 
You might want to ask in the platbuilder newsgroup - very few here (a
compact framework group) will even know what you're talking about.


--

Chris Tacke, Embedded MVP
OpenNETCF Consulting
Managed Code in an Embedded World
www.OpenNETCF.com
 
Back
Top