diff options
author | Jack Humbert <jack.humb@gmail.com> | 2015-08-21 23:14:48 -0400 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2015-08-21 23:14:48 -0400 |
commit | 476e29d1190ac45b810109512bbb50cc4769493b (patch) | |
tree | 1d493bae3b0ae91a6202918aa1bf53fb0da936fa /keyboard/preonic/analog.c | |
parent | 2d76b5c3d421c984f6b4b9da757383cc87e3f808 (diff) | |
parent | b191f8c60fbbaf1fb55d67edb86a6c33489b2ce3 (diff) |
Merge pull request #26 from jackhumbert/midi
Midi
Diffstat (limited to 'keyboard/preonic/analog.c')
-rw-r--r-- | keyboard/preonic/analog.c | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/keyboard/preonic/analog.c b/keyboard/preonic/analog.c new file mode 100644 index 0000000000..49b84ee0e8 --- /dev/null +++ b/keyboard/preonic/analog.c @@ -0,0 +1,53 @@ +// Simple analog to digitial conversion + +#include <avr/io.h> +#include <avr/pgmspace.h> +#include <stdint.h> +#include "analog.h" + + +static uint8_t aref = (1<<REFS0); // default to AREF = Vcc + + +void analogReference(uint8_t mode) +{ + aref = mode & 0xC0; +} + + +// Arduino compatible pin input +int16_t analogRead(uint8_t pin) +{ +#if defined(__AVR_ATmega32U4__) + static const uint8_t PROGMEM pin_to_mux[] = { + 0x00, 0x01, 0x04, 0x05, 0x06, 0x07, + 0x25, 0x24, 0x23, 0x22, 0x21, 0x20}; + if (pin >= 12) return 0; + return adc_read(pgm_read_byte(pin_to_mux + pin)); +#elif defined(__AVR_AT90USB646__) || defined(__AVR_AT90USB1286__) + if (pin >= 8) return 0; + return adc_read(pin); +#else + return 0; +#endif +} + +// Mux input +int16_t adc_read(uint8_t mux) +{ +#if defined(__AVR_AT90USB162__) + return 0; +#else + uint8_t low; + + ADCSRA = (1<<ADEN) | ADC_PRESCALER; // enable ADC + ADCSRB = (1<<ADHSM) | (mux & 0x20); // high speed mode + ADMUX = aref | (mux & 0x1F); // configure mux input + ADCSRA = (1<<ADEN) | ADC_PRESCALER | (1<<ADSC); // start the conversion + while (ADCSRA & (1<<ADSC)) ; // wait for result + low = ADCL; // must read LSB first + return (ADCH << 8) | low; // must read MSB only once! +#endif +} + + |