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).
This commit is contained in:
parent
a77c3edc37
commit
bbf9d14bf9
2 changed files with 3 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue