aboutsummaryrefslogtreecommitdiff
path: root/embassy-mspm0/src/macros.rs
blob: 5355e7d59cb5945dd4227ad11ec35667fc6e5aac (plain)
1
2
3
4
5
6
7
8
9
#![macro_use]

macro_rules! new_pin {
    ($name: ident, $pf_type: expr) => {{
        let pin = $name;
        pin.set_as_pf(pin.pf_num(), $pf_type);
        Some(pin.into())
    }};
}