diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2010-11-22 05:24:33 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2010-11-22 05:24:33 +0000 |
commit | c43605612d3cc18e159bc8e97c3838153ed6a258 (patch) | |
tree | ccf66ce5ac24090dcf737d33faa32c8750e1a5a3 /Projects/AVRISP-MKII/Lib/ISP/ISPTarget.h | |
parent | b87d0b45a2d613c2ecfd79447ccd3b8ceaf0bddb (diff) | |
download | lufa-c43605612d3cc18e159bc8e97c3838153ed6a258.tar.gz lufa-c43605612d3cc18e159bc8e97c3838153ed6a258.tar.bz2 lufa-c43605612d3cc18e159bc8e97c3838153ed6a258.zip |
Lower bulk endpoint polling rate in the descriptors to the lowest possible value to give maximum throughput.
Diffstat (limited to 'Projects/AVRISP-MKII/Lib/ISP/ISPTarget.h')
-rw-r--r-- | Projects/AVRISP-MKII/Lib/ISP/ISPTarget.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Projects/AVRISP-MKII/Lib/ISP/ISPTarget.h b/Projects/AVRISP-MKII/Lib/ISP/ISPTarget.h index ba47fdde9..b360a097f 100644 --- a/Projects/AVRISP-MKII/Lib/ISP/ISPTarget.h +++ b/Projects/AVRISP-MKII/Lib/ISP/ISPTarget.h @@ -62,7 +62,7 @@ /** Macro to convert an ISP frequency to a number of timer clock cycles for the software SPI driver. */ #define TIMER_COMP(freq) (((F_CPU / 8) / 2 / freq) - 1) - /** ISP rescue clock speed, for clocking targets with incorrectly set fuses. */ + /** ISP rescue clock speed in Hz, for clocking targets with incorrectly set fuses. */ #define ISP_RESCUE_CLOCK_SPEED 4000000 /* External Variables: */ |