aboutsummaryrefslogtreecommitdiff
path: root/examples/stm32f7/src/example_common.rs
blob: a786cb114d49188e671db9cca21d8925a3250278 (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
#![macro_use]

use defmt_rtt as _;
use embassy_stm32::time::U32Ext;
use embassy_stm32::Config;
// global logger
use panic_probe as _;

pub use defmt::*;

use core::sync::atomic::{AtomicUsize, Ordering};

defmt::timestamp! {"{=u64}", {
        static COUNT: AtomicUsize = AtomicUsize::new(0);
        // NOTE(no-CAS) `timestamps` runs with interrupts disabled
        let n = COUNT.load(Ordering::Relaxed);
        COUNT.store(n + 1, Ordering::Relaxed);
        n as u64
    }
}

#[allow(unused)]
pub fn config() -> Config {
    let mut config = Config::default();
    config.rcc.sys_ck = Some(200.mhz().into());
    config
}