diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2009-08-25 14:30:42 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2009-08-25 14:30:42 +0000 |
commit | f547eb36080dacf275cd94fc3ddfb4c618c587fa (patch) | |
tree | 492d6749327209f720a40115528a7c38c745b1dd /Projects | |
parent | 17d06b849440eaab17b0b3778e4dae12182eb98c (diff) | |
download | lufa-f547eb36080dacf275cd94fc3ddfb4c618c587fa.tar.gz lufa-f547eb36080dacf275cd94fc3ddfb4c618c587fa.tar.bz2 lufa-f547eb36080dacf275cd94fc3ddfb4c618c587fa.zip |
Optimized Endpoint_Read_Word_* and Pipe_Read_Word_* macros to reduce compiled size.
Fixed Programmer's Notepad project file to reflect new location of AVRISP project.
Diffstat (limited to 'Projects')
-rw-r--r-- | Projects/AVRISP/AVRISP.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Projects/AVRISP/AVRISP.c b/Projects/AVRISP/AVRISP.c index d4ae910f6..ce16aebfa 100644 --- a/Projects/AVRISP/AVRISP.c +++ b/Projects/AVRISP/AVRISP.c @@ -84,7 +84,7 @@ void SetupHardware(void) ADC_StartReading(VTARGET_ADC_CHANNEL | ADC_RIGHT_ADJUSTED | ADC_REFERENCE_AVCC);
#endif
- /* Millisecond timer initialization for timeout checking */
+ /* Millisecond timer initialization for timeouts and delays */
OCR0A = ((F_CPU / 64) / 1000);
TCCR0A = (1 << WGM01);
TCCR0B = ((1 << CS01) | (1 << CS00));
|