Monday, June 27, 2011

How to clone the KBDHID client driver into your platform

1. Create a folder for the MyKbdHid under the following directory"
    _PLATFORMROOT\MyPlatform\src\drivers\.
   
2. Copy all files from _PUBLICROOT\Common\Oak\Drivers\USB\class\hid\clients\KBDHID.

3. Rename mouhid.def to MyKbdHid.def.

4. Find the following line of code:

    TARGETNAME=KBDHID
   
   Change the above line of code to the following:
  
    TARGETNAME=MyKbdHid
   
5. Find the following line of code:

    TARGETTYPE=LIBRARY

   Change the above line to the following:

    TARGETTYPE=DYNLINK
   
6. Change the build target type from generating a library file to generating a DLL file.

7. Find the following line of code:

    TARGETDEFNAME=KBDHID

   Change the above line of code to

    TARGETDEFNAME=MyKbdHid
   
8. Add the following line of code near the beginning of the file:

    RELEASETYPE=PLATFORM

9. Find the following line of code:

    WINCETARGETFILE0=$(_COMMONOAKROOT)\lib\$(_CPUINDPATH)\$(TARGETDEFNAME).def

   Change the above line of code to

    WINCETARGETFILE0=$(_TARGETPLATROOT)\lib\$(_CPUINDPATH)\$(TARGETDEFNAME).def

11. Add the following TARGETLIBS entries after the SOURCELIBS line:

TARGETLIBS=\
$(_WINCEROOT)\OSDesigns\YOUR_OSDESIGN\YOUR_OSDESIGN\Wince600\YOUR_PLATFORM_x86\cesysgen\sdk\lib\x86\debug\Coredll.lib \
$(_WINCEROOT)\OSDesigns\YOUR_OSDESIGN\Wince600\YOUR_PLATFORM_x86\cesysgen\sdk\lib\x86\debug\Ceddk.lib \
$(_WINCEROOT)\public\common\oak\lib\x86\debug\hidparse_lib.lib \
$(_SYSGENSDKROOT)\lib\$(_CPUINDPATH)\ddguid.lib \
   
With the above modifications to the Sources file, the cloned MyKbdHid driver source code can be
compiled to generate the mymouhid.dll binary in the build release directory.

12. Add the below lines in platform.reg

; @CESYSGEN IF CE_MODULES_KBDHID[HKEY_LOCAL_MACHINE\Drivers\HID\LoadClients\Default\Default\1_6\Keyboard]
"DLL"="MYKBDHID.DLL"
[HKEY_LOCAL_MACHINE\Drivers\HID\ClientDrivers\Keyboard]
"DLL"="MYKBDHID.DLL"
"Prefix"="KBD"
"IClass"="{CBE6DDF2-F5D4-4e16-9F61-4CCC0B6695F3}"
"RemoteWakeup"=dword:1
"Flags"=dword:00010000
;


13. Add the below lines in platform.reg

    mykbdhid.DLL        $(_FLATRELEASEDIR)\mykbdhid.DLL           NK SHK
@CESYSGEN ENDIF CE_MODULES_KBDHID
 

Tuesday, June 7, 2011

How to clone the MOUHID client driver into your platform

1. Create a folder for the MyMouHid under the following directory"
    _PLATFORMROOT\MyPlatform\src\drivers\.
   
2. Copy all files from _PUBLICROOT\Common\Oak\Drivers\USB\class\hid\clients\MOUHID.

3. Rename mouhid.def to MyMouHid.def.

4. Find the following line of code:

    TARGETNAME=MOUHIDBASE
   
   Change the above line of code to the following:
  
    TARGETNAME=MyMouHid
   
5. Find the following line of code:

    TARGETTYPE=LIBRARY

   Change the above line to the following:

    TARGETTYPE=DYNLINK
   
6. Change the build target type from generating a library file to generating a DLL file.

7. Find the following line of code:

    TARGETDEFNAME=MOUHID

   Change the above line of code to

    TARGETDEFNAME=MyMouHid
   
8. Add the following line of code near the beginning of the file:

    RELEASETYPE=PLATFORM

9. Find the following line of code:

    WINCETARGETFILE0=$(_COMMONOAKROOT)\lib\$(_CPUINDPATH)\$(TARGETDEFNAME).def

   Change the above line of code to

    WINCETARGETFILE0=$(_TARGETPLATROOT)\lib\$(_CPUINDPATH)\$(TARGETDEFNAME).def

11. Add the following TARGETLIBS entries after the SOURCELIBS line:

    TARGETLIBS=\
    $(_COMMONSDKROOT)\lib\$(_CPUINDPATH)\Coredll.lib \
    $(_COMMONSDKROOT)\lib\$(_CPUINDPATH)\Ceddk.lib \
    $(_SYSGENSDKROOT)\lib\$(_CPUINDPATH)\ddguid.lib \
    $(_WINCEROOT)\public\common\oak\lib\x86\debug\hidparse_lib.lib \
    $(_WINCEROOT)\public\common\oak\lib\x86\debug\MouHidStd.lib \
   
With the above modifications to the Sources file, the cloned MyMouHid driver source code can be
compiled to generate the mymouhid.dll binary in the build release directory.

12. Add the below lines in platform.reg

    ; @CESYSGEN IF CE_MODULES_MOUHID
    [HKEY_LOCAL_MACHINE\Drivers\HID\LoadClients\Default\Default\1_2\Mouse]
       "DLL"="mymouhid.DLL"
       "RemoteWakeup"=dword:1
    ; @CESYSGEN ENDIF CE_MODULES_MOUHID


13. Add the below lines in platform.reg

    mymouhid.DLL        $(_FLATRELEASEDIR)\mymouhid.DLL           NK SHK

Friday, April 8, 2011

Books to sharp your wince Knowledge

1. CE Exam 70-571 PrepKit eBook
2. Professional Windows Embedded CE 6.0 by Samuel Phung.
3. windows Embedded CE6.0 Fundamentals by Stanislav Pavlov & Pavel Belevsky.

Support for .CAB Installer in WinCE image

To support .cab installer:

1. Open Catalog Items view (view->other windows->Catalog Items View).
2. Select "Core OS -> Applications - End User -> CAB File Installer/Uninstaller".
3. give Build-> clean sysgen.

Saturday, January 29, 2011

Welcome to WinCE world !!!

Hi Pals and Gals,

This Blog shows the b-e-a-utiful way to learn WinCE and gives a lot of tricks and tips for your future troubleshooting. The main source to learn WinCE is the great unbeatable __GOOGLE__ site. In google, you can find a tons and tons of resources to learn WinCE. But this site saves your most valuable time by listing out the important things in a single blog.

I hope, this blog should help the developers who are all willing to learn and improve WinCE knowledge.

All the best !!!