Paparazzi UAS  v5.14.0_stable-0-g3f680d1
Paparazzi is a free software Unmanned Aircraft System.
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
adc.h File Reference

arch independent ADC (Analog to Digital Converter) API More...

#include <inttypes.h>
#include "mcu_periph/adc_arch.h"
+ Include dependency graph for adc.h:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Data Structures

struct  adc_buf
 Generic interface for all ADC hardware drivers, independent from microcontroller architecture. More...
 

Macros

#define MAX_AV_NB_SAMPLE   0x20
 
#define DEFAULT_AV_NB_SAMPLE   0x20
 

Functions

void adc_buf_channel (uint8_t adc_channel, struct adc_buf *s, uint8_t av_nb_sample)
 Registers a buffer to be used to store the specified converted channel Usage: More...
 
void adc_init (void)
 Starts conversions. More...
 

Detailed Description

arch independent ADC (Analog to Digital Converter) API

Facility to store last values in a circular buffer for a specific channel:

Definition in file adc.h.


Data Structure Documentation

struct adc_buf

Generic interface for all ADC hardware drivers, independent from microcontroller architecture.

Struct to collect samples from ADC and building an average over MAX_AV_NB_SAMPLE values. See adc_buf_channel.

Definition at line 53 of file adc.h.

Data Fields
uint8_t av_nb_sample
uint8_t head
uint32_t sum
uint16_t values[MAX_AV_NB_SAMPLE]

Macro Definition Documentation

#define DEFAULT_AV_NB_SAMPLE   0x20

Definition at line 41 of file adc.h.

Referenced by baro_init(), electrical_init(), sonar_adc_init(), and vms_ecu_demo_init().

#define MAX_AV_NB_SAMPLE   0x20

Definition at line 40 of file adc.h.

Referenced by adc_buf_channel().

Function Documentation

void adc_buf_channel ( uint8_t  adc_channel,
struct adc_buf s,
uint8_t  av_nb_sample 
)

Registers a buffer to be used to store the specified converted channel Usage:

1 struct adc_buf channel_buf;
2 adc_buf_channel(1, &channel_buf, 12);

Registers channel_buf as buffer for ADC channel 1, with max index 12 (12 samples).

Registers a buffer to be used to store the specified converted channel Usage:

Todo:
: fx a more general ADC

Definition at line 281 of file adc_arch.c.

References ADC_NUM_CHANNELS, adc_buf::av_nb_sample, MAX_AV_NB_SAMPLE, NB_ADC, nb_adc1_channels, and nb_adc2_channels.

Referenced by adc_generic_init(), airspeed_adc_init(), aoa_adc_init(), baro_init(), electrical_init(), glide_wing_lock_init(), humid_hih_init(), imu_analog_init(), infrared_adc_init(), light_solar_init(), light_temt_init(), mf_ptu_init(), sonar_adc_init(), temp_adc_init(), temp_tcouple_adc_init(), and vms_ecu_demo_init().

+ Here is the caller graph for this function: