diff --git a/CHANGELOG.md b/CHANGELOG.md index bbc9ef7c..aac033b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,7 @@ ### Fixed - Examples now build and link again +- Examples now build again again - [#62] Remove ambiguous reexports from `src/serial/mod.rs`. - TWIHS: Fix issue with clock frequency calculation. - Fix CI: source of PACs matrix + clippy satisfaction diff --git a/boards/atsame70_xpro/examples/blinky_delay.rs b/boards/atsame70_xpro/examples/blinky_delay.rs index be22ad1b..694e9467 100644 --- a/boards/atsame70_xpro/examples/blinky_delay.rs +++ b/boards/atsame70_xpro/examples/blinky_delay.rs @@ -14,6 +14,7 @@ mod app { use hal::ehal::digital::v2::ToggleableOutputPin; use hal::pio::*; use hal::rtt::*; + use rtt_target::rtt_init_print; #[shared] struct Shared {} @@ -26,6 +27,7 @@ mod app { #[init] fn init(ctx: init::Context) -> (Shared, Local, init::Monotonics) { + rtt_init_print!(); let clocks = Tokens::new( (ctx.device.PMC, ctx.device.SUPC, ctx.device.UTMI), &ctx.device.WDT.into(), diff --git a/boards/atsame70_xpro/examples/blinky_irq.rs b/boards/atsame70_xpro/examples/blinky_irq.rs index 55db85ec..4b17b347 100644 --- a/boards/atsame70_xpro/examples/blinky_irq.rs +++ b/boards/atsame70_xpro/examples/blinky_irq.rs @@ -14,6 +14,7 @@ mod app { use hal::ehal::timer::CountDown; use hal::pio::*; use hal::rtt::*; + use rtt_target::rtt_init_print; #[shared] struct Shared {} @@ -26,6 +27,7 @@ mod app { #[init] fn init(ctx: init::Context) -> (Shared, Local, init::Monotonics) { + rtt_init_print!(); let clocks = Tokens::new( (ctx.device.PMC, ctx.device.SUPC, ctx.device.UTMI), &ctx.device.WDT.into(),