aboutsummaryrefslogtreecommitdiffstats
path: root/Projects/AVRISP-MKII/Lib/ISP
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2012-01-23 20:28:34 +0000
committerDean Camera <dean@fourwalledcubicle.com>2012-01-23 20:28:34 +0000
commitdd312cead486c5abb1c3e8efb949fc433ecadff9 (patch)
tree8a9c273690ab3b566fa4f294545fc8e144d9ac87 /Projects/AVRISP-MKII/Lib/ISP
parentbc3db793e9867567bc881942845c7d84c2b09e37 (diff)
downloadlufa-dd312cead486c5abb1c3e8efb949fc433ecadff9.tar.gz
lufa-dd312cead486c5abb1c3e8efb949fc433ecadff9.tar.bz2
lufa-dd312cead486c5abb1c3e8efb949fc433ecadff9.zip
Make all AVRISP-MKII programmer parameters readable, since there's no real good reason to restrict parameter reads. Fix misspelt target reset polarity EEPROM variable.
Diffstat (limited to 'Projects/AVRISP-MKII/Lib/ISP')
-rw-r--r--Projects/AVRISP-MKII/Lib/ISP/ISPProtocol.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/Projects/AVRISP-MKII/Lib/ISP/ISPProtocol.c b/Projects/AVRISP-MKII/Lib/ISP/ISPProtocol.c
index 7368125f6..f51eeaeb2 100644
--- a/Projects/AVRISP-MKII/Lib/ISP/ISPProtocol.c
+++ b/Projects/AVRISP-MKII/Lib/ISP/ISPProtocol.c
@@ -515,7 +515,9 @@ void ISPProtocol_SPIMulti(void)
}
}
-/** Blocking delay for a given number of milliseconds.
+/** Blocking delay for a given number of milliseconds. This provides a simple wrapper around
+ * the avr-libc provided delay function, so that the delay function can be called with a
+ * constant value (to prevent run-time floating point operations being required).
*
* \param[in] DelayMS Number of milliseconds to delay for
*/