15 lines
238 B
Rust
15 lines
238 B
Rust
|
// rustfmt-fn_call_style: Block
|
||
|
// rustfmt-max_width: 80
|
||
|
// rustfmt-tab_spaces: 2
|
||
|
|
||
|
// #1427
|
||
|
fn main() {
|
||
|
exceptaions::config(move || {
|
||
|
(
|
||
|
NmiConfig {},
|
||
|
HardFaultConfig {},
|
||
|
SysTickConfig { gpio_sbsrr },
|
||
|
)
|
||
|
});
|
||
|
}
|