From 93ae71bcbcb21c8bfc825daf87b12642296cf085 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mario=20H=C3=BCttel?= Date: Sun, 20 Jun 2021 12:37:04 +0200 Subject: [PATCH] Add programming files for FTDI EEPROM --- README.MD | 6 ++++++ ftdi_eeprom/.gitignore | 1 + ftdi_eeprom/ft4232.conf | 43 +++++++++++++++++++++++++++++++++++++++++ 3 files changed, 50 insertions(+) create mode 100644 README.MD create mode 100644 ftdi_eeprom/.gitignore create mode 100644 ftdi_eeprom/ft4232.conf diff --git a/README.MD b/README.MD new file mode 100644 index 0000000..9b7a618 --- /dev/null +++ b/README.MD @@ -0,0 +1,6 @@ +# FTDI EEPROM Programming (Linux) + +- Install ftdi_eeprom +- Go to the ftdi_eeprom subfolder +- Execute ``ftdi_eeprom --flash-eeprom ft4232.conf`` +- Finished diff --git a/ftdi_eeprom/.gitignore b/ftdi_eeprom/.gitignore new file mode 100644 index 0000000..a8a0dce --- /dev/null +++ b/ftdi_eeprom/.gitignore @@ -0,0 +1 @@ +*.bin diff --git a/ftdi_eeprom/ft4232.conf b/ftdi_eeprom/ft4232.conf new file mode 100644 index 0000000..a9906a6 --- /dev/null +++ b/ftdi_eeprom/ft4232.conf @@ -0,0 +1,43 @@ +# Filename of the EE file to be generated. Leave empty to skip file writing. +filename=ft4232.bin + +# Vendor ID. FT4232H factory default 0x0403. +vendor_id=0x0403 + +# Product ID. FT4232H factory default 0x6011. +product_id=0x6011 + +# EEPROM Type: 0x46 for 93xx46, 0x56 for 93xx56 and 0x66 for 93xx66. +eeprom_type=0x46 + +manufacturer="shimatta.de" +product="Shimatta JTAG Adapter" +serial="000001" + +# Use the serial number string. +use_serial=true + +# Max. power consumption: value * 2 mA. Use 0 if self_powered = true. +max_power=50 + +# Turn this off for bus powered. +self_powered=false + +# Turn this on for remote wakeup feature. +remote_wakeup=false + +# Set port operate mode. +cha_type=UART +chb_type=UART + +# Use virtual com-port driver. +cha_vcp=true +chb_vcp=false +chc_vcp=true +chd_vcp=true + +# Enable RS485 mode. +cha_rs485=false +chb_rs485=false +chc_rs485=true +chd_rs485=true