diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2010-01-27 13:45:08 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2010-01-27 13:45:08 +0000 |
commit | cec699ac591a679010e07431dfb17823a79856df (patch) | |
tree | f7fa9a70db6018a6068f14e7c248893d866bc95f /Projects/AVRISP-MKII | |
parent | a960e4b3b2ae72c6c3573fb690a1b9cde1642bc0 (diff) | |
download | lufa-cec699ac591a679010e07431dfb17823a79856df.tar.gz lufa-cec699ac591a679010e07431dfb17823a79856df.tar.bz2 lufa-cec699ac591a679010e07431dfb17823a79856df.zip |
Clean up Webserver project - add more Doxygen documentation for the new DHCP client functions and defines.
Diffstat (limited to 'Projects/AVRISP-MKII')
-rw-r--r-- | Projects/AVRISP-MKII/Lib/XPROG/TINYNVM.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Projects/AVRISP-MKII/Lib/XPROG/TINYNVM.c b/Projects/AVRISP-MKII/Lib/XPROG/TINYNVM.c index c650f0dd8..9dac31ca2 100644 --- a/Projects/AVRISP-MKII/Lib/XPROG/TINYNVM.c +++ b/Projects/AVRISP-MKII/Lib/XPROG/TINYNVM.c @@ -51,7 +51,7 @@ static void TINYNVM_SendPointerAddress(const uint16_t AbsoluteAddress) /** Sends a SIN command to the target with the specified I/O address, ready for the data byte to be written.
*
- * \param Address 6-bit I/O address to write to in the target's I/O memory space
+ * \param[in] Address 6-bit I/O address to write to in the target's I/O memory space
*/
static void TINYNVM_SendReadNVMRegister(uint8_t Address)
{
@@ -62,7 +62,7 @@ static void TINYNVM_SendReadNVMRegister(uint8_t Address) /** Sends a SOUT command to the target with the specified I/O address, ready for the data byte to be read.
*
- * \param Address 6-bit I/O address to read from in the target's I/O memory space
+ * \param[in] Address 6-bit I/O address to read from in the target's I/O memory space
*/
static void TINYNVM_SendWriteNVMRegister(uint8_t Address)
{
|