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  *  V2Protocol parameter handler, to process V2 Protocol device parameters. 
  36 #define  INCLUDE_FROM_V2PROTOCOL_PARAMS_C 
  37 #include "V2ProtocolParams.h" 
  39 /* Non-Volatile Parameter Values for EEPROM storage */ 
  40 uint8_t EEMEM EEPROM_Rest_Polarity 
= 0x00; 
  42 /* Volatile Parameter Values for RAM storage */ 
  43 static ParameterItem_t ParameterTable
[] =  
  45                 { .ParamID          
= PARAM_BUILD_NUMBER_LOW
, 
  46                   .ParamValue       
= (LUFA_VERSION_INTEGER 
>> 8), 
  47                   .ParamPrivileges 
= PARAM_PRIV_READ                    
}, 
  49                 { .ParamID          
= PARAM_BUILD_NUMBER_HIGH
, 
  50                   .ParamValue       
= (LUFA_VERSION_INTEGER 
& 0xFF), 
  51                   .ParamPrivileges 
= PARAM_PRIV_READ                    
}, 
  53                 { .ParamID          
= PARAM_HW_VER
, 
  55                   .ParamPrivileges 
= PARAM_PRIV_READ                    
}, 
  57                 { .ParamID          
= PARAM_SW_MAJOR
, 
  59                   .ParamPrivileges 
= PARAM_PRIV_READ                    
}, 
  61                 { .ParamID          
= PARAM_SW_MINOR
, 
  63                   .ParamPrivileges 
= PARAM_PRIV_READ                    
}, 
  65                 { .ParamID          
= PARAM_VTARGET
, 
  67                   .ParamPrivileges 
= PARAM_PRIV_READ                    
}, 
  69                 { .ParamID          
= PARAM_SCK_DURATION
, 
  70                   .ParamValue       
= (TOTAL_PROGRAMMING_SPEEDS 
- 1), 
  71                   .ParamPrivileges 
= PARAM_PRIV_READ 
| PARAM_PRIV_WRITE 
}, 
  73                 { .ParamID          
= PARAM_RESET_POLARITY
, 
  75                   .ParamPrivileges 
= PARAM_PRIV_WRITE                   
}, 
  77                 { .ParamID          
= PARAM_STATUS_TGT_CONN
, 
  79                   .ParamPrivileges 
= PARAM_PRIV_READ                    
}, 
  81                 { .ParamID          
= PARAM_DISCHARGEDELAY
, 
  83                   .ParamPrivileges 
= PARAM_PRIV_WRITE                   
}, 
  87 /** Loads saved non-volatile parameter values from the EEPROM into the parameter table, as needed. */ 
  88 void V2Params_LoadNonVolatileParamValues(void) 
  90         /* Target RESET line polarity is a non-volatile value, retrieve current parameter value from EEPROM - 
  91          *   NB: Cannot call V2Protocol_SetParameterValue() here, as that will cause another EEPROM write! 
  93         V2Params_GetParamFromTable(PARAM_RESET_POLARITY
)->ParamValue 
= eeprom_read_byte(&EEPROM_Rest_Polarity
); 
  96 /** Updates any parameter values that are sourced from hardware rather than explicitly set by the host, such as 
  97  *  VTARGET levels from the ADC on supported AVR models. 
  99 void V2Params_UpdateParamValues(void) 
 102         /* Update VTARGET parameter with the latest ADC conversion of VTARGET on supported AVR models */ 
 103         V2Params_GetParamFromTable(PARAM_VTARGET
)->ParamValue 
= ((5 * 10 * ADC_GetResult()) / 1024); 
 107 /** Retrieves the host PC read/write privileges for a given parameter in the parameter table. This should 
 108  *  be called before calls to \ref V2Params_GetParameterValue() or \ref V2Params_SetParameterValue() when 
 109  *  getting or setting parameter values in response to requests from the host. 
 111  *  \param[in] ParamID  Parameter ID whose privileges are to be retrieved from the table 
 113  *  \return Privileges for the requested parameter, as a mask of PARAM_PRIV_* masks 
 115 uint8_t V2Params_GetParameterPrivileges(uint8_t ParamID
) 
 117         ParameterItem_t
* ParamInfo 
= V2Params_GetParamFromTable(ParamID
); 
 119         if (ParamInfo 
== NULL
) 
 122         return ParamInfo
->ParamPrivileges
; 
 125 /** Retrieves the current value for a given parameter in the parameter table. 
 127  *  \param[in] ParamID  Parameter ID whose value is to be retrieved from the table 
 129  *  \return Current value of the parameter in the table, or 0 if not found 
 131 uint8_t V2Params_GetParameterValue(uint8_t ParamID
) 
 133         ParameterItem_t
* ParamInfo 
= V2Params_GetParamFromTable(ParamID
); 
 135         if ((ParamInfo 
== NULL
) || !(ParamInfo
->ParamPrivileges 
& PARAM_PRIV_READ
)) 
 138         return ParamInfo
->ParamValue
; 
 141 /** Sets the value for a given parameter in the parameter table. 
 143  *  \param[in] ParamID  Parameter ID whose value is to be set in the table 
 144  *  \param[in] Value  New value to set the parameter to 
 146  *  \return Pointer to the associated parameter information from the parameter table if found, NULL otherwise 
 148 void V2Params_SetParameterValue(uint8_t ParamID
, uint8_t Value
) 
 150         ParameterItem_t
* ParamInfo 
= V2Params_GetParamFromTable(ParamID
); 
 152         if ((ParamInfo 
== NULL
) || !(ParamInfo
->ParamPrivileges 
& PARAM_PRIV_WRITE
)) 
 155         ParamInfo
->ParamValue 
= Value
; 
 157         /* The target RESET line polarity is a non-volatile parameter, save to EEPROM when changed */ 
 158         if (ParamID 
== PARAM_RESET_POLARITY
) 
 159           eeprom_write_byte(&EEPROM_Rest_Polarity
, Value
);   
 162 /** Retrieves a parameter entry (including ID, value and privileges) from the parameter table that matches the given 
 165  *  \param[in] ParamID  Parameter ID to find in the table 
 167  *  \return Pointer to the associated parameter information from the parameter table if found, NULL otherwise 
 169 static ParameterItem_t
* V2Params_GetParamFromTable(uint8_t ParamID
) 
 171         /* Find the parameter in the parameter table if present */ 
 172         for (uint8_t TableIndex 
= 0; TableIndex 
< (sizeof(ParameterTable
) / sizeof(ParameterTable
[0])); TableIndex
++) 
 174                 if (ParamID 
== ParameterTable
[TableIndex
].ParamID
) 
 175                   return &ParameterTable
[TableIndex
];