TL866 Minipro EEPROM Programmer Ubuntu Linux
https://gitlab.com/DavidGriffith/minipro/
Usage
Example for AT28C64B.
- minipro -h
- man minipro
- Read eeprom to stdout and show as binary
- minipro -p "AT28C64B" -r- | xxd -b -c 1 | more
- Write data to eeprom:
- minipro -p "AT28C64B" -w binarytest.bin
- Don't fail with wrong file size: (-s)
- minipro -p "AT28C64B" -s -w binarytest.bin
EEPROM Types
- AT28C64B
- AT28C16: Using "AT28C16@DIP24" does not seem to work. Use "CAT28C16A" instead.
Reference: https://www.reddit.com/r/AskElectronics/comments/dtaq77/trouble_with_minipro_tl866_programmer_and_at28c16/
Installation
-
sudo apt-get install build-essential pkg-config git libusb-1.0-0-dev fakeroot debhelper dpkg-dev
-
cd minipro
-
make ? -
sudo make install -
sudo usermod -a -G plugdev? -
fakeroot dpkg-buildpackage -b -us -uc
-
sudo dpkg -i ../minipro_0.4-1_amd64.deb