From f25cc0ab7b92e279d8220367abc9522cbb803843 Mon Sep 17 00:00:00 2001
From: Pawit Pornkitprasan
Date: Wed, 23 Jan 2019 19:29:38 +0700
Subject: [PATCH] cp210x: Add support for "Windows Update" PID
There are certain PID CP210x devices can be set to to allow Windows to
automatically download drivers from Windows Update. This patch adds
support for those PIDs.
Reference: https://www.silabs.com/community/interface/knowledge-base.entry.html/2016/12/30/downloading_cp210xd-ek07
---
usbserial/src/main/java/com/felhr/deviceids/CP210xIds.java | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/usbserial/src/main/java/com/felhr/deviceids/CP210xIds.java b/usbserial/src/main/java/com/felhr/deviceids/CP210xIds.java
index 30c9dae..7b03932 100644
--- a/usbserial/src/main/java/com/felhr/deviceids/CP210xIds.java
+++ b/usbserial/src/main/java/com/felhr/deviceids/CP210xIds.java
@@ -85,9 +85,12 @@ public class CP210xIds
new ConcreteDevice(0x10C4, 0x88A5),
new ConcreteDevice(0x10C4, 0xEA60),
new ConcreteDevice(0x10C4, 0xEA61),
+ new ConcreteDevice(0x10C4, 0xEA63),
new ConcreteDevice(0x10C4, 0xEA70),
- new ConcreteDevice(0x10C4, 0xEA80),
new ConcreteDevice(0x10C4, 0xEA71),
+ new ConcreteDevice(0x10C4, 0xEA7A),
+ new ConcreteDevice(0x10C4, 0xEA7B),
+ new ConcreteDevice(0x10C4, 0xEA80),
new ConcreteDevice(0x10C4, 0xF001),
new ConcreteDevice(0x10C4, 0xF002),
new ConcreteDevice(0x10C4, 0xF003),