我们正在使用WINCE 7 sdmmc驱动程序,该驱动程序在没有EMAC驱动程序的情况下正常工作。
一旦EMAC驱动程序在Catalog项中启用,sdcard的挂载次数就会减少。大多数情况下,SD文件夹没有显示在MyDevice中(在其中,存储管理器控制面板中列出了applet )
在这里,我添加了Platform.reg文件的一部分SDMMC:
IF BSP_SDMMC
[HKEY_LOCAL_MACHINE\Drivers\BuiltIn\SDMMC1]
"Order"=dword:26
"Dll"="sdmmc.dll"
"Prefix"="MMC"
"Index"=dword:1
;"DisableDMA"=dword:1 ; Use this reg setting to disable both internal and external DMA
"MaximumClockFrequency"=dword:2FAF080 ; 50 MHz max clock speed
;"WakeupSource"=dword:1 ; this will enable system wakeup when card is inserted or removed during suspend state
ENDIF ;BSP_SDMMCEmac.reg文件:
[HKEY_LOCAL_MACHINE\Comm\EMAC1]
"DisplayName"="EMAC Ethernet Driver"
"Group"="NDIS"
"ImagePath"="EMAC.dll"
[HKEY_LOCAL_MACHINE\Comm\EMAC1\Parms]
"BusNumber"=dword:0
"BusType"=dword:0
"IRQ"=dword:98
"ioBase"=dword:31
"ioLen"=dword:10
"memBase"=dword:D03CD610
"memLen"=dword:1000
"Order"=dword:30
; DuplexMode: 0:AutoDetect; 1:HalfDuplex; 2:FullDuplex.
"DuplexMode"=dword:0
; The Ethernet Physical Address. For example,
; Ethernet Address 00:24:20:10:bf:03 is MACAddress1=0024,
; MACAddress2=2010,and MACAddress3=bf03.
"MACAddress1"=dword:0001
"MACAddress2"=dword:0203
"MACAddress3"=dword:0405
"*IfType"=dword:6 ; IF_TYPE_IEEE802_3
"*MediaType"=dword:0 ; NdisMediumNative802_3
"*PhysicalMediaType"=dword:D ; NdisPhysicalMedium802_3请帮我摆脱这一切。
发布于 2014-03-14 08:33:59
SDMMC的顺序是什么,EMAC驱动程序的顺序是什么?
哪个是先装货?
改变这些命令试一试。
发布于 2014-03-15 10:07:33
在我将EMAC的顺序从5更改为30 (比SDMMC订单更大)后,问题得到了解决。
https://stackoverflow.com/questions/22399653
复制相似问题