2017-03-29 00:20:36 +02:00
|
|
|
/* Copyright 2015 Jack Humbert
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2019-12-08 02:11:29 +01:00
|
|
|
#pragma once
|
2015-08-16 23:52:03 +02:00
|
|
|
|
|
|
|
#include <stdint.h>
|
2019-12-08 02:11:29 +01:00
|
|
|
#include "quantum.h"
|
2015-08-16 23:52:03 +02:00
|
|
|
|
2019-09-03 20:29:23 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
2019-08-30 20:19:03 +02:00
|
|
|
void analogReference(uint8_t mode);
|
2015-08-16 23:52:03 +02:00
|
|
|
int16_t analogRead(uint8_t pin);
|
2019-12-08 02:11:29 +01:00
|
|
|
|
|
|
|
int16_t analogReadPin(pin_t pin);
|
|
|
|
uint8_t pinToMux(pin_t pin);
|
|
|
|
|
2015-08-16 23:52:03 +02:00
|
|
|
int16_t adc_read(uint8_t mux);
|
2019-09-03 20:29:23 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
2015-08-16 23:52:03 +02:00
|
|
|
|
2019-12-08 02:11:29 +01:00
|
|
|
#define ADC_REF_EXTERNAL 0 // AREF, Internal Vref turned off
|
|
|
|
#define ADC_REF_POWER _BV(REFS0) // AVCC with external capacitor on AREF pin
|
|
|
|
#define ADC_REF_INTERNAL (_BV(REFS1) | _BV(REFS0)) // Internal 2.56V Voltage Reference with external capacitor on AREF pin (1.1V for 328P)
|
2015-08-16 23:52:03 +02:00
|
|
|
|
|
|
|
// These prescaler values are for high speed mode, ADHSM = 1
|
2019-12-08 02:11:29 +01:00
|
|
|
#if F_CPU == 16000000L || F_CPU == 12000000L
|
|
|
|
# define ADC_PRESCALER (_BV(ADPS2) | _BV(ADPS1)) // /64
|
2015-08-16 23:52:03 +02:00
|
|
|
#elif F_CPU == 8000000L
|
2019-12-08 02:11:29 +01:00
|
|
|
# define ADC_PRESCALER (_BV(ADPS2) | _BV(ADPS0)) // /32
|
2015-08-16 23:52:03 +02:00
|
|
|
#elif F_CPU == 4000000L
|
2019-12-08 02:11:29 +01:00
|
|
|
# define ADC_PRESCALER (_BV(ADPS2)) // /16
|
2015-08-16 23:52:03 +02:00
|
|
|
#elif F_CPU == 2000000L
|
2019-12-08 02:11:29 +01:00
|
|
|
# define ADC_PRESCALER (_BV(ADPS1) | _BV(ADPS0)) // /8
|
2015-08-16 23:52:03 +02:00
|
|
|
#elif F_CPU == 1000000L
|
2019-12-08 02:11:29 +01:00
|
|
|
# define ADC_PRESCALER _BV(ADPS1) // /4
|
2015-08-16 23:52:03 +02:00
|
|
|
#else
|
2019-12-08 02:11:29 +01:00
|
|
|
# define ADC_PRESCALER _BV(ADPS0) // /2
|
2015-08-16 23:52:03 +02:00
|
|
|
#endif
|