diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2010-08-09 01:55:02 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2010-08-09 01:55:02 +0000 |
commit | 9274610a483bb5ed1ea7ef752e4a6b2b1601e7a8 (patch) | |
tree | a65fb7e5b62e5f96b65bfd253b7e82e153e6efb5 /Projects/AVRISP-MKII | |
parent | 5f3a1b262970f7423bc83a2f6eabcd1d4d7c65af (diff) | |
download | lufa-9274610a483bb5ed1ea7ef752e4a6b2b1601e7a8.tar.gz lufa-9274610a483bb5ed1ea7ef752e4a6b2b1601e7a8.tar.bz2 lufa-9274610a483bb5ed1ea7ef752e4a6b2b1601e7a8.zip |
Commit for the 100807 release.
Diffstat (limited to 'Projects/AVRISP-MKII')
-rw-r--r-- | Projects/AVRISP-MKII/Lib/ISP/ISPProtocol.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Projects/AVRISP-MKII/Lib/ISP/ISPProtocol.c b/Projects/AVRISP-MKII/Lib/ISP/ISPProtocol.c index e8423f467..105a701cd 100644 --- a/Projects/AVRISP-MKII/Lib/ISP/ISPProtocol.c +++ b/Projects/AVRISP-MKII/Lib/ISP/ISPProtocol.c @@ -64,7 +64,7 @@ void ISPProtocol_EnterISPMode(void) CurrentAddress = 0; - /* Set up the synchronous USART to generate the recovery clock on XCK pin */ + /* Set up the synchronous USART to generate the .5MHz recovery clock on XCK pin */ UBRR1 = (F_CPU / 500000UL); UCSR1B = (1 << TXEN1); UCSR1C = (1 << UMSEL10) | (1 << UPM11) | (1 << USBS1) | (1 << UCSZ11) | (1 << UCSZ10) | (1 << UCPOL1); |