Re: USBFN => data abort in Windows Embedded CE6.0



If you build your image with the debugger enabled it should halt the CPU when the exception occurs and allow you too see more information about what is happening.

Basically you have a NULL pointer exception somewhere in "mv8760usbfn.dll."

If you want to figure out the particular instruction manually then you will need to know where the DLL is loaded and the disassembly (link /dump /disasm <yourdllname>) OR the .cod file if you want source code (WINCECOD=1)

Subtract the load address from the PC (PC=c0978d18 - LoadAddress) then use that number to offset into the disassembly dump. Scroll up until you find a function name.

Geoff
--

.



Relevant Pages

  • Re: Nette Features in C# 3.0
    ... >>Meine CPU muss das 1000 Mal pro Sekunde zwecks Taskwechsel ... Normale Interrupts sind da noch nicht mit eingerechnet. ... wenn wirklich eine Exception auftritt. ... > diese 'Ausnahme' eben auch nur 'in Ausnahmen-Situationen' haben zu ...
    (de.comp.lang.misc)
  • Re: instabile VMS-Installation
    ... CPU 0 Crash Code 1CC,Crash Type = INVEXCEPTN ... EXCEPTION 83407A00 0000A800 ... Exception par #1: 0000000C ...
    (de.comp.os.vms)
  • Re: New CPU or Boat Anchor
    ... > I installed an FC4 desktop system on a 500 mh hp pavillion without much ... After the updates were done and I started tweaking some ... > or to replace the CPU etc I would appreciate your help. ... from suspend which would manifest itself as a Machine check exception. ...
    (Fedora)
  • Re: Machine Check Error.
    ... Machine Check Architecture exception. ... exception is sent by the CPU in the computer in response to a computer ... the CPU reports the Machine Check Architecture ...
    (microsoft.public.windows.server.general)
  • Re: Try Finally...
    ... Some of the "keywords" are not hard coded. ... Writing procedures named Halt, Break ... or Exit can result in strange effects, but sometimes it's nice to override the ... This exception can be caught at the main ...
    (comp.lang.pascal.delphi.misc)

Loading