aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/adc.h
blob: 41f975e243e80e893e86a7c2d7d7d0252d07fbe1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#ifndef _ADC_H_
#define _ADC_H_
#include <inttypes.h>
#include "util.h"

#ifdef __cplusplus
extern "C"{
#endif

/* Notes:
 * The maximum input impedance on each channel MUST be below .4kohms,
 * or face the wrath of incorrect readings...
 * This can be changed at the expense of sample time... see datasheet
 *
 * Need to up the sample time if otherwise... see datasheet */

/* We'll only use ADC1 for now...  */
#define ADC_BASE                 0x40012400
#define ADC_SR                   *(volatile uint32_t*)(ADC_BASE + 0)
#define ADC_CR1                  *(volatile uint32_t*)(ADC_BASE + 0x4)
#define ADC_CR2                  *(volatile uint32_t*)(ADC_BASE + 0x8)
#define ADC_SMPR1                *(volatile uint32_t*)(ADC_BASE + 0xC)
#define ADC_SMPR2                *(volatile uint32_t*)(ADC_BASE + 0x10)
#define ADC_SQR1                 *(volatile uint32_t*)(ADC_BASE + 0x2C)
#define ADC_SQR3                 *(volatile uint32_t*)(ADC_BASE + 0x34)
#define ADC_DR                   *(volatile uint32_t*)(ADC_BASE + 0x4C)

#define CR2_EXTSEL_SWSTART       (0xE << 16)
#define CR2_RSTCAL               (BIT(3))
#define CR2_EXTTRIG              (BIT(20))

/* Bit banded bits  */
#define CR2_ADON_BIT             *(volatile uint32_t*)(BITBAND_PERI(ADC_BASE+0x8, 0))
#define CR2_CAL_BIT              *(volatile uint32_t*)(BITBAND_PERI(ADC_BASE+0x8, 2))
#define CR2_RSTCAL_BIT           *(volatile uint32_t*)(BITBAND_PERI(ADC_BASE+0x8, 3))
#define CR2_SWSTART_BIT          *(volatile uint32_t*)(BITBAND_PERI(ADC_BASE+0x8 + 2, 6))
#define SR_EOC_BIT               *(volatile uint32_t*)(BITBAND_PERI(ADC_BASE+0, 1))

#define NR_ANALOG_PINS           16

/* Initialize ADC1 to do one-shot conversions  */
void adc_init(void);

/* Perform a single conversion on ADC[0-16],
 * PRECONDITIONS:
 *   adc initialized */
static inline int adc_read(int channel) {
    /* Set channel  */
    ADC_SQR3 = channel;

    /* Start the conversion  */
    CR2_SWSTART_BIT = 1;

    /* Wait for it to finish  */
    while(SR_EOC_BIT == 0)
        ;

    return ADC_DR;
}



#ifdef __cplusplus
} // extern "C"
#endif
#endif