mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-15 04:15:44 +03:00
61 lines
1.6 KiB
C
61 lines
1.6 KiB
C
/*
|
|
* This file is part of Cleanflight.
|
|
*
|
|
* Cleanflight 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 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Cleanflight 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 Cleanflight. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "io_types.h"
|
|
#include "rcc_types.h"
|
|
|
|
#if defined(STM32F4) || defined(STM32F7)
|
|
#define ADC_TAG_MAP_COUNT 16
|
|
#elif defined(STM32F3)
|
|
#define ADC_TAG_MAP_COUNT 39
|
|
#else
|
|
#define ADC_TAG_MAP_COUNT 10
|
|
#endif
|
|
|
|
typedef enum ADCDevice {
|
|
ADCINVALID = -1,
|
|
ADCDEV_1 = 0,
|
|
#if defined(STM32F3) || defined(STM32F4) || defined(STM32F7)
|
|
ADCDEV_2,
|
|
ADCDEV_3
|
|
#endif
|
|
} ADCDevice;
|
|
|
|
typedef struct adcTagMap_s {
|
|
ioTag_t tag;
|
|
uint8_t channel;
|
|
} adcTagMap_t;
|
|
|
|
typedef struct adcDevice_s {
|
|
ADC_TypeDef* ADCx;
|
|
rccPeriphTag_t rccADC;
|
|
#if defined(STM32F4) || defined(STM32F7)
|
|
DMA_Stream_TypeDef* DMAy_Streamx;
|
|
uint32_t channel;
|
|
#else
|
|
DMA_Channel_TypeDef* DMAy_Channelx;
|
|
#endif
|
|
} adcDevice_t;
|
|
|
|
extern const adcDevice_t adcHardware[];
|
|
extern const adcTagMap_t adcTagMap[ADC_TAG_MAP_COUNT];
|
|
extern adcOperatingConfig_t adcOperatingConfig[ADC_CHANNEL_COUNT];
|
|
extern volatile uint16_t adcValues[ADC_CHANNEL_COUNT];
|
|
|
|
uint8_t adcChannelByTag(ioTag_t ioTag);
|