diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2009-08-25 13:15:30 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2009-08-25 13:15:30 +0000 |
commit | 8aee4cb2f2207e93841664814bb1dbfc1347894c (patch) | |
tree | 71a3871b4fea2e31d3382ce45fd808fb02c33739 /Projects/Incomplete/AVRISP/Lib/V2ProtocolParams.h | |
parent | 73801c73a1684a88bff33aefe3c5aa89bc66c414 (diff) | |
download | lufa-8aee4cb2f2207e93841664814bb1dbfc1347894c.tar.gz lufa-8aee4cb2f2207e93841664814bb1dbfc1347894c.tar.bz2 lufa-8aee4cb2f2207e93841664814bb1dbfc1347894c.zip |
Add function documentation to the AVRISP project.
Diffstat (limited to 'Projects/Incomplete/AVRISP/Lib/V2ProtocolParams.h')
-rw-r--r-- | Projects/Incomplete/AVRISP/Lib/V2ProtocolParams.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Projects/Incomplete/AVRISP/Lib/V2ProtocolParams.h b/Projects/Incomplete/AVRISP/Lib/V2ProtocolParams.h index d0a467b00..9c0f044c2 100644 --- a/Projects/Incomplete/AVRISP/Lib/V2ProtocolParams.h +++ b/Projects/Incomplete/AVRISP/Lib/V2ProtocolParams.h @@ -46,10 +46,10 @@ #include "V2ProtocolConstants.h"
/* Macros: */
- /* Parameter privellage mask to allow the host PC to read the parameter's value */
+ /** Parameter privellage mask to allow the host PC to read the parameter's value */
#define PARAM_PRIV_READ (1 << 0)
- /* Parameter privellage mask to allow the host PC to change the parameter's value */
+ /** Parameter privellage mask to allow the host PC to change the parameter's value */
#define PARAM_PRIV_WRITE (1 << 1)
/* Type Defines: */
|