|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701 |
- /* Teensy 4.x, 3.x, LC ADC library
- * https://github.com/pedvide/ADC
- * Copyright (c) 2020 Pedro Villanueva
- *
- * Permission is hereby granted, free of charge, to any person obtaining
- * a copy of this software and associated documentation files (the
- * "Software"), to deal in the Software without restriction, including
- * without limitation the rights to use, copy, modify, merge, publish,
- * distribute, sublicense, and/or sell copies of the Software, and to
- * permit persons to whom the Software is furnished to do so, subject to
- * the following conditions:
- *
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
- * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
- * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
- * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
- * SOFTWARE.
- */
-
- /*! \page settings ADC Settings
- Board-dependent settings.
- See the namespace ADC_settings for all functions.
- */
-
- #ifndef ADC_SETTINGS_H
- #define ADC_SETTINGS_H
-
- #include <Arduino.h>
-
- //! Board-dependent settings
- namespace ADC_settings
- {
-
- // Easier names for the boards
- #if defined(__MK20DX256__) // Teensy 3.1/3.2
- #define ADC_TEENSY_3_1
- #elif defined(__MK20DX128__) // Teensy 3.0
- #define ADC_TEENSY_3_0
- #elif defined(__MKL26Z64__) // Teensy LC
- #define ADC_TEENSY_LC
- #elif defined(__MK64FX512__) // Teensy 3.5
- #define ADC_TEENSY_3_5
- #elif defined(__MK66FX1M0__) // Teensy 3.6
- #define ADC_TEENSY_3_6
- #elif defined(__IMXRT1062__) // Teensy 4.0/4.1
- // They only differ in the number of exposed pins
- #define ADC_TEENSY_4
- #ifdef ARDUINO_TEENSY41
- #define ADC_TEENSY_4_1
- #else
- #define ADC_TEENSY_4_0
- #endif
- #else
- #error "Board not supported!"
- #endif
-
- // Teensy 3.1 has 2 ADCs, Teensy 3.0 and LC only 1.
- #if defined(ADC_TEENSY_3_1) // Teensy 3.1
- #define ADC_NUM_ADCS (2)
- #define ADC_DUAL_ADCS
- #elif defined(ADC_TEENSY_3_0) // Teensy 3.0
- #define ADC_NUM_ADCS (1)
- #define ADC_SINGLE_ADC
- #elif defined(ADC_TEENSY_LC) // Teensy LC
- #define ADC_NUM_ADCS (1)
- #define ADC_SINGLE_ADC
- #elif defined(ADC_TEENSY_3_5) // Teensy 3.5
- #define ADC_NUM_ADCS (2)
- #define ADC_DUAL_ADCS
- #elif defined(ADC_TEENSY_3_6) // Teensy 3.6
- #define ADC_NUM_ADCS (2)
- #define ADC_DUAL_ADCS
- #elif defined(ADC_TEENSY_4) // Teensy 4, 4.1
- #define ADC_NUM_ADCS (2)
- #define ADC_DUAL_ADCS
- #endif
-
- // Use DMA?
- #if defined(ADC_TEENSY_3_1) // Teensy 3.1
- #define ADC_USE_DMA
- #elif defined(ADC_TEENSY_3_0) // Teensy 3.0
- #define ADC_USE_DMA
- #elif defined(ADC_TEENSY_LC) // Teensy LC
- #define ADC_USE_DMA
- #elif defined(ADC_TEENSY_3_5) // Teensy 3.5
- #define ADC_USE_DMA
- #elif defined(ADC_TEENSY_3_6) // Teensy 3.6
- #define ADC_USE_DMA
- #elif defined(ADC_TEENSY_4) // Teensy 4, 4.1
- #define ADC_USE_DMA
- #endif
-
- // Use PGA?
- #if defined(ADC_TEENSY_3_1) // Teensy 3.1
- #define ADC_USE_PGA
- #elif defined(ADC_TEENSY_3_0) // Teensy 3.0
- #elif defined(ADC_TEENSY_LC) // Teensy LC
- #elif defined(ADC_TEENSY_3_5) // Teensy 3.5
- #elif defined(ADC_TEENSY_3_6) // Teensy 3.6
- #elif defined(ADC_TEENSY_4) // Teensy 4, 4.1
- #endif
-
- // Use PDB?
- #if defined(ADC_TEENSY_3_1) // Teensy 3.1
- #define ADC_USE_PDB
- #elif defined(ADC_TEENSY_3_0) // Teensy 3.0
- #define ADC_USE_PDB
- #elif defined(ADC_TEENSY_LC) // Teensy LC
- #elif defined(ADC_TEENSY_3_5) // Teensy 3.5
- #define ADC_USE_PDB
- #elif defined(ADC_TEENSY_3_6) // Teensy 3.6
- #define ADC_USE_PDB
- #elif defined(ADC_TEENSY_4) // Teensy 4, 4.1
- #endif
-
- // Use Quad Timer
- #if defined(ADC_TEENSY_3_1) // Teensy 3.1
- #define ADC_USE_QUAD_TIMER // TODO: Not implemented
- #elif defined(ADC_TEENSY_3_0) // Teensy 3.0
- #define ADC_USE_QUAD_TIMER // TODO: Not implemented
- #elif defined(ADC_TEENSY_LC) // Teensy LC
- #elif defined(ADC_TEENSY_3_5) // Teensy 3.5
- #define ADC_USE_QUAD_TIMER // TODO: Not implemented
- #elif defined(ADC_TEENSY_3_6) // Teensy 3.6
- #define ADC_USE_QUAD_TIMER // TODO: Not implemented
- #elif defined(ADC_TEENSY_4) // Teensy 4, 4.1
- #define ADC_USE_QUAD_TIMER
- #endif
-
- // Has a timer?
- #if defined(ADC_USE_PDB) || defined(ADC_USE_QUAD_TIMER)
- #define ADC_USE_TIMER
- #endif
-
- // Has internal reference?
- #if defined(ADC_TEENSY_3_1) // Teensy 3.1
- #define ADC_USE_INTERNAL_VREF
- #elif defined(ADC_TEENSY_3_0) // Teensy 3.0
- #define ADC_USE_INTERNAL_VREF
- #elif defined(ADC_TEENSY_LC) // Teensy LC
- #elif defined(ADC_TEENSY_3_5) // Teensy 3.5
- #define ADC_USE_INTERNAL_VREF
- #elif defined(ADC_TEENSY_3_6) // Teensy 3.6
- #define ADC_USE_INTERNAL_VREF
- #elif defined(ADC_TEENSY_4) // Teensy 4, 4.1
- #endif
-
- //! \cond internal
- //! Select the voltage reference sources for ADC. This is an internal setting, do not use, @internal
- enum class ADC_REF_SOURCE : uint8_t
- {
- REF_DEFAULT = 0,
- REF_ALT = 1,
- REF_NONE = 2
- }; // internal, do not use
- //! \endcond
- #if defined(ADC_TEENSY_3_0) || defined(ADC_TEENSY_3_1) || defined(ADC_TEENSY_3_5) || defined(ADC_TEENSY_3_6)
- // default is the external, that is connected to the 3.3V supply.
- // To use the external simply connect AREF to a different voltage
- // alt is connected to the 1.2 V ref.
- //! Voltage reference for the ADC
- enum class ADC_REFERENCE : uint8_t
- {
- REF_3V3 = static_cast<uint8_t>(ADC_REF_SOURCE::REF_DEFAULT), /*!< 3.3 volts */
- REF_1V2 = static_cast<uint8_t>(ADC_REF_SOURCE::REF_ALT), /*!< 1.2 volts */
- REF_EXT = static_cast<uint8_t>(ADC_REF_SOURCE::REF_DEFAULT), /*!< External VREF */
- NONE = static_cast<uint8_t>(ADC_REF_SOURCE::REF_NONE) // internal, do not use
- };
- #elif defined(ADC_TEENSY_LC)
- // alt is the internal ref, 3.3 V
- // the default is AREF
- //! Voltage reference for the ADC
- enum class ADC_REFERENCE : uint8_t
- {
- REF_3V3 = static_cast<uint8_t>(ADC_REF_SOURCE::REF_ALT), /*!< 3.3 volts */
- REF_EXT = static_cast<uint8_t>(ADC_REF_SOURCE::REF_DEFAULT), /*!< External VREF */
- NONE = static_cast<uint8_t>(ADC_REF_SOURCE::REF_NONE) // internal, do not use
- };
- #elif defined(ADC_TEENSY_4)
- // default is the external, that is connected to the 3.3V supply.
- //! Voltage reference for the ADC
- enum class ADC_REFERENCE : uint8_t
- {
- REF_3V3 = static_cast<uint8_t>(ADC_REF_SOURCE::REF_DEFAULT), /*!< 3.3 volts */
- NONE = static_cast<uint8_t>(ADC_REF_SOURCE::REF_NONE) // internal, do not use
- };
- #endif
-
- // max number of pins, size of channel2sc1aADCx
- #if defined(ADC_TEENSY_3_1) // Teensy 3.1
- #define ADC_MAX_PIN (43)
- #elif defined(ADC_TEENSY_3_0) // Teensy 3.0
- #define ADC_MAX_PIN (43)
- #elif defined(ADC_TEENSY_LC) // Teensy LC
- #define ADC_MAX_PIN (43)
- #elif defined(ADC_TEENSY_3_5) // Teensy 3.5
- #define ADC_MAX_PIN (69)
- #elif defined(ADC_TEENSY_3_6) // Teensy 3.6
- #define ADC_MAX_PIN (67)
- #elif defined(ADC_TEENSY_4_0) // Teensy 4
- #define ADC_MAX_PIN (27)
- #elif defined(ADC_TEENSY_4_1) // Teensy 4
- #define ADC_MAX_PIN (41)
- #endif
-
- // number of differential pairs PER ADC!
- #if defined(ADC_TEENSY_3_1) // Teensy 3.1
- #define ADC_DIFF_PAIRS (2) // normal and with PGA
- #elif defined(ADC_TEENSY_3_0) // Teensy 3.0
- #define ADC_DIFF_PAIRS (2)
- #elif defined(ADC_TEENSY_LC) // Teensy LC
- #define ADC_DIFF_PAIRS (1)
- #elif defined(ADC_TEENSY_3_5) // Teensy 3.5
- #define ADC_DIFF_PAIRS (1)
- #elif defined(ADC_TEENSY_3_6) // Teensy 3.6
- #define ADC_DIFF_PAIRS (1)
- #elif defined(ADC_TEENSY_4) // Teensy 4, 4.1
- #define ADC_DIFF_PAIRS (0)
- #endif
-
- // Other things to measure with the ADC that don't use external pins
- // In my Teensy I read 1.22 V for the ADC_VREF_OUT (see VREF.h), 1.0V for ADC_BANDGAP (after PMC_REGSC |= PMC_REGSC_BGBE),
- // 3.3 V for ADC_VREFH and 0.0 V for ADC_VREFL.
- #if defined(ADC_TEENSY_LC)
- /*! Other ADC sources to measure, such as the temperature sensor.
- */
- enum class ADC_INTERNAL_SOURCE : uint8_t
- {
- TEMP_SENSOR = 38,
- /*!< Temperature sensor. */ // 0.719 V at 25ºC and slope of 1.715 mV/ºC for Teensy 3.x and 0.716 V, 1.62 mV/ºC for Teensy LC
- BANDGAP = 41,
- /*!< BANDGAP */ // Enable the Bandgap with PMC_REGSC |= PMC_REGSC_BGBE; (see VREF.h)
- VREFH = 42, /*!< High VREF */
- VREFL = 43, /*!< Low VREF. */
- };
- #elif defined(ADC_TEENSY_3_1) || defined(ADC_TEENSY_3_0)
- /*! Other ADC sources to measure, such as the temperature sensor.
- */
- enum class ADC_INTERNAL_SOURCE : uint8_t
- {
- TEMP_SENSOR = 38,
- /*!< Temperature sensor. */ // 0.719 V at 25ºC and slope of 1.715 mV/ºC for Teensy 3.x and 0.716 V, 1.62 mV/ºC for Teensy LC
- VREF_OUT = 39, /*!< 1.2 V reference */
- BANDGAP = 41,
- /*!< BANDGAP */ // Enable the Bandgap with PMC_REGSC |= PMC_REGSC_BGBE; (see VREF.h)
- VREFH = 42, /*!< High VREF */
- VREFL = 43, /*!< Low VREF. */
- };
- #elif defined(ADC_TEENSY_3_5) || defined(ADC_TEENSY_3_6)
- /*! Other ADC sources to measure, such as the temperature sensor.
- */
- enum class ADC_INTERNAL_SOURCE : uint8_t
- {
- TEMP_SENSOR = 24,
- /*!< Temperature sensor. */ // 0.719 V at 25ºC and slope of 1.715 mV/ºC for Teensy 3.x and 0.716 V, 1.62 mV/ºC for Teensy LC
- VREF_OUT = 28,
- /*!< 1.2 V reference */ // only on ADC1
- BANDGAP = 25,
- /*!< BANDGAP */ // Enable the Bandgap with PMC_REGSC |= PMC_REGSC_BGBE; (see VREF::start in VREF.h)
- VREFH = 26, /*!< High VREF */
- VREFL = 27, /*!< Low VREF. */
- };
- #elif defined(ADC_TEENSY_4)
- /*! Other ADC sources to measure, such as the temperature sensor.
- */
- enum class ADC_INTERNAL_SOURCE : uint8_t
- {
- VREFSH = 25, /*!< internal channel, for ADC self-test, hard connected to VRH internally */
- };
- #endif
-
- //! \cond internal
- //! Struct containing the registers controlling the ADC
- #if defined(ADC_TEENSY_4)
- typedef struct
- {
- volatile uint32_t HC0;
- volatile uint32_t HC1;
- volatile uint32_t HC2;
- volatile uint32_t HC3;
- volatile uint32_t HC4;
- volatile uint32_t HC5;
- volatile uint32_t HC6;
- volatile uint32_t HC7;
- volatile uint32_t HS;
- volatile uint32_t R0;
- volatile uint32_t R1;
- volatile uint32_t R2;
- volatile uint32_t R3;
- volatile uint32_t R4;
- volatile uint32_t R5;
- volatile uint32_t R6;
- volatile uint32_t R7;
- volatile uint32_t CFG;
- volatile uint32_t GC;
- volatile uint32_t GS;
- volatile uint32_t CV;
- volatile uint32_t OFS;
- volatile uint32_t CAL;
- } ADC_REGS_t;
- #define ADC0_START (*(ADC_REGS_t *)0x400C4000)
- #define ADC1_START (*(ADC_REGS_t *)0x400C8000)
- #else
- typedef struct
- {
- volatile uint32_t SC1A;
- volatile uint32_t SC1B;
- volatile uint32_t CFG1;
- volatile uint32_t CFG2;
- volatile uint32_t RA;
- volatile uint32_t RB;
- volatile uint32_t CV1;
- volatile uint32_t CV2;
- volatile uint32_t SC2;
- volatile uint32_t SC3;
- volatile uint32_t OFS;
- volatile uint32_t PG;
- volatile uint32_t MG;
- volatile uint32_t CLPD;
- volatile uint32_t CLPS;
- volatile uint32_t CLP4;
- volatile uint32_t CLP3;
- volatile uint32_t CLP2;
- volatile uint32_t CLP1;
- volatile uint32_t CLP0;
- volatile uint32_t PGA;
- volatile uint32_t CLMD;
- volatile uint32_t CLMS;
- volatile uint32_t CLM4;
- volatile uint32_t CLM3;
- volatile uint32_t CLM2;
- volatile uint32_t CLM1;
- volatile uint32_t CLM0;
- } ADC_REGS_t;
- #define ADC0_START (*(ADC_REGS_t *)0x4003B000)
- #define ADC1_START (*(ADC_REGS_t *)0x400BB000)
- #endif
- //! \endcond
-
- /* MK20DX256 Datasheet:
- The 16-bit accuracy specifications listed in Table 24 and Table 25 are achievable on the
- differential pins ADCx_DP0, ADCx_DM0
- All other ADC channels meet the 13-bit differential/12-bit single-ended accuracy
- specifications.
-
- The results in this data sheet were derived from a system which has < 8 Ohm analog source resistance. The RAS/CAS
- time constant should be kept to < 1ns.
-
- ADC clock should be 2 to 12 MHz for 16 bit mode
- ADC clock should be 1 to 18 MHz for 8-12 bit mode, and 1-24 MHz for Teensy 3.6 (NOT 3.5)
- To use the maximum ADC conversion clock frequency, the ADHSC bit must be set and the ADLPC bit must be clear
-
- The ADHSC bit is used to configure a higher clock input frequency. This will allow
- faster overall conversion times. To meet internal ADC timing requirements, the ADHSC
- bit adds additional ADCK cycles. Conversions with ADHSC = 1 take two more ADCK
- cycles. ADHSC should be used when the ADCLK exceeds the limit for ADHSC = 0.
-
- */
- // the alternate clock is connected to OSCERCLK (16 MHz).
- // datasheet says ADC clock should be 2 to 12 MHz for 16 bit mode
- // datasheet says ADC clock should be 1 to 18 MHz for 8-12 bit mode, and 1-24 MHz for Teensy 3.6 (NOT 3.5)
- // calibration works best when averages are 32 and speed is less than 4 MHz
- // ADC_CFG1_ADICLK: 0=bus, 1=bus/2, 2=(alternative clk) altclk, 3=(async. clk) adack
- // See below for an explanation of VERY_LOW_SPEED, LOW_SPEED, etc.
-
- #define ADC_MHz (1000000) // not so many zeros
- // Min freq for 8-12 bit mode is 1 MHz, 4 MHz for Teensy 4
- #if defined(ADC_TEENSY_4)
- #define ADC_MIN_FREQ (4 * ADC_MHz)
- #else
- #define ADC_MIN_FREQ (1 * ADC_MHz)
- #endif
- // Max freq for 8-12 bit mode is 18 MHz, 24 MHz for Teensy 3.6, and 40 for Teensy 4
- #if defined(ADC_TEENSY_3_6)
- #define ADC_MAX_FREQ (24 * ADC_MHz)
- #elif defined(ADC_TEENSY_4)
- #define ADC_MAX_FREQ (40 * ADC_MHz)
- #else
- #define ADC_MAX_FREQ (18 * ADC_MHz)
- #endif
-
- // Min and max for 16 bits. For Teensy 4 is the same as before (no 16 bit mode)
- #if defined(ADC_TEENSY_4)
- #define ADC_MIN_FREQ_16BITS ADC_MIN_FREQ
- #define ADC_MAX_FREQ_16BITS ADC_MAX_FREQ
- #else
- // Min freq for 16 bit mode is 2 MHz
- #define ADC_MIN_FREQ_16BITS (2 * ADC_MHz)
- // Max freq for 16 bit mode is 12 MHz
- #define ADC_MAX_FREQ_16BITS (12 * ADC_MHz)
- #endif
-
- // We can divide F_BUS by 1, 2, 4, 8, or 16:
- /*
- Divide by ADC_CFG1_ADIV ADC_CFG1_ADICLK TOTAL VALUE
- 1 0 0 0 0x00
- 2 1 0 1 0x20
- 4 2 0 2 0x40
- 8 3 0 3 0x60
- 16 3 1 4 0x61
- (Other combinations are possible)
- */
-
- // Redefine from kinetis.h to remove (uint32_t) casts that the preprocessor doesn't understand
- // so we can do arithmetic with them when defining ADC_CFG1_MED_SPEED
- #define ADC_LIB_CFG1_ADIV(n) (((n)&0x03) << 5)
- #define ADC_LIB_CFG1_ADICLK(n) (((n)&0x03) << 0)
-
- #if defined(ADC_TEENSY_4)
- #define ADC_F_BUS F_BUS_ACTUAL // (150*ADC_MHz)
- #else
- #define ADC_F_BUS F_BUS
- #endif
-
- //! \cond internal
- //! ADC_CFG1_VERY_LOW_SPEED is the lowest freq @internal
- constexpr uint32_t get_CFG_VERY_LOW_SPEED(uint32_t f_adc_clock)
- {
- if (f_adc_clock / 16 >= ADC_MIN_FREQ)
- {
- return (ADC_LIB_CFG1_ADIV(3) + ADC_LIB_CFG1_ADICLK(1));
- }
- else if (f_adc_clock / 8 >= ADC_MIN_FREQ)
- {
- return (ADC_LIB_CFG1_ADIV(3) + ADC_LIB_CFG1_ADICLK(0));
- }
- else if (f_adc_clock / 4 >= ADC_MIN_FREQ)
- {
- return (ADC_LIB_CFG1_ADIV(2) + ADC_LIB_CFG1_ADICLK(0));
- }
- else if (f_adc_clock / 2 >= ADC_MIN_FREQ)
- {
- return (ADC_LIB_CFG1_ADIV(1) + ADC_LIB_CFG1_ADICLK(0));
- }
- else
- {
- return (ADC_LIB_CFG1_ADIV(0) + ADC_LIB_CFG1_ADICLK(0));
- }
- }
-
- //! ADC_CFG1_LOW_SPEED is the lowest freq for 16 bits @internal
- constexpr uint32_t get_CFG_LOW_SPEED(uint32_t f_adc_clock)
- {
- if (f_adc_clock / 16 >= ADC_MIN_FREQ_16BITS)
- {
- return (ADC_LIB_CFG1_ADIV(3) + ADC_LIB_CFG1_ADICLK(1));
- }
- else if (f_adc_clock / 8 >= ADC_MIN_FREQ_16BITS)
- {
- return (ADC_LIB_CFG1_ADIV(3) + ADC_LIB_CFG1_ADICLK(0));
- }
- else if (f_adc_clock / 4 >= ADC_MIN_FREQ_16BITS)
- {
- return (ADC_LIB_CFG1_ADIV(2) + ADC_LIB_CFG1_ADICLK(0));
- }
- else if (f_adc_clock / 2 >= ADC_MIN_FREQ_16BITS)
- {
- return (ADC_LIB_CFG1_ADIV(1) + ADC_LIB_CFG1_ADICLK(0));
- }
- else
- {
- return (ADC_LIB_CFG1_ADIV(0) + ADC_LIB_CFG1_ADICLK(0));
- }
- }
-
- //! ADC_CFG1_HI_SPEED_16_BITS is the highest freq for 16 bits @internal
- constexpr uint32_t get_CFG_HI_SPEED_16_BITS(uint32_t f_adc_clock)
- {
- if (f_adc_clock <= ADC_MAX_FREQ_16BITS)
- {
- return (ADC_LIB_CFG1_ADIV(0) + ADC_LIB_CFG1_ADICLK(0));
- }
- else if (f_adc_clock / 2 <= ADC_MAX_FREQ_16BITS)
- {
- return (ADC_LIB_CFG1_ADIV(1) + ADC_LIB_CFG1_ADICLK(0));
- }
- else if (f_adc_clock / 4 <= ADC_MAX_FREQ_16BITS)
- {
- return (ADC_LIB_CFG1_ADIV(2) + ADC_LIB_CFG1_ADICLK(0));
- }
- else if (f_adc_clock / 8 <= ADC_MAX_FREQ_16BITS)
- {
- return (ADC_LIB_CFG1_ADIV(3) + ADC_LIB_CFG1_ADICLK(0));
- }
- else
- {
- return (ADC_LIB_CFG1_ADIV(3) + ADC_LIB_CFG1_ADICLK(1));
- }
- }
-
- //! For ADC_CFG1_MED_SPEED the idea is to check if there's an unused setting between
- // ADC_CFG1_LOW_SPEED and ADC_CFG1_HI_SPEED_16_BITS @internal
- constexpr uint32_t get_CFG_MEDIUM_SPEED(uint32_t f_adc_clock)
- {
- uint32_t ADC_CFG1_LOW_SPEED = get_CFG_LOW_SPEED(f_adc_clock);
- uint32_t ADC_CFG1_HI_SPEED_16_BITS = get_CFG_HI_SPEED_16_BITS(f_adc_clock);
- if (ADC_CFG1_LOW_SPEED - ADC_CFG1_HI_SPEED_16_BITS > 0x20)
- {
- return ADC_CFG1_HI_SPEED_16_BITS + 0x20;
- }
- else
- {
- return ADC_CFG1_HI_SPEED_16_BITS;
- }
- }
-
- //! ADC_CFG1_HI_SPEED is the highest freq for under 16 bits @internal
- constexpr uint32_t get_CFG_HIGH_SPEED(uint32_t f_adc_clock)
- {
- if (f_adc_clock <= ADC_MAX_FREQ)
- {
- return (ADC_LIB_CFG1_ADIV(0) + ADC_LIB_CFG1_ADICLK(0));
- }
- else if (f_adc_clock / 2 <= ADC_MAX_FREQ)
- {
- return (ADC_LIB_CFG1_ADIV(1) + ADC_LIB_CFG1_ADICLK(0));
- }
- else if (f_adc_clock / 4 <= ADC_MAX_FREQ)
- {
- return (ADC_LIB_CFG1_ADIV(2) + ADC_LIB_CFG1_ADICLK(0));
- }
- else if (f_adc_clock / 8 <= ADC_MAX_FREQ)
- {
- return (ADC_LIB_CFG1_ADIV(3) + ADC_LIB_CFG1_ADICLK(0));
- }
- else
- {
- return (ADC_LIB_CFG1_ADIV(3) + ADC_LIB_CFG1_ADICLK(1));
- }
- }
-
- //! ADC_CFG1_VERY_HIGH_SPEED >= ADC_CFG1_HI_SPEED and may be out of specs, @internal
- // but not more than ADC_VERY_HIGH_SPEED_FACTOR*ADC_MAX_FREQ
- constexpr uint32_t get_CFG_VERY_HIGH_SPEED(uint32_t f_adc_clock)
- {
- const uint8_t speed_factor = 2;
- if (f_adc_clock <= speed_factor * ADC_MAX_FREQ)
- {
- return (ADC_LIB_CFG1_ADIV(0) + ADC_LIB_CFG1_ADICLK(0));
- }
- else if (f_adc_clock / 2 <= speed_factor * ADC_MAX_FREQ)
- {
- return (ADC_LIB_CFG1_ADIV(1) + ADC_LIB_CFG1_ADICLK(0));
- }
- else if (f_adc_clock / 4 <= speed_factor * ADC_MAX_FREQ)
- {
- return (ADC_LIB_CFG1_ADIV(2) + ADC_LIB_CFG1_ADICLK(0));
- }
- else if (f_adc_clock / 8 <= speed_factor * ADC_MAX_FREQ)
- {
- return (ADC_LIB_CFG1_ADIV(3) + ADC_LIB_CFG1_ADICLK(0));
- }
- else
- {
- return (ADC_LIB_CFG1_ADIV(3) + ADC_LIB_CFG1_ADICLK(1));
- }
- }
- //! \endcond
-
- // Settings for the power/speed of conversions/sampling
- /*! ADC conversion speed.
- * Common set of options to select the ADC clock speed F_ADCK, which depends on ADC_F_BUS, except for the ADACK_X_Y options that are independent.
- * This selection affects the sampling speed too.
- * Note: the F_ADCK speed is not equal to the conversion speed; any measurement takes several F_ADCK cycles to complete including the sampling and conversion steps.
- */
- enum class ADC_CONVERSION_SPEED : uint8_t
- {
- #if defined(ADC_TEENSY_4)
- VERY_LOW_SPEED, /* Same as LOW_SPEED, here for compatibility*/
- LOW_SPEED = VERY_LOW_SPEED, /*!< is guaranteed to be the lowest possible speed within specs for all resolutions. */
- MED_SPEED, /*!< is always >= LOW_SPEED and <= HIGH_SPEED. */
- HIGH_SPEED, /*!< is guaranteed to be the highest possible speed within specs for resolutions */
- VERY_HIGH_SPEED = HIGH_SPEED, /* Same as HIGH_SPEED, here for compatibility*/
-
- ADACK_10, /*!< 10 MHz asynchronous ADC clock (independent of the global clocks F_CPU or F_BUS) */
- ADACK_20 /*!< 20 MHz asynchronous ADC clock (independent of the global clocks F_CPU or F_BUS) */
- #else
- VERY_LOW_SPEED, /*!< is guaranteed to be the lowest possible speed within specs for resolutions less than 16 bits. */
- LOW_SPEED, /*!< is guaranteed to be the lowest possible speed within specs for all resolutions. */
- MED_SPEED, /*!< is always >= LOW_SPEED and <= HIGH_SPEED. */
- HIGH_SPEED_16BITS, /*!< is guaranteed to be the highest possible speed within specs for all resolutions. */
- HIGH_SPEED, /*!< is guaranteed to be the highest possible speed within specs for resolutions less than 16 bits. */
- VERY_HIGH_SPEED, /*!< may be out of specs */
-
- ADACK_2_4, /*!< 2.4 MHz asynchronous ADC clock (independent of the global clocks F_CPU or F_BUS) */
- ADACK_4_0, /*!< 4.0 MHz asynchronous ADC clock (independent of the global clocks F_CPU or F_BUS) */
- ADACK_5_2, /*!< 5.2 MHz asynchronous ADC clock (independent of the global clocks F_CPU or F_BUS) */
- ADACK_6_2 /*!< 6.2 MHz asynchronous ADC clock (independent of the global clocks F_CPU or F_BUS) */
- #endif
- };
- /*! ADC sampling speed.
- * It selects how many ADCK clock cycles to add.
- */
- enum class ADC_SAMPLING_SPEED : uint8_t
- {
- #if defined(ADC_TEENSY_4)
- VERY_LOW_SPEED, /*!< is the lowest possible sampling speed (+22 ADCK, 24 in total). */
- LOW_SPEED, /*!< adds +18 ADCK, 20 in total. */
- LOW_MED_SPEED, /*!< adds +14, 16 in total. */
- MED_SPEED, /*!< adds +10, 12 in total. */
- MED_HIGH_SPEED, /*!< adds +6 ADCK, 8 in total. */
- HIGH_SPEED, /*!< adds +4 ADCK, 6 in total. */
- HIGH_VERY_HIGH_SPEED, /*!< +2 ADCK, 4 in total */
- VERY_HIGH_SPEED, /*!< is the highest possible sampling speed (0 ADCK added, 2 in total). */
- #else
- VERY_LOW_SPEED, /*!< is the lowest possible sampling speed (+24 ADCK). */
- LOW_SPEED, /*!< adds +16 ADCK. */
- MED_SPEED, /*!< adds +10 ADCK. */
- HIGH_SPEED, /*!< adds +6 ADCK. */
- VERY_HIGH_SPEED, /*!< is the highest possible sampling speed (0 ADCK added). */
- #endif
- };
-
- // Mask for the channel selection in ADCx_SC1A,
- // useful if you want to get the channel number from ADCx_SC1A
- #define ADC_SC1A_CHANNELS (0x1F)
- // 0x1F=31 in the channel2sc1aADCx means the pin doesn't belong to the ADC module
- #define ADC_SC1A_PIN_INVALID (0x1F)
- // Muxsel mask, pins in channel2sc1aADCx with bit 7 set use mux A.
- #define ADC_SC1A_PIN_MUX (0x80)
- // Differential pin mask, pins in channel2sc1aADCx with bit 6 set are differential pins.
- #define ADC_SC1A_PIN_DIFF (0x40)
- // PGA mask. The pins can use PGA on that ADC
- #define ADC_SC1A_PIN_PGA (0x80)
-
- // Error codes for analogRead and analogReadDifferential
- #define ADC_ERROR_DIFF_VALUE (-70000)
- #define ADC_ERROR_VALUE ADC_ERROR_DIFF_VALUE
-
- } // namespace ADC_settings
-
- /*! \page error ADC error codes
- Handle ADC errors. See the namespace ADC_Error for all functions.
- */
-
- //! Handle ADC errors
- namespace ADC_Error
- {
-
- //! ADC errors.
- /*! Each board has a adc->adX->fail_flag.
- * Include ADC_util.h and use getStringADCError to print the errors (if any) in a human-readable form.
- * Use adc->adX->resetError() to reset them.
- */
- enum class ADC_ERROR : uint16_t
- {
- OTHER = 1 << 0, /*!< Other error not considered below. */
- CALIB = 1 << 1, /*!< Calibration error. */
- WRONG_PIN = 1 << 2, /*!< A pin was selected that cannot be read by this ADC module. */
- ANALOG_READ = 1 << 3, /*!< Error inside the analogRead method. */
- ANALOG_DIFF_READ = 1 << 4, /*!< Error inside the analogReadDifferential method. */
- CONT = 1 << 5, /*!< Continuous single-ended measurement error. */
- CONT_DIFF = 1 << 6, /*!< Continuous differential measurement error. */
- COMPARISON = 1 << 7, /*!< Error during the comparison. */
- WRONG_ADC = 1 << 8, /*!< A non-existent ADC module was selected. */
- SYNCH = 1 << 9, /*!< Error during a synchronized measurement. */
-
- CLEAR = 0, /*!< No error. */
- };
- //! \cond internal
- //! OR operator for ADC_ERRORs. @internal
- inline constexpr ADC_ERROR operator|(ADC_ERROR lhs, ADC_ERROR rhs)
- {
- return static_cast<ADC_ERROR>(static_cast<uint16_t>(lhs) | static_cast<uint16_t>(rhs));
- }
- //! AND operator for ADC_ERRORs. @internal
- inline constexpr ADC_ERROR operator&(ADC_ERROR lhs, ADC_ERROR rhs)
- {
- return static_cast<ADC_ERROR>(static_cast<uint16_t>(lhs) & static_cast<uint16_t>(rhs));
- }
- //! |= operator for ADC_ERRORs, it changes the left hand side ADC_ERROR. @internal
- inline ADC_ERROR operator|=(volatile ADC_ERROR &lhs, ADC_ERROR rhs)
- {
- return lhs = static_cast<ADC_ERROR>(static_cast<uint16_t>(lhs) | static_cast<uint16_t>(rhs));
- }
- //! &= operator for ADC_ERRORs, it changes the left hand side ADC_ERROR. @internal
- inline ADC_ERROR operator&=(volatile ADC_ERROR &lhs, ADC_ERROR rhs)
- {
- return lhs = static_cast<ADC_ERROR>(static_cast<uint16_t>(lhs) & static_cast<uint16_t>(rhs));
- }
-
- // Prints the human-readable error, if any.
- // Moved to util.h.
- // inline const char* getError(ADC_ERROR fail_flag)
-
- //! Resets all errors from the ADC, if any. @internal
- inline void resetError(volatile ADC_ERROR &fail_flag)
- {
- fail_flag = ADC_ERROR::CLEAR;
- }
- //! \endcond
-
- } // namespace ADC_Error
-
- #endif // ADC_SETTINGS_H
|