i am creating a Windows CE 6.0 in Visual Studio 2005 with Platform builder. I integrated a stream device driver (via USB HID). I also have a small application that opens a connection to the device and reads data from it. When i build a Debug-Version of this Windows CE 6.0 and debug it on the device i can start the application and the communication to the device works fine. Now i build a Release-Version (no changes of Sources!) of the Windows CE 6.0, run it on the device and start the application on the device. When i try to read data from the device by ReadFile(), (i guess this calls XXX_Read() from the stream driver) my windows crashes and reboots. Its too bad, because i cant debug the CE where the windows exactly crashes... (because it does not crash in debug version ;).
What are the differences between Debug and Release Version of WinCE 6? Does anyone have a hint at which part of the Stream Device driver i need to have a closer look to solve this problem? I know that in Debug/Release the Project settings are not adopted. But i cant think of any setting that may influence the stream device driver.
Regards
One thing you could do is to setup Dr. Watson so that you can generate a
KDMP
file when the crash occurs, then you can do a post-mortem debug analysis with theKDMP
file to see where the crash is happening. See the docs to get more info on setting up Dr Watson on WinCE 6.0.Once you have generated the crash dump file (
*.KDMP
), you can use Visual Studio 2005 to open the KDMP file (File | Open Project/Solution
). Once it's loaded, use theTarget | Attach device
menu option to start the post-mortem debug session (Note that you are virtually "attaching" to the device via theKDMP
file, you do not need to physically access the target device while post-mortem debugging)