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.
@ -73,8 +73,8 @@ 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
use the external crystal:
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
Afterwards, you can compile and flash to the device:

View File

@ -5,7 +5,7 @@
* \file usbledfader.h
* \brief Global definitions and datatypes, used by the firmware and the commandline-client. Also contains the main doxygen-documentation.
* \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.
*/
@ -19,7 +19,7 @@
* it to display the online-status of my internet-connection, the
* recording-status of my videorecorder, and warnings if the available
* disc-space is low. You can imagine an endless number of applications for
* this.
* this.
*
* The LEDs are controlled with pulse width modulation (PWM). That way, they
* are not only on or off, it is possible to control the brightness. Included
@ -81,7 +81,7 @@
* use the external crystal:
*
* \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
*
* Afterwards, you can compile and flash to the device: