Skip to content

Commit

Permalink
fix(examples): don't print board name in hello-world-threading
Browse files Browse the repository at this point in the history
  • Loading branch information
kaspar030 committed Oct 22, 2024
1 parent ab74e84 commit e20ff84
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions examples/hello-world-threading/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,7 @@ use riot_rs::debug::{exit, log::*};

#[riot_rs::thread(autostart)]
fn main() {
info!(
"Hello from main()! Running on a {} board.",
riot_rs::buildinfo::BOARD,
);
info!("Hello World!");

exit(Ok(()));
}

0 comments on commit e20ff84

Please sign in to comment.