diff --git a/beginner/apps/src/bin/hello.rs b/beginner/apps/src/bin/hello.rs index 9d20aa2..f7734b8 100644 --- a/beginner/apps/src/bin/hello.rs +++ b/beginner/apps/src/bin/hello.rs @@ -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();