summaryrefslogtreecommitdiff
path: root/examples/nrf/src/bin/ppi.rs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/nrf/src/bin/ppi.rs')
-rw-r--r--examples/nrf/src/bin/ppi.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/nrf/src/bin/ppi.rs b/examples/nrf/src/bin/ppi.rs
index 99246eed..3c9a8148 100644
--- a/examples/nrf/src/bin/ppi.rs
+++ b/examples/nrf/src/bin/ppi.rs
@@ -2,11 +2,8 @@
#![no_main]
#![feature(type_alias_impl_trait)]
-#[path = "../example_common.rs"]
-mod example_common;
-use example_common::*;
-
use core::future::pending;
+use defmt::info;
use embassy::executor::Spawner;
use embassy_nrf::gpio::{Input, Level, Output, OutputDrive, Pull};
use embassy_nrf::gpiote::{self, InputChannel, InputChannelPolarity};
@@ -14,6 +11,9 @@ use embassy_nrf::ppi::Ppi;
use embassy_nrf::Peripherals;
use gpiote::{OutputChannel, OutputChannelPolarity};
+use defmt_rtt as _; // global logger
+use panic_probe as _;
+
#[embassy::main]
async fn main(_spawner: Spawner, p: Peripherals) {
info!("Starting!");