Kernel Independent Transport Layer (Compact 7)

3/12/2014

The kernel independent transport layer (KITL) is a communication link between the development computer and the Windows Embedded Compact powered device. KITL, which is a transport mechanism used for debugging, is called by the OAL.

Active and Passive KITL

KITL can operate in active or passive mode. In active mode, all KITL clients are initialized and registered when the device boots the OAL. In passive mode, KITL is initialized but not connected until an exception occurs on the device. (For more information, see Just-In-Time Kernel Debugging.)

Active KITL is best suited for the development process so the debugger can maintain a constant connection. Passive KITL is better suited to a scenario in which the debugger is not constantly needed, for example, the later stages of testing a device, but before it is released as a retail device. The benefit of the passive mode is that you can create a device that does not have to be tethered to the development computer tools. The device can be mobile, and if it enters a state where the development computer tools are needed, it initiates a KITL connection between the device and development computer.

Interrupt-Driven and Polling KITL

KITL can use interrupt-driven or polled transport. Interrupt-driven KITL is faster than polled transport, so you might want to use it for a completed KITL driver. Polled transport is less complicated than interrupt transport, but slower. It is useful when you develop a KITL driver.

See Also

Concepts

BSP Components