说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> WDM驱动开发
1)  WDM driver development
WDM驱动开发
2)  WDM driver
WDM驱动
1.
This paper proposes one kind based on the PCI bus high speed measurement and control card design concept,applied DSP as the periphery core processing unit,PCI9054 as the PCI bridge chip,emphasize the measurement and control card data storage and transmission hardware interconnection solution and based on Windows WDM driver design.
提出一种基于PCI总线的高速测控卡的设计思想,采用DSP作为外围核心处理单元,PCI9054作为PCI桥芯片,着重论述了测控卡的数据采集与传输的硬件接口解决方案和基于Windows的WDM驱动程序设计。
2.
The development of PCI card using the ISA mode of PCI9052, and WDM driver based on Windows platform using Driver Studio are presented emphatically.
介绍了基于PCI的ARINC429总线适配器电路设计和驱动程序开发,重点讲述了利用PCI9052的ISA模式开发PCI卡,以及利用DriverStudio开发基于Windows平台的WDM驱动程序。
3.
Making the best use of the sophisticated high-speed PCI Bus,DSP technology and the powerful WDM driver development tools, a emulating & testing device is realized, and the difficult synchronization problem is discussed in the periodically complicated test system, The design has greater improvement than similarities and owns better reference significance.
对飞控计算机接口分组件测试进行了研究,利用成熟的高速PCI总线技术和DSP技术,借助功能强大的Driver StudioWDM驱动开发工具,实现基于PCI总线的飞控计算机仿真测试板的设计和同步通讯,探讨了复杂周期性测试中的时序同步难题。
3)  WDM driver
WDM驱动程序
1.
Developing WDM driver in the open architecture CNC system based on Windows 2000;
基于Windows 2000的开放式数控系统中WDM驱动程序的开发
2.
WDM Driver Development Based on DSP Inline PCI Interface;
基于DSP的内嵌PCI设备WDM驱动程序开发
3.
This paper illuminates the mode structure of the WDM driver.
本文结合探地雷达中的PCI数据采集卡,介绍了WDM驱动程序模型结构,对PCI设备的存储器映射、数据传输以及驱动程序与应用程序之间的通信等主要问题做了讨论。
4)  WDM Device driver
WDM驱动程序
5)  WDM
WDM驱动模型
1.
Furthermore,after a introduction of windows driver model(WDM),the paper discusses .
最后本文在简要介绍WDM驱动模型的基础上,详细阐述了D/A卡在Windows2000操作系统下的驱动程序的设计思想与实现方法。
6)  WDM drivers
WDM驱动程序
1.
The principle of USB s WDM drivers based on windows was discussed and a method of programing converter s drivers was presented.
论述了USB在windows平台下的WDM驱动程序原理,并提出了编写此转换器驱动程序的一种方法。
补充资料:Pro/E二次开发使用toolkit开发trigger的程序

使用toolkit开发trigger的程序时,往往需要能够连续通过trigger来触发dll中的函数.
我碰到的问题:
   1.配置trigger:
   Name: CimDll
   Event: Create PIV
   Time:  POST
   RequireNO
   DLL:Cim.dll
   Function:PDMTPIVCreatePostOperation
   
  2.源代码:
   int PDMDLLInit()
{
   PTCERROR pdm_status;
   FILE      *g_pfileLog;
   g_pfileLog =fopen("test.dat","w");
   setbuf(g_pfileLog,NULL);
   fprintf(g_pfileLog,"begin test\n");
   pdm_status = PDMTriggerRegister("PDMTPIVCreatePostOperation", PDMTPIVCreatePostOperation);
   if (pdm_status != PDM_SUCCESS)
   {  
    printf("Failed to Register Trigger PIV Create Post.\n");
   }
    return (pdm_status);
}


int PDMTPIVCreatePostOperation(int argc, void **argv)
{
   fprintf(g_pfileLog,"test\n");
   .....
   fprintf(g_pfileLog,"end test\n");
   fclose(g_pfileLog);


}


   结果:以上代码存在的问题:如果我们在第一次checkin到C/S中后,删除test.dat文件,然后再进行checkin时,发现没有再生成test.dat,在函数PDMTPIVCreatePostOperation()中所进行的对文件的操作都无效.
   原因:我们使用trigger触发时,真正起作用的是函数:PDMTPIVCreatePostOperation(),而PDMDLLInit()只是在第一次checkin时起作用,所以在第一次调用PDMTPIVCreatePostOperation()后,我就fclose(g_pfileLog),所以出现了上面的情况.所以注意的是:不要把一些重要的东西放在函数PDMDLLInit()中.

说明:补充资料仅用于学习参考,请勿用于其它任何用途。
参考词条