@@ -103,10 +103,12 @@ const PNP_DRIVERS: &[&str] = &[
103
103
// Not using the one here, because it doesn't show up when the card isn't plugged in
104
104
// Genesys Logic Framework SD Expansion Card USB\VID_32AC&PID_0009&REV_0003 4.5.10.201
105
105
106
- // Both present in system drivers
107
106
// MediaTek, Inc. RZ616 Wi-Fi 6E 160MHz PCI\VEN_14C3&DEV_0616&SUBSYS_E61614C3&REV_00 3.3.0.908
108
107
// Mediatek Inc. RZ616 Bluetooth(R) Adapter USB\VID_0E8D&PID_E616&REV_0100&MI_00 1.1037.0.395
109
-
108
+ "RZ616 Bluetooth(R) Adapter" ,
109
+ // MediaTek, Inc. RZ717 WiFi 7 160MHz PCI\VEN_14C3&DEV_0717&SUBSYS_071714C3&REV_00 5.4.0.1920
110
+ // Mediatek Inc. RZ717 Bluetooth(R) Adapter USB\VID_0E8D&PID_0717&REV_0100&MI_00 1.1037.0.433
111
+ "RZ717 Bluetooth(R) Adapter" ,
110
112
// For both of these WMI shows 31.0.24018.2001 instead of 23.40.18.02. But it's actually the same version
111
113
// 31.0.22024.17002 instead of 23.20.24.17
112
114
// Advanced Micro Devices, Inc. AMD Radeon(TM) 780M PCI\VEN_1002&DEV_15BF&SUBSYS_0005F111&REV_C1 31.0.24018.2001
@@ -115,6 +117,8 @@ const PNP_DRIVERS: &[&str] = &[
115
117
"AMD Radeon(TM) RX 7700S" ,
116
118
// Framework Framework NE160QDM-NZ6 MONITOR\BOE0BC9 1.0.0.0
117
119
"Framework NE160QDM-NZ6" ,
120
+ // Advanced Micro Devices, Inc AMD DRTM Boot Driver ACPI\VEN_DRTM&DEV_0001 1.0.18.4
121
+ "AMD DRTM Boot Driver" ,
118
122
] ;
119
123
120
124
const PRODUCTS : & [ & str ] = & [
@@ -258,8 +262,11 @@ pub fn print_drivers() {
258
262
259
263
// Mediatek PCI LE Extensible Wireless LAN Card Driver mtkwlex 3.3.0.0908 C:\Windows\system32\drivers\mtkwl6ex.sys
260
264
( "mtkwlex" , Some ( "RZ616 WiFi Driver" ) ) ,
265
+ // Mediatek PCI LE Extensible Wireless LAN Card Driver mtkwecx 5.4.0.1920 C:\Windows\system32\DriverStore\FileRepository\mtkwecx.inf_amd64_b64df836c89617f7\mtkwecx.sys
266
+ ( "mtkwecx" , Some ( "RZ717 WiFi Driver" ) ) ,
267
+ // RZ616 and RZ717
261
268
// MTK BT Filter Driver MTKBTFilterx64 1.1037.0.395 TK C:\Windows\system32\drivers\mtkbtfilterx.sys
262
- ( "MTKBTFilterx64" , Some ( "RZ616 Bluetooth Driver" ) ) ,
269
+ // ("MTKBTFilterx64", Some("RZ616/RZ717 Bluetooth Driver")),
263
270
] ) ;
264
271
265
272
let results: Vec < HashMap < String , Variant > > = wmi_con
0 commit comments