diff options
| author | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2011-01-16 16:13:22 +0000 |
|---|---|---|
| committer | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2011-01-16 16:13:22 +0000 |
| commit | 7bbfac48d27aa89d356ef9aee31f2e54de397840 (patch) | |
| tree | b7aa3d7301faae4fd138e0b1d95657f41425ea40 /Projects | |
| parent | c9021e1d999462f77369f37bdfc7872b0d799652 (diff) | |
Added new ADC_GET_CHANNEL_MASK() convenience macro to the ADC driver.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@1634 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'Projects')
| -rw-r--r-- | Projects/AVRISP-MKII/Lib/V2Protocol.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/Projects/AVRISP-MKII/Lib/V2Protocol.h b/Projects/AVRISP-MKII/Lib/V2Protocol.h index 4f5950b1..ed42de96 100644 --- a/Projects/AVRISP-MKII/Lib/V2Protocol.h +++ b/Projects/AVRISP-MKII/Lib/V2Protocol.h @@ -62,11 +62,6 @@ #endif /* Macros: */ - #if !defined(__DOXYGEN__) - #define _GETADCMUXMASK2(x, y) x ## y - #define _GETADCMUXMASK(x, y) _GETADCMUXMASK2(x, y) - #endif - /** Programmer ID string, returned to the host during the CMD_SIGN_ON command processing. */ #define PROGRAMMER_ID "AVRISP_MK2" @@ -77,7 +72,7 @@ #define TimeoutTicksRemaining GPIOR1 /** MUX mask for the VTARGET ADC channel number. */ - #define VTARGET_ADC_CHANNEL_MASK _GETADCMUXMASK(ADC_CHANNEL, VTARGET_ADC_CHANNEL) + #define VTARGET_ADC_CHANNEL_MASK ADC_GET_CHANNEL_MASK(VTARGET_ADC_CHANNEL) /* External Variables: */ extern uint32_t CurrentAddress; |
