@@ -103,16 +103,18 @@ const PNP_DRIVERS: &[&str] = &[
103103 // Not using the one here, because it doesn't show up when the card isn't plugged in
104104 // Genesys Logic Framework SD Expansion Card USB\VID_32AC&PID_0009&REV_0003 4.5.10.201
105105
106+ // Both present in system drivers
106107 // MediaTek, Inc. RZ616 Wi-Fi 6E 160MHz PCI\VEN_14C3&DEV_0616&SUBSYS_E61614C3&REV_00 3.3.0.908
107- "RZ616 Wi-Fi 6E 160MHz" ,
108108 // Mediatek Inc. RZ616 Bluetooth(R) Adapter USB\VID_0E8D&PID_E616&REV_0100&MI_00 1.1037.0.395
109- "RZ616 Bluetooth(R) Adapter" ,
109+
110110 // For both of these WMI shows 31.0.24018.2001 instead of 23.40.18.02. But it's actually the same version
111111 // 31.0.22024.17002 instead of 23.20.24.17
112112 // Advanced Micro Devices, Inc. AMD Radeon(TM) 780M PCI\VEN_1002&DEV_15BF&SUBSYS_0005F111&REV_C1 31.0.24018.2001
113113 "AMD Radeon(TM) 780M" ,
114114 // Advanced Micro Devices, Inc. AMD Radeon(TM) RX 7700S PCI\VEN_1002&DEV_7480&SUBSYS_0007F111&REV_C1 31.0.24018.2001
115115 "AMD Radeon(TM) RX 7700S" ,
116+ // Framework Framework NE160QDM-NZ6 MONITOR\BOE0BC9 1.0.0.0
117+ "Framework NE160QDM-NZ6" ,
116118] ;
117119
118120const PRODUCTS : & [ & str ] = & [
@@ -255,9 +257,9 @@ pub fn print_drivers() {
255257 //"IntelPMT", // Intel(R) Platform Monitoring Technology Service
256258
257259 // Mediatek PCI LE Extensible Wireless LAN Card Driver mtkwlex 3.3.0.0908 C:\Windows\system32\drivers\mtkwl6ex.sys
258- // ("mtkwlex", Some("RZ616 WiFi Driver")),
260+ ( "mtkwlex" , Some ( "RZ616 WiFi Driver" ) ) ,
259261 // MTK BT Filter Driver MTKBTFilterx64 1.1037.0.395 TK C:\Windows\system32\drivers\mtkbtfilterx.sys
260- // ("MTKBTFilterx64", Some("RZ616 Bluetooth Driver")),
262+ ( "MTKBTFilterx64" , Some ( "RZ616 Bluetooth Driver" ) ) ,
261263 ] ) ;
262264
263265 let results: Vec < HashMap < String , Variant > > = wmi_con
0 commit comments