We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e380181 + 2faccd2 commit e13fc17Copy full SHA for e13fc17
labgrid/resource/udev.py
@@ -301,7 +301,24 @@ class RKUSBLoader(USBResource):
301
def filter_match(self, device):
302
match = (device.properties.get('ID_VENDOR_ID'), device.properties.get('ID_MODEL_ID'))
303
304
- if match not in [("2207", "110a")]:
+ if match not in [("2207", "110a"), # RV1108
305
+ ("2207", "110b"), # RV1126
306
+ ("2207", "300a"), # RK3066
307
+ ("2207", "301a"), # RK3036
308
+ ("2207", "310b"), # RK3188
309
+ ("2207", "310c"), # RK3128
310
+ ("2207", "320a"), # RK3288
311
+ ("2207", "320b"), # RK322X
312
+ ("2207", "320c"), # RK3328
313
+ ("2207", "330a"), # RK3368
314
+ ("2207", "330c"), # RK3399
315
+ ("2207", "330d"), # PX30
316
+ ("2207", "330e"), # RK3308
317
+ ("2207", "350a"), # RK3568
318
+ ("2207", "350b"), # RK3588
319
+ ("2207", "350c"), # RK3528
320
+ ("2207", "350e"), # RK3576
321
+ ]:
322
return False
323
324
return super().filter_match(device)
0 commit comments