3668|7

75

帖子

0

TA的资源

一粒金砂(初级)

楼主
 

To 设备加载的问题 [复制链接]

本人使用的硬件是Ez-usb fx2系列68013芯片
但是怎么

NTSTATUS
Ezusb_PnPAddDevice(
    IN PDRIVER_OBJECT DriverObject,
    IN PDEVICE_OBJECT PhysicalDeviceObject
    )
/*++
Routine Description:
    This routine is called to create a new instance of the device

Arguments:
    DriverObject - pointer to the driver object for this instance of Ezusb
    PhysicalDeviceObject - pointer to a device object created by the bus

Return Value:
    STATUS_SUCCESS if successful,
    STATUS_UNSUCCESSFUL otherwise

--*/
{
   NTSTATUS                ntStatus = STATUS_SUCCESS;
   PDEVICE_OBJECT          fdo = NULL;
   PDEVICE_EXTENSION       pdx;
   
   WCHAR KernelDeviceNameBuffer[] = L"\\Device\\Ezusb-0";  
   UNICODE_STRING KernelDeviceNameUnicode;                                       
   WCHAR UserDeviceLinkBuffer[] = L"\\DosDevices\\Ezusb-0";
   UNICODE_STRING UserDeviceLinkUnicode;
   RtlInitUnicodeString (&KernelDeviceNameUnicode,
                          KernelDeviceNameBuffer);//&KernelDeviceNameUnicode
      
   Ezusb_KdPrint(("enter Ezusb_PnPAddDevice\n"));

   ntStatus = IoCreateDevice (DriverObject,
                              sizeof (DEVICE_EXTENSION),
                              NULL,
                              FILE_DEVICE_UNKNOWN,
                              0,
                              FALSE,
                              &fdo);

   if (NT_SUCCESS(ntStatus))
   {
     
      pdx = fdo->DeviceExtension;

          /*RtlInitUnicodeString (&UserDeviceLinkUnicode,
                          UserDeviceLinkBuffer);

      ntStatus = IoCreateSymbolicLink (&UserDeviceLinkUnicode,
                                     &KernelDeviceNameUnicode);
      
      RtlCopyMemory(pdx->DeviceLinkName,
                  UserDeviceLinkBuffer,
                  sizeof(UserDeviceLinkBuffer));
      */
      fdo->Flags &= ~DO_DEVICE_INITIALIZING;

      fdo->Flags |= DO_DIRECT_IO;
      pdx->PhysicalDeviceObject=PhysicalDeviceObject;

      pdx->StackDeviceObject =
         IoAttachDeviceToDeviceStack(fdo, PhysicalDeviceObject);

      ASSERT (pdx->StackDeviceObject != NULL);

           pdx->usage = 1;                               
           pdx->OpenHandles++;
           KeInitializeEvent(&pdx->evRemove,
                        NotificationEvent,
                        FALSE);                 }

   Ezusb_KdPrint(("exit Ezusb_PnPAddDevice (%x)\n", ntStatus));

   return ntStatus;
}

本人只要使用设备描述符L"\\Device\\Ezusb-0";  ,这个些代码,编译出来的驱动程序就不能正常加载,加载到一半时就出问题,代码31,请问高手这是怎么回事,这例程都是一些例子程序中拷贝过来,应该没有问题啊

最新回复

用winDbg跟跟...  详情 回复 发表于 2008-1-4 18:57
点赞 关注

回复
举报

73

帖子

0

TA的资源

一粒金砂(初级)

沙发
 
忘记了,里面还有注释没有去掉,正常如下:

NTSTATUS
Ezusb_PnPAddDevice(
    IN PDRIVER_OBJECT DriverObject,
    IN PDEVICE_OBJECT PhysicalDeviceObject
    )
/*++
Routine Description:
    This routine is called to create a new instance of the device

Arguments:
    DriverObject - pointer to the driver object for this instance of Ezusb
    PhysicalDeviceObject - pointer to a device object created by the bus

Return Value:
    STATUS_SUCCESS if successful,
    STATUS_UNSUCCESSFUL otherwise

--*/
{
   NTSTATUS                ntStatus = STATUS_SUCCESS;
   PDEVICE_OBJECT          fdo = NULL;
   PDEVICE_EXTENSION       pdx;
   
   WCHAR KernelDeviceNameBuffer[] = L"\\Device\\Ezusb-0";  
   UNICODE_STRING KernelDeviceNameUnicode;                                       
   WCHAR UserDeviceLinkBuffer[] = L"\\DosDevices\\Ezusb-0";
   UNICODE_STRING UserDeviceLinkUnicode;
   RtlInitUnicodeString (&KernelDeviceNameUnicode,
                          KernelDeviceNameBuffer);//&KernelDeviceNameUnicode
      
   Ezusb_KdPrint(("enter Ezusb_PnPAddDevice\n"));

   ntStatus = IoCreateDevice (DriverObject,
                              sizeof (DEVICE_EXTENSION),
                              NULL,
                              FILE_DEVICE_UNKNOWN,
                              0,
                              FALSE,
                              &fdo);

   if (NT_SUCCESS(ntStatus))
   {
     
      pdx = fdo->DeviceExtension;

      RtlInitUnicodeString (&UserDeviceLinkUnicode,
                          UserDeviceLinkBuffer);

      ntStatus = IoCreateSymbolicLink (&UserDeviceLinkUnicode,
                                     &KernelDeviceNameUnicode);
      
      RtlCopyMemory(pdx->DeviceLinkName,
                  UserDeviceLinkBuffer,
                  sizeof(UserDeviceLinkBuffer));
      
      fdo->Flags &= ~DO_DEVICE_INITIALIZING;

      fdo->Flags |= DO_DIRECT_IO;
      pdx->PhysicalDeviceObject=PhysicalDeviceObject;

      pdx->StackDeviceObject =
         IoAttachDeviceToDeviceStack(fdo, PhysicalDeviceObject);

      ASSERT (pdx->StackDeviceObject != NULL);

           pdx->usage = 1;                               
           pdx->OpenHandles++;
           KeInitializeEvent(&pdx->evRemove,
                        NotificationEvent,
                        FALSE);                 }

   Ezusb_KdPrint(("exit Ezusb_PnPAddDevice (%x)\n", ntStatus));

   return ntStatus;
}
 
 

回复

73

帖子

0

TA的资源

一粒金砂(初级)

板凳
 
没有一个人顶,我怎么结贴啊
 
 
 

回复

70

帖子

0

TA的资源

一粒金砂(初级)

4
 
编译能通过么
 
 
 

回复

57

帖子

0

TA的资源

一粒金砂(初级)

5
 
终于有人来回话了,晕,可以结贴了,问题我早就解决了,只是没有人回复,没法结贴啊
 
 
 

回复

75

帖子

0

TA的资源

一粒金砂(初级)

6
 
呵呵!
 
 
 

回复

61

帖子

0

TA的资源

一粒金砂(初级)

7
 
多几个人来回答一下吧,顶一下就给分的.
 
 
 

回复

83

帖子

0

TA的资源

一粒金砂(初级)

8
 
用winDbg跟跟...
 
 
 

回复
您需要登录后才可以回帖 登录 | 注册

随便看看
查找数据手册?

EEWorld Datasheet 技术支持

相关文章 更多>>
关闭
站长推荐上一条 1/7 下一条

 
EEWorld订阅号

 
EEWorld服务号

 
汽车开发圈

About Us 关于我们 客户服务 联系方式 器件索引 网站地图 最新更新 手机版

站点相关: 国产芯 安防电子 汽车电子 手机便携 工业控制 家用电子 医疗电子 测试测量 网络通信 物联网

北京市海淀区中关村大街18号B座15层1530室 电话:(010)82350740 邮编:100190

电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号 Copyright © 2005-2025 EEWORLD.com.cn, Inc. All rights reserved
快速回复 返回顶部 返回列表