/** @defgroup adc_defines ADC Defines * * @brief Defined Constants and Types for the STM32L4xx Analog to Digital * Converter * * @ingroup STM32L4xx_defines * * @version 1.0.0 * * @date 24 Oct 2015 * * LGPL License Terms @ref lgpl_license */ /* * This file is part of the libopencm3 project. * * Copyright (C) 2015 Karl Palsson * * 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 . */ #ifndef LIBOPENCM3_ADC_H #define LIBOPENCM3_ADC_H #include #include /** @defgroup adc_reg_base ADC register base addresses * @ingroup adc_defines * *@{*/ #define ADC1 ADC1_BASE #define ADC2 ADC2_BASE #define ADC3 ADC3_BASE /**@}*/ /** @defgroup adc_channel ADC Channel Numbers * @ingroup adc_defines * *@{*/ #define ADC_CHANNEL_VREF 0 #define ADC_CHANNEL_TEMP 17 #define ADC_CHANNEL_VBAT 18 /**@}*/ /* ADC_CR Values ------------------------------------------------------------*/ /* DEEPPWD: Deep power down */ #define ADC_CR_DEEPPWD (1 << 29) /* ADVREGEN: Voltage regulator enable bit */ #define ADC_CR_ADVREGEN (1 << 28) /****************************************************************************/ /* ADC_SMPRx ADC Sample Time Selection for Channels */ /** @defgroup adc_sample ADC Sample Time Selection values @ingroup adc_defines @{*/ #define ADC_SMPR_SMP_2DOT5CYC 0x0 #define ADC_SMPR_SMP_6DOT5CYC 0x1 #define ADC_SMPR_SMP_12DOT5CYC 0x2 #define ADC_SMPR_SMP_24DOT5CYC 0x3 #define ADC_SMPR_SMP_47DOT5CYC 0x4 #define ADC_SMPR_SMP_92DOT5CYC 0x5 #define ADC_SMPR_SMP_247DOT5CYC 0x6 #define ADC_SMPR_SMP_640DOT5CYC 0x7 /**@}*/ BEGIN_DECLS END_DECLS #endif