Skip to content

Instantly share code, notes, and snippets.

@hadleyrich
Created July 10, 2014 20:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hadleyrich/1533e15aa33d10587c1a to your computer and use it in GitHub Desktop.
Save hadleyrich/1533e15aa33d10587c1a to your computer and use it in GitHub Desktop.
hads@bromine:~$ grep -A 10 ADC_REFSEL_enum /usr/local/share/avr8-gnu-toolchain-linux_x86_64/avr/include/avr/iox64d4.h
typedef enum ADC_REFSEL_enum
{
ADC_REFSEL_INT1V_gc = (0x00<<4), /* Internal 1V */
ADC_REFSEL_VCC_gc = (0x01<<4), /* Internal VCC / 1.6 */
ADC_REFSEL_AREFA_gc = (0x02<<4), /* External reference on PORT A */
ADC_REFSEL_AREFB_gc = (0x03<<4), /* External reference on PORT B */
ADC_REFSEL_VCCDIV2_gc = (0x04<<4), /* Internal VCC / 2 */
} ADC_REFSEL_t;
/* Event channel input selection */
typedef enum ADC_EVSEL_enum
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment