How to add a binary device driver in Platform Builder for Windows CE 6.0?

I need to add a device driver to a Windows CE image, I have a driver in the .dll and .reg files and in the .cab package. I am using Visual Studio 2005 with Platform Builder for Windows CE 6.0.

How can i do this?

+3
source share
1 answer

If you use OSDesign and want to add Dll to the image that OSDesign creates, simply put the Dll file in the% WinceRootDir% \ Platform \\ Files directory. If you do this, the file will be copied automatically to the release directory when you build. As for the registry, just add the appropriate changes to the Porject.reg file and it will be integrated into the entire assembly. When you add a stream interface driver, you need to add its unet registry settings [HKEY_LOCAL_MACHINE \ BuiltIn \ Drivers \]. You can read it here (great blog - http://geekswithblogs.net/BruceEitman/archive/2008/12/08/windows-ce-stream-interface-driver-registry-settings.aspx) (I can not publish another link, so search msdn for the bus enumerator) necessary registry settings for the stream interface driver.

, - ...

, ,

+1

Source: https://habr.com/ru/post/1715168/


All Articles