@@ -0,0 +1,3 @@
+ftdi reprogramme eeprom
+
+vendor_id=0x0403
+product_id=0x6001
+filename="backup.bin"
@@ -0,0 +1,10 @@
+remote_wakeup=false
+max_power=90
+manufacturer="FTDI" # Manufacturer
+product="FT232R USB UART" # Product
+serial="01GP510" # Serial
+filename="eeprom.bin"
+cha_type=UART
+cha_vcp=true
+#!/bin/bash
+sudo apt-get update
+sudo apt-get install doxygen cmake libusb-1.0-0-dev libconfuse-dev -y
+tar xvfJ libftdi1-1.5.tar.xz
+cd libftdi1-1.5
+if [ ! -d build ];then mkdir build;fi
+cd build
+cmake -DCMAKE_INSTALL_PREFIX="/usr" ../
+make
+sudo make install