USB2.0 100M以太网卡 SR9900 Windows11系统驱动程序,使得SR9900,SR9900A系列芯片可以在windows最新系统Win11下可以使用!
2022-04-19 18:01:25 29KB windows SR9900驱动
1
电液伺服系统驱动的2自由度机械臂的鲁棒H∞位置控制
2022-04-15 16:05:04 9.17MB 研究论文
1
苹果操作系统Broadcom bcm43xx 系列网卡驱动,解决黑苹果难题......
2022-04-04 20:04:05 2KB Broadcom 苹果系统驱动 网卡驱动
1
Linux 系统下Broadcom 802.11n 网络适配器 的驱动源代码
2022-03-29 01:11:51 1.08MB Broadcom802.11n Linux 驱动源代码
1
NUM 1000系列数控系统驱动统维修手册PDF,NUM 1000系列数控系统驱动统维修手册
2022-03-28 17:05:51 2.16MB 技术案例
1
这个驱动程序是单文件版本,方便在WinPE的配置文件中进行部署。 使用条件:WinPE底层为Win10,Win11不保证正常使用;WinPE需支持MSI。
2022-01-31 13:02:03 27.89MB apfs 驱动程序 windows
1
linux 添加字符设备驱动程序及测试程序,linux下采用模块方法,添加一个新的设备驱动程序。要求添加字符设备的驱动。另附一个应用程序,测试添加的驱动程序. int main(void) { int fd; char buf[MAX_SIZE]; char get[MAX_SIZE]; char devName[20], dir[50] = "/dev/"; system("ls /dev/"); printf("Please input the device's name you wanna to use :"); gets(devName); strcat(dir, devName); fd = open(dir, O_RDWR | O_NONBLOCK); if (fd != -1) { read(fd, buf, sizeof(buf)); printf("The device was inited with a string : %s\n", buf); /* 测试写 */ printf("Please input a string :\n"); gets(get); write(fd, get, sizeof(get)); /* 测试读 */ read(fd, buf, sizeof(buf)); system("dmesg"); printf("\nThe string in the device now is : %s\n", buf); close(fd); return 0; } else { printf("Device open failed\n"); return -1; } }
看《Windows内核编程》,说是基于sfilter源代码修改的,也没说在哪个版本的驱动中,于是试了很多驱动,终于找到了,在WinDDK 6001.18001中,我把它压缩后上传。有需要的尽情下载吧。
2021-12-30 09:40:41 175KB 驱动开发 文件系统驱动 sfilter
1
  64位Windows XP/2003没有自带UDF 2.5文件系统的驱动程序,所以,64位Windows XP/2003不能播放蓝光光盘。   在一个德文站上找到了这个东西,测试OK!
2021-12-26 19:54:31 2.27MB XP64 蓝光ISO 2003 64bit
1
自动安装打印机驱动,检测有没有安装,有安装直接关闭,没安装才跑安装,识别win10和WIN7以下的系统的32位和64位系统的驱动识别
1