Browse Source

first commit

wareck 2 years ago
commit
c290a5f3e0
7 changed files with 26 additions and 0 deletions
  1. 3 0
      README.md
  2. BIN
      backup.bin
  3. BIN
      eeprom.bin
  4. 3 0
      ftdi_eeprom.conf
  5. 10 0
      gekko.conf
  6. 10 0
      install.sh
  7. BIN
      libftdi1-1.5.tar.xz

+ 3 - 0
README.md

@@ -0,0 +1,3 @@
+ftdi reprogramme eeprom
+
+

BIN
backup.bin


BIN
eeprom.bin


+ 3 - 0
ftdi_eeprom.conf

@@ -0,0 +1,3 @@
+vendor_id=0x0403
+product_id=0x6001
+filename="backup.bin"

+ 10 - 0
gekko.conf

@@ -0,0 +1,10 @@
+remote_wakeup=false
+vendor_id=0x0403
+product_id=0x6001
+max_power=90
+manufacturer="FTDI"                # Manufacturer
+product="FT232R USB UART"          # Product
+serial="01GP510"                   # Serial
+filename="eeprom.bin"
+cha_type=UART
+cha_vcp=true

+ 10 - 0
install.sh

@@ -0,0 +1,10 @@
+#!/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

BIN
libftdi1-1.5.tar.xz