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 | |
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')
-rw-r--r-- | Projects/AVRISP-MKII/Lib/ISP/ISPTarget.h | 2 | ||||
-rw-r--r-- | Projects/AVRISP-MKII/Lib/XPROG/XPROGTarget.h | 2 |
2 files changed, 2 insertions, 2 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: */ diff --git a/Projects/AVRISP-MKII/Lib/XPROG/XPROGTarget.h b/Projects/AVRISP-MKII/Lib/XPROG/XPROGTarget.h index 8a8f39722..5037181aa 100644 --- a/Projects/AVRISP-MKII/Lib/XPROG/XPROGTarget.h +++ b/Projects/AVRISP-MKII/Lib/XPROG/XPROGTarget.h @@ -55,7 +55,7 @@ #endif #endif - /** Serial carrier TPI/PDI speed when hardware TPI/PDI mode is used. */ + /** Serial carrier TPI/PDI speed in Hz, when hardware TPI/PDI mode is used. */ #define XPROG_HARDWARE_SPEED 250000 /** Total number of bits in a single USART frame. */ |