3      Copyright (C) Dean Camera, 2009. 
   5   dean [at] fourwalledcubicle [dot] com 
   6       www.fourwalledcubicle.com 
  10   Copyright 2009  Dean Camera (dean [at] fourwalledcubicle [dot] com) 
  12   Permission to use, copy, modify, and distribute this software 
  13   and its documentation for any purpose and without fee is hereby 
  14   granted, provided that the above copyright notice appear in all 
  15   copies and that both that the copyright notice and this 
  16   permission notice and warranty disclaimer appear in supporting 
  17   documentation, and that the name of the author not be used in 
  18   advertising or publicity pertaining to distribution of the 
  19   software without specific, written prior permission. 
  21   The author disclaim all warranties with regard to this 
  22   software, including all implied warranties of merchantability 
  23   and fitness.  In no event shall the author be liable for any 
  24   special, indirect or consequential damages or any damages 
  25   whatsoever resulting from loss of use, data or profits, whether 
  26   in an action of contract, negligence or other tortious action, 
  27   arising out of or in connection with the use or performance of 
  33  *  Header file for V2ProtocolParams.c. 
  36 #ifndef _V2_PROTOCOL_PARAMS_ 
  37 #define _V2_PROTOCOL_PARAMS_ 
  41                 #include <avr/eeprom.h> 
  43                 #include <LUFA/Version.h> 
  46                         #include <LUFA/Drivers/Peripheral/ADC.h> 
  49                 #include "V2Protocol.h" 
  50                 #include "V2ProtocolConstants.h" 
  51                 #include "ISPTarget.h" 
  54                 /** Parameter privilege mask to allow the host PC to read the parameter's value */ 
  55                 #define PARAM_PRIV_READ   (1 << 0) 
  57                 /** Parameter privilege mask to allow the host PC to change the parameter's value */ 
  58                 #define PARAM_PRIV_WRITE  (1 << 1) 
  61                 /** Type define for a parameter table entry indicating a PC readable or writable device parameter. */ 
  64                         const uint8_t ParamID
; /**< Parameter ID number to uniquely identify the parameter within the device */ 
  65                         uint8_t ParamValue
; /**< Current parameter's value within the device */ 
  66                         uint8_t ParamPrivileges
;  /**< Parameter privileges to allow the host to read or write the parameter's value */ 
  69         /* Function Prototypes: */ 
  70                 void    V2Params_LoadNonVolatileParamValues(void); 
  71                 void    V2Params_UpdateParamValues(void); 
  73                 uint8_t V2Params_GetParameterPrivileges(uint8_t ParamID
); 
  74                 uint8_t V2Params_GetParameterValue(uint8_t ParamID
); 
  75                 void    V2Params_SetParameterValue(uint8_t ParamID
, uint8_t Value
); 
  77                 #if defined(INCLUDE_FROM_V2PROTOCOL_PARAMS_C) 
  78                         static ParameterItem_t
* V2Params_GetParamFromTable(uint8_t ParamID
);