summaryrefslogtreecommitdiff
path: root/examples/nrf/src/bin/gpiote_channel.rs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/nrf/src/bin/gpiote_channel.rs')
-rw-r--r--examples/nrf/src/bin/gpiote_channel.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/nrf/src/bin/gpiote_channel.rs b/examples/nrf/src/bin/gpiote_channel.rs
index f29dae02..339f779f 100644
--- a/examples/nrf/src/bin/gpiote_channel.rs
+++ b/examples/nrf/src/bin/gpiote_channel.rs
@@ -2,15 +2,15 @@
#![no_main]
#![feature(type_alias_impl_trait)]
-#[path = "../example_common.rs"]
-mod example_common;
-use example_common::*;
-
+use defmt::info;
use embassy::executor::Spawner;
use embassy_nrf::gpio::{Input, Pull};
use embassy_nrf::gpiote::{InputChannel, InputChannelPolarity};
use embassy_nrf::Peripherals;
+use defmt_rtt as _; // global logger
+use panic_probe as _;
+
#[embassy::main]
async fn main(_spawner: Spawner, p: Peripherals) {
info!("Starting!");