Corrected wrong programmer parameter.

This commit is contained in:
Ronald Schaten 2006-10-01 16:28:01 +00:00
parent 9a5b35168d
commit 33028777f8
2 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
$Id: Readme.txt,v 1.1 2006/09/26 18:18:27 rschaten Exp $ $Id: Readme.txt,v 1.2 2006/10/01 16:28:01 rschaten Exp $
For full documentation and examples, take a look at htmldoc/index.html. For full documentation and examples, take a look at htmldoc/index.html.
@ -73,7 +73,7 @@ avrdude with a parallel connection to an stk200-compatible programmer.
If working with a brand-new controller, you may have to set the fuse-bits to If working with a brand-new controller, you may have to set the fuse-bits to
use the external crystal: use the external crystal:
avrdude -p atmega8 -P /dev/parport0 -c sp12 -U hfuse:w:0xC9:m \ avrdude -p atmega8 -P /dev/parport0 -c stk200 -U hfuse:w:0xC9:m \
-U lfuse:w:0x9F:m -U lfuse:w:0x9F:m
Afterwards, you can compile and flash to the device: Afterwards, you can compile and flash to the device:

View File

@ -5,7 +5,7 @@
* \file usbledfader.h * \file usbledfader.h
* \brief Global definitions and datatypes, used by the firmware and the commandline-client. Also contains the main doxygen-documentation. * \brief Global definitions and datatypes, used by the firmware and the commandline-client. Also contains the main doxygen-documentation.
* \author Ronald Schaten & Thomas Stegemann * \author Ronald Schaten & Thomas Stegemann
* \version $Id: usbledfader.h,v 1.1 2006/09/26 18:18:27 rschaten Exp $ * \version $Id: usbledfader.h,v 1.2 2006/10/01 16:28:01 rschaten Exp $
* *
* License: See documentation. * License: See documentation.
*/ */
@ -81,7 +81,7 @@
* use the external crystal: * use the external crystal:
* *
* \code * \code
* avrdude -p atmega8 -P /dev/parport0 -c sp12 -U hfuse:w:0xC9:m -U lfuse:w:0x9F:m * avrdude -p atmega8 -P /dev/parport0 -c stk200 -U hfuse:w:0xC9:m -U lfuse:w:0x9F:m
* \endcode * \endcode
* *
* Afterwards, you can compile and flash to the device: * Afterwards, you can compile and flash to the device: