Using the FV1Dev on Ubuntu and FV1Dev: Difference between pages

From PedalPCB Wiki
(Difference between pages)
Jump to navigation Jump to search
(Created page with "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''' <code> sudo apt-get update </code> Step 2: '''Install libusb''' <code> sudo apt-get install libusb-1.0 </code> Step 3: '''Install SRecord''' <code> sudo apt-get install srecord </code> Step 4: '''Download FV1Dev Bundle for Ubuntu''' http://wiki.pedalpc...")
 
 
Line 1: Line 1:
This method has been tested on Ubuntu 18.04 LTS.  Other versions may work, but have not been verified.
[[Using the FV1Dev on Microsoft Windows]]


== Installation ==
[[Using the FV1Dev on Apple macOS]]


Open a Terminal window and enter the following:
[[Using the FV1Dev on Ubuntu]]
 
Step 1: '''Update package information'''
 
<code>
sudo apt-get update
</code>
 
Step 2: '''Install libusb'''
 
<code>
sudo apt-get install libusb-1.0
</code>
 
Step 3: '''Install SRecord'''
 
<code>
sudo apt-get install srecord
</code>
 
Step 4: '''Download FV1Dev Bundle for Ubuntu'''
 
[[http://wiki.pedalpcb.com/files/FV1Dev-Ubuntu.zip Download FV1Dev Flash Tool]]
 
== Usage Notes ==
 
=== Read EEPROM data to .bin file ===
<code>
./ch341eeprom -s 24c32 -r <filename.bin>
</code>
 
=== Write .bin file to EEPROM ===
<code>
./ch341eeprom -s 24c32 -w <filename.bin>
</code>
 
=== Convert BIN to HEX ===
<code>
srec_cat <filename.bin> -binary -o <filename.hex> -intel
</code>
 
=== Convert HEX to BIN ===
<code>
srec_cat <filename.hex> -intel -o <filename.bin> -binary
</code>

Latest revision as of 20:34, 6 January 2023