forked from stm32-rs/stm32h7xx-hal
-
Notifications
You must be signed in to change notification settings - Fork 1
/
adc12.rs
69 lines (55 loc) · 1.86 KB
/
adc12.rs
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
68
69
//! Example of using ADC1 and ADC2 together
//!
//! For an example of using ADC3, see examples/temperature.rs
//! For an example of using ADC1 alone, see examples/adc.rs
#![no_main]
#![no_std]
#[macro_use]
mod utilities;
use cortex_m_rt::entry;
use log::info;
use stm32h7xx_hal::{adc, delay::Delay, pac, prelude::*};
#[entry]
fn main() -> ! {
utilities::logger::init();
let cp = cortex_m::Peripherals::take().unwrap();
let dp = pac::Peripherals::take().unwrap();
// Constrain and Freeze power
info!("Setup PWR... ");
let pwr = dp.PWR.constrain();
let pwrcfg = example_power!(pwr).freeze();
// Constrain and Freeze clock
info!("Setup RCC... ");
let rcc = dp.RCC.constrain();
let ccdr = rcc
.sys_ck(100.mhz())
.pll2_p_ck(4.mhz()) // Default adc_ker_ck_input
.freeze(pwrcfg, &dp.SYSCFG);
info!("");
info!("stm32h7xx-hal example - ADC1 and ADC2");
info!("");
let mut delay = Delay::new(cp.SYST, ccdr.clocks);
// Setup ADC1 and ADC2
let (adc1, adc2) = adc::adc12(
dp.ADC1,
dp.ADC2,
&mut delay,
ccdr.peripheral.ADC12,
&ccdr.clocks,
);
let mut adc1 = adc1.enable();
adc1.set_resolution(adc::Resolution::SIXTEENBIT);
let mut adc2 = adc2.enable();
adc2.set_resolution(adc::Resolution::SIXTEENBIT);
// Setup GPIOC
// NOTE: PC2 and PC3 are only pinned out on TFBGA packages!!
let gpioc = dp.GPIOC.split(ccdr.peripheral.GPIOC);
let mut channel_pc2 = gpioc.pc2.into_analog(); // AIN 12
let mut channel_pc3 = gpioc.pc3.into_analog(); // AIN 13
loop {
let data_pc2: u32 = adc1.read(&mut channel_pc2).unwrap();
let data_pc3: u32 = adc2.read(&mut channel_pc3).unwrap();
// voltage = reading * (vref/resolution)
info!("ADC readings: {} {}", data_pc2, data_pc3);
}
}