diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2012-03-20 20:44:01 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2012-03-20 20:44:01 +0000 |
commit | bbf9d14bf90424bf8246bda2938d7c026a682cf2 (patch) | |
tree | d25bfc3d2bb4518f75057aa3c6618c504e582219 /Projects | |
parent | a77c3edc37938521850e451b962f2f4ea7859945 (diff) | |
download | lufa-bbf9d14bf90424bf8246bda2938d7c026a682cf2.tar.gz lufa-bbf9d14bf90424bf8246bda2938d7c026a682cf2.tar.bz2 lufa-bbf9d14bf90424bf8246bda2938d7c026a682cf2.zip |
Fixed AVRISP-MKII programmer project failing to compile for the U4 chips when VTARGET_ADC_CHANNEL is defined to an invalid channel and NO_VTARGET_DETECT is defined (thanks to Steven Morehouse).
Diffstat (limited to 'Projects')
-rw-r--r-- | Projects/AVRISP-MKII/Lib/V2Protocol.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Projects/AVRISP-MKII/Lib/V2Protocol.c b/Projects/AVRISP-MKII/Lib/V2Protocol.c index fa3d6a342..780c48af4 100644 --- a/Projects/AVRISP-MKII/Lib/V2Protocol.c +++ b/Projects/AVRISP-MKII/Lib/V2Protocol.c @@ -53,7 +53,7 @@ ISR(WDT_vect, ISR_BLOCK) /** Initializes the hardware and software associated with the V2 protocol command handling. */ void V2Protocol_Init(void) { - #if defined(ADC) + #if defined(ADC) && !defined(NO_VTARGET_DETECT) /* Initialize the ADC converter for VTARGET level detection on supported AVR models */ ADC_Init(ADC_FREE_RUNNING | ADC_PRESCALE_128); ADC_SetupChannel(VTARGET_ADC_CHANNEL); |