This commit adds driver support for ADC1 on all 8 supported series of stm32 with resolution and conversion time selection and calibration. Currently DMA is not supported for all series, and without it, zephyr won't be able to catch up ADC's end of conversion interrupt, so this version of the driver supports one channel conversion only. Users want multi-channel conversion should use multiple sequences in their app code. This driver uses LL lib rather than HAL because the current HAL lib for ADC will call HAL_DMA_* functions rather than using zephyr's common DMA interface, so that way the driver will break the consistency of the code. This driver has been tested on multiple nucleo boards including NUCLEO_F091RC/F103RB/F207ZG/F302R8/F401RE/F746ZG/L073RZ/L476RG and all passed the test cases in tests/drivers/adc/adc_api. If the external ADC line is floating, it may fail the tests since ADC may get 0V and the test cases think 0 is failing. Connect it to any voltage source between 0-3.3V will help passing the test cases. Signed-off-by: Song Qiang <songqiang1304521@gmail.com>
68 lines
1.3 KiB
C
68 lines
1.3 KiB
C
/*
|
|
* Copyright (c) 2016 Open-RnD Sp. z o.o.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @file SoC configuration macros for the STM32F1 family processors.
|
|
*
|
|
* Based on reference manual:
|
|
* STM32F101xx, STM32F102xx, STM32F103xx, STM32F105xx and STM32F107xx
|
|
* advanced ARM(r)-based 32-bit MCUs
|
|
*
|
|
* Chapter 3.3: Memory Map
|
|
*/
|
|
|
|
|
|
#ifndef _STM32F1_SOC_H_
|
|
#define _STM32F1_SOC_H_
|
|
|
|
#ifndef _ASMLANGUAGE
|
|
|
|
#include <stm32f1xx.h>
|
|
|
|
/* ARM CMSIS definitions must be included before kernel_includes.h.
|
|
* Therefore, it is essential to include kernel_includes.h after including
|
|
* core SOC-specific headers.
|
|
*/
|
|
#include <kernel_includes.h>
|
|
|
|
#ifdef CONFIG_EXTI_STM32
|
|
#include <stm32f1xx_ll_exti.h>
|
|
#endif
|
|
|
|
#ifdef CONFIG_SERIAL_HAS_DRIVER
|
|
#include <stm32f1xx_ll_usart.h>
|
|
#endif
|
|
|
|
#ifdef CONFIG_CLOCK_CONTROL_STM32_CUBE
|
|
#include <stm32f1xx_ll_utils.h>
|
|
#include <stm32f1xx_ll_bus.h>
|
|
#include <stm32f1xx_ll_rcc.h>
|
|
#include <stm32f1xx_ll_system.h>
|
|
#endif /* CONFIG_CLOCK_CONTROL_STM32_CUBE */
|
|
|
|
#ifdef CONFIG_I2C
|
|
#include <stm32f1xx_ll_i2c.h>
|
|
#endif
|
|
|
|
#ifdef CONFIG_SPI_STM32
|
|
#include <stm32f1xx_ll_spi.h>
|
|
#endif
|
|
|
|
#ifdef CONFIG_IWDG_STM32
|
|
#include <stm32f1xx_ll_iwdg.h>
|
|
#endif
|
|
|
|
#ifdef CONFIG_GPIO_STM32
|
|
#include <stm32f1xx_ll_gpio.h>
|
|
#endif
|
|
|
|
#ifdef CONFIG_ADC_STM32
|
|
#include <stm32f1xx_ll_adc.h>
|
|
#endif
|
|
|
|
#endif /* !_ASMLANGUAGE */
|
|
|
|
#endif /* _STM32F1_SOC_H_ */
|