aboutsummaryrefslogtreecommitdiffstats
path: root/Projects/AVRISP-MKII/Lib/V2ProtocolParams.c
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2010-02-13 03:21:28 +0000
committerDean Camera <dean@fourwalledcubicle.com>2010-02-13 03:21:28 +0000
commitde0ccb3d0905390f70f6c326d31222069c775225 (patch)
treefa9aaab7450e9d104574b729cf41f1b4af40aac9 /Projects/AVRISP-MKII/Lib/V2ProtocolParams.c
parentc6f21fde628193c7957d84792215ecaa14d5beb7 (diff)
downloadlufa-de0ccb3d0905390f70f6c326d31222069c775225.tar.gz
lufa-de0ccb3d0905390f70f6c326d31222069c775225.tar.bz2
lufa-de0ccb3d0905390f70f6c326d31222069c775225.zip
Add NO_VTARGET_DETECT compile time option to the AVRISP-MKII clone project, to disable VTARGET detection on AVR models with an on-chip ADC.
Diffstat (limited to 'Projects/AVRISP-MKII/Lib/V2ProtocolParams.c')
-rw-r--r--Projects/AVRISP-MKII/Lib/V2ProtocolParams.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Projects/AVRISP-MKII/Lib/V2ProtocolParams.c b/Projects/AVRISP-MKII/Lib/V2ProtocolParams.c
index 00788515d..a4709f8f5 100644
--- a/Projects/AVRISP-MKII/Lib/V2ProtocolParams.c
+++ b/Projects/AVRISP-MKII/Lib/V2ProtocolParams.c
@@ -97,7 +97,7 @@ void V2Params_LoadNonVolatileParamValues(void)
*/
void V2Params_UpdateParamValues(void)
{
- #if defined(ADC)
+ #if (defined(ADC) && !defined(NO_VTARGET_DETECT))
/* Update VTARGET parameter with the latest ADC conversion of VTARGET on supported AVR models */
V2Params_GetParamFromTable(PARAM_VTARGET)->ParamValue = ((5 * 10 * ADC_GetResult()) / 1024);
#endif