123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245 |
- #LyX 1.6.7 created this file. For more info see http://www.lyx.org/
- \lyxformat 345
- \begin_document
- \begin_header
- \textclass article
- \use_default_options false
- \language english
- \inputencoding auto
- \font_roman default
- \font_sans default
- \font_typewriter default
- \font_default_family default
- \font_sc false
- \font_osf false
- \font_sf_scale 100
- \font_tt_scale 100
- \graphics default
- \paperfontsize default
- \use_hyperref false
- \papersize default
- \use_geometry false
- \use_amsmath 1
- \use_esint 1
- \cite_engine basic
- \use_bibtopic false
- \paperorientation portrait
- \secnumdepth 3
- \tocdepth 3
- \paragraph_separation indent
- \defskip medskip
- \quotes_language english
- \papercolumns 1
- \papersides 1
- \paperpagestyle default
- \tracking_changes false
- \output_changes false
- \author ""
- \author ""
- \end_header
- \begin_body
- \begin_layout Title
- Toprammer - TOPxxxx OpenSource suite
- \end_layout
- \begin_layout Author
- Copyright (c) 2009-2011 Michael Buesch <m@bues.ch>
- \end_layout
- \begin_layout Section
- Dependencies
- \end_layout
- \begin_layout Itemize
- Python 2.5, Python 2.6 or Python 2.7 is required
- \end_layout
- \begin_layout LyX-Code
- http://python.org/
- \end_layout
- \begin_layout Itemize
- python-usb module is required:
- \end_layout
- \begin_layout LyX-Code
- http://sourceforge.net/apps/mediawiki/pyusb/index.php?title=Main_Page
- \end_layout
- \begin_layout Itemize
- python-pkg-resources module is required 'pkg_resources' is part of the Python
- 'setuptools' package.
- \end_layout
- \begin_layout LyX-Code
- http://pypi.python.org/pypi/setuptools
- \end_layout
- \begin_layout Itemize
- PyQT4 is required for the graphical user interface (optional):
- \end_layout
- \begin_layout LyX-Code
- http://www.riverbankcomputing.co.uk/software/pyqt/intro
- \end_layout
- \begin_layout Section
- Supported chips
- \end_layout
- \begin_layout Standard
- Just execute the following command to get a list of supported chips:
- \end_layout
- \begin_layout LyX-Code
- toprammer --list
- \end_layout
- \begin_layout Standard
- For a more verbose list, also pass the -V parameter with a verbosity level
- number:
- \end_layout
- \begin_layout LyX-Code
- toprammer --list -V99
- \end_layout
- \begin_layout Section
- Installation
- \end_layout
- \begin_layout Standard
- Just execute
- \end_layout
- \begin_layout LyX-Code
- python ./setup.py install
- \end_layout
- \begin_layout Standard
- as root inside of the toprammer distribution package's root directory.
- Note that
- \begin_inset Quotes eld
- \end_inset
- setuptools
- \begin_inset Quotes erd
- \end_inset
- have to be installed on your system.
- See dependencies.
- \end_layout
- \begin_layout Section
- Graphical user interface tool usage
- \end_layout
- \begin_layout Standard
- The toprammer GUI tool is called
- \begin_inset Quotes eld
- \end_inset
- toprammer-gui
- \begin_inset Quotes erd
- \end_inset
- .
- To start it just run:
- \end_layout
- \begin_layout LyX-Code
- toprammer-gui
- \end_layout
- \begin_layout Standard
- Note that, depending on your system config, you might need to run toprammer-gui
- as root to allow USB hardware access.
- If you get
- \begin_inset Quotes eld
- \end_inset
- Operation not permitted" errors, try to re-run toprammer-gui as root.
- \end_layout
- \begin_layout Section
- Commandline tool usage
- \end_layout
- \begin_layout Standard
- Toprammer needs the identification string of the chip that is inserted into
- the ZIF socket.
- Additionally it needs an action to be performed on the chip.
- So a call to toprammer might look like this:
- \end_layout
- \begin_layout LyX-Code
- toprammer --chip-id atmega32dip40 --read-prog flash.img
- \end_layout
- \begin_layout Standard
- That command selects an Atmel AtMega32 DIP40 chip and reads its flash contents
- into the flash.img file.
- \end_layout
- \begin_layout Standard
- For a list of supported chips, see the
- \end_layout
- \begin_layout LyX-Code
- topgrammer --list
- \end_layout
- \begin_layout Standard
- command.
- It will print a list of supported chip-IDs.
- \end_layout
- \begin_layout Section
- ZIF socket layout
- \end_layout
- \begin_layout Standard
- The ZIF socket layout generator "toprammer-layout" will try to generate
- a chip-insert layout with the given parameters and print it as ASCII-art
- to the console.
- \end_layout
- \begin_layout Standard
- For example, if you have a DIP28 packaged chip, that needs VCC on pin 7,
- VPP on pin 1 and GND on pin 8, you'd issue the following command:
- \end_layout
- \begin_layout LyX-Code
- toprammer-layout -d top2049 --package DIP28 --vcc 7 --vpp 1 --gnd 8
- \end_layout
- \begin_layout Standard
- This will show you a layout of how to insert the chip into the programmer.
- It will also show which pins of the ZIF are powered.
- This will hopefully match your request.
- :) Alternatively, it will yield an error message, if it was unable to find
- a layout that fits the contraints.
- Note that the --vcc, --vpp and --gnd pins specified on the commandline
- are with respect to the package (_not_ the ZIF socket).
- The whole purpose of the tool is to map the package and its pin layout
- to the ZIF socket, while obeying the programmer constraints.
- \end_layout
- \begin_layout Standard
- Alternatively you can specify one of the supported chip-IDs to toprammer-layout:
- \end_layout
- \begin_layout LyX-Code
- toprammer-layout -d top2049 --package atmega8dip28
- \end_layout
- \begin_layout Standard
- This will show you the layout of the AtMega8 DIP28.
- \end_layout
- \end_body
- \end_document
|