This drops a lot of now common definitions. This is still just prepratory work before using the v1-multi code itself.
191 lines
5.9 KiB
C
191 lines
5.9 KiB
C
/** @defgroup adc_defines ADC Defines
|
|
|
|
@brief <b>Defined Constants and Types for the STM32L1xx Analog to
|
|
Digital Converters</b>
|
|
|
|
@ingroup STM32L1xx_defines
|
|
|
|
@version 1.0.0
|
|
|
|
@author @htmlonly © @endhtmlonly 2013 Karl Palsson <karlp@remake.is>
|
|
|
|
LGPL License Terms @ref lgpl_license
|
|
*/
|
|
/*
|
|
* This file is part of the libopencm3 project.
|
|
*
|
|
* Copyright (C) 2013 Karl Palsson <karlp@remake.is>
|
|
*
|
|
* This library is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This library 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 Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef LIBOPENCM3_ADC_H
|
|
#define LIBOPENCM3_ADC_H
|
|
|
|
#include <libopencm3/stm32/common/adc_common_v1_multi.h>
|
|
|
|
#define ADC_MAX_REGULAR_SEQUENCE 28
|
|
/* 26 in L/M, but 32 in two banks for M+/H density */
|
|
#define ADC_MAX_CHANNELS 32
|
|
|
|
/* ADC sample time register 3 (ADC_SMPR3) */
|
|
#define ADC_SMPR3(block) MMIO32((block) + 0x14)
|
|
#define ADC1_SMPR3 ADC_SMPR3(ADC1)
|
|
|
|
/* ADC injected channel data offset register x (ADC_JOFRx) (x=1..4) */
|
|
#define ADC_JOFR1(block) MMIO32((block) + 0x18)
|
|
#define ADC_JOFR2(block) MMIO32((block) + 0x1c)
|
|
#define ADC_JOFR3(block) MMIO32((block) + 0x20)
|
|
#define ADC_JOFR4(block) MMIO32((block) + 0x24)
|
|
|
|
/* ADC watchdog high threshold register (ADC_HTR) */
|
|
#define ADC_HTR(block) MMIO32((block) + 0x28)
|
|
|
|
/* ADC watchdog low threshold register (ADC_LTR) */
|
|
#define ADC_LTR(block) MMIO32((block) + 0x2c)
|
|
|
|
/* ADC regular sequence register 1 (ADC_SQR1) */
|
|
#define ADC_SQR1(block) MMIO32((block) + 0x30)
|
|
|
|
/* ADC regular sequence register 2 (ADC_SQR2) */
|
|
#define ADC_SQR2(block) MMIO32((block) + 0x34)
|
|
|
|
/* ADC regular sequence register 3 (ADC_SQR3) */
|
|
#define ADC_SQR3(block) MMIO32((block) + 0x38)
|
|
|
|
/* ADC regular sequence register 4 (ADC_SQR4) */
|
|
#define ADC_SQR4(block) MMIO32((block) + 0x3c)
|
|
#define ADC1_SQR4 ADC_SQR4(ADC1)
|
|
|
|
/* ADC regular sequence register 5 (ADC_SQR5) */
|
|
#define ADC_SQR5(block) MMIO32((block) + 0x40)
|
|
#define ADC1_SQR5 ADC_SQR5(ADC1)
|
|
|
|
/* ADC injected sequence register (ADC_JSQR) */
|
|
#define ADC_JSQR(block) MMIO32((block) + 0x44)
|
|
|
|
/* ADC injected data register x (ADC_JDRx) (x=1..4) */
|
|
#define ADC_JDR1(block) MMIO32((block) + 0x48)
|
|
#define ADC_JDR2(block) MMIO32((block) + 0x4c)
|
|
#define ADC_JDR3(block) MMIO32((block) + 0x50)
|
|
#define ADC_JDR4(block) MMIO32((block) + 0x54)
|
|
|
|
/* ADC regular data register (ADC_DR) */
|
|
#define ADC_DR(block) MMIO32((block) + 0x58)
|
|
|
|
/* ADC sample time register 0 (ADC_SMPR0) (high/med+ only) */
|
|
#define ADC_SMPR0(block) MMIO32((block) + 0x5c)
|
|
#define ADC1_SMPR0 ADC_SMPR0(ADC1)
|
|
|
|
/** @defgroup adc_channel ADC Channel Numbers
|
|
* @ingroup adc_defines
|
|
*
|
|
*@{*/
|
|
#define ADC_CHANNEL_TEMP ADC_CHANNEL16
|
|
#define ADC_CHANNEL_VREF ADC_CHANNEL17
|
|
/**@}*/
|
|
|
|
/* --- ADC_SR values ------------------------------------------------------- */
|
|
/****************************************************************************/
|
|
/** @defgroup adc_sr_values ADC Status Register Flags
|
|
* @ingroup adc_defines
|
|
*
|
|
*@{*/
|
|
|
|
/* JCNR:*//** Injected channel not ready */
|
|
#define ADC_SR_JCNR (1 << 9)
|
|
|
|
/* RCNR:*//** Regular channel not ready */
|
|
#define ADC_SR_RCNR (1 << 8)
|
|
|
|
/* ADONS:*//** ADC ON status */
|
|
#define ADC_SR_ADONS (1 << 6)
|
|
|
|
/**@}*/
|
|
|
|
/* --- ADC_CR1 values ------------------------------------------------------- */
|
|
#define ADC_CR1_PDI (1 << 17)
|
|
#define ADC_CR1_PDD (1 << 16)
|
|
|
|
#define ADC_CR1_AWDCH_MAX 26
|
|
|
|
/* EXTSEL[3:0]: External event selection for regular group. */
|
|
/****************************************************************************/
|
|
/** @defgroup adc_trigger_regular ADC Trigger Identifier for Regular group
|
|
@ingroup adc_defines
|
|
|
|
@{*/
|
|
#define ADC_CR2_EXTSEL_TIM9_CC2 (0 << ADC_CR2_EXTSEL_SHIFT)
|
|
#define ADC_CR2_EXTSEL_TIM9_TRGO (1 << ADC_CR2_EXTSEL_SHIFT)
|
|
#define ADC_CR2_EXTSEL_TIM2_CC3 (2 << ADC_CR2_EXTSEL_SHIFT)
|
|
#define ADC_CR2_EXTSEL_TIM2_CC2 (3 << ADC_CR2_EXTSEL_SHIFT)
|
|
#define ADC_CR2_EXTSEL_TIM3_TRGO (4 << ADC_CR2_EXTSEL_SHIFT)
|
|
#define ADC_CR2_EXTSEL_TIM4_CC4 (5 << ADC_CR2_EXTSEL_SHIFT)
|
|
#define ADC_CR2_EXTSEL_TIM2_TRGO (6 << ADC_CR2_EXTSEL_SHIFT)
|
|
#define ADC_CR2_EXTSEL_TIM3_CC1 (7 << ADC_CR2_EXTSEL_SHIFT)
|
|
#define ADC_CR2_EXTSEL_TIM3_CC3 (8 << ADC_CR2_EXTSEL_SHIFT)
|
|
#define ADC_CR2_EXTSEL_TIM4_TRGO (9 << ADC_CR2_EXTSEL_SHIFT)
|
|
#define ADC_CR2_EXTSEL_TIM6_TRGO (10 << ADC_CR2_EXTSEL_SHIFT)
|
|
/* reserved.... */
|
|
#define ADC_CR2_EXTSEL_EXTI11 (15 << ADC_CR2_EXTSEL_SHIFT)
|
|
/**@}*/
|
|
|
|
|
|
/* FIXME - JEXTSEL values here */
|
|
|
|
/* FIXME- add the values here */
|
|
#define ADC_CR2_DELS_SHIFT 4
|
|
#define ADC_CR2_DELS_MASK 0x7
|
|
|
|
#define ADC_CR2_ADC_CFG (1 << 2)
|
|
|
|
|
|
|
|
|
|
/* --- ADC_SMPRx generic values -------------------------------------------- */
|
|
/****************************************************************************/
|
|
/* ADC_SMPRG ADC Sample Time Selection for Channels */
|
|
/** @defgroup adc_sample_rg ADC Sample Time Selection for All Channels
|
|
@ingroup adc_defines
|
|
|
|
@{*/
|
|
#define ADC_SMPR_SMP_4CYC 0x0
|
|
#define ADC_SMPR_SMP_9CYC 0x1
|
|
#define ADC_SMPR_SMP_16CYC 0x2
|
|
#define ADC_SMPR_SMP_24CYC 0x3
|
|
#define ADC_SMPR_SMP_48CYC 0x4
|
|
#define ADC_SMPR_SMP_96CYC 0x5
|
|
#define ADC_SMPR_SMP_192CYC 0x6
|
|
#define ADC_SMPR_SMP_384CYC 0x7
|
|
/**@}*/
|
|
|
|
#define ADC_SQR_MASK 0x1f
|
|
#define ADC_SQR_MAX_CHANNELS_REGULAR 28 /* m+/h only, otherwise 27 */
|
|
|
|
/** @defgroup adc_ccr_adcpre ADC Prescale
|
|
@ingroup adc_defines
|
|
@{*/
|
|
#define ADC_CCR_ADCPRE_BY1 (0x0 << 16)
|
|
#define ADC_CCR_ADCPRE_BY2 (0x1 << 16)
|
|
#define ADC_CCR_ADCPRE_BY4 (0x2 << 16)
|
|
/**@}*/
|
|
#define ADC_CCR_ADCPRE_MASK (0x3 << 16)
|
|
#define ADC_CCR_ADCPRE_SHIFT 16
|
|
|
|
BEGIN_DECLS
|
|
|
|
END_DECLS
|
|
|
|
#endif
|