2021-03-27 16:13:32 +01:00
|
|
|
#![no_std]
|
|
|
|
#![no_main]
|
|
|
|
#![feature(type_alias_impl_trait)]
|
|
|
|
|
2021-03-29 02:47:10 +02:00
|
|
|
use core::future::pending;
|
2022-06-12 22:15:44 +02:00
|
|
|
|
2022-04-02 04:35:06 +02:00
|
|
|
use defmt::info;
|
2022-08-17 23:40:16 +02:00
|
|
|
use embassy_executor::Spawner;
|
2021-03-27 16:13:32 +01:00
|
|
|
use embassy_nrf::gpio::{Input, Level, Output, OutputDrive, Pull};
|
|
|
|
use embassy_nrf::gpiote::{self, InputChannel, InputChannelPolarity};
|
2021-10-19 10:27:49 +02:00
|
|
|
use embassy_nrf::ppi::Ppi;
|
2021-03-27 16:13:32 +01:00
|
|
|
use gpiote::{OutputChannel, OutputChannelPolarity};
|
2022-06-12 22:15:44 +02:00
|
|
|
use {defmt_rtt as _, panic_probe as _};
|
2022-04-02 04:35:06 +02:00
|
|
|
|
2022-07-29 21:58:35 +02:00
|
|
|
#[embassy_executor::main]
|
2022-08-17 18:49:55 +02:00
|
|
|
async fn main(_spawner: Spawner) {
|
|
|
|
let p = embassy_nrf::init(Default::default());
|
2021-03-27 16:13:32 +01:00
|
|
|
info!("Starting!");
|
|
|
|
|
|
|
|
let button1 = InputChannel::new(
|
|
|
|
p.GPIOTE_CH0,
|
|
|
|
Input::new(p.P0_11, Pull::Up),
|
|
|
|
InputChannelPolarity::HiToLo,
|
|
|
|
);
|
|
|
|
let button2 = InputChannel::new(
|
|
|
|
p.GPIOTE_CH1,
|
|
|
|
Input::new(p.P0_12, Pull::Up),
|
|
|
|
InputChannelPolarity::HiToLo,
|
|
|
|
);
|
|
|
|
let button3 = InputChannel::new(
|
|
|
|
p.GPIOTE_CH2,
|
|
|
|
Input::new(p.P0_24, Pull::Up),
|
|
|
|
InputChannelPolarity::HiToLo,
|
|
|
|
);
|
|
|
|
let button4 = InputChannel::new(
|
|
|
|
p.GPIOTE_CH3,
|
|
|
|
Input::new(p.P0_25, Pull::Up),
|
|
|
|
InputChannelPolarity::HiToLo,
|
|
|
|
);
|
|
|
|
|
|
|
|
let led1 = OutputChannel::new(
|
|
|
|
p.GPIOTE_CH4,
|
|
|
|
Output::new(p.P0_13, Level::Low, OutputDrive::Standard),
|
|
|
|
OutputChannelPolarity::Toggle,
|
|
|
|
);
|
|
|
|
|
|
|
|
let led2 = OutputChannel::new(
|
|
|
|
p.GPIOTE_CH5,
|
|
|
|
Output::new(p.P0_14, Level::Low, OutputDrive::Standard),
|
|
|
|
OutputChannelPolarity::Toggle,
|
|
|
|
);
|
|
|
|
|
2021-10-18 16:23:39 +02:00
|
|
|
let mut ppi = Ppi::new_one_to_one(p.PPI_CH0, button1.event_in(), led1.task_out());
|
2021-03-27 16:13:32 +01:00
|
|
|
ppi.enable();
|
|
|
|
|
2021-10-18 16:23:39 +02:00
|
|
|
let mut ppi = Ppi::new_one_to_one(p.PPI_CH1, button2.event_in(), led1.task_clr());
|
2021-03-27 16:13:32 +01:00
|
|
|
ppi.enable();
|
|
|
|
|
2021-10-18 16:23:39 +02:00
|
|
|
let mut ppi = Ppi::new_one_to_one(p.PPI_CH2, button3.event_in(), led1.task_set());
|
2021-03-27 16:13:32 +01:00
|
|
|
ppi.enable();
|
|
|
|
|
2022-06-12 22:15:44 +02:00
|
|
|
let mut ppi = Ppi::new_one_to_two(p.PPI_CH3, button4.event_in(), led1.task_out(), led2.task_out());
|
2021-03-27 16:13:32 +01:00
|
|
|
ppi.enable();
|
|
|
|
|
|
|
|
info!("PPI setup!");
|
|
|
|
info!("Press button 1 to toggle LED 1");
|
|
|
|
info!("Press button 2 to turn on LED 1");
|
|
|
|
info!("Press button 3 to turn off LED 1");
|
|
|
|
info!("Press button 4 to toggle LEDs 1 and 2");
|
2021-03-29 02:47:10 +02:00
|
|
|
|
2021-03-27 16:13:32 +01:00
|
|
|
// Block forever so the above drivers don't get dropped
|
|
|
|
pending::<()>().await;
|
|
|
|
}
|