Using the FV1Dev on Ubuntu

From PedalPCB Wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

This method has been tested on Ubuntu 18.04 LTS. Other versions may work, but have not been verified.

Installation

Open a Terminal window and enter the following:

Step 1: Update package information

sudo apt-get update

Step 2: Install libusb

sudo apt-get install libusb-1.0

Step 3: Install SRecord

sudo apt-get install srecord

Step 4: Download FV1Dev Bundle for Ubuntu

[Download FV1Dev Flash Tool]

Usage Notes

Read EEPROM data to .bin file

./ch341eeprom -s 24c32 -r <filename.bin>

Write .bin file to EEPROM

./ch341eeprom -s 24c32 -w <filename.bin>

Convert BIN to HEX

srec_cat <filename.bin> -binary -o <filename.hex> -intel

Convert HEX to BIN

srec_cat <filename.hex> -intel -o <filename.bin> -binary