diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2009-12-14 07:06:30 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2009-12-14 07:06:30 +0000 |
commit | bb3879331211a19c3adc3927cac870cc7e36b775 (patch) | |
tree | 2e304d592fdadfc8d8f68b1ef5dec5b2be122e2d /Projects/AVRISP/Lib/PDIProtocol.c | |
parent | f3e4fbe5126fc8edf40a0b0ace2d3437ee988d2e (diff) | |
download | lufa-bb3879331211a19c3adc3927cac870cc7e36b775.tar.gz lufa-bb3879331211a19c3adc3927cac870cc7e36b775.tar.bz2 lufa-bb3879331211a19c3adc3927cac870cc7e36b775.zip |
Add Doxygen documentation to the completed portions of the PDI programming protocol in the AVRISP project.
Diffstat (limited to 'Projects/AVRISP/Lib/PDIProtocol.c')
-rw-r--r-- | Projects/AVRISP/Lib/PDIProtocol.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Projects/AVRISP/Lib/PDIProtocol.c b/Projects/AVRISP/Lib/PDIProtocol.c index af6fbeaf9..24ce26cb6 100644 --- a/Projects/AVRISP/Lib/PDIProtocol.c +++ b/Projects/AVRISP/Lib/PDIProtocol.c @@ -37,9 +37,12 @@ #include "PDIProtocol.h"
#if defined(ENABLE_PDI_PROTOCOL) || defined(__DOXYGEN__)
-#warning PDI Programming Protocol support is incomplete and not currently suitable for use.
+#warning PDI Programming Protocol support is incomplete and not currently suitable for general use.
+/** Base absolute address for the target's NVM controller */
uint32_t XPROG_Param_NVMBase;
+
+/** Size in bytes of the target's EEPROM page */
uint32_t XPROG_Param_EEPageSize;
/** Handler for the CMD_XPROG_SETMODE command, which sets the programmer-to-target protocol used for PDI
|