GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
MINIPRO(1) FreeBSD General Commands Manual MINIPRO(1)

minipro - A free and open TL866XX programmer.

minipro is an Open Source tool intended to become a complete cross-platform replacement for the proprietary utility from Autoelectric. Currently it supports more than 13000 of target devices - including AVRs, PICs as well as a huge number of other microcontrollers and various memory chips.

List all supported devices.

List devices like this.

Force a programmer version when listing devices.
Possible values: TL866A TL866II.

Query supported programmers.

Query the programmer version currently connected.

Show device information.

FIXME Just read the chip ID and do nothing else (like reading the whole chip contents). This is for use in scripts where you have for example several similar chips with different IDs and want to check if the currently inserted chip is one in your list of allowed ones. Also useful to detect if a chip is inserted at all when using the -y option.

Read from the device and write the contents to this file.

Write to the device using this file.

Verify memory in the device against this file.

Specify memory type (optional).
Possible values: code, data, config, user, calibration.
The calibration byte(s) are Atmel AVR family specific and are read-only. User memory type is implemented as user row or encryption table on some devices like Atmel AT89S8253. Use -c user to read or write this page.

Specify file format. Possible values: ihex, srec.

Blank check.
Optionally, you can use -c to specify a memory type.

Auto-detect SPI 25xx devices.
Possible values: 8, 16.

Check for bad pin contact.

Do NOT erase device.

Just erase device.

Specify various options. For multiple options, use -o multiple times. For example: -o vpp=12 -o vcc=5.5 or long options: -vpp=12 --vcc=5.5
Valid options are:
Set the programming voltage.
For TL866A/CS: 10, 12.5, 13.5, 14, 15.5, 16, 17, 18, 21.
For TL866II+: 9, 9.5, 10, 11, 11.5, 12, 12.5, 13, 13.5, 14, 14.5, 15.5, 16, 16.5, 17, 19.

Set the VDD write voltage (3.3, 4, 4.5, 5, 5.5, 6.5).

For setting the VCC verify voltage (3.3, 4, 4.5, 5, 5.5, 6.5).
For setting the VCC logic test voltage (1.8, 2.5, 3.3, 5).

Programming pulse delay (0-65535 usec).

Disable protection before programming.

Enable protection after programming.

Do NOT verify after write.

Specify device (use quotes).

Logic IC test. Erroneous states are reported with a "-" (minus) sign next to the expected pin state.

Use ICSP. Not useful for TL866CS.

Use ICSP (without enabling Vcc). Not useful for TL866CS.

Do NOT error on file size mismatch (only a warning).

No warning message for file size mismatch (can't combine with -s).

Do NOT attempt to read ID (only valid in read mode).

Do NOT error on ID mismatch

Show version information

Start hardware check

Update firmware. See UPDATING FIRMWARE below.

Set custom infoic.xml file.

Set custom logicic.xml file.

Show brief help and quit.

If -c is omitted and -r is specified then the code, data (if applicable) and config (if applicable) will be written to filename.$ext, filename.eeprom.bin and filename.fuses.conf correspondingly. If -c is omitted and -w is specified, then -c code is assumed.
By default, when in write mode and -c config is specified, no erase is performed to preserve the already programmed data.
However, you can force an erase in this case with the -E option.

--fuses, --uid, --lock flags will read/write/verify/blank check fuses, user id or lock config section. User ID is Microchip PIC MPU family specific. For example: minipro -p atmega32 -b --fuses will check if fuse bits are in their default state (that is, blank state)

Use --pulse, --vpp, --vdd, --vcc or -o <option> to specify various programming options. These options are available only in write mode ( -w ) and only for some devices like UV erasable EPROMs and GAL/ATF PLDs.
Also you can specify --vcc or -o vcc with -T to specify the logic test voltage.
Use -d <device> to view if those options are supported.

Firmware update files can be obtained from the manufacturer's website: http://www.autoelectric.cn.
They can also be downloaded and extracted from the following repository: https://github.com/Kreeblah/XGecu_Software.
For the TL866A/CS, use the "update.dat" file.
For the TL866IOI+, use the "updateII.dat" file.

==== EDIT LINE ====

When writing chips, this is not necessary because the file format is automatically detected. There is no need to specify the exact Intex hex format (ihex8, ihex16, or ihex32) as the format is automatically detected. If this option is not used, then the file will be saved as a raw binary file.

When reading chips and the ihex format is chosen, if the data size is up to 64Kb the file will be saved in ihex8 format. Just plain hex records are used -- no segment/linear address records are inserted. If the data size exceeds 64Kb then the ihex32 format is used. The ihex16 format is not used when reading chips. The same strategy is used for the Motorola srecord format.

Update firmware (should be update.dat).

Show help and quit.

If -c is omitted and -r is specified then the code, data (if applicable) and config (if applicable) will be written to filename.$ext, filename.eeprom.bin and filename.fuses.conf correspondingly. If -c is omitted and -w is specified, then -c code is assumed.

Minipro supports reading and writing to standard input and output. To do this, use a dash (-) as a filename for the -w or -r options.

For example:

head -c 256k < /dev/urandom | srec_cat - -bin -o - -intel -Address_Length=4 -obs=16 | minipro -p w49f002u -w-

This is how the hex/srec parsers were tested for reading from stdin. 256kb of random binary data is generated then converted from binary to intel hex by the srec_cat utility. Finally the converted data is passed to our minipro which will read this data, convert it to binary by decoding the intel hex format from stdin and write it to the specified chip. Note the -r- which tells to read from stdin instead from a regular file. This is just a test command to test the ihex/srec parsers. Don't use this in real life (convert from binary to ihex then from ihex to binary).

You can also read a chip and write the data to the stdout like this:

minipro -p w49f002u -r- -f ihex.

You can then pass the output to another command line tool with | for other processing, etc.

Fuses can be read and written with the -c config option. Fuse data is exchanged in a text format. When writing fuses all fuses on your device must be assigned a value. To see what fuses are supported by your device use -r with -c config to get your current fuse values. This also shows you what the text format looks like.

Check whether a 74(LS/HC/...)04 hex NOT gate chip.

minipro was written by Valentin Dudouyt and is copyright 2014. Many others have contributed code and bug reports. Development is currently coordinated by David Griffith.

The Minipro TL866xx series of chip programmers is distributed by Autoelectric. Their website is http://www.autoelectric.cn.

The canonical repository for minipro is at Gitlab:
https://gitlab.com/DavidGriffith/minipro/
It is distributed under the GNU General Public License version 3 or (at your option) any later version.
https://www.gnu.org/licenses/gpl-3.0.en.html
This software is offered as-is with no warranty or liability. If you find a bug or would like minipro to do something it doesn't currently do, please visit the above Gitlab website and report your concerns.

17 September 2022 (v0.6)

Search for    or go to Top of page |  Section 1 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.