+FT232R
+```
+FT232R userspace GPIO control tool
+(c) Peter Henn 2017, License: GPLv3
+Usage: ./ft232rgpio [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:
+ ./ft232rgpio --gpio=1 --out 1
+ ./ft232rgpio --gpio=0 --out 0 --gpio=1 --in
+
+Notes:
+ Changing the so called CBUS GPIO lines of the FT232R chip
+ requires prior a correct programming of the embedded EEPROM
+ of this chip. Ft232rgpio is tested only for gpio outputs
+ and altering only one GPIO line!
+
+All arguments are executed from left to right, you can add
+delays using --sleep v option. e.g.
+ ./ft232rgpio --gpio=0 --out 0 --sleep 1000 --gpio=0 --out 1
+```
+
+