Added compile time error to the AVRISP-MKII project when built for the U4 chips, as the default VTARGET detection ADC channel does not exist on these chips (thanks to Marco).

This commit is contained in:
Dean Camera 2010-08-22 01:42:09 +00:00
parent e966219834
commit 81998ce297
3 changed files with 8 additions and 0 deletions

View file

@ -53,6 +53,10 @@
#define ENABLE_XPROG_PROTOCOL
#endif
#endif
#if defined(USB_SERIES_4_AVR) && ((VTARGET_ADC_CHANNEL == 2) || (VTARGET_ADC_CHANNEL == 3))
#error The U4 AVR chips do not contain ADC channels 2 or 3. Please change VTARGET_ADC_CHANNEL or define NO_VTARGET_DETECT in the makefile.
#endif
/* Macros: */
#if !defined(__DOXYGEN__)