*\r
* \return Privileges for the requested parameter, as a mask of PARAM_PRIV_* masks\r
*/ \r
-uint8_t V2Params_GetParameterPrivileges(uint8_t ParamID)\r
+uint8_t V2Params_GetParameterPrivileges(const uint8_t ParamID)\r
{\r
ParameterItem_t* ParamInfo = V2Params_GetParamFromTable(ParamID);\r
\r
*\r
* \return Current value of the parameter in the table, or 0 if not found\r
*/ \r
-uint8_t V2Params_GetParameterValue(uint8_t ParamID)\r
+uint8_t V2Params_GetParameterValue(const uint8_t ParamID)\r
{\r
ParameterItem_t* ParamInfo = V2Params_GetParamFromTable(ParamID);\r
\r
*\r
* \return Pointer to the associated parameter information from the parameter table if found, NULL otherwise\r
*/\r
-void V2Params_SetParameterValue(uint8_t ParamID, uint8_t Value)\r
+void V2Params_SetParameterValue(const uint8_t ParamID, const uint8_t Value)\r
{\r
ParameterItem_t* ParamInfo = V2Params_GetParamFromTable(ParamID);\r
\r
*\r
* \return Pointer to the associated parameter information from the parameter table if found, NULL otherwise\r
*/\r
-static ParameterItem_t* V2Params_GetParamFromTable(uint8_t ParamID)\r
+static ParameterItem_t* V2Params_GetParamFromTable(const uint8_t ParamID)\r
{\r
/* Find the parameter in the parameter table if present */\r
for (uint8_t TableIndex = 0; TableIndex < (sizeof(ParameterTable) / sizeof(ParameterTable[0])); TableIndex++)\r