+/** Updates any parameter values that are sourced from hardware rather than explicitly set by the host, such as\r
+ * VTARGET levels from the ADC on supported AVR models.\r
+ */\r
+void V2Params_UpdateParamValues(void)\r
+{\r
+ #if defined(ADC)\r
+ /* Update VTARGET parameter with the latest ADC conversion of VTARGET on supported AVR models */\r
+ V2Params_GetParamFromTable(PARAM_VTARGET)->ParamValue = ((5 * 10 * ADC_GetResult()) / 1024);\r
+ #endif\r
+}\r
+\r
+/** Retrieves the host PC read/write privileges for a given parameter in the parameter table. This should\r