mirror of
https://github.com/ferrous-systems/embedded-trainings-2020.git
synced 2025-01-25 07:18:08 +00:00
appeal to the rustfmt gods
This commit is contained in:
parent
50fdc33908
commit
adaca12a61
1 changed files with 3 additions and 2 deletions
|
@ -9,11 +9,12 @@ use cortex_m_rt::entry;
|
|||
use panic_log as _; // the panicking behavior
|
||||
|
||||
|
||||
// the custom entry point
|
||||
// vvvvv
|
||||
#[entry]
|
||||
// ˆˆˆˆ the custom entry point
|
||||
fn main() -> ! {
|
||||
// ˆˆˆ
|
||||
// ! is the 'never' type: this function never returns
|
||||
// ! is the 'never' type: this function never returns
|
||||
|
||||
// initializes the peripherals
|
||||
dk::init().unwrap();
|
||||
|
|
Loading…
Reference in a new issue