+PL2303HXA/CP2103 userspace GPIO control tool
+(c) Andrew 'Necromant' Andrianov 2014, License: GPLv3
+Usage: ./cp2103gpio [action1] [action2] ...
+Options are:
+ --product=blah - Use device with this 'product' string
+ --serial=blah - Use device with this 'serial' string
+ --manuf=blah - Use device with this 'manufacturer' string
+ -g/--gpio n - select GPIO, n=0, 1
+ -i/--in - configure GPIO as input
+ -o/--out v - configure GPIO as output with value v
+ -r/--read v - Read current GPIO value
+
+ -s/--sleep v - Delay for v ms
+
+Examples:
+ ./cp2103gpio --gpio=1 --out 1
+ ./cp2103gpio --gpio=0 --out 0 --gpio=1 --in
+
+All arguments are executed from left to right, you can add
+delays using --sleep v option. e.g.
+ ./cp2103gpio --gpio=0 --out 0 --sleep 1000 --gpio=0 --out 1
+```
+
+PL2303
+```
+PL2303HXA/CP2103 userspace GPIO control tool